fix(deps): pin ash_authentication below 4.14 to unblock OIDC build
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is passing

This commit is contained in:
Simon 2026-07-11 14:29:32 +02:00
parent 08bae3ce55
commit 0511836895
2 changed files with 6 additions and 2 deletions

View file

@ -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},