Releases: FriendsOfSymfony/FOSJsRoutingBundle
Releases · FriendsOfSymfony/FOSJsRoutingBundle
1.4.1
Use JsonCallbackValidator library.
1.4.0 - Security Release
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
- 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!