fix(deps): pin ash_authentication below 4.14 to unblock OIDC build
This commit is contained in:
parent
08bae3ce55
commit
0511836895
2 changed files with 6 additions and 2 deletions
6
mix.exs
6
mix.exs
|
|
@ -45,7 +45,11 @@ defmodule Mv.MixProject do
|
|||
{:ash_phoenix, "~> 2.0"},
|
||||
{:ash, "~> 3.0"},
|
||||
{:bcrypt_elixir, "~> 3.0"},
|
||||
{:ash_authentication, "~> 4.9"},
|
||||
# Pinned below 4.14 until the identity_resource / UserIdentity migration lands.
|
||||
# 4.14 makes an `identity_resource` mandatory for OIDC strategies; our custom
|
||||
# `oidc_id` design already resolves users by the `sub` claim (never by email),
|
||||
# so there is no live security gap. Unpin once UserIdentity + data migration exist.
|
||||
{:ash_authentication, "~> 4.13.0"},
|
||||
{:ash_authentication_phoenix, "~> 2.10"},
|
||||
{:igniter, "~> 0.8", only: [:dev, :test]},
|
||||
{:phoenix, "~> 1.8.0-rc.4", override: true},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue