Cache 1.4.4 and 1.5.1 Released

Posted on November 2, 2015 by Marco Pivetta


We are happy to announce the immediate availability of Doctrine Cache 1.4.4 and 1.5.1.

Cache 1.4.4

This release fixes the version number reported in Doctrine/Common/Cache/Version::VERSION

Additionally, a flaw in CacheProvider#fetchMultiple() was fixed: null and false-y values being fetched were considered cache misses, but are now correctly included in the results (#104).

You can find the complete changelog for this release in the v1.4.4 release notes.

Cache 1.5.1

This release includes all the fixes mentioned in the above 1.4.4 patch.

You can find the complete changelog for this release in the v1.5.1 release notes.

Installation

You can install the Cache component using Composer either of the following composer.json definitions:

{
    "require": {
        "doctrine/cache": "~1.4.4"
    }
}
{
    "require": {
        "doctrine/cache": "~1.5.1"
    }
}

Please report any issues you may have with the update on the mailing list or on Jira.