summaryrefslogtreecommitdiffstats
path: root/user_guide_src
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-01-19 14:35:52 +0100
committerAndrey Andreev <narf@devilix.net>2015-01-19 14:35:52 +0100
commit3fd1c270ef8a6e59baec4ca59191a0a0ea796e35 (patch)
tree48404e23d763e44be8ce57c74f273e1d2e3544b6 /user_guide_src
parent9a0e66096a1d70c28a7d5358f966f936f609d52b (diff)
[ci skip] Update changelog messages for Session library
Diffstat (limited to 'user_guide_src')
-rw-r--r--user_guide_src/source/changelog.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/user_guide_src/source/changelog.rst b/user_guide_src/source/changelog.rst
index 8b4f4039e..7211210d7 100644
--- a/user_guide_src/source/changelog.rst
+++ b/user_guide_src/source/changelog.rst
@@ -283,19 +283,19 @@ Release Date: Not Released
- :doc:`Session Library <libraries/sessions>` changes include:
- - Library changed to :doc:`Driver <general/drivers>` with classic 'cookie' driver as the default.
- - Added a 'native' PHP Session driver to work with ``$_SESSION``.
- - Added a new **tempdata** feature that allows setting userdata items with expiration time (``tempdata()``, ``set_tempdata()``, ``unset_tempdata()``).
- - Added default ``$config['sess_driver']`` and ``$config['sess_valid_drivers']`` items to *application/config.php* file.
- - Changed 'cookie' driver to respect php.ini's *session.gc_probability* and *session.gc_divisor* settings.
- - Changed 'cookie' driver to use HMAC authentication instead of a simple md5 checksum.
- - Changed 'cookie' driver to select only one row when using database sessions.
- - Changed 'cookie' driver to write to only write to the database at end of page execution.
+ - Completely re-written the library to use self-contained drivers via ``$config['sess_driver']``.
+ - Added 'files', 'database', 'redis' and 'memcached' drivers (using 'files' by default).
+ - Added ``$config['sess_save_path']`` setting to specify where the session data is stored, depending on the driver.
+ - Dropped support for storing session data in cookies (which renders ``$config['sess_encrypt_cookie']`` useless and is therefore also removed).
+ - Dropped official support for storing session data in databases other than MySQL and PostgreSQL.
+ - Changed table structure for the 'database' driver.
+ - Added a new **tempdata** feature that allows setting userdata items with expiration time (``mark_as_temp()``, ``tempdata()``, ``set_tempdata()``, ``unset_tempdata()``).
- Changed method ``keep_flashdata()`` to also accept an array of keys.
- Changed methods ``userdata()``, ``flashdata()`` to return an array of all userdata/flashdata when no parameter is passed.
- Deprecated method ``all_userdata()`` - it is now just an alias for ``userdata()`` with no parameters.
- Added method ``has_userdata()`` that verifies the existence of a userdata item.
- Added *debug* level log messages for key events in the session validation process.
+ - Dropped support for the *sess_match_useragent* option.
- :doc:`File Uploading Library <libraries/file_uploading>` changes include: