Skip to content

Commit

Permalink
Merge pull request #73 from danschultzer/application-inets
Browse files Browse the repository at this point in the history
Include :inets and :ssl in application list
  • Loading branch information
danschultzer committed Jun 4, 2019
2 parents 71eb7dd + 9f3cdda commit e8e4883
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
* `MyApp.UserIdentities.pow_assent_create/2` in favor of `MyApp.UserIdentities.upsert/2`
* `PowAssent.Operations.create/3` in favor of `PowAssent.Operations.upsert/3`
* `PowAssent.Plug.create_identity/2` in favor of `PowAssent.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 in `PowAssent.Ecto.UserIdentities.Context`. Strategies are no longer expected to convert the `uid` value to binary. The following methods will accepts integer `uid`:
* `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
* Use `Pow.Plug.get_plug/1` instead of pulling `:mod` from the config
* Fixed bug where releases with Elixir 1.9.0 didn't have `:httpc` available

## v0.3.0 (2019-05-19)

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ defmodule PowAssent.MixProject do

def application do
[
extra_applications: [:logger]
extra_applications: [:logger, :ssl, :inets]
]
end

Expand Down

0 comments on commit e8e4883

Please sign in to comment.