Releases: FriendsOfSymfony/FOSJsRoutingBundle
1.6.1 (2017-08-09)
2.0.0-alpha1 (2016-02-05)
Hi!
Due to numerous contributions that have been merged over the last 2 years in the master
branch, this very first, very unstable, release starts the release cycle of the upcoming 2.0 major version. Things changed a lot between the initial plan, and what has been actually done, but there are a few interesting changes though.
Note that branch 1.x
has been merge in master
, so everything that is part of 1.x
is also part of 2.x
.
- Added: TypeScript declaration file, for TypeScript users
- Added: Support for Symfony3, HHVM and PHP 7
- Added: Protection against rosetta flash attacks
- Added: Inject the
locale
parameter automatically - Fixed: use
ConfigCache::getPath()
instead of__toString()
method - Added: allow to configure router service name (#141)
- Fixed: documentation
- Fixed: serialization of
RouteCollection
andRoutesResponse
- Fixed: debug command '(#109)
1.6.0 (2016-02-04)
Aloha, and sorry for the too long delay... This release provides support for Symfony 3.0+ (older Symfony versions should still work though). Cheers!
Changelog
- Fixed: deprecation notice at
routing.xml
- Fixed:
ConfigCache::__toString()
is deprecated in favor ofgetPath()
as of Symfony 2.7 - Added: enable Symfony 3 support
1.5.4
FrameworkBundle 2.4 compatibility in the debug command
- Fixed the debug command to be compatible with FrameworkBundle 2.4+
1.5.2
This bugfix release fixes a bug introduced in release 1.5.1
.
1.5.0
- Only the routes are cached now, everything else is included dynamically
- Deserialize routes when we actually load the serialized ones (and not previously already have the original array)
1.4.2
- Documentation has been rewritten
- Updated composer configuration, changing
minimum-stability
fromdev
tostable
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?