From 9f3cddae7aa55e3dfeadaa29992641aeb78278f7 Mon Sep 17 00:00:00 2001 From: Dan Schultzer Date: Sat, 25 May 2019 18:47:54 -0700 Subject: [PATCH] Include :inets and :ssl in application list --- CHANGELOG.md | 3 ++- mix.exs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1cac3b..4bb569d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/mix.exs b/mix.exs index 6410db9..89bf1cc 100644 --- a/mix.exs +++ b/mix.exs @@ -27,7 +27,7 @@ defmodule PowAssent.MixProject do def application do [ - extra_applications: [:logger] + extra_applications: [:logger, :ssl, :inets] ] end