Changes
- Added Pow minimum requirement
~> 1.0.9
#75 - Added repo
:prefix
support #75 - User identities are now upserted on authorization so additional params can be updated on authorization request. Following methods has been deprecated: #76
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 #74 - 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
: #77PowAssent.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 #70
- Fixed bug where releases with Elixir 1.9.0 didn't have :httpc available #73