chore: release version v3.9.0

This commit is contained in:
github-actions 2023-02-09 18:16:17 +00:00
parent 69adcfa997
commit 3413ef8d6f
3 changed files with 29 additions and 2 deletions

View file

@ -5,6 +5,33 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v3.9.0](https://github.com/team-alembic/ash_authentication/compare/v3.8.0...v3.9.0) (2023-02-09)
### Features:
* Add new "magic link" authentication strategy. (#184)
### Bug Fixes:
* validate uniqueness of strategy names. (#185)
* resources can appear in multiple apis, so we need to uniq them here (#169)
* put_add_on/2 was putting into strategies
### Improvements:
* Strategy.Custom: handle custom strategies as extensions. (#183)
* improve error message for badly formed token secrets (#181)
* add metadata declarations to actions that have a `token` (#164)
* validate signing secret is a string (#163)
## [v3.8.0](https://github.com/team-alembic/ash_authentication/compare/v3.7.9...v3.8.0) (2023-02-09) ## [v3.8.0](https://github.com/team-alembic/ash_authentication/compare/v3.7.9...v3.8.0) (2023-02-09)

View file

@ -15,7 +15,7 @@ Bring in the `ash_authentication` dependency:
defp deps() defp deps()
[ [
# ... # ...
{:ash_authentication, "~> 3.8.0"} {:ash_authentication, "~> 3.9.0"}
] ]
end end
``` ```

View file

@ -2,7 +2,7 @@ defmodule AshAuthentication.MixProject do
@moduledoc false @moduledoc false
use Mix.Project use Mix.Project
@version "3.8.0" @version "3.9.0"
def project do def project do
[ [