-
Notifications
You must be signed in to change notification settings - Fork 372
Bump the all-dependencies group with 34 updates #797
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
base: master
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ ruby "3.4.6" | |
|
|
||
| gem "cpflow", "5.2.0", require: false | ||
| gem "react_on_rails_pro", "17.0.0" | ||
| gem "shakapacker", "10.2.0" | ||
| gem "shakapacker", "10.3.0" | ||
|
|
||
| # Bundle edge Rails instead: gem "rails", github: "rails/rails" | ||
| gem "rails", "~> 8.1.2" | ||
|
|
@@ -32,7 +32,7 @@ gem "coffee-rails" | |
|
|
||
| # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
| gem "jbuilder" | ||
| gem "redis", "~> 5.0" | ||
| gem "redis", "~> 5.4" | ||
|
|
||
| # bundle exec rake doc:rails generates the API under doc/api. | ||
| gem "sdoc", group: :doc | ||
|
|
@@ -71,10 +71,10 @@ group :development, :test do | |
|
|
||
| ################################################################################ | ||
| # Linters and Security | ||
| gem "rubocop", "1.69", require: false | ||
| gem "rubocop-performance", "1.23.1", require: false | ||
| gem "rubocop-rails", "2.29.1", require: false | ||
| gem "rubocop-rspec", "3.4.0", require: false | ||
| gem "rubocop", "1.88.2", require: false | ||
| gem "rubocop-performance", "1.26.1", require: false | ||
| gem "rubocop-rails", "2.36.0", require: false | ||
| gem "rubocop-rspec", "3.10.2", require: false | ||
| # Critical that require: false be set! https://github.com/brigade/scss-lint/issues/278 | ||
| gem "scss_lint", require: false | ||
|
|
||
|
|
@@ -97,12 +97,12 @@ end | |
| group :test do | ||
| gem "capybara" | ||
| gem "capybara-screenshot" | ||
| gem "coveralls_reborn", "~> 0.25.0", require: false | ||
| gem "coveralls_reborn", "~> 1.0.0", require: false | ||
| gem "database_cleaner" | ||
| gem "generator_spec" | ||
| gem "launchy" | ||
| gem "rails_best_practices" | ||
| gem "rspec-rails", "~> 6.0.0" | ||
| gem "rspec-rails", "~> 8.0.4" | ||
|
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.
With Useful? React with 👍 / 👎. |
||
| gem "selenium-webdriver", "~> 4" | ||
| end | ||
|
|
||
|
|
||
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.
This changes only the Ruby gem, but
package.jsonstill pins the JS package atshakapacker10.2.0 and the webpack configs load that package viarequire('shakapacker')(for exampleconfig/webpack/commonWebpackConfig.js:6). Anybin/shakapackeror dev-server build afteryarn installwill therefore run Ruby Shakapacker 10.3 with JS Shakapacker 10.2, an unsupported mismatch that can cause build failures or skip the JS-side fixes from 10.3. Please updatepackage.jsonandyarn.lockin the same change.Useful? React with 👍 / 👎.