Skip to content

Commit 8780dfa

Browse files
committed
Dropped support for Ruby < 3.3 and Active Record < 7.2
1 parent 520f223 commit 8780dfa

File tree

5 files changed

+8
-21
lines changed

5 files changed

+8
-21
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,11 @@ jobs:
1212
gemfile: gemfiles/activerecord80.gemfile
1313
- ruby: 3.3
1414
gemfile: gemfiles/activerecord72.gemfile
15-
- ruby: 3.2
16-
gemfile: gemfiles/activerecord71.gemfile
1715
runs-on: ubuntu-latest
1816
env:
1917
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
2018
steps:
21-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2220
- uses: ruby/setup-ruby@v1
2321
with:
2422
ruby-version: ${{ matrix.ruby }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.8.0 (unreleased)
2+
3+
- Dropped support for Ruby < 3.3 and Active Record < 7.2
4+
15
## 6.7.0 (2025-06-02)
26

37
- Added time zone support for SQLite

gemfiles/activerecord71.gemfile

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

groupdate.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
1313
spec.files = Dir["*.{md,txt}", "{lib}/**/*"]
1414
spec.require_path = "lib"
1515

16-
spec.required_ruby_version = ">= 3.2"
16+
spec.required_ruby_version = ">= 3.3"
1717

18-
spec.add_dependency "activesupport", ">= 7.1"
18+
spec.add_dependency "activesupport", ">= 7.2"
1919
end

test/adapters/mysql.rb

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
options = {}
2-
if ActiveRecord::VERSION::STRING.to_f == 7.1
3-
options[:prepared_statements] = true
4-
end
5-
ActiveRecord::Base.establish_connection adapter: "mysql2", database: "groupdate_test", **options
1+
ActiveRecord::Base.establish_connection adapter: "mysql2", database: "groupdate_test"

0 commit comments

Comments
 (0)