Skip to content

Commit 0053564

Browse files
authored
Merge pull request #216 from naitoh/update_rails_versions
Test against Rails 7.1, 7.2, 8.0
2 parents 3226d9e + 1a05f56 commit 0053564

File tree

6 files changed

+39
-3
lines changed

6 files changed

+39
-3
lines changed

.github/workflows/ci.yml

+8
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,15 @@ jobs:
2828
- head
2929
gemfile:
3030
- gemfiles/rails_7.0.gemfile
31+
- gemfiles/rails_7.1.gemfile
32+
- gemfiles/rails_7.2.gemfile
33+
- gemfiles/rails_8.0.gemfile
3134
- gemfiles/doorkeeper_master.gemfile
35+
exclude:
36+
- ruby: 3.1
37+
gemfile: gemfiles/rails_8.0.gemfile
38+
- ruby: 3.1
39+
gemfile: gemfiles/doorkeeper_master.gemfile
3240
steps:
3341
- name: Repo checkout
3442
uses: actions/checkout@v3

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
## Unreleased
22

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

5-
## v1.8.10 (2024-12-29)
6+
## v1.8.10 (2024-11-29)
67

78
- [#215] Drop support for Ruby 2.7, 3.0 and Rails 6.
89
- [#209] Configuration per IdToken expiration (thanks to @martinezcoder)

gemfiles/doorkeeper_master.gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
source 'https://rubygems.org'
44

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

1010
gemspec path: '../'

gemfiles/rails_7.1.gemfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# frozen_string_literal: true
2+
3+
source 'https://rubygems.org'
4+
5+
gem 'rails', '~> 7.1.0'
6+
gem 'rails-controller-testing'
7+
gem 'sqlite3', '~> 1.4', platform: %i[ruby mswin mingw x64_mingw]
8+
9+
gemspec path: '../'

gemfiles/rails_7.2.gemfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# frozen_string_literal: true
2+
3+
source 'https://rubygems.org'
4+
5+
gem 'rails', '~> 7.2.0'
6+
gem 'rails-controller-testing'
7+
gem 'sqlite3', '~> 1.4', platform: %i[ruby mswin mingw x64_mingw]
8+
9+
gemspec path: '../'

gemfiles/rails_8.0.gemfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# frozen_string_literal: true
2+
3+
source 'https://rubygems.org'
4+
5+
gem 'rails', '~> 8.0.0'
6+
gem 'rails-controller-testing'
7+
gem 'sqlite3', '~> 2.3', platform: %i[ruby mswin mingw x64_mingw]
8+
9+
gemspec path: '../'

0 commit comments

Comments
 (0)