Releases: colinmollenhour/Cm_RedisSession
Fix loading with compiler
Remove Zend dependency and fix PHP 8.2 support
What's Changed
- Remove dependency on Zend. Add ReturnTypeWillChange annotation to suppress warnings in PHP 8.2 in 4f10ca7
- Include details for specific version installation by @norgeindian in #193
New Contributors
- @norgeindian made their first contribution in #193
Full Changelog: 3.1.1...3.2.0
Fix PHP Warning
Do not return false and instead re-throw the exception to avoid PHP warning: Warning: session_start(): Failed to read session data: user (path: )
Add setDieOnError() and fix break_after
The signature of Cm_RedisSession_Model_Session_Config::__construct
has been updated because calling session_name()
in the config model is too early to get the correct value so it must be passed in.
- public function __construct($path = 'global/redis_session')
+ public function __construct(string $sessionName)
Full Changelog: 3.0.3...3.1.0
Update to php-redis-session-abstract 1.5
Full Changelog: 3.0.2...3.0.3
Restored model rewrite
What's Changed
- Added session rewrite for backwards compatibility by @alexherbs in #190
New Contributors
- @alexherbs made their first contribution in #190
Full Changelog: 3.0.1...3.0.2
Composer-only updates
This extension is now intended to be installed solely via composer and it is strongly recommended to use OpenMage.
Proper composer module
This release is packaged exclusively as a composer module. If you do not use composer stick with the 2.x release.
Replace core_mysql4 with core_resource.
This may break compatibility with really old versions of Magento (I don't know which offhand), hence the minor version update to 2.4.0.
2.3.3
Prevent initialization of front controller when constructing session …