chore: upgrade toolchain to latest Elixir/Erlang/Rust#12
Merged
Conversation
Bump .tool-versions to Elixir 1.20.0 / OTP 29.0 / Rust 1.93.1 and update the CI test matrix to the three latest Elixir/OTP pairs. OTP 29 also resolves the ssl key_usage_mismatch regression (erlang/otp#9208, fixed by #9286) present in OTP 27.1.3-27.2, which broke precompiled-NIF downloads from the GitHub release CDN during `mix hex.publish`. Remove an unused `require Logger` newly flagged by Elixir 1.20's unused-require warning. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
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.
Summary
.tool-versionsto Elixir 1.20.0 / OTP 29.0 / Rust 1.93.1.matrix-testto the three latest Elixir/OTP pairs (1.20.0/29.0, 1.19.5/28.4, 1.18.4/27.3.4.4); drop EOL 1.16/1.17 & OTP 26.require Loggernewly flagged by Elixir 1.20's unused-require warning.Why
The
v0.7.0hex publish failed: the Publish job's precompiled-NIF download from the GitHub release CDN hit an OTP:sslkey_usage_mismatchfatal alert. This is the OTP 27.1.3–27.2 regression (erlang/otp#9208, fixed by #9286). The repo was pinned to OTP 27.2 — squarely in the broken window. Moving to OTP 29 resolves it.Test plan
mix compile --warnings-as-errorsclean on Elixir 1.20.0 / OTP 29.0mix test→ 142 passed, 1 skipped on Elixir 1.20.0 / OTP 29.0🤖 Generated with Claude Code