All Versions
24
Latest Version
Avg Release Cycle
115 days
Latest Release
-
Changelog History
Page 2
Changelog History
Page 2
-
v4.2.0 Changes
October 16, 2018[4.2.0] 2018-10
โ Added
- ๐ Allow adding default response headers to strategies.
- Expand error handling to include Throwable.
(Thanks @shadowhand)
-
v4.1.1 Changes
October 09, 2018[4.1.1] 2018-10
๐ Fixed
- ๐ Fixed issue where group middleware was being duplicated on internal routes.
-
v4.1.0 Changes
September 21, 2018[4.1.0] 2018-09
๐ Changed
- ๐ JSON strategy no allows array and object returns and builds JSON response. (Thanks @willemwollebrants)
๐ Fixed
- ๐ Fixed issue where setting strategy on specific route had no effect. (Thanks @aag)
-
v4.0.1 Changes
August 13, 2018[4.0.1] 2018-08
๐ Fixed
- ๐ Fixed a bug where content-type header would not be added to response in Json Strategy.
-
v4.0.0 Changes
August 10, 2018[4.0.0] 2018-08
๐ Changed
- Increased minimum PHP version to 7.1.0
- Now implements PSR-15 middleware and request handlers.
- No longer enforces use of container, one can be used optionally.
- Strategies now return PSR-15 middleare as handlers.
- Increased types of proxy callables that can be used as controllers.
- ๐จ General housekeeping and refactoring for continued improvement.
๐ Fixed
- Group level strategies now handle exceptions if a route is not matched but the request falls within the group.
-
v3.1.0 Changes
July 23, 2018[3.1.0] 2018-07
๐ Fixed
- 0๏ธโฃ Ensure JsonStrategy handles all exceptions by default.
- ๐ป Handle multiline exception messages.
โ Added
- โ Add port condition to routes.
-
v3.0.4 Changes
March 22, 2017[3.0.4] 2017-03
๐ Fixed
- Middleware execution order.
-
v3.0.0
-
v2.0.2 Changes
July 23, 2018๐ Fixed
- 0๏ธโฃ Have JsonStrategy handle all exceptions by default.
-
v2.0.0 Changes
โ Added
- All routing and dispatching now built around PSR-7.
- Can now group routes with prefix and match conditions.
- Routes now stored against a specific
Route
object that describes the route. - ๐ New
dispatch
method onRouteCollection
that is a compliant PSR-7 middleware. - โ Additional route matching conditions for scheme and host.
๐ Changed
- API rewrite to simplify.
- API naming improvements.
- Strategies now less opinionated about return from controller.