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

Commit 2fea552

Browse files
committed
Merge branch 'release-1.0.0' to master to prepare for 0.4.0 release.
2 parents afb295c + 190a125 commit 2fea552

27 files changed

+467
-259
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,39 @@
22

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

5+
## 0.4.0 - 2018-03-15
6+
7+
### Added
8+
9+
- [#15](https://github.com/zendframework/zend-expressive-authentication/pull/15)
10+
adds support for PSR-15.
11+
12+
### Changed
13+
14+
- Nothing.
15+
16+
### Deprecated
17+
18+
- Nothing.
19+
20+
### Removed
21+
22+
- [#15](https://github.com/zendframework/zend-expressive-authentication/pull/15) and
23+
[#3](https://github.com/zendframework/zend-expressive-authentication/pull/3)
24+
remove support for http-interop/http-middleware and
25+
http-interop/http-server-middleware.
26+
27+
- [#19](https://github.com/zendframework/zend-expressive-authentication/pull/19)
28+
removes `Zend\Expressive\Authentication\ResponsePrototypeTrait`; the approach
29+
was flawed, and the various adapters will be updated to compose response
30+
factories instead of instances.
31+
32+
### Fixed
33+
34+
- [#18](https://github.com/zendframework/zend-expressive-authentication/pull/18)
35+
uses the `ResponseInterface` as a factory. This was recently changed in
36+
[zend-expressive#561](https://github.com/zendframework/zend-expressive/pull/561).
37+
538
## 0.3.1 - 2018-03-12
639

740
### Added

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017, Zend Technologies USA, Inc.
1+
Copyright (c) 2017-2018, Zend Technologies USA, Inc.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

composer.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"http",
1010
"middleware",
1111
"zend-expressive",
12-
"psr-7"
12+
"psr-7",
13+
"psr-15"
1314
],
1415
"support": {
1516
"docs": "https://docs.zendframework.com/zend-expressive-authentication/",
@@ -21,12 +22,12 @@
2122
},
2223
"require": {
2324
"php": "^7.1",
24-
"http-interop/http-middleware": "^0.4.1",
2525
"psr/container": "^1.0",
26-
"psr/http-message": "^1.0.1"
26+
"psr/http-message": "^1.0.1",
27+
"psr/http-server-middleware": "^1.0"
2728
},
2829
"require-dev": {
29-
"phpunit/phpunit": "^6.3",
30+
"phpunit/phpunit": "^7.0.2",
3031
"roave/security-advisories": "dev-master",
3132
"zendframework/zend-coding-standard": "~1.0.0"
3233
},
@@ -54,8 +55,10 @@
5455
},
5556
"extra": {
5657
"branch-alias": {
57-
"dev-master": "0.2.x-dev",
58-
"dev-release-1.0.0": "1.0.x-dev"
58+
"dev-master": "0.4.x-dev"
59+
},
60+
"zf": {
61+
"config-provider": "Zend\\Expressive\\Authentication\\ConfigProvider"
5962
}
6063
},
6164
"scripts": {

0 commit comments

Comments
 (0)