All Versions
25
Latest Version
Avg Release Cycle
118 days
Latest Release
274 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.0.1 Changes
June 20, 2022๐ Bug fixes
- ๐ Fix incorrect Accept header when requesting token
-
v2.0.0 Changes
July 15, 2019๐ Bug fixes (possibly backwards incompatible)
- Ensure that the OAuth client is authenticated via Authorization header as described in the spec (#131).
-
v1.0.1 Changes
April 12, 2019๐ Bug fixes
- Always use the provided serializer if one is registered (#132)
-
v1.0.0 Changes
March 13, 2019Backward Incompatible Changes
- 0๏ธโฃ There is no longer a default serializer for
application/json
. Please make
sure to register a serializer withOAuth2.Client.put_serializer/3
. - Serializers are now registered via
OAuth2.Client.put_serializer/3
.
0๏ธโฃ This change allows applications wrappingoauth2
a way to provide default
๐ง serializers without requiring the user to manually configure a serializer.
- 0๏ธโฃ There is no longer a default serializer for
-
v0.9.4 Changes
October 18, 2018๐ Improvements
- ๐ Relaxed
hackney
version requirements
- ๐ Relaxed
-
v0.9.3 Changes
August 13, 2018๐ Bug fixes
- ๐ Various type specs fixed
-
v0.9.2 Changes
November 17, 2017๐ Bug fixes
- โก๏ธ Updates the
OAuth2.Client.get_token!
function to handle errorOAuth2.Response
structs.
- โก๏ธ Updates the
-
v0.9.1 Changes
March 10, 2017๐ Improvements
- ๐ Fix dialyzer warnings.
- โก๏ธ Update
hackney
to1.7
๐ Bug fixes
- De-dupe headers.
Diff: v0.9.0...v0.9.1
-
v0.9.0 Changes
February 02, 2017๐ Improvements
- โ Remove deprecated usage of
Behaviour
anddefcallback
- ๐ง Provides better support for configuring
request_opts
that will be used on
๐ง every request. This is useful for configuring SSL options, etc. - ๐ Provides support for
hackney
s streaming of responses. - ๐ Better warnings when a serializer isn't properly configured.
Backward Incompatible Changes
- Responses with status codes between
400..599
will now return{:error, %OAuth2.Response{}}
instead of{:ok, %OAuth2.Response{}}
- When using the
!
versions of functions,{:error, %OAuth2.Response{}}
will
be converted to an%OAuth2.Error{}
and raised.
Diff: v0.8.3...v0.9.0
- โ Remove deprecated usage of
-
v0.8.3 Changes
January 26, 2017- ๐ Fix compile-time warnings for Elixir 1.4
- ๐ Fix dialyzer warnings on
@type params
- ๐ Fix
content-type
resolving when there are multiple params - Return the same refresh token unless a new one is provided
- ๐ง Raise an exception when missing serializer configuration
Diff: v0.8.2...v0.8.3