Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
2.0.6 readiness
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Dec 11, 2017
2 parents ccb94de + f5b6a84 commit 0fd9218
Showing 1 changed file with 27 additions and 7 deletions.
34 changes: 27 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 2.0.6 - 2017-12-11

### Added

- Nothing.

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- [#534](https://github.com/zendframework/zend-expressive/pull/534) provides a
fix for how it detects `callable` middleware. Previously, it relied on PHP's
`is_callable()`, but that function can result in false positives when provided
a 2-element array where the first element is an object, as the function does
not verify that the second argument is a valid method of the first. We now
implement additional verifications to prevent such false positives.

## 2.0.5 - 2017-10-09

### Added
Expand Down Expand Up @@ -30,13 +57,6 @@ All notable changes to this project will be documented in this file, in reverse
requires it. This addition fixes problems due to missing http-middleware
interfaces.

- [#534](https://github.com/zendframework/zend-expressive/pull/534) provides a
fix for how it detects `callable` middleware. Previously, it relied on PHP's
`is_callable()`, but that function can result in false positives when provided
a 2-element array where the first element is an object, as the function does
not verify that the second argument is a valid method of the first. We now
implement additional verifications to prevent such false positives.

## 2.0.4 - 2017-10-09

### Added
Expand Down

0 comments on commit 0fd9218

Please sign in to comment.