Skip to content

Latest commit

 

History

History
57 lines (46 loc) · 3.52 KB

CHANGELOG.md

File metadata and controls

57 lines (46 loc) · 3.52 KB

Changelog

4.3.0 - 2019-10-05

Added

  • 2819 Added description to addRoutingMiddleware()
  • 2820 Update link to homepage in composer.json
  • 2828 Allow URIs with leading multi-slashes
  • 2832 Refactor FastRouteDispatcher
  • 2835 Rename pathFor to urlFor in docblock
  • 2846 Correcting the branch name as per issue-2843
  • 2849 Create class alias for FastRoute\RouteCollector
  • 2855 Add list of allowed methods to HttpMethodNotAllowedException
  • 2860 Add base path to $request and use RouteContext to read

Fixed

  • 2839 Fix description for handler signature in phpdocs
  • 2844 Handle base path by routeCollector instead of RouteCollectorProxy
  • 2845 Fix composer scripts
  • 2851 Fix example of 'Hello World' app
  • 2854 Fix undefined property in tests

Removed

  • 2853 Remove unused classes

4.2.0 - 2019-08-20

Added

  • 2787 Add an advanced callable resolver
  • 2791 Add inferPrivatePropertyTypeFromConstructor to phpstan
  • 2793 Add ability to configure application via a container in AppFactory
  • 2798 Add PSR-7 Agnostic Body Parsing Middleware
  • 2801 Add setLogErrorRenderer() method to ErrorHandler
  • 2807 Add check for Slim callable notation if no resolver given
  • 2803 Add ability to emit non seekable streams in ResponseEmitter
  • 2817 Add the ability to pass in a custom MiddlewareDispatcherInterface to the App

Fixed

  • 2789 Fix Cookie header detection in ResponseEmitter
  • 2796 Fix http message format
  • 2800 Fix null comparisons more clear in ErrorHandler
  • 2802 Fix incorrect search of a header in stack
  • 2806 Simplify Route::prepare() method argument preparation
  • 2809 Eliminate a duplicate code via HOF in MiddlewareDispatcher
  • 2816 Fix RouteCollectorProxy::redirect() bug

Removed

  • 2811 Remove DeferredCallable

4.1.0 - 2019-08-06

Added

  • #2779 Add support for Slim callables Class:method resolution & Container Closure auto-binding in MiddlewareDispatcher
  • #2774 Add possibility for custom RequestHandler invocation strategies

Fixed

  • #2776 Fix group middleware on multiple nested groups