Skip to content

1.3.0

Compare
Choose a tag to compare
@willdurand willdurand released this 04 Oct 09:00
· 288 commits to master since this release
  • Add ability to set Cache-Control headers. Now, you can enable HTTP caching as below:
# app/config/config.yml
fos_js_routing:
    cache_control:
        # All are optional, defaults shown
        public: false   # can be true (public) or false (private)
        maxage: null    # integer value, e.g. 300
        smaxage: null   # integer value, e.g. 300
        expires: null   # anything that can be fed to "new \DateTime($expires)", e.g. "5 minutes"
        vary: []        # string or array, e.g. "Cookie" or [ Cookie, Accept ]

Thanks to @cmenning!