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

Commit

Permalink
Merge branch 'release-1.0.0' to master to prepare for 0.4.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Mar 15, 2018
2 parents afb295c + 190a125 commit 2fea552
Show file tree
Hide file tree
Showing 27 changed files with 467 additions and 259 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@

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

## 0.4.0 - 2018-03-15

### Added

- [#15](https://github.com/zendframework/zend-expressive-authentication/pull/15)
adds support for PSR-15.

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- [#15](https://github.com/zendframework/zend-expressive-authentication/pull/15) and
[#3](https://github.com/zendframework/zend-expressive-authentication/pull/3)
remove support for http-interop/http-middleware and
http-interop/http-server-middleware.

- [#19](https://github.com/zendframework/zend-expressive-authentication/pull/19)
removes `Zend\Expressive\Authentication\ResponsePrototypeTrait`; the approach
was flawed, and the various adapters will be updated to compose response
factories instead of instances.

### Fixed

- [#18](https://github.com/zendframework/zend-expressive-authentication/pull/18)
uses the `ResponseInterface` as a factory. This was recently changed in
[zend-expressive#561](https://github.com/zendframework/zend-expressive/pull/561).

## 0.3.1 - 2018-03-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017, Zend Technologies USA, Inc.
Copyright (c) 2017-2018, Zend Technologies USA, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
15 changes: 9 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"http",
"middleware",
"zend-expressive",
"psr-7"
"psr-7",
"psr-15"
],
"support": {
"docs": "https://docs.zendframework.com/zend-expressive-authentication/",
Expand All @@ -21,12 +22,12 @@
},
"require": {
"php": "^7.1",
"http-interop/http-middleware": "^0.4.1",
"psr/container": "^1.0",
"psr/http-message": "^1.0.1"
"psr/http-message": "^1.0.1",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"phpunit/phpunit": "^7.0.2",
"roave/security-advisories": "dev-master",
"zendframework/zend-coding-standard": "~1.0.0"
},
Expand Down Expand Up @@ -54,8 +55,10 @@
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev",
"dev-release-1.0.0": "1.0.x-dev"
"dev-master": "0.4.x-dev"
},
"zf": {
"config-provider": "Zend\\Expressive\\Authentication\\ConfigProvider"
}
},
"scripts": {
Expand Down
Loading

0 comments on commit 2fea552

Please sign in to comment.