|
2 | 2 |
|
3 | 3 | All notable changes to this project will be documented in this file, in reverse chronological order by release. |
4 | 4 |
|
5 | | -## 1.0.0 - TBD |
| 5 | +## 1.0.1 - 2015-05-26 |
| 6 | + |
| 7 | +### Added |
| 8 | + |
| 9 | +- [#10](https://github.com/zendframework/zend-diactoros/pull/10) adds |
| 10 | + `Zend\Diactoros\RelativeStream`, which will return stream contents relative to |
| 11 | + a given offset (i.e., a subset of the stream). `AbstractSerializer` was |
| 12 | + updated to create a `RelativeStream` when creating the body of a message, |
| 13 | + which will prevent duplication of the stream in-memory. |
| 14 | +- [#21](https://github.com/zendframework/zend-diactoros/pull/21) adds a |
| 15 | + `.gitattributes` file that excludes directories and files not needed for |
| 16 | + production; this will further minify the package for production use cases. |
| 17 | + |
| 18 | +### Deprecated |
| 19 | + |
| 20 | +- Nothing. |
| 21 | + |
| 22 | +### Removed |
| 23 | + |
| 24 | +- Nothing. |
| 25 | + |
| 26 | +### Fixed |
| 27 | + |
| 28 | +- [#9](https://github.com/zendframework/zend-diactoros/pull/9) ensures that |
| 29 | + attributes are initialized to an empty array, ensuring that attempts to |
| 30 | + retrieve single attributes when none are defined will not produce errors. |
| 31 | +- [#14](https://github.com/zendframework/zend-diactoros/pull/14) updates |
| 32 | + `Zend\Diactoros\Request` to use a `php://temp` stream by default instead of |
| 33 | + `php://memory`, to ensure requests do not create an out-of-memory condition. |
| 34 | +- [#15](https://github.com/zendframework/zend-diactoros/pull/15) updates |
| 35 | + `Zend\Diactoros\Stream` to ensure that write operations trigger an exception |
| 36 | + if the stream is not writeable. Additionally, it adds more robust logic for |
| 37 | + determining if a stream is writeable. |
| 38 | + |
| 39 | +## 1.0.0 - 2015-05-21 |
6 | 40 |
|
7 | 41 | First stable release, and first release as `zend-diactoros`. |
8 | 42 |
|
|
0 commit comments