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
10 changes: 5 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'
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 @@ -223,7 +223,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 @@ -249,7 +249,7 @@ 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

Expand Down
Loading