All Versions
24
Latest Version
Avg Release Cycle
115 days
Latest Release
-

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 on RouteCollection 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.