Skip to content

Commit

Permalink
Added CHANGELOG for zendframework#88
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Mar 2, 2016
1 parent 0a531e2 commit b13d197
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

## 2.7.1 - TBD
## 2.7.1 - 2016-03-02

### Added

Expand All @@ -18,7 +18,25 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- Nothing.
- [#88](https://github.com/zendframework/zend-mvc/pull/88) addresses backwards
compatibility concerns raised by users due to the new deprecation notices
emitted by `ServiceLocatorAware` initializers; in particular, all
`AbstractController` implementations were raising a deprecation wen first
pulled from the `ControllerManager`.

At this time, notices are now only raised in the following conditions:

- When a non-controller, non-plugin manager, `ServiceLocatorAware` instance
is detected.
- When a plugin manager instance is detected that is `ServiceLocatorAware` and
does not have a composed service locator. In this situation, the deprecation
notice indicates that the factory for the plugin manager should be updated
to inject the service locator via the constructor.
- For controllers that do not extend `AbstractController` but do implement
`ServiceLocatorAware`.
- When calling `getServiceLocator()` from within an `AbstractController`
extension; this properly calls out the practice that should be avoided and
which requires updates to the controller.

## 2.7.0 - 2016-03-01

Expand Down

0 comments on commit b13d197

Please sign in to comment.