Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down Expand Up @@ -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'

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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'
Expand All @@ -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'

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No breaking changes here?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The 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:
https://github.com/rzane/baby_squeel/blob/master/CHANGELOG.md#400---2024-11-29

  • Remove ActiveRecord boundary
  • Added support for ActiveRecord 8.1
  • Added support for Ransack 4.4 ([webpack] Do not precompile webpack assets #134)
  • Added support for ActiveRecord 8.0
  • Added support for ActiveRecord 7.2
  • Droped support for ActiveRecord 6.1 and 7.0
  • Added Ruby 3.3 and 3.4 to test matrix
  • Droped support for Ruby 3.0 and 3.1

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The 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'
Expand Down Expand Up @@ -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'

Expand All @@ -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'

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is to get rid of the following warnings:

/home/dmayorov/.asdf/installs/ruby/3.3.1/lib/ruby/gems/3.3.0/gems/bootsnap-1.16.0/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:32: warning: /home/dmayorov/.asdf/installs/ruby/3.3.1/lib/ruby/3.3.0/mutex_m.rb was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.4.0. Add mutex_m to your Gemfile or gemspec.

/home/dmayorov/.asdf/installs/ruby/3.3.1/lib/ruby/gems/3.3.0/gems/bootsnap-1.16.0/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:32: warning: /home/dmayorov/.asdf/installs/ruby/3.3.1/lib/ruby/3.3.0/observer.rb was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.4.0. Add observer to your Gemfile or gemspec. Also contact author of factory_bot-6.2.0 to add observer into its gemspec.

/home/dmayorov/.asdf/installs/ruby/3.3.1/lib/ruby/gems/3.3.0/gems/bootsnap-1.16.0/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:32: warning: /home/dmayorov/.asdf/installs/ruby/3.3.1/lib/ruby/3.3.0/csv.rb was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.4.0. Add csv to your Gemfile or gemspec.

gem 'observer'
gem 'csv'
Loading