Skip to content

Commit

Permalink
Test against activerecord 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fatkodima committed Aug 10, 2024
1 parent fd37a9f commit a1a7d5f
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 33 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ jobs:
gemfile: activerecord_70.gemfile
- ruby-version: 2.7
gemfile: activerecord_71.gemfile
- ruby-version: 2.7
gemfile: activerecord_head.gemfile
- ruby-version: 3.3
gemfile: activerecord_72.gemfile

# Test against latest versions just in case.
- ruby-version: 3.2
- ruby-version: 3.3
gemfile: activerecord_head.gemfile
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}
Expand Down
81 changes: 51 additions & 30 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,51 +7,72 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activemodel (7.0.4.3)
activesupport (= 7.0.4.3)
activerecord (7.0.4.3)
activemodel (= 7.0.4.3)
activesupport (= 7.0.4.3)
activesupport (7.0.4.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
activemodel (7.2.0)
activesupport (= 7.2.0)
activerecord (7.2.0)
activemodel (= 7.2.0)
activesupport (= 7.2.0)
timeout (>= 0.4.0)
activesupport (7.2.0)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.3.1)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
logger (>= 1.4.2)
minitest (>= 5.1)
tzinfo (~> 2.0)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
ast (2.4.2)
concurrent-ruby (1.2.2)
i18n (1.12.0)
base64 (0.2.0)
bigdecimal (3.1.8)
concurrent-ruby (1.3.3)
connection_pool (2.4.1)
drb (2.2.1)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.6.3)
minitest (5.18.0)
mysql2 (0.5.5)
parallel (1.23.0)
parser (3.2.2.0)
json (2.7.2)
language_server-protocol (3.17.0.3)
logger (1.6.0)
minitest (5.24.1)
mysql2 (0.5.6)
parallel (1.26.1)
parser (3.3.4.2)
ast (~> 2.4.1)
pg (1.4.6)
racc
pg (1.5.7)
racc (1.8.1)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.8.0)
rexml (3.2.5)
rubocop (1.50.2)
rake (13.2.1)
regexp_parser (2.9.2)
rexml (3.3.4)
strscan
rubocop (1.65.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.0.0)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
regexp_parser (>= 2.4, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.0, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.28.0)
parser (>= 3.2.1.0)
rubocop-minitest (0.30.0)
rubocop (>= 1.39, < 2.0)
rubocop-ast (1.32.0)
parser (>= 3.3.1.0)
rubocop-minitest (0.35.1)
rubocop (>= 1.61, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (1.13.0)
sqlite3 (1.6.2-x86_64-darwin)
sqlite3 (1.6.2-x86_64-linux)
securerandom (0.3.1)
sqlite3 (2.0.3-x86_64-darwin)
sqlite3 (2.0.3-x86_64-linux-gnu)
strscan (3.1.0)
timeout (0.4.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.4.2)
unicode-display_width (2.5.0)

PLATFORMS
x86_64-darwin-20
Expand Down
5 changes: 5 additions & 0 deletions gemfiles/activerecord_72.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# frozen_string_literal: true

@ar_gem_requirement = "~> 7.2.0"

eval_gemfile "../Gemfile"

0 comments on commit a1a7d5f

Please sign in to comment.