diff options
author | kylefarris <kylefarris@gmail.com> | 2011-08-26 08:39:54 +0200 |
---|---|---|
committer | kylefarris <kylefarris@gmail.com> | 2011-08-26 08:39:54 +0200 |
commit | c1ee04b4532124cbfaff69f50c996af64f63ac51 (patch) | |
tree | d1f69259807ed0d256cc7c1766964927f35c3e6e | |
parent | 0a3176b56ad069643c400302b1baf9a2c90267ad (diff) |
Updated the changelog to reflect new Active Record methods: get_compiled_select(), get_compiled_delete(), get_compiled_insert(), get_compiled_update(), and reset_query().
-rw-r--r-- | user_guide/changelog.html | 27 |
1 files changed, 2 insertions, 25 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html index bb80ab8b8..5fff21f7b 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -66,23 +66,18 @@ Change Log <li>General Changes <ul> <li class="reactor">Callback validation rules can now accept parameters like any other validation rule.</li> - <li class="reactor">Ability to log certain error types, not all under a threshold.</li> - <li class="reactor">Added html_escape() to <a href="general/common_functions.html">Common functions</a> to escape HTML output for preventing XSS.</li> </ul> </li> <li>Helpers <ul> <li class="reactor">Added <samp>increment_string()</samp> to <a href="helpers/string_helper.html">String Helper</a> to turn "foo" into "foo-1" or "foo-1" into "foo-2".</li> - <li>Altered form helper - made action on form_open_multipart helper function call optional. Fixes (#65)</li> </ul> </li> <li>Database <ul> - <li class="reactor">Added a <a href="http://www.cubrid.org/" target="_blank">CUBRID</a> driver to the <a href="database/index.html">Database Driver</a>. Thanks to the CUBRID team for supplying this patch.</li> + <li class="reactor">Added a <a href="http://www.cubrid.org/" target="_blank">CUBRID</a> driver to the <a href="libraries/database.html">Database Driver</a>. Thanks to the CUBRID team for supplying this patch.</li> <li class="reactor">Typecast limit and offset in the <a href="database/queries.html">Database Driver</a> to integers to avoid possible injection.</li> - <li class="reactor"> - Added additional option 'none' for the optional third argument for <kbd>$this->db->like()</kbd> in the <a href="database/active_record.html">Database Driver</a>. - </li> + <li class="reactor">Added new <a href="database/active_record.html">Active Record</a> methods that return the SQL string of queries without executing them: <kbd>get_compiled_select()</kbd>, <kbd>get_compiled_insert()</kbd>, <kbd>get_compiled_update()</kbd>, <kbd>get_compiled_delete()</kbd>. </ul> </li> <li>Libraries @@ -91,13 +86,6 @@ Change Log <li class="reactor">Added support to set an optional parameter in your callback rules of validation using the <a href="libraries/form_validation.html">Form Validation Library</a>.</li> <li class="reactor">Added a <a href="libraries/migration.html">Migration Library</a> to assist with applying incremental updates to your database schema.</li> <li class="reactor">Driver children can be located in any package path.</li> - <li class="reactor">Added max_filename_increment config setting for Upload library.</li> - <li><samp>CI_Loader::_ci_autoloader()</samp> is now a protected method.</li> - </ul> - </li> - <li>Core - <ul> - <li class="reactor">Changed private functions in CI_URI to protected so MY_URI can override them.</li> </ul> </li> </ul> @@ -108,11 +96,6 @@ Change Log <li class="reactor">If a config class was loaded first then a library with the same name is loaded, the config would be ignored.</li> <li class="reactor">Fixed a bug (Reactor #19) where 1) the 404_override route was being ignored in some cases, and 2) auto-loaded libraries were not available to the 404_override controller when a controller existed but the requested method did not.</li> <li class="rector">Fixed a bug (Reactor #89) where MySQL export would fail if the table had hyphens or other non alphanumeric/underscore characters.</li> - <li class="reactor">Fixed a bug (#200) where MySQL queries would be malformed after calling <samp>count_all()</samp> then <samp>db->get()</samp></li> - <li>Fixed a bug (#181) where a mis-spelling was in the form validation language file.</li> - <li>Fixed a bug (#160) - Removed unneeded array copy in the file cache driver.</li> - <li>Fixed a bug (#150) - <samp>field_data()</samp> now correctly returns column length.</li> - <li>Fixed a bug (#8) - <samp>load_class()</samp> now looks for core classes in <samp>APPPATH</samp> first, allowing them to be replaced.</li> </ul> <h2>Version 2.0.3</h2> @@ -132,13 +115,7 @@ Change Log <li>Visual updates to the welcome_message view file and default error templates. Thanks to <a href="https://bitbucket.org/danijelb">danijelb</a> for the pull request.</li> <li class="reactor">Added <samp>insert_batch()</samp> function to the PostgreSQL database driver. Thanks to epallerols for the patch.</li> <li class="reactor">Added "application/x-csv" to mimes.php.</li> - <li class="reactor">Added CSRF protection URI whitelisting.</li> <li>Fixed a bug where <a href="libraries/email.html">Email library</a> attachments with a "." in the name would using invalid MIME-types.</li> - <li>Added support for pem,p10,p12,p7a,p7c,p7m,p7r,p7s,crt,crl,der,kdb,rsa,cer,sst,csr Certs to mimes.php.</li> - <li>Added support pgp,gpg to mimes.php.</li> - <li>Added support 3gp, 3g2, mp4, wmv, f4v, vlc Video files to mimes.php.</li> - <li>Added support m4a, aac, m4u, xspf, au, ac3, flac, ogg Audio files to mimes.php.</li> - </ul> </li> <li>Helpers |