annotate vendor/doctrine/cache/UPGRADE.md @ 5:12f9dff5fda9
tip
Update to Drupal core 8.7.1
author |
Chris Cannam |
date |
Thu, 09 May 2019 15:34:47 +0100 |
parents |
c75dbcec494b |
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.
|