beacon_live_admin's mix.exs specifies {:gettext, "~> 0.26"}, which prevents installation in Phoenix 1.8 projects that require {:gettext, "~> 1.0"}.
The fix is trivial — the codebase already uses the gettext 1.0-compatible API everywhere (use Gettext.Backend and use Gettext, backend: ...).
The only change needed is in mix.exs:
- {:gettext, "~> 0.26"},
+ {:gettext, "~> 0.26 or ~> 1.0"},
Closes BeaconCMS/beacon#859 (same issue in beacon)
beacon_live_admin's
mix.exsspecifies{:gettext, "~> 0.26"}, which prevents installation in Phoenix 1.8 projects that require{:gettext, "~> 1.0"}.The fix is trivial — the codebase already uses the gettext 1.0-compatible API everywhere (
use Gettext.Backendanduse Gettext, backend: ...).The only change needed is in
mix.exs:Closes BeaconCMS/beacon#859 (same issue in beacon)