Skip to content

Commit 31c4a80

Browse files
committed
Drop support for ActiveRecord 6.1 and 7.0
Signed-off-by: Jordan Hollinger <jordan.hollinger@procore.com>
1 parent e32a450 commit 31c4a80

File tree

6 files changed

+2
-31
lines changed

6 files changed

+2
-31
lines changed

.github/workflows/test.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,9 @@ jobs:
4343
- name: Installing dependencies
4444
run: |
4545
bundle check --path=vendor/bundle || bundle install --path=vendor/bundle
46-
bundle exec appraisal ar-6.1 bundle install --path=vendor/bundle
47-
bundle exec appraisal ar-7.0 bundle install --path=vendor/bundle
4846
bundle exec appraisal ar-7.1 bundle install --path=vendor/bundle
4947
bundle exec appraisal ar-7.2 bundle install --path=vendor/bundle
5048
- name: Run tests
5149
run: |
52-
bundle exec appraisal ar-6.1 rake test
53-
bundle exec appraisal ar-7.0 rake test
5450
bundle exec appraisal ar-7.1 rake test
5551
bundle exec appraisal ar-7.2 rake test

Appraisals

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,3 @@ end
1212
appraise "ar-7.1" do
1313
gem "activerecord", "~> 7.1.1"
1414
end
15-
16-
appraise "ar-7.0" do
17-
gem "activerecord", "~> 7.0.8"
18-
gem "concurrent-ruby", "1.3.4"
19-
end
20-
21-
appraise "ar-6.1" do
22-
gem "activerecord", "~> 6.1.7"
23-
gem "concurrent-ruby", "1.3.4"
24-
end

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
### NEXT (?)
22

33
- Drop support for Ruby 3.0
4+
- Drop support for ActiveRecord 6.1 - 7.0
45

56
### 1.3.0 (2024-09-04)
67

blueprinter-activerecord.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
2323
spec.files = Dir['lib/**/*']
2424
spec.require_paths = ['lib']
2525

26-
spec.add_runtime_dependency 'activerecord', ['>= 6.0']
26+
spec.add_runtime_dependency 'activerecord', ['>= 7.1']
2727
spec.add_runtime_dependency 'blueprinter', '~> 1.0'
2828

2929
spec.add_development_dependency 'appraisal', '~> 2.5'

gemfiles/ar_6.1.gemfile

Lines changed: 0 additions & 8 deletions
This file was deleted.

gemfiles/ar_7.0.gemfile

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)