-
Notifications
You must be signed in to change notification settings - Fork 72
THREESCALE-12076: Upgrade Rails to 7.2 #4232
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: strong-params-part3
Are you sure you want to change the base?
Changes from all commits
6b3858f
533284b
e24591a
35d0c34
4bf8395
326d9e2
f7b0e46
986ae90
8feb3a5
1283acb
778294a
495e38d
ccf1dad
1b1fd1d
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 |
|---|---|---|
|
|
@@ -12,7 +12,7 @@ gem 'aws-sdk-rails', '~> 3' | |
| gem 'aws-sdk-s3', '~> 1' | ||
|
|
||
| gem 'dotenv-rails', '~> 2.7' | ||
| gem 'rails', '~> 7.1.5' | ||
| gem 'rails', '~> 7.2.3' | ||
|
|
||
| gem 'mail', '~> 2.8.1' | ||
|
|
||
|
|
@@ -59,7 +59,7 @@ gem 'yabeda-prometheus-mmap' | |
| gem 'yabeda-sidekiq' | ||
|
|
||
| gem 'activemerchant', '~> 1.137' | ||
| gem 'audited', '~> 5.4.2' | ||
| gem 'audited', '~> 5.8.0' | ||
| gem 'stripe', '~> 5.28.0' # we need the stripe gem because activemerchant can not generate Stripe's "customers" | ||
|
|
||
| gem 'acts_as_list', '~> 0.9.17' | ||
|
|
@@ -85,7 +85,7 @@ gem 'secure_headers', '~> 6.3.0' | |
| gem 'redlock' | ||
|
|
||
| gem 'acts-as-taggable-on', '~> 11.0' | ||
| gem 'baby_squeel', '~> 3.0', '>= 3.0.0' | ||
| gem 'baby_squeel', '~> 4.0.0' | ||
|
Contributor
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. No breaking changes here?
Contributor
Author
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. It drops support for some Ruby and Rails versions, but it doesn not affect us here:
Contributor
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. Yeah, no announced breaking changes, we can fully trust that! |
||
| gem 'browser' | ||
| gem 'diff-lcs', '~> 1.2' | ||
| gem 'hiredis-client' | ||
|
|
@@ -222,7 +222,7 @@ group :development, :test do | |
| gem 'active_record_query_trace' | ||
|
|
||
| gem 'bootsnap', '~> 1.16' | ||
| gem 'bullet', '~> 7.1.6' | ||
| gem 'bullet', '~> 7.2.0' | ||
| gem 'colorize' | ||
| gem 'factory_bot_rails', '~> 6.2' | ||
|
|
||
|
|
@@ -248,10 +248,13 @@ group :oracle do | |
| oracle = -> { (ENV['ORACLE'] == '1') || ENV.fetch('DATABASE_URL', ENV['DB'])&.start_with?('oracle') } | ||
| # ENV['NLS_LANG'] ||= 'AMERICAN_AMERICA.AL32UTF8' if oracle | ||
| ENV['NLS_LANG'] ||= 'AMERICAN_AMERICA.UTF8' if oracle | ||
| gem 'activerecord-oracle_enhanced-adapter', '~> 7.1.0', install_if: oracle | ||
| gem 'activerecord-oracle_enhanced-adapter', '~> 7.2.0', install_if: oracle | ||
| gem 'ruby-oci8', require: false, install_if: oracle | ||
| end | ||
|
|
||
| gem 'kubeclient' | ||
| gem 'nkf' | ||
| gem 'pg', '~> 1.3.5' | ||
| gem 'mutex_m' | ||
|
Contributor
Author
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. This is to get rid of the following warnings: |
||
| gem 'observer' | ||
| gem 'csv' | ||
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.
Support for Rails 7.2 was added in
5.7.0https://github.com/collectiveidea/audited/blob/main/CHANGELOG.md#570-2024-08-13