Mercurial > hg > isophonics-drupal-site
annotate vendor/doctrine/cache/UPGRADE.md @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
rev | line source |
---|---|
Chris@0 | 1 # Upgrade to 1.4 |
Chris@0 | 2 |
Chris@0 | 3 ## Minor BC Break: `Doctrine\Common\Cache\FileCache#$extension` is now `private`. |
Chris@0 | 4 |
Chris@0 | 5 If you need to override the value of `Doctrine\Common\Cache\FileCache#$extension`, then use the |
Chris@0 | 6 second parameter of `Doctrine\Common\Cache\FileCache#__construct()` instead of overriding |
Chris@0 | 7 the property in your own implementation. |
Chris@0 | 8 |
Chris@0 | 9 ## Minor BC Break: file based caches paths changed |
Chris@0 | 10 |
Chris@0 | 11 `Doctrine\Common\Cache\FileCache`, `Doctrine\Common\Cache\PhpFileCache` and |
Chris@0 | 12 `Doctrine\Common\Cache\FilesystemCache` are using a different cache paths structure. |
Chris@0 | 13 |
Chris@0 | 14 If you rely on warmed up caches for deployments, consider that caches generated |
Chris@0 | 15 with `doctrine/cache` `<1.4` are not compatible with the new directory structure, |
Chris@0 | 16 and will be ignored. |