This repository was archived by the owner on Jan 29, 2020. It is now read-only.
Releases: zendframework/zend-diactoros
Releases · zendframework/zend-diactoros
Diactoros 1.0.1
Added
- #10 adds
Zend\Diactoros\RelativeStream, which will return stream contents relative to a given offset (i.e., a subset of the stream).AbstractSerializerwas updated to create aRelativeStreamwhen creating the body of a message, which will prevent duplication of the stream in-memory. - #21 adds a
.gitattributesfile that excludes directories and files not needed for production; this will further minify the package for production use cases.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #9 ensures that attributes are initialized to an empty array, ensuring that attempts to retrieve single attributes when none are defined will not produce errors.
- #14 updates
Zend\Diactoros\Requestto use aphp://tempstream by default instead ofphp://memory, to ensure requests do not create an out-of-memory condition. - #15 updates
Zend\Diactoros\Streamto ensure that write operations trigger an exception if the stream is not writeable. Additionally, it adds more robust logic for determining if a stream is writeable.