Change Log
v2.0.0
Changed
-
Dropped support for PHP 7.x
-
The
Mongodata source adapter has been updated to work with themongodbextension
instead of the oldmongoextension. This brings back full li₃ support for MongoDB
on PHP 7.x. Due to how the new extension works, we do not support GridFS through the
adapter anymore. You can still access GridFS using the underlying connection object.
(Simon Jaillet, Dirk Brünsicke) -
Removed deprecated functionality: magic download header in action response, unit testing's
expectException method. (David Persson) -
ConfigExceptions (thrown when accessing non existent configurations) are now allowed to
bubble up inCache. -
The following previously deprecated things have been removed:
- The
XCacheCacheadapter - Glob brace support in
Libraries - Per adapter filters
- The
Stringclass - Long options like
--foo-barare now only made available asfooBarand
notfoo-barafter parsing in the console router. - The test
Mockerclass - Support for
mcryptin the sesionEncryptstrategy - Support for old-style rendering instructions i.e.
['template' => '/path/to/template'] - The
FirePhplogging adapter - Support for old-style AOP filters
- Support for gernally retrieving class parents via
_parents(), it is still possible to call
this method in subclasses ofControllerandModel. - Support for generally halting executing via
_stop(), it is still possible to call
this method in subclasses ofControllerand `Command. - Support for generally using
__set_state(). - Support for generally using
respondsTo(). - Support for generally using
invokeMethod(). - Support for generally using
_instance().
- The
-
The
Apcadapter has been migrated from the traditional, now-unsupported APC extension, to APCu. No code changes are required—simply upgrade to the new extension.