From 70e32ce9bf8d400a72745fd11fe21ee9cfcb4391 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Sun, 17 Apr 2016 12:23:38 +0100 Subject: [PATCH] Updated changelog --- CHANGELOG.md | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 153e0f78..2386cf4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,42 @@ # Changelog -## 5.0.0-RC2 (released 2016-04-XX) +## 5.0.0 (release 2016-04-17) + +Version 5 is a complete code rewrite. + +* JWT support +* PSR-7 support +* Improved exception errors +* Replace all occurrences of the term "Storage" with "Repository" +* Simplify repositories +* Entities conform to interfaces and use traits +* Auth code grant updated + * Allow support for public clients + * Add support for #439 +* Client credentials grant updated +* Password grant updated + * Allow support for public clients +* Refresh token grant updated +* Implement Implicit grant +* Bearer token output type +* Remove MAC token output type +* Authorization server rewrite +* Resource server class moved to PSR-7 middleware +* Tests +* Much much better documentation + +Changes since RC2: + +* Run unit tests again PHP 5.5.9 as it's the minimum supported version +* Enable PHPUnit 5.0 support +* Improved examples and documentation +* Make it clearer that the implicit grant doesn't support refresh tokens +* Improved refresh token validation errors +* Fixed refresh token expiry date + +## 5.0.0-RC2 (released 2016-04-10) + +Changes since RC1: * Allow multiple client redirect URIs (Issue #511) * Remove unused mac token interface (Issue #503)