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

Commit

Permalink
Merge branch 'feature/implicit-head-options' into develop
Browse files Browse the repository at this point in the history
Close #413
Close #398
  • Loading branch information
weierophinney committed Dec 20, 2016
2 parents 48bea63 + f09e421 commit 6a5e710
Show file tree
Hide file tree
Showing 11 changed files with 1,012 additions and 113 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Expand Up @@ -67,6 +67,18 @@ All notable changes to this project will be documented in this file, in reverse
for identifying usage of the legacy Stratigility request and response
decorators and error middleware.

- [#413](https://github.com/zendframework/zend-expressive/pull/413) adds the
middleware `Zend\Expressive\Middleware\ImplicitHeadMiddleware`; this
middleware can be used to provide implicit support for `HEAD` requests when
the matched route does not explicitly support the method.

- [#413](https://github.com/zendframework/zend-expressive/pull/413) adds the
middleware `Zend\Expressive\Middleware\ImplicitOptionsMiddleware`; this
middleware can be used to provide implicit support for `OPTIONS` requests when
the matched route does not explicitly support the method; the returned 200
response will also include an `Allow` header listing allowed HTTP methods for
the URI.

### Changes

- [#396](https://github.com/zendframework/zend-expressive/pull/396) updates the
Expand All @@ -88,6 +100,9 @@ All notable changes to this project will be documented in this file, in reverse
raise any `Throwable` or `Exception` instances caught, instead of catching
them and dispatching them to (legacy) Stratigility error middleware.

- [#413](https://github.com/zendframework/zend-expressive/pull/413) updates the
zend-expressive-router minimum supported version to 1.3.2.

### Deprecated

- [#396](https://github.com/zendframework/zend-expressive/pull/396) deprecates
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Expand Up @@ -20,7 +20,7 @@
"container-interop/container-interop": "^1.1",
"psr/http-message": "^1.0",
"zendframework/zend-diactoros": "^1.1",
"zendframework/zend-expressive-router": "^1.1",
"zendframework/zend-expressive-router": "^1.3.2",
"zendframework/zend-expressive-template": "^1.0.1",
"zendframework/zend-stratigility": "^1.3.1",
"fig/http-message-util": "^1.1"
Expand All @@ -31,9 +31,9 @@
"mockery/mockery": "^0.9.5",
"phpunit/phpunit": "^5.0",
"zendframework/zend-coding-standard": "~1.0.0",
"zendframework/zend-expressive-aurarouter": "^1.0",
"zendframework/zend-expressive-fastroute": "^1.0",
"zendframework/zend-expressive-zendrouter": "^1.0",
"zendframework/zend-expressive-aurarouter": "^1.1.3",
"zendframework/zend-expressive-fastroute": "^1.3",
"zendframework/zend-expressive-zendrouter": "^1.3",
"zendframework/zend-servicemanager": "^2.6 || ^3.1.1"
},
"autoload": {
Expand Down

0 comments on commit 6a5e710

Please sign in to comment.