Skip to content

Commit

Permalink
Merge pull request #75 from k2nr/bquorning/test-with-rails-7-2
Browse files Browse the repository at this point in the history
Test with ActiveRecord 7.2
  • Loading branch information
bquorning authored Aug 13, 2024
2 parents bc993d2 + d959ed8 commit 1b23ee5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
ruby-version: ["2.7", "3.0", "3.1", "3.2", "3.3"]
include:
- {activerecord-version: "5.2", ruby-version: "2.7"}
- {activerecord-version: "7.2", ruby-version: "3.2"}
- {activerecord-version: "7.2", ruby-version: "3.3"}
steps:
- uses: actions/checkout@v4
- run: docker compose run test
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Ensure compatibility with Rails 7.2.

## 2.1.0

- Make `ULID::Rails::Type::Data.valid_ulid?` more strict in what is accepted as valid and not.
Expand Down
11 changes: 11 additions & 0 deletions gemfiles/7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
source "https://rubygems.org"

gemspec path: ".."

gem "activesupport", "~> 7.2.0"
gem "activemodel", "~> 7.2.0"
gem "activerecord", "~> 7.2.0"
gem "sqlite3", ">= 1.4"
gem "mysql2", "~> 0.5"
gem "pg", "~> 1.1"
gem "trilogy", "~> 2.7"

0 comments on commit 1b23ee5

Please sign in to comment.