Releases: skipperbent/simple-php-router
Releases · skipperbent/simple-php-router
Version 4.2.0.6
Version 4.2.0.5
- Settings parameter in group method are no longer optional.
- Updated README to contain PHP JSON-extension under requirements.
- Updated composer.json to include php json extension.
- Minor optimisations.
Version 4.2.0.4
- Fix for issue #421: Incorrectly optional character in route.
Version 4.2.0.3
- Fixed
Input::all()
returning empty array when posting json- data (issue #415 - thanks @mtaylor456)
Version 4.2.0.2
- Fixed 403 (not allowed or not found) exception is now thrown as
NotFoundHttpException
. - Added
REQUEST_TYPE_HEAD
toRoute
class. - Minor optimizations.
Version 4.2.0.1
- Fixed missing default parameter for
all
method inInputHandler
. - Added methods for adding get, post and file parameters manually.
Version 4.2.0.0
- Added new
SimpleRouter::redirect
method. - Changed method-names in
InputHandler
for better description. - Fixed return-types for
InputHandler
when retrieving collections. - Added unit-tests for
InputHandler
(get, post). - Optimisations and bugfixes.
- Updated documentation.
Changelog
Methods in InputHandler
has changed to provide better support for object-types.
Version 4.1.0.0
- Added new event when adding route.
- Added
prependUrl
method toLoadableRoute
class. - Added unit-test for add-route event.
- Updated documentation to reflect new changes.
Version 4.0.0.13
- Fixed
exists
method inInputHandler
returning incorrect value.
Version 4.0.0.12
- Fixed
hasParam
not working returning expected value inUrl
class. - Chained the remaining methods in the
Url
class. - Simplified
removeParam
method inUrl
class. - Added new
removeParams
method toUrl
class for removal of multiple params.