Skip to content

Commit

Permalink
Official Rails 8.0 support (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
jturkel authored Nov 8, 2024
1 parent 46171c4 commit 8cdf77c
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 19 deletions.
6 changes: 3 additions & 3 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ appraise 'rails-7.2' do
end

appraise 'rails-8.0' do
gem 'activerecord', '8.0.0.rc1'
gem 'activesupport', '8.0.0.rc1'
gem 'rails', '8.0.0.rc1'
gem 'activerecord', '8.0.0'
gem 'activesupport', '8.0.0'
gem 'rails', '8.0.0'
end

appraise 'rails-edge' do
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 5.4.0
- Add support for Rails 8.0.

## 5.3.1
- Fix [issue 157](https://github.com/salsify/goldiloader/issues/157) which caused an `ArgumentError` when invoking
`ActiveRecord::Associations::Association#find_target` in Rails edge.
Expand Down
6 changes: 3 additions & 3 deletions gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

source "https://rubygems.org"

gem "activerecord", "6.1.7.8"
gem "activesupport", "6.1.7.8"
gem "rails", "6.1.7.8"
gem "activerecord", "6.1.7.9"
gem "activesupport", "6.1.7.9"
gem "rails", "6.1.7.9"
gem "sqlite3", "~> 1.7"

gemspec path: "../"
6 changes: 3 additions & 3 deletions gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

source "https://rubygems.org"

gem "activerecord", "7.0.8.4"
gem "activesupport", "7.0.8.4"
gem "rails", "7.0.8.4"
gem "activerecord", "7.0.8.5"
gem "activesupport", "7.0.8.5"
gem "rails", "7.0.8.5"
gem "sqlite3", "~> 1.7"

gemspec path: "../"
6 changes: 3 additions & 3 deletions gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

source "https://rubygems.org"

gem "activerecord", "7.1.3.4"
gem "activesupport", "7.1.3.4"
gem "rails", "7.1.3.4"
gem "activerecord", "7.1.4.1"
gem "activesupport", "7.1.4.1"
gem "rails", "7.1.4.1"
gem "sqlite3", "~> 1.7"

gemspec path: "../"
6 changes: 3 additions & 3 deletions gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

source "https://rubygems.org"

gem "activerecord", "7.2.0"
gem "activesupport", "7.2.0"
gem "rails", "7.2.0"
gem "activerecord", "7.2.1.1"
gem "activesupport", "7.2.1.1"
gem "rails", "7.2.1.1"

gemspec path: "../"
6 changes: 3 additions & 3 deletions gemfiles/rails_8.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

source "https://rubygems.org"

gem "activerecord", "8.0.0.rc1"
gem "activesupport", "8.0.0.rc1"
gem "rails", "8.0.0.rc1"
gem "activerecord", "8.0.0"
gem "activesupport", "8.0.0"
gem "rails", "8.0.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion lib/goldiloader/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Goldiloader
VERSION = '5.3.1'
VERSION = '5.4.0'
end

0 comments on commit 8cdf77c

Please sign in to comment.