Stash v0.12.1 Release Notes

Release Date: 2014-06-05 // almost 10 years ago
  • ๐Ÿš€ This release is designed specifically to make integrating, extending and developing Stash easier. Although there have been some API additions, the bulk of the work is behind the scenes. That being said we've pushed in a few BC breaks that we've been meaning to make for awhile, so please review the changelog carefully (especially if you have custom drivers or specialized code for initializing them).

    โšก๏ธ Major Updates:

    • ๐Ÿ‘ Full HHVM Support
    • โœ‚ Removed xcache experimental driver.
    • โœ‚ Removed PEAR Support
    • Internal Improvements- DocBlock, Explicitly Defined Variables, Commenting.
    • โœ… Enforcement of code standards in test suite.
    • FileSystem - Improved Storage and Retrieval
    • Memcache - Altered subdrivers constructors and initialization.
    • SQLite - Reduced duplicate code amongst PDO subdrivers.
    • โšก๏ธ Updated Test Suite to make it simple to run again custom Pool or Item objects other than the build in ones.
    • ๐Ÿ”ง Redis and Memcache constructors now take both forms (associative array or indexed array) when setting server configuration. Originally Memcache accepted an indexed list of settings while Redis expected an associative array.

    API Changes:

    • Removed constructor requirements from DriverInterface and added setOptions to replace it. Please note this means all drivers no longer take their options through the constructor, but expect them through the setOptions method.
    • Replaced "Item->setDriver" with "Item->setPool" function. This should have no effect on typical consumers of this library but may effect those extending the Item or Pool class.
    • ๐Ÿ“‡ Renamed Drivers class to DriversList to prevent confusion when talking about "Drivers".
    • โž• Added DriversList::getAllDrivers which returns an unfiltered list of registered drivers.
    • โž• Added DriversList::getAvailableDrivers to replace the existing DriversList::getDrivers, which is now deprecated.
    • โž• Added "setDriver(DriverInterface $driver)" and "setKey($key, $namespace = null)" functions to the Item Interface. These functions are used by Pool to initialize the Item class.
    • โž• Added "setNamespace($namespace = null)" and "getNamespace()" functions to the Pool class for.
    • โž• Added "getCreation()" and "getExpiration()" functions to the Item class.
    • โž• Added internal function Utilities::checkFileSystemPermissions.
    • Moved Item::SP_* Constants to new Invalidation class and Deprecated the existing Item::SP_* constants.
    • 0๏ธโƒฃ "PRECOMPUTE" is now the default method for dealing with stale data.