Skip to content

Releases: FriendsOfSymfony/FOSJsRoutingBundle

1.4.1

21 Oct 15:13

Choose a tag to compare

1.4.0 - Security Release

17 Oct 21:08

Choose a tag to compare

Prevent XSS attack through the JSONP callback. A CallbackValidator now validates the callback value. If it is not valid, a HttpException is thrown (status code = 400).

For more information, read: Do I need to sanitize the callback parameter from a JSONP call?

1.3.0

04 Oct 09:00

Choose a tag to compare

  • 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!