Releases: laminas/laminas-http
Releases · laminas/laminas-http
2.15.1
Release Notes for 2.15.1
2.15.x bugfix release (patch)
2.15.1
- Total issues resolved: 1
- Total pull requests resolved: 3
- Total contributors: 2
Enhancement
Bug
- 61: Regression: non-float HTTP version detection thanks to @boesing
- 60:
Headers#toArray
does not properly return all header values thanks to @boesing
BC Break,Bug
2.15.0
Release Notes for 2.15.0
Feature release (minor)
2.15.0
- Total issues resolved: 1
- Total pull requests resolved: 2
- Total contributors: 3
Enhancement
- 57: Provide PHP 8.1 support thanks to @weierophinney
Bug
Duplicate,Enhancement
- 53: Remove file headers thanks to @ghostwriter
2.14.3
2.14.3 - 2021-02-18
Release Notes for 2.14.3
2.14.x bugfix release (patch)
2.14.3
- Total issues resolved: 0
- Total pull requests resolved: 1
- Total contributors: 1
Enhancement
2.14.2
2.14.2 - 2021-01-05
Release Notes for 2.14.2
2.14.x bugfix release (patch)
2.14.2
- Total issues resolved: 0
- Total pull requests resolved: 1
- Total contributors: 1
Bug,Enhancement
2.14.1
2.14.1 - 2020-12-31
Release Notes for 2.14.1
2.14.x bugfix release (patch)
2.14.1
- Total issues resolved: 0
- Total pull requests resolved: 1
- Total contributors: 1
Bug
2.14.0
2.14.0 - 2020-12-29
Release Notes for 2.14.0
2.14.0
- Total issues resolved: 0
- Total pull requests resolved: 2
- Total contributors: 2
Enhancement,hacktoberfest-accepted
- 45: PHP 8 support thanks to @ocean
Enhancement
2.13.0
Added
- #41 adds a new method to
Laminas\Http\PhpEnvironment\Response
,setHeadersSentHandler(callable $handler): void
. When a handler is injected,sendHeaders()
will call it with the current response instance if it detects headers have already been sent (e.g., by the SAPI due to emitting content). Prior to this change, the class would silently ignore the fact, and simply not emit headers from the response instance. Now it is possible to log those headers, or raise an exception.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- Nothing.
Release 2.13.0
2.13.0
- Total issues resolved: 1
- Total pull requests resolved: 1
- Total contributors: 2
Bug,Enhancement
- 41: Fixes #5 : Handle Response::sendHeaders() to not silently returns when header already sent thanks to @samsonasik
BC Break,Bug
laminas-http 2.12.0
Added
- #33 adds a new header type,
Laminas\Http\Header\ContentSecurityPolicyReportOnly
, mapping to Content-Security-Policy-Report-Only headers, which can be used for experimenting with policies without impacting your application.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- Nothing.
laminas-http 2.11.3
Added
- Nothing.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
-
#39 fixes the default user-agent header to replace escape characters with underscores, ensuring it works with all clients and servers.
-
#31 updates the socket and proxy adapters to retain the previous TLS defaults, which had broken with PHP 5.6.7+ due to a change in the meaning of the STREAM_CRYPTO_METHOD_TLS_CLIENT constant.