-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Bump Elixir to 1.20.1 and OTP 28.5.0.1 #6437
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
Open
zoldar
wants to merge
38
commits into
master
Choose a base branch
from
bump-elixir-1-20
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
65d8262
Bump elixir version in asdf config
zoldar 2f532cb
Remove unused module requires
zoldar a80db02
Avoid generating function body inside `defprotocol`
zoldar 990e251
unused require fixup
zoldar fce1122
Don't branch on always-true expression
zoldar df8e4bf
Fix usages of :erlang.phash2 dialyzer trick
zoldar 474d14a
Don't check for expression which is always true
zoldar 2c06bed
Fix faulty `repo.config` -> `repo.config()`
zoldar d4ecdff
Avoid using `Phoenix.Component` twice
zoldar 8008f97
Bump ExMoney
zoldar 4d844d7
Add `logger_backends` dependency
zoldar 4f9f5c6
Use `LoggerBackends.add` instead of `Logger.add_backend`
zoldar 9f066c4
Remove test assertions already caught by type checker
zoldar a0ee179
Don't pattern match on regex
zoldar 63ffc91
Avoid passing literal for subscription in `Status.in?` test calls
zoldar 87ba827
Fix a type issue in `Audit.Encoder` reported by dialyzer
zoldar 5351893
Fix `phash2` workaround in `Plausible`
zoldar 8ef2f55
Bump OTP to 29.0.1 in asdf config
zoldar f454560
Bump patch versions of `x509` and `credo` dependencies
zoldar c897b56
Remove `Bamboo.SMTPAdapter` as it's no longer maintained and broken o…
zoldar 0d0a824
Make user agent test string larger to trigger ua timeout telemetry event
zoldar 2390849
Fix regex comparison as internal reference is changing now
zoldar f87dcc4
Add FIXME comments for surfaced cache bugs
zoldar 1a0561e
Downgrade OTP to more proven 28.5.0.1
zoldar cae0bfc
Use exported regex pattern for stored regex to avoid cache issues
zoldar 443ce40
Bump elixir in asdf to 1.20.1
zoldar 024ec0f
Add dialyzer-ignore file to suppress Ecto.Multi opaque errors
zoldar 717a3cb
Update builder image in Dockerfile
zoldar 6971ff3
Bust CI cache
zoldar db0d5fd
Fix type errors in CE
zoldar 36d9d6f
Make user agent test string even longer to increase chances of timeout
zoldar 65c0edc
Address credo issues in touched files
zoldar ac26f1b
Fix another dialyzer regression
zoldar a17c6ea
Increase credo's max nesting threshold from 2 to 3 because this is bs
zoldar 6effbe2
Allow operators in if condition assignment expressions in credo
zoldar 40b2ce7
Ignore a bogus dialyzer error
zoldar ef2c6ad
Re-add missing Logger require
zoldar 1736df0
Add changelog entry
zoldar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| [ | ||
| {"lib/plausible/goals/goals.ex", :call_without_opaque}, | ||
| {"lib/plausible/sites.ex", :call_without_opaque}, | ||
| {"lib/plausible/teams/invitations.ex", :call_without_opaque}, | ||
| {"lib/plausible_web/live/components/modal.ex", :pattern_match, 1} | ||
| ] |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| erlang 27.3.4.6 | ||
| elixir 1.19.4-otp-27 | ||
| erlang 28.5.0.1 | ||
| elixir 1.20.1-otp-28 | ||
| nodejs 23.2.0 |
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
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,10 +1,10 @@ | ||||||
| # we can not use the pre-built tar because the distribution is | ||||||
| # platform specific, it makes sense to build it in the docker | ||||||
|
|
||||||
| ARG ALPINE_VERSION=3.22.2 | ||||||
| ARG ALPINE_VERSION=3.22.4 | ||||||
|
|
||||||
| #### 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. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
|
||||||
| ARG MIX_ENV=ce | ||||||
|
|
||||||
|
|
||||||
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.