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

Commit 523d4b0

Browse files
committed
Added CHANGELOG for #128
1 parent 964292d commit 523d4b0

File tree

1 file changed

+38
-3
lines changed

1 file changed

+38
-3
lines changed

CHANGELOG.md

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,27 @@ for full details on how to migrate your v2 application.
9595
functionality from the `ViewHelperManager` factory for fetching configuration
9696
classes from other components and using them to configure the instance. In all
9797
cases, this is now done by the components themselves.
98+
- [#128](https://github.com/zendframework/zend-mvc/pull/128) removes the
99+
`ControllerLoaderFactory`, and the `ControllerLoader` service alias; use
100+
`ControllerManagerFactory` and `ControllerManager`, respectively, instead.
101+
- [#128](https://github.com/zendframework/zend-mvc/pull/128) removes
102+
`Zend\Mvc\View\SendResponseListener`; use `Zend\Mvc\SendResponseListener`
103+
instead.
104+
- [#128](https://github.com/zendframework/zend-mvc/pull/128) removes
105+
`Application::send()`, which has been a no-op since 2.2.
106+
- [#128](https://github.com/zendframework/zend-mvc/pull/128) removes
107+
`DispatchListener::marshallControllerNotFoundEvent()`, which has proxied to
108+
`marshalControllerNotFoundEvent()` since 2.2.
109+
- [#128](https://github.com/zendframework/zend-mvc/pull/128) removes
110+
the `ServiceLocatorAwareInterface` implementation
111+
(`setServiceLocator()`/`getServiceLocator()` methods) from
112+
`AbstractController`. You will need to inject your dependencies specifically
113+
going forward.
114+
- [#128](https://github.com/zendframework/zend-mvc/pull/128) removes
115+
the `ServiceLocatorAwareInterface` initializers defined in
116+
`Zend\Mvc\Service\ServiceManagerConfig` and
117+
`Zend\Mvc\Controller\ControllerManager`. You will need to inject your
118+
dependencies specifically going forward.
98119

99120
### Fixed
100121

@@ -103,17 +124,31 @@ for full details on how to migrate your v2 application.
103124
requests optional. `json_decode()` is now used by default, falling back to
104125
`Zend\Json\Json::decode()` if it is available. If neither are available, an
105126
exception is now thrown.
106-
- [#115](https://github.com/zendframework/zend-mvc/pull/115) updates the
127+
- [#115](https://github.com/zendframework/zend-mvc/pull/115) and
128+
[#128](https://github.com/zendframework/zend-mvc/pull/128) update the
107129
dependency list, per https://github.com/zendframework/maintainers/wiki/zend-mvc-v3-refactor:-reduce-components#required-components,
108130
to do the following:
109131
- Makes the following components required:
132+
- zend-http
110133
- zend-modulemanager
134+
- zend-router
111135
- zend-view
112136
- Makes the following components optional:
113-
- zend-form
114-
- zend-hydrator
115137
- zend-json
116138
- zend-psr7bridge
139+
- And pares the suggestion list down to:
140+
- zend-mvc-console
141+
- zend-mvc-i18n
142+
- zend-mvc-plugin-fileprg
143+
- zend-mvc-plugin-flashmessenger
144+
- zend-mvc-plugin-identity
145+
- zend-mvc-plugin-prg
146+
- zend-servicemanager-di
147+
- [#128](https://github.com/zendframework/zend-mvc/pull/128) bumps the minimum
148+
supported version of zend-eventmanager, zend-servicemanager, and zend-stdlib
149+
to their v3 releases.
150+
- [#128](https://github.com/zendframework/zend-mvc/pull/128) bumps the minimum
151+
supported PHP version to 5.6.
117152

118153
## 2.7.7 - TBD
119154

0 commit comments

Comments
 (0)