-
Notifications
You must be signed in to change notification settings - Fork 373
Upgrade React on Rails and ShakaPacker to RC builds #710
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,8 +5,8 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
|
|
||
| ruby "3.4.6" | ||
|
|
||
| gem "react_on_rails", "16.4.0" | ||
| gem "shakapacker", "9.7.0" | ||
| gem "react_on_rails", "16.6.0.rc.0" | ||
| gem "shakapacker", "10.0.0.rc.0" | ||
|
Comment on lines
+8
to
+9
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.
The PR description's own build output shows a hard error that prevents the app from functioning: The 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. Major version bump (9 → 10). Shakapacker 10.x may include breaking changes beyond just the version pin. The PR includes no code changes to configuration files (e.g. |
||
|
|
||
| # Bundle edge Rails instead: gem "rails", github: "rails/rails" | ||
| gem "rails", "~> 8.1.2" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -80,7 +80,7 @@ | |
| "react": "^19.0.0", | ||
| "react-dom": "^19.0.0", | ||
| "react-intl": "^6.4.4", | ||
| "react-on-rails": "16.4.0", | ||
| "react-on-rails": "16.6.0-rc.0", | ||
|
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. The |
||
| "react-redux": "^8.1.0", | ||
| "react-router": "^6.13.0", | ||
| "react-router-dom": "^6.13.0", | ||
|
|
@@ -95,7 +95,7 @@ | |
| "sass": "^1.58.3", | ||
| "sass-loader": "^13.3.2", | ||
| "sass-resources-loader": "^2.2.5", | ||
| "shakapacker": "9.7.0", | ||
| "shakapacker": "10.0.0-rc.0", | ||
| "stimulus": "^3.0.1", | ||
| "style-loader": "^3.3.1", | ||
| "swc-loader": "^0.2.6", | ||
|
|
||
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.
Pinning to an RC version on the main branch is risky if this gem is used as a dependency reference by downstream projects. Consider whether this should live on a dedicated
rc-testingbranch until both gems reach stable release, or at minimum add a comment explaining the temporary nature of this pin.