Skip to content

Releases: ueberauth/guardian_db

v0.5.0

14 Apr 21:51
Compare
Choose a tag to compare
  • Updated to support Guardian 0.10
  • Make Postgrex optional
  • Support database schema configuration
  • Improve scope token lookup

v0.4.0

28 Dec 22:06
Compare
Choose a tag to compare
  • Update deps to use higher level of postgrex
  • Add the typ field

When migrating form 0.3.0 to 0.4.0 you'll need to run a migration to add the typ
field.

alter table(:guardian_tokens) do
  add :typ, :string
end

v0.3.0

18 Dec 23:44
Compare
Choose a tag to compare

Update the schema to use a map for claims.

To update you'll need to change your schema.

mix ecto.gen.migration update_guardian_db_tokens

alter table(:guardian_tokens) do
  remove :claims
  add :claims, :map
end