Bump Elixir to 1.20.1 and OTP 28.5.0.1#6437
Open
zoldar wants to merge 38 commits into
Open
Conversation
f80405e to
3e6974b
Compare
9c2e7ad to
8ccd93f
Compare
|
cnkk
requested changes
Jun 15, 2026
cnkk
left a comment
Member
There was a problem hiding this comment.
While we're at it modifying the Dockerfile, let's pin the images as well.
IMO it's okay to give up ALPINE_VERSION.
I extracted the meta digest with docker buildx imagetools inspect alpine:3.22.4, so the Dockerfile should work on multi arch build automatically.
|
|
||
| #### Builder | ||
| FROM hexpm/elixir:1.19.4-erlang-27.3.4.6-alpine-${ALPINE_VERSION} AS buildcontainer | ||
| FROM hexpm/elixir:1.20.1-erlang-28.5.0.1-alpine-${ALPINE_VERSION} AS buildcontainer |
Member
There was a problem hiding this comment.
Suggested change
| FROM hexpm/elixir:1.20.1-erlang-28.5.0.1-alpine-${ALPINE_VERSION} AS buildcontainer | |
| FROM hexpm/elixir:1.20.1-erlang-28.5.0.1-alpine-3.22.4@sha256:ba0f4e2b4cf931850708dfa3bff3c3f4b561fa010f554df9337eece9b71ee1f6 AS buildcontainer |
| # platform specific, it makes sense to build it in the docker | ||
|
|
||
| ARG ALPINE_VERSION=3.22.2 | ||
| ARG ALPINE_VERSION=3.22.4 |
Member
There was a problem hiding this comment.
Suggested change
| ARG ALPINE_VERSION=3.22.4 |
| RUN mix release plausible | ||
|
|
||
| # Main Docker Image | ||
| FROM alpine:${ALPINE_VERSION} |
Member
There was a problem hiding this comment.
Suggested change
| FROM alpine:3.22.4@sha256:310c62b5e7ca5b08167e4384c68db0fd2905dd9c7493756d356e893909057601 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
This PR updates Elixir to 1.20.1 and OTP to latest stable 28 (28.5.0.1).
Some minor patch updates of dependencies were done in the process.
The most prominent change is removal of
Bamboo.SMTPAdapterwhich is no longer maintained and fails to compile under Elixir 1.20+.A
.dialyzer_ignore.exsfile was introduced ignoring certain errors which either cannot be easily resolved (the ones related to theopaquetype) or seem downright bogus (the one inmodalappeared out of the blue late in the conversion process).Some credo rules got relaxed as they were too stringent.
Changelog