Skip to content

Releases: laminas/laminas-server

2.9.2

08 Apr 13:10
2.9.2
b91fd8a
Compare
Choose a tag to compare

Release Notes for 2.9.2

2.9.x bugfix release (patch)

2.9.2

  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1

Enhancement

2.9.1

01 Dec 21:07
2.9.1
9b82e3e
Compare
Choose a tag to compare

2.9.1 - 2020-12-01

Fixed

  • #19 fixes a scenario whereby calling Reflection::reflectionFunction() or new ReflectMethod() with null or otherwise invalid $argv arguments could lead to fatal errors. These methods now either validate or cast on all invalid values.

  • #18 fixes detection of array function and method parameters on PHP 8.


Release Notes for 2.9.1

2.9.x bugfix release (patch)

2.9.1

  • Total issues resolved: 0
  • Total pull requests resolved: 2
  • Total contributors: 1

Bug

2.9.0

23 Nov 22:59
2.9.0
9cce0ab
Compare
Choose a tag to compare

2.9.0 - 2020-11-23

Added

  • #15 adds support for PHP 8.

  • #8 and #9 add Laminas\Server\ClientInterface, which extends Laminas\Server\Client, and which will replace that interface in version 3.0.

  • #8 and #9 add Laminas\Server\ServerInterface, which extends Laminas\Server\Server, and which will replace that interface in version 3.0.

Changed

  • #8 adds a new method to Laminas\Server\AbstractServer, buildSignature(). The method brings in the content of _buildSignature(), which has been marked deprecated, and which now proxies to buildSignature(). If you are calling _buildSignature() in your own code, please update to use buildSignature() instead.

  • #8 adds a new method to Laminas\Server\AbstractServer, buildCallback(). The method brings in the content of _buildCallback(), which has been marked deprecated, and which now proxies to buildCallback(). If you are calling _buildCallback() in your own code, please update to use buildCallback() instead.

Deprecated

  • #8 deprecates Laminas\Server\Client. The interface will be removed in version 3.0; please implement Laminas\Server\ClientInterface instead.

  • #8 deprecates Laminas\Server\Server. The interface will be removed in version 3.0; please implement Laminas\Server\ServerInterface instead.

Removed

  • #15 removes support for PHP versions prior to 7.3.

Release Notes for 2.9.0

2.9.0

  • Total issues resolved: 1
  • Total pull requests resolved: 4
  • Total contributors: 3

Enhancement

Documentation