All Versions
19
Latest Version
Avg Release Cycle
201 days
Latest Release
1874 days ago

Changelog History
Page 2

  • v0.12.1 Changes

    June 05, 2014

    ๐Ÿš€ 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.
  • v0.12

  • v0.11.6 Changes

    March 30, 2014

    ๐Ÿš€ This release deals with changes between the APC and Opcode Caching system in PHP 5.4, specifically how opcode caches get invalidated. As of this release the Filesystem Driver explicitly invalidates the opcode cache for the files it creates or updates, preventing PHP from including an older version of it's data.

  • v0.11.5 Changes

    • ๐Ÿ Fixed a bug where OSX would be identified as Windows and path names were limited to that system's length.

    • ๐Ÿ›  Fixed a bug in the Pool class where setItemClass would throw an exception.

  • v0.11.4 Changes

    • โœ… Introduced HHVM testing capabilities into the test suite.

    • ๐Ÿšš Removed HHVM specific fatal errors.

  • v0.11.3 Changes

    • ๐Ÿ›  Fixed potential key collision with Ephemeral driver.
  • v0.11.2 Changes

    • ๐Ÿ Fixed Bug which prevented some file based caches from purging or flushing on Windows based systems.

    • ๐Ÿ›  Fixed Bug in the Filesystem cache which caused a fatal error when certain keys were used.

  • v0.11.1 Changes

    • ๐ŸŒฒ Logging Support

      The Pool and Item classes can now have PSR-3 compliant Logging libraries injected into them through the setLogger($logger) functions. Any logger injected into the Pool class will get injected into any Items it generates.

    • Pool and Item Interfaces

      The Stash\Pool and Stash\Item classes now implement the new Stash\Interface\Pool and Stash\interface\Item inferaces.

    • Extend Cache renamed and given a ttl

      The Stash\Item::extendCache() function is now Stash\Item::extend($ttl = null).

    • Formatting changes, PSR-1 and PSR-2 compliant.

    • Added "setItemClass" function to the Pool class

      This allows new Item classes to be generated, as long as they following the new interface.

  • v0.11