All Versions
69
Latest Version
Avg Release Cycle
45 days
Latest Release
1484 days ago

Changelog History
Page 3

  • v2.1.1 Changes

    January 05, 2019

    โž• Added

    • Nothing.

    ๐Ÿ”„ Changed

    • Nothing.

    ๐Ÿ—„ Deprecated

    • Nothing.

    โœ‚ Removed

    • Nothing.

    ๐Ÿ›  Fixed

    • ๐Ÿ›  zendframework/zend-diactoros#349 fixes an issue when marshaling headers with values of 0 or 0 from the SAPI, ensuring they are detected and injected into the ServerRequest properly.
  • v2.1.1.p2

    March 23, 2020
  • v2.1.0 Changes

    December 20, 2018

    โž• Added

    ๐Ÿ”„ Changed

    • Nothing.

    ๐Ÿ—„ Deprecated

    • Nothing.

    โœ‚ Removed

    • Nothing.

    ๐Ÿ›  Fixed

    • Nothing.
  • v2.1.0.p2

    March 23, 2020
  • v2.0.3 Changes

    January 05, 2019

    โž• Added

    • Nothing.

    ๐Ÿ”„ Changed

    • Nothing.

    ๐Ÿ—„ Deprecated

    • Nothing.

    โœ‚ Removed

    • Nothing.

    ๐Ÿ›  Fixed

    • ๐Ÿ›  zendframework/zend-diactoros#349 fixes an issue when marshaling headers with values of 0 or 0 from the SAPI, ensuring they are detected and injected into the ServerRequest properly.
  • v2.0.2 Changes

    December 20, 2018

    โž• Added

    • Nothing.

    ๐Ÿ”„ Changed

    • Nothing.

    ๐Ÿ—„ Deprecated

    • Nothing.

    โœ‚ Removed

    • Nothing.

    ๐Ÿ›  Fixed

  • v2.0.1 Changes

    December 03, 2018

    โž• Added

    • Nothing.

    ๐Ÿ”„ Changed

    • Nothing.

    ๐Ÿ—„ Deprecated

    • Nothing.

    โœ‚ Removed

    • Nothing.

    ๐Ÿ›  Fixed

    • zendframework/zend-diactoros#337 ensures that the ServerRequestFactory::createServerRequest() method creates a php://temp stream instead of a php::input stream, in compliance with the PSR-17 specification.
  • v2.0.0 Changes

    September 27, 2018

    โž• Added

    • zendframework/zend-diactoros#326 adds PSR-17 HTTP Message Factory implementations, including:

      • Laminas\Diactoros\RequestFactory
      • Laminas\Diactoros\ResponseFactory
      • Laminas\Diactoros\ServerRequestFactory
      • Laminas\Diactoros\StreamFactory
      • Laminas\Diactoros\UploadedFileFactory
      • Laminas\Diactoros\UriFactory

    These factories may be used to produce the associated instances; we encourage users to rely on the PSR-17 factory interfaces to allow exchanging PSR-7 implementations within their applications.

    • ๐Ÿ“ฆ zendframework/zend-diactoros#328 adds a package-level exception interface, Laminas\Diactoros\Exception\ExceptionInterface, and several implementations for specific exceptions raised within the package. These include:

      • Laminas\Diactoros\Exception\DeserializationException (extends UnexpectedValueException)
      • Laminas\Diactoros\Exception\InvalidArgumentException (extends InvalidArgumentException)
      • Laminas\Diactoros\Exception\InvalidStreamPointerPositionException (extends RuntimeException)
      • Laminas\Diactoros\Exception\SerializationException (extends UnexpectedValueException)
      • Laminas\Diactoros\Exception\UnreadableStreamException (extends RuntimeException)
      • Laminas\Diactoros\Exception\UnrecognizedProtocolVersionException (extends UnexpectedValueException)
      • Laminas\Diactoros\Exception\UnrewindableStreamException (extends RuntimeException)
      • Laminas\Diactoros\Exception\UnseekableStreamException (extends RuntimeException)
      • Laminas\Diactoros\Exception\UntellableStreamException (extends RuntimeException)
      • Laminas\Diactoros\Exception\UnwritableStreamException (extends RuntimeException)
      • Laminas\Diactoros\Exception\UploadedFileAlreadyMovedException (extends RuntimeException)
      • Laminas\Diactoros\Exception\UploadedFileErrorException (extends RuntimeException)

    ๐Ÿ”„ Changed

    • zendframework/zend-diactoros#329 adds return type hints and scalar parameter type hints wherever possible. The changes were done to help improve code quality, in part by reducing manual type checking. If you are extending any classes, you may need to update your signatures; check the signatures of the class(es) you are extending for changes.

    • zendframework/zend-diactoros#162 modifies Serializer\Request such that it now no longer raises an UnexpectedValueException via its toString() method when an unexpected HTTP method is encountered; this can be done safely, as the value can never be invalid due to other changes in the same patch.

    • zendframework/zend-diactoros#162 modifies RequestTrait such that it now invalidates non-string method arguments to either the constructor or withMethod(), raising an InvalidArgumentException for any that do not validate.

    ๐Ÿ—„ Deprecated

    • Nothing.

    โœ‚ Removed

    • ๐Ÿšš zendframework/zend-diactoros#308 removes the following methods from the ServerRequestFactory class:

      • normalizeServer() (use Laminas\Diactoros\normalizeServer() instead)
      • marshalHeaders() (use Laminas\Diactoros\marshalHeadersFromSapi() instead)
      • marshalUriFromServer() (use Laminas\Diactoros\marshalUriFromSapi() instead)
      • marshalRequestUri() (use Uri::getPath() from the Uri instance returned by marshalUriFromSapi() instead)
      • marshalHostAndPortFromHeaders() (use Uri::getHost() and Uri::getPort() from the Uri instances returned by marshalUriFromSapi() instead)
      • stripQueryString() (use explode("?", $path, 2)[0] instead)
      • normalizeFiles() (use Laminas\Diactoros\normalizeUploadedFiles() instead)
    • ๐Ÿšš zendframework/zend-diactoros#295 removes Laminas\Diactoros\Server. You can use the RequestHandlerRunner class from laminas/laminas-httphandlerrunner to provide these capabilities instead.

    • ๐Ÿšš zendframework/zend-diactoros#295 removes Laminas\Diactoros\Response\EmitterInterface and the various emitter implementations. These can now be found in the package laminas/laminas-httphandlerrunner, which also provides a PSR-7-implementation agnostic way of using them.

    ๐Ÿ›  Fixed

    • Nothing.
  • v1.8.7 Changes

    August 06, 2019

    โž• Added

    • Nothing.

    ๐Ÿ”„ Changed

    • Nothing.

    ๐Ÿ—„ Deprecated

    • Nothing.

    โœ‚ Removed

    • Nothing.

    ๐Ÿ›  Fixed

    • zendframework/zend-diactoros#364 modifies detection of HTTPS schemas via the $_SERVER['HTTPS'] value such that an empty HTTPS-key will result in a scheme of http and not https.
  • v1.8.6 Changes

    September 05, 2018

    โž• Added

    • Nothing.

    ๐Ÿ”„ Changed

    • ๐Ÿ“œ zendframework/zend-diactoros#325 changes the behavior of ServerRequest::withParsedBody(). Per
    • PSR-7, it now no longer allows values other than null, arrays, or objects.

    • zendframework/zend-diactoros#325 changes the behavior of each of Request, ServerRequest, and Response in relation to the validation of header values. Previously, we allowed empty arrays to be provided via withHeader(); however, this was contrary to the PSR-7 specification. Empty arrays are no longer allowed.

    ๐Ÿ—„ Deprecated

    • Nothing.

    โœ‚ Removed

    • Nothing.

    ๐Ÿ›  Fixed