All Versions
8
Latest Version
Avg Release Cycle
-
Latest Release
-

Changelog History

  • v2.0.2 Changes

    • ๐Ÿ›  Fix deps range to include Guardian 2
  • v0.8.0 Changes

    • ๐Ÿ”ง Sweeper configuration now works in minutes
    • โšก๏ธ Update dependencies
    • ๐Ÿ›  Fix 1.4 warnings
    • ๐Ÿ”ง Raise error when configuration is missing
  • v0.7.0 Changes

    • โž• Add a schema prefix
    • โž• Add an expired token sweeper process
  • v0.6.0 Changes

    ๐Ÿ’ฅ Breaking

    • โž• Add support for ecto 2 rc
  • v0.5.0 Changes

    • โšก๏ธ Updated to support Guardian 0.10
    • ๐Ÿ‘‰ Make Postgrex optional
    • ๐Ÿ‘Œ Support database schema configuration
    • ๐Ÿ‘Œ Improve scope token lookup
  • v0.4.0 Changes

    • โšก๏ธ 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 Changes

    โšก๏ธ 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
    
  • v0.1.0 Changes

    ๐ŸŽ‰ Initial release