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

Commit

Permalink
Adds CHANGELOG entry for #51
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Dec 7, 2017
1 parent 9a610f9 commit 9389b27
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,50 @@

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

## 5.0.0alpha1 - TBD

### Added

- [#50](https://github.com/zendframework/zend-expressive-helpers/pull/50)
adds support for http-interop/http-server-middleware.

### Changed

- [#51](https://github.com/zendframework/zend-expressive-helpers/pull/51)
changes a number of signatures to provide scalar type hints, return type hints,
and nullable types. Signatures with changes include:

- `Zend\Expressive\Helper\BodyParams\StrategyInterface`:
- The `match()` signature changes to `match(string $contentType) : bool`
- The `parse()` signature changes to `parse(ServerRequestInterface $request) : ServerRequestInterface`
- `Zend\Expressive\Helper\ServerUrlHelper` updates its public API to read as follows:
- `__invoke(string $path = null) : string`
- `generate(string $path = null) : string`
- `setUri(UriInterface $uri) : void`
- `Zend\Expressive\Helper\UrlHelper` updates its public API to read as follows:
- `__invoke(?string $routeName = null, array $routeParams = [], array $queryParams = [], ?string $fragmentIdentifier = null, array $options = []) : string`
- `generate(?string $routeName = null, array $routeParams = [], array $queryParams = [], ?string $fragmentIdentifier = null, array $options = []) : string`
- `setRouteResult(RouteResult $result) : void`
- `setBasePath(string $path) : void`
- `getRouteResult() : ?RouteResult`
- `getBasePath() : string`

### Deprecated

- Nothing.

### Removed

- [#50](https://github.com/zendframework/zend-expressive-helpers/pull/50)
removes support for PHP versions 5.6 and 7.0.

- [#50](https://github.com/zendframework/zend-expressive-helpers/pull/50)
removes support for http-interop/http-middleware of all versions.

### Fixed

- Nothing.

## 4.3.0 - TBD

### Added
Expand Down

0 comments on commit 9389b27

Please sign in to comment.