Skip to content

Commit f41c9cf

Browse files
committed
Updating changelog & adding a migrations documentation file so those docs can be started on.
1 parent c0d3ccc commit f41c9cf

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

user_guide_src/source/changelog.rst

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,19 @@ Release Date: Not Released
4141
the SQL string of queries without executing them: get_compiled_select(),
4242
get_compiled_insert(), get_compiled_update(), get_compiled_delete().
4343
- Taking care of LIKE condition when used with MySQL UPDATE statement.
44+
- Adding $escape parameter to the order_by function, this enables ordering by custom fields.
4445

4546
- Libraries
4647

4748
- Added max_filename_increment config setting for Upload library.
4849
- CI_Loader::_ci_autoloader() is now a protected method.
4950
- Modified valid_ip() to use PHP's filter_var() when possible (>= PHP 5.2) in the :doc:`Form Validation library <libraries/form_validation>`.
5051
- Added custom filename to Email::attach() as $this->email->attach($filename, $disposition, $newname)
51-
- Cart library changes include;
52+
- Cart library changes include:
5253
- It now auto-increments quantity's instead of just resetting it, this is the default behaviour of large e-commerce sites.
5354
- Product Name strictness can be disabled via the Cart Library by switching "$product_name_safe"
5455
- Added function remove() to remove a cart item, updating with quantity of 0 seemed like a hack but has remained to retain compatability
56+
- Minor speed optimizations and method & property visibility declarations in the Calendar Library.
5557

5658
- Core
5759

@@ -67,15 +69,16 @@ Bug fixes for 3.0
6769
language file.
6870
- Fixed a bug (#159, #163) that mishandled Active Record nested transactions because _trans_depth was not getting incremented.
6971
- Fixed a bug (#737, #75) where pagination anchor class was not set properly when using initialize method.
70-
- Bug #419 - auto_link() now recognizes URLs that come after a word boundary.
71-
- Bug #724 - is_unique in form validation now checks that you are connected to a database.
72-
- Bug #647 - _get_mod_time() in Zip library no longer generates stat failed errors
73-
- Bug #608 - Fixes an issue with the Image_lib class not clearing properties completely
72+
- Fixed a bug (#419) - auto_link() now recognizes URLs that come after a word boundary.
73+
- Fixed a bug (#724) - is_unique in form validation now checks that you are connected to a database.
74+
- Fixed a bug (#647) - _get_mod_time() in Zip library no longer generates stat failed errors
75+
- Fixed a bug (#608) - Fixes an issue with the Image_lib class not clearing properties completely
7476
- Fixed bugs (#157 and #174) - the Image_lib clear() function now resets all variables to their default values.
7577
- Fixed a bug where using $this->dbforge->create_table() with PostgreSQL database could lead to fetching whole table.
76-
- Bug #795 - Fixed form method and accept-charset when passing an empty array.
77-
- Bug #797 - timespan was using incorrect seconds for year and month.
78+
- Fixed a bug (#795) - Fixed form method and accept-charset when passing an empty array.
79+
- Fixed a bug (#797) - timespan was using incorrect seconds for year and month.
7880
- Fixed a bug in CI_Cart::contents() where if called without a TRUE (or equal) parameter, it would fail due to a typo.
81+
- Fixed a bug (#696) - make oci_execute calls inside num_rows non-committing, since they are only there to reset which row is next in line for oci_fetch calls and thus don't need to be committed.
7982

8083
Version 2.1.0
8184
=============
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
################
2+
Migrations Class
3+
################
4+
5+
Coming soon.

0 commit comments

Comments
 (0)