summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/changelog.rst
AgeCommit message (Collapse)AuthorFilesLines
2014-01-08Deprecate the 'mysql', 'sqlite', 'mssql' and 'pdo/dblib' driversAndrey Andreev1-0/+2
The 'mysql' PHP extension is notorious for it's problems and is deprecated as of PHP 5.5. The other ones are dropped from PHP 5.3.
2014-01-08Make newline standardization configurableAndrey Andreev1-0/+1
Added ['standardize_newlines'] Also altered the Session cookie driver, which experienced issues with this feature due to it's HMAC verification failing after the Input class alters newlines in non-encrypted session cookies. Supersedes PR #2470
2014-01-08Fix #346Andrey Andreev1-0/+2
When ['global_xss_filtering'] was turned on, the , , & superglobals were automatically overwritten. This resulted in one of the following problems: - xss_clean() being called twice - Inability to retrieve the original (not filtered) value XSS filtering is now only applied on demand by the Input class, and the default value for the parameter in CI_Input methods is changed to NULL. Unless a boolean value is passed to them, whether XSS filtering is applied depends on the ['global_xss_filtering'] value.
2014-01-08[ci skip] Fix a wrong issue reference from the previous commitAndrey Andreev1-1/+1
2014-01-08Fix #148Andrey Andreev1-0/+1
CI_Input::_clean_input_data() assumed that all input data is URL-encoded while sanitizing it. However, PHP already performs URL-decoding on it, so this is either redudant or overly intrusive as it resulted in many, many reports of data containing '%' followed by 1 numeric characters being essentially destroyed. Supersedes PR #1229
2014-01-08[ci skip] Add a changelog entry for PR #2800Andrey Andreev1-1/+4
2014-01-07Fix a few bugs in CI_Hook (based on PR #2762)Andrey Andreev1-0/+1
2014-01-07Change Text helper default tag from <strong> to <mark>Andrey Andreev1-3/+4
Supersedes PR #1497
2014-01-07Add ability for changing the original file path/name in CI_Zip::read_file()Andrey Andreev1-0/+1
Supersedes PR #884
2014-01-07Fix #2143Andrey Andreev1-0/+1
When trying to load rules from a configuration file, the Form validation library matched against ruri_string() as opposed to 'controller/method' like described in the manual. Since ruri_string() also makes sense, now both are being checked with ruri_string() having a higher precedence. Supersedes PR #2224
2014-01-07Implement Loader method chainingAndrey Andreev1-0/+1
Requested in issue #2165 Supersedes PR #2319
2014-01-07Fix #2268 (manually implementing PR #2269)Andrey Andreev1-0/+1
2014-01-07Add Basic HTTP authentication support to the XML-RPC libraryAndrey Andreev1-2/+6
(based on PR #1716)
2014-01-06Fix #2237: Parser library failed if the same tag pair is used more than once ↵Andrey Andreev1-0/+1
within a template (manually applying PR #2238 + updated unit tests)
2014-01-06Fix #2579: Query Builder's "no escape" functionality didn't work properly ↵Andrey Andreev1-0/+1
with query cache
2014-01-03[ci skip] Some spaces & docblock fixesAndrey Andreev1-1/+1
2013-12-20Polishing changes from #PR #2781Andrey Andreev1-1/+1
Looks like an unnecessary commit was made by the author just as I was clicking the Merge button. :)
2013-12-19added changelog about EXISTS / NOT EXISTSTufan Barış YILDIRIM1-0/+1
@narfbg "And you should also add a changelog entry for this addition. :)"
2013-12-19[ci skip] Fix a changelog messageAndrey Andreev1-1/+1
2013-12-10Fix a bug where DB() tried to set the MySQL-specific 'sql_mode' on all driversAndrey Andreev1-0/+1
Supersedes PR #2756
2013-11-12Add CLI error templates and only send HTTP status headers for non-CLI ↵Andrey Andreev1-0/+1
requests (issue #1743)
2013-11-12Deprecate CI_Input::is_cli_request() and add common function is_cli() to ↵Andrey Andreev1-0/+2
replace it Calls to this function are often needed before the Input library is available
2013-11-11Polish changes from PR #2712Andrey Andreev1-1/+1
2013-11-11Merge pull request #2712 from pveyes/developAndrey Andreev1-0/+1
Enable HTTP Verb in Routing
2013-11-05Fix HTTP Verb Routing RulesFatih Kalifa1-0/+1
Fix code style, removed (:any) rule in http verb to avoid confusion, and add proposed documentation and changelog
2013-10-29typoskakysha1-1/+1
2013-10-28Added changelog entrykakysha1-0/+1
2013-10-26Remove redundant changelog entryvlakoff1-1/+0
2013-10-25Implement $protocol parameter in Config base_url() and site_url() methodsvlakoff1-0/+1
Let's keep the implementation logic in one place. Improves 2023c3d05b042cf1322286d69557c2b8bf3bd8d5.
2013-10-21Add CI_Upload:: optionAndrey Andreev1-0/+1
2013-10-21Add 'filename' to the return elements for create_captcha() (PR #2602)Andrey Andreev1-0/+1
2013-10-21Fix #2515 (manually merge PR #2516)Andrey Andreev1-0/+1
2013-10-21Fix #2691Andrey Andreev1-0/+1
2013-10-18[ci skip] Fix a changelog entryAndrey Andreev1-1/+1
2013-10-18Fix issue #2681 (alternative to PR #2690)Andrey Andreev1-0/+1
2013-10-16Merge pull request #2661 from DaveMC08/feature/issue_2617Andrey Andreev1-0/+1
fix issue #2617
2013-10-16req. changes:David Cox Jr1-0/+1
cleaned up conditionals added changelog note regarding profiler updated as per styleguide
2013-10-16Changelog/doc edits following PR #2684Andrey Andreev1-1/+1
2013-10-16Fixed empty line at EOF and added changelog entryTomaz Lovrec1-0/+1
2013-09-27Added changelog entry.Jesse van Assen1-0/+1
2013-09-23Fix issue #33Andrey Andreev1-0/+2
2013-09-21Merge pull request #2654 from vlakoff/developAndrey Andreev1-2/+1
Fix duplicate changelog entry
2013-09-20Fix duplicate changelog entryvlakoff1-2/+1
2013-09-13[ci skip] Fix a changelog messageAndrey Andreev1-1/+1
2013-09-13Fix array notation fields for set_select() as wellAndrey Andreev1-2/+1
2013-09-13Fix #2639Andrey Andreev1-1/+2
2013-09-13Fix a PostgreSQL string escaping bug and use pg_escape_literal() when possibleAndrey Andreev1-0/+2
2013-09-13Update MySQLi to use the PHP API for transactions, where possibleAndrey Andreev1-0/+1
2013-09-13Drop the unused parameter from log_message() / CI_Log::write_log()Andrey Andreev1-0/+1
2013-09-12[ci skip] Simplify changelog message for PR #2633Andrey Andreev1-1/+1