Changelog History
Page 2
-
v0.4.3 Changes
November 20, 2019 -
v0.4.2 Changes
November 13, 2019๐ Changes
- โ Added support for POST callback from provider: #101
- Added
pow_assent_authorization_post_callback_routes/0
macro toPowAssent.Phoenix.Router
- Added
:skip_csrf_protection
pipeline example and scope withpow_assent_authorization_post_callback_routes/0
call to the docs - Use
Pow.Phoenix.Router
macros to dynamically filter duplicate routes
- Added
- โ Added support for POST callback from provider: #101
-
v0.4.1 Changes
October 08, 2019๐ Changes
- Use Assent
v0.1.2
and set:redirect_uri
in config for OAuth 2.0 callback phase #97
- Use Assent
-
v0.4.0 Changes
October 06, 2019This release consists of major breaking changes.
๐ง You'll have to change the
:strategy
setting in your provider configurations. For the most part it would just consists of renamingPowAssent.Strategy.STRATEGY
toAssent.Strategy.STRATEGY
.If you have custom built strategies, you should can use
Assent.Strategy.normalize_userinfo/2
to conform the userinfo response from the API.sub
is now expected instead ofuid
.๐ Changes
Ref: #95
๐ฆ Use
:assent
package for strategies. The following modules has been removed in favor ofAssent
modules:PowAssent.CallbackError
PowAssent.CallbackCSRFError
PowAssent.RequestError
PowAssent.ConfigurationError
PowAssent.HTTPAdapter
PowAssent.HTTPAdapter.Httpc
PowAssent.HTTPAdapter.Mint
PowAssent.Strategy.Auth0
PowAssent.Strategy.AzureOAuth2
PowAssent.Strategy.Basecamp
PowAssent.Strategy.Discord
PowAssent.Strategy.Facebook
PowAssent.Strategy.Github
PowAssent.Strategy.Gitlab
PowAssent.Strategy.Google
PowAssent.Strategy.Instagram
PowAssent.Strategy.OAuth
PowAssent.Strategy.OAuth.Base
PowAssent.Strategy.OAuth2
PowAssent.Strategy.OAuth2.Base
PowAssent.Strategy.Slack
PowAssent.Strategy.Twitter
PowAssent.Strategy.VK
-
PowAssent.Strategy
Callback params now conforms to OpenID Connect Core 1.0 Standard Claims spec. During the callback phase, the following param keys will be renamed:
sub
touid
-
preferred_username
tousername
The e-mail is no longer considered confirmed unless the callback params has an
email_verified
key set to true๐ง
PowAssent.Plug.authorize_url/3
generates a random nonce ifnonce: true
is set in the provider configuration๐ Support for OpenID Connect and Apple Sign In through Assent
-
v0.3.2 Changes
August 25, 2019๐ Changes
- ๐ All links in docs generated with
mix docs
and on hexdocs.pm now works (7d66e11) - ๐ Generated docs now uses lower case file name except for
README
andCHANGELOG
(7d66e11) - โ Added Auth0 strategy #81
- โ Added Gitlab strategy #83
- ๐ All links in docs generated with
-
v0.3.1 Changes
June 05, 2019- โ Added Pow minimum requirement
~> 1.0.9
- โ Added repo
:prefix
support - โก๏ธ User identities are now upserted on authorization so additional params can be updated on authorization request. Following methods has been deprecated:
PowAssent.Ecto.UserIdentities.Context.create/3
in favor ofPowAssent.Ecto.UserIdentities.Context.upsert/3
MyApp.UserIdentities.create/2
in favor ofMyApp.UserIdentities.upsert/2
MyApp.UserIdentities.pow_assent_create/2
in favor ofMyApp.UserIdentities.upsert/2
PowAssent.Operations.create/3
in favor ofPowAssent.Operations.upsert/3
PowAssent.Plug.create_identity/2
in favor ofPowAssent.Plug.upsert_identity/2
- ๐ Use
Pow.Plug.get_plug/1
instead of pulling:mod
from the config - ๐ Fixed so
uid
can be an integer value inPowAssent.Ecto.UserIdentities.Context
. Strategies are no longer expected to convert theuid
value to binary. The following methods will accepts integeruid
:PowAssent.Ecto.UserIdentities.Context.get_user_by_provider_uid/3
PowAssent.Ecto.UserIdentities.Context.upsert/3
PowAssent.Ecto.UserIdentities.Context.create_user/4
- ๐ Fixed bug where invited user was not signed in after succesful authorization
- ๐ Fixed bug where releases with Elixir 1.9.0 didn't have
:httpc
available
- โ Added Pow minimum requirement
-
v0.3.0 Changes
May 19, 2019- ๐ Added
PowAssent.Phoenix.ViewHelpers.authorization_link/2
andPowAssent.Phoenix.ViewHelpers.deauthorization_link/2
- โ Removed
PowAssent.Phoenix.ViewHelpers.provider_link/3
- โก๏ธ Rewritten plug methods and controller handling so they now pass through additional params such as access token. This makes it possible to e.g. capture access tokens. Now there is a clear distinction between user identity params and user params, and most methods now accepts or returns two separate params. Following methods updated:
MyApp.UserIdentities.create/3
changed toMyApp.UserIdentities.create/2
MyApp.UserIdentities.pow_assent_create/3
changed toMyApp.UserIdentities.pow_assent_create/2
PowAssent.Ecto.UserIdentities.Context.create/4
changed toPowAssent.Ecto.UserIdentities.Context.create/3
MyApp.UserIdentities.create_user/4
changed toMyApp.UserIdentities.create_user/3
MyApp.UserIdentities.pow_assent_create_user/4
changed toMyApp.UserIdentities.pow_assent_create_user/3
PowAssent.Ecto.UserIdentities.Context.create_user/5
changed toPowAssent.Ecto.UserIdentities.Context.create_user/4
PowAssent.Operations.create/4
changed toPowAssent.Operations.create/3
PowAssent.Operations.create_user/5
changed toPowAssent.Operations.create_user/4
PowAssent.Plug.callback/4
now returns a tuple with{:ok, user_identity_params, user_params, conn}
PowAssent.Plug.authenticate/3
changed toPowAssent.Plug.authenticate/2
PowAssent.Plug.create_identity/3
changed toPowAssent.Plug.create_identity/2
PowAssent.Plug.create_user/4
now acceptsuser_identity_params
instead ofprovider
as second argumentPowAssent.Plug.create_user/4
now expectsuser_identity_params
rather thanprovider
as second argument
- ๐ Added
-
v0.2.4 Changes
April 25, 2019- ๐ Fixed so OAuth 2.0 access token request params are in the POST body in accordance with RFC 6749
-
v0.2.3 Changes
April 09, 2019- โ Added
:authorization_params
config option toPowAssent.Strategy.OAuth
- ๐ Plug and Phoenix controller now handles
:session_params
rather than:state
for any params that needs to be stored temporarily during authorization - Added handling of
oauth_token_secret
to OAuth strategies - ๐ Support any
:plug
version below2.0.0
- ๐ Fixed bug in
mix pow_assent.ecto.gen.migration
task where--binary-id
flag didn't generate correct migration - ๐ Support
:pow
version1.0.5
- โ Added
-
v0.2.2 Changes
March 25, 2019- ๐ Fixed issue where user couldn't be created when PowEmailConfirmation was enabled