From 05efbf72f9a65b9c951f318d2f12817c62fe8a9e Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Thu, 16 Jul 2015 10:36:40 -0500 Subject: [PATCH] Adding changelog notes for 1.0.0-beta1 [ci skip] --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d02e5546..9dc3977c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # OAuth 2.0 Client Changelog +## 1.0.0-beta1 + +_Released: 2015-07-16_ + +* API for 1.0 is now frozen! +* BREAK: Convert all uses of "User" to "ResourceOwner" to more closely match the OAuth 2.0 specification. +* BREAK: Rename `StandardProvider` to `GenericProvider`. +* BREAK: Move access token creation to the `AbstractProvider`. It was previously handled in the `AbstractGrant`. +* FIX: Add `Content-Type` header with value of `application/x-www-form-urlencoded` to the request header when retrieving access tokens. This adheres to the OAuth 2.0 specification and fixes issues where certain OAuth servers expect this header. +* Enhanced `json_encode()` serialization of AccessToken; when using `json_encode()` on an AccessToken, it will return a JSON object with these properties: `access_token`, `refresh_token`, and `expires_in`. + ## 1.0.0-alpha2 _Released: 2015-07-04_