This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
20e9b26
commit 7d7b0ac
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file, in reverse chronological order by release. | ||
|
||
## 3.0.0 - 2016-03-21 | ||
|
||
First release as standalone package in its own namespace. This is the first | ||
version that will be used with zend-mvc v3; see its [migration document](https://zendframework.github.io/zend-router/migration/v2-to-v3/) | ||
for details on how to update existing routing to this version. | ||
|
||
In particular, the `Zend\Mvc\Router` namespace was renamed to `Zend\Router`. | ||
|
||
### Added | ||
|
||
- [#2](https://github.com/zendframework/zend-router/pull/2) adds | ||
`ConfigProvider`, which is an invokable class that returns dependency | ||
configuration for the component; in particular, this will be useful for | ||
zend-expressive-zendrouter. | ||
- [#2](https://github.com/zendframework/zend-router/pull/2) adds the `Module` | ||
class, for use with zend-mvc + zend-modulemanager. It provides dependency | ||
configuration for the component when used in that context. | ||
- [#2](https://github.com/zendframework/zend-router/pull/2) adds | ||
zend-component-installer configuration for the above `ConfigProvider` and | ||
`Module`, to allow auto-registration with the application. | ||
- [#2](https://github.com/zendframework/zend-router/pull/2) adds the following | ||
factories: | ||
- `Zend\Router\RouteInvokableFactory`, which provides a custom "invokable" | ||
factory for routes that uses the route class' `factory()` method for | ||
instantiation. | ||
- `Zend\Router\RoutePluginManagerFactory`, for creating a `RoutePluginManager` | ||
instance. | ||
- `Zend\Router\Http\HttpRouterFactory`, for returning a `TreeRouteStack` | ||
instance. | ||
- `Zend\Router\RouterFactory`, which essentially proxies to | ||
`Zend\Router\Http\HttpRouterFactory`. | ||
|
||
|
||
### Deprecated | ||
|
||
- Nothing. | ||
|
||
### Removed | ||
|
||
- [#2](https://github.com/zendframework/zend-router/pull/2) removes all | ||
console-related routing. These will be part of a new component, | ||
zend-mvc-console. | ||
- [#2](https://github.com/zendframework/zend-router/pull/2) removes the `Query` | ||
route, as it had been deprecated starting with version 2.3. | ||
|
||
### Fixed | ||
|
||
- Nothing. |