-
Notifications
You must be signed in to change notification settings - Fork 16
chore: upgrade Elixir, Erlang, Phoenix #2864
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
this use case is now handled in the runtime config anyway
| [:sasl | extra_apps] | ||
| else | ||
| extra_apps | ||
| [:wx, :observer | extra_apps] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, what are these for?
| end) | ||
|
|
||
| assigns = assign(assigns, links: links) | ||
| assigns = Phoenix.Controller.assign(assigns, links: links) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Non-blocking: Is this necessary?
| {Phoenix.PubSub, name: Dotcom.PubSub}, | ||
| Alerts.BusStopChangeSupervisor, | ||
| Alerts.CacheSupervisor | ||
| ] ++ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol
erlang 28.0 → 28.2
elixir 1.18.4 → 1.19.4
Phoenix 1.8.1 → 1.8.3
I was mostly curious if I could get a more cooperative local dev environment which didn't crash on recompilation so often. I'm not sure if I achieved that, but at least we can keep up with our incremental upgrades.
Some corrections/improvements made along the way:
check_originhost is already set in runtime.exs and thus I didn't need any of the other code around configuring that:allow_indexingconfiguration was written before we had aruntime.exs. Using the runtime configuration file to set that value lets me clean up a lot of code!# hack to pull the STATIC_SCHEME variable out of the environmentalso came beforeruntime.exs, and also doesn't do anything useful as currently written. So I hypothesize we don't need that anymore