Skip to content

Commit 313582b

Browse files
Unpin sqlite3 version in bug_report_templates
Reverts rails#51591 as it is not necessary anymore. All the Rails currently supported versions (>= 7.1 as of now) support `sqlite3` 2.0, while edge Rails requires `sqlite3` 2.0 or higher.
1 parent a59ddc7 commit 313582b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

guides/bug_report_templates/action_mailbox.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# If you want to test against edge Rails replace the previous line with this:
1010
# gem "rails", github: "rails/rails", branch: "main"
1111

12-
gem "sqlite3", "~> 1.4"
12+
gem "sqlite3"
1313
end
1414

1515
require "active_record/railtie"

guides/bug_report_templates/active_record.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# If you want to test against edge Rails replace the previous line with this:
1010
# gem "rails", github: "rails/rails", branch: "main"
1111

12-
gem "sqlite3", "~> 1.4"
12+
gem "sqlite3"
1313
end
1414

1515
require "active_record"

guides/bug_report_templates/active_record_migrations.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# If you want to test against edge Rails replace the previous line with this:
1010
# gem "rails", github: "rails/rails", branch: "main"
1111

12-
gem "sqlite3", "~> 1.4"
12+
gem "sqlite3"
1313
end
1414

1515
require "active_record"

guides/bug_report_templates/active_storage.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# If you want to test against edge Rails replace the previous line with this:
1010
# gem "rails", github: "rails/rails", branch: "main"
1111

12-
gem "sqlite3", "~> 1.4"
12+
gem "sqlite3"
1313
end
1414

1515
require "active_record/railtie"

0 commit comments

Comments
 (0)