Skip to content

Commit

Permalink
Merge pull request #216 from naitoh/update_rails_versions
Browse files Browse the repository at this point in the history
Test against Rails 7.1, 7.2, 8.0
  • Loading branch information
nbulaj authored Dec 16, 2024
2 parents 3226d9e + 1a05f56 commit 0053564
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 3 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,15 @@ jobs:
- head
gemfile:
- gemfiles/rails_7.0.gemfile
- gemfiles/rails_7.1.gemfile
- gemfiles/rails_7.2.gemfile
- gemfiles/rails_8.0.gemfile
- gemfiles/doorkeeper_master.gemfile
exclude:
- ruby: 3.1
gemfile: gemfiles/rails_8.0.gemfile
- ruby: 3.1
gemfile: gemfiles/doorkeeper_master.gemfile
steps:
- name: Repo checkout
uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## Unreleased

- [#PR ID] Add your changelog entry here.
- [#216] Test against Rails 7.1, 7.2, 8.0.

## v1.8.10 (2024-12-29)
## v1.8.10 (2024-11-29)

- [#215] Drop support for Ruby 2.7, 3.0 and Rails 6.
- [#209] Configuration per IdToken expiration (thanks to @martinezcoder)
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/doorkeeper_master.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

source 'https://rubygems.org'

gem 'rails', '~> 7.0.0'
gem 'rails', '~> 8.0.0'
gem 'rails-controller-testing'
gem 'sqlite3', '~> 1.4', platform: %i[ruby mswin mingw x64_mingw]
gem 'sqlite3', '~> 2.3', platform: %i[ruby mswin mingw x64_mingw]
gem 'doorkeeper', git: 'https://github.com/doorkeeper-gem/doorkeeper.git'

gemspec path: '../'
9 changes: 9 additions & 0 deletions gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '~> 7.1.0'
gem 'rails-controller-testing'
gem 'sqlite3', '~> 1.4', platform: %i[ruby mswin mingw x64_mingw]

gemspec path: '../'
9 changes: 9 additions & 0 deletions gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '~> 7.2.0'
gem 'rails-controller-testing'
gem 'sqlite3', '~> 1.4', platform: %i[ruby mswin mingw x64_mingw]

gemspec path: '../'
9 changes: 9 additions & 0 deletions gemfiles/rails_8.0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '~> 8.0.0'
gem 'rails-controller-testing'
gem 'sqlite3', '~> 2.3', platform: %i[ruby mswin mingw x64_mingw]

gemspec path: '../'

0 comments on commit 0053564

Please sign in to comment.