Skip to content

add support for rails v8 #521

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

Merged
merged 3 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
15 changes: 15 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,18 @@ appraise "rails7.1" do
gem "spring-watcher-listen", "~> 2.0.0"
gem "sqlite3", "~> 1.4"
end

appraise "rails8.0" do
gem "brakeman"
gem "byebug"
gem "kamal"
gem "listen", "~> 3.2"
gem "puma", "~> 6.0"
gem "rails", "~> 8.0.0"
gem "rubocop-rails-omakase"
gem "solid_queue"
gem "spring", "!= 2.1.1"
gem "spring-watcher-listen", "~> 2.0.0"
gem "sqlite3", ">= 2.1"
gem "thruster"
end
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
factory_bot_rails (6.4.4)
factory_bot_rails (6.4.5)
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
factory_bot_rails (6.4.5)
factory_bot_rails (6.4.4)

factory_bot (~> 6.5)
railties (>= 5.0.0)

Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ there might not be any notable changes in new versions of this project.

# NEWS

## 6.4.5 (December 6, 2024)
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
## 6.4.5 (December 6, 2024)

We're going to add the version number and release date when this is released. In the meantime, we just add to the top as unreleased.


* Added: Support for Rails 8.0

## 6.4.4 (October 25, 2024)

* Changed: Bump Factory Bot 6.5.0
Expand Down
24 changes: 24 additions & 0 deletions gemfiles/rails8.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal"
gem "aruba"
gem "cucumber"
gem "rake"
gem "rspec-rails"
gem "standard"
gem "brakeman"
gem "byebug"
gem "kamal"
gem "listen", "~> 3.2"
gem "puma", "~> 6.0"
gem "rails", "~> 8.0.0"
gem "rubocop-rails-omakase"
gem "solid_queue"
gem "spring", "!= 2.1.1"
gem "spring-watcher-listen", "~> 2.0.0"
gem "sqlite3", ">= 2.1"
gem "thruster"

gemspec name: "factory_bot_rails", path: "../"
2 changes: 1 addition & 1 deletion lib/factory_bot_rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module FactoryBotRails
VERSION = "6.4.4".freeze
VERSION = "6.4.5".freeze
end