Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 745 Bytes

CHANGELOG.md

File metadata and controls

41 lines (28 loc) · 745 Bytes

Changelog

NEXT RELEASE

  • BREAKING It is no longer possible to not define any package configuration

  • BREAKING The cache_dir config no longer exists. Caching has been rewritten to allow bridging the native Symfony cache in addition to all the cache stores tus-php provides.

    If you want to keep the old behaviour, you need to change your config from

    tus:
      cache_dir: 'your_value'

    to

    tus:
      cache_type:
        file:
          dir: 'your_value'

    However, starting with this release, it is recommended to use the native cache instead:

    tus:
      cache_type:
        native:
          enabled: true

v0.5.1

  • Minor autowiring fixes

v0.5

First release.