Releases: mezzio/mezzio-helpers
Releases · mezzio/mezzio-helpers
5.8.0
Release Notes for 5.8.0
Feature release (minor)
5.8.0
- Total issues resolved: 0
- Total pull requests resolved: 1
- Total contributors: 1
Enhancement
5.7.0
Release Notes for 5.7.0
Feature release (minor)
Added
- Added support for PHP 8.1
5.7.0
- Total issues resolved: 0
- Total pull requests resolved: 2
- Total contributors: 2
Enhancement
- 17: PHP 8.1 support thanks to @boesing
- 15: feat: laminas coding standard 2.2.0 thanks to @geerteltink
5.6.0
Release Notes for 5.6.0
Feature release (minor)
5.6.0
- Total issues resolved: 0
- Total pull requests resolved: 1
- Total contributors: 1
Enhancement
5.5.1
Release Notes for 5.5.1
Fixed
- Version 5.5.0 added the boolean option "reuse_query_params". To keep backwards compatibility with previous behavior (which did not reuse query parameters), this patch considers the absence of the option to indicate it is disabled.
5.5.1
- Total issues resolved: 0
- Total pull requests resolved: 1
- Total contributors: 1
Bug
5.5.0
Release Notes for 5.5.0
Added
- This release adds support for the option "reuse_query_params" as an element of the
$options
array passed to theUrlHelper
. When present andtrue
, it will merge any provided query parameters with those already present in the request when generating the URL.
5.5.0
- Total issues resolved: 0
- Total pull requests resolved: 1
- Total contributors: 1
Enhancement
5.4.1
Release Notes for 5.4.1
Changed
- This release changes the behavior of the
Mezzio\Helper\BodyParams\JsonStrategy::parse()
method slightly. Previously, if the body could be parsed as JSON, the result was always passed to the request'swithParsedBody()
method. However, PSR-7 indicates that the method should only ever receive anull
value, or structured data in the form of an array or object. As such. theJsonStrategy::parse()
method now checks to see if we have anything other than an array or object returned from thejson_decode()
operation, and, if so, uses anull
value to callwithParsedBody()
.
5.4.1
- Total issues resolved: 0
- Total pull requests resolved: 2
- Total contributors: 2
Enhancement
BC Break,Bug
5.4.0
5.4.0 - 2020-11-18
Added
- #5 Adds PHP 8.0 support
Release Notes for 5.4.0
next feature release (minor)
5.4.0
- Total issues resolved: 0
- Total pull requests resolved: 1
- Total contributors: 1
Enhancement
- 5: Added PHP 8.0 support #4 thanks to @svycka