Bump Tailwind CLI in phx.new templates to 4.3.3 - #6845
Merged
SteffenDE merged 1 commit intoSep 17, 2026
Merged
Conversation
Newly generated projects pin the Tailwind CLI to 4.3.0. That release's macOS arm64 binary fails code signature validation and is killed on macOS 27, so `mix phx.server` never builds priv/static/assets/css/app.css and the generated app renders unstyled. The upstream fix shipped in 4.3.1, and 4.3.3 is the current release.
Member
|
Thank you! |
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.
Newly generated projects pin the Tailwind CLI to 4.3.0:
On macOS 27 the 4.3.0 arm64 binary is killed on launch because it fails code signature validation.
mix phx.serverthen never buildspriv/static/assets/css/app.css, so the generated app renders unstyled.Upstream fixed this in 4.3.1, and 4.3.3 is the current release, so bump the two template pins:
installer/templates/phx_single/config/config.exs.eexinstaller/templates/phx_umbrella/apps/app_name_web/config/config.exs.eexThese were the only two tracked files still pinning 4.3.0; the remaining
4.3.0strings arephoenix_htmlin the lock fixtures.mix testininstaller/andnpm testinassets/pass.Closes #6843