You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UPGRADE.md 726 B

4 years ago
12345678910111213141516
  1. # Upgrade to 1.4
  2. ## Minor BC Break: `Doctrine\Common\Cache\FileCache#$extension` is now `private`.
  3. If you need to override the value of `Doctrine\Common\Cache\FileCache#$extension`, then use the
  4. second parameter of `Doctrine\Common\Cache\FileCache#__construct()` instead of overriding
  5. the property in your own implementation.
  6. ## Minor BC Break: file based caches paths changed
  7. `Doctrine\Common\Cache\FileCache`, `Doctrine\Common\Cache\PhpFileCache` and
  8. `Doctrine\Common\Cache\FilesystemCache` are using a different cache paths structure.
  9. If you rely on warmed up caches for deployments, consider that caches generated
  10. with `doctrine/cache` `<1.4` are not compatible with the new directory structure,
  11. and will be ignored.