Skip to content

Commit e85d71d

Browse files
committed
Support Rails 8.1, Ruby 4.0
1 parent 73ea138 commit e85d71d

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ jobs:
1212
- '3.2'
1313
- '3.3'
1414
- '3.4'
15+
- '4.0'
1516
gemfile:
1617
- gemfiles/Gemfile.rails70
1718
- gemfiles/Gemfile.rails71
1819
- gemfiles/Gemfile.rails72
1920
- gemfiles/Gemfile.rails80
21+
- gemfiles/Gemfile.rails81
2022
exclude:
2123
# rails 8.0 requires ruby >= 3.2
2224
# https://www.fastruby.io/blog/ruby/rails/versions/compatibility-table.html
@@ -26,6 +28,8 @@ jobs:
2628
# https://www.fastruby.io/blog/ruby/rails/versions/compatibility-table.html
2729
- ruby-version: '3.4'
2830
gemfile: 'gemfiles/Gemfile.rails70'
31+
- ruby-version: '4.0'
32+
gemfile: 'gemfiles/Gemfile.rails70'
2933

3034
name: Ruby ${{ matrix.ruby-version }} / Bundle ${{ matrix.gemfile }}
3135

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## [Unreleased]
2-
*no unreleased changes*
2+
### Fixed
3+
* Support Rails 8.1, Ruby 4.0
34

45
## 7.3.5 / 2025-10-16
56
### Fixed

gemfiles/Gemfile.rails81

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
gemspec path: '..'
3+
4+
gem 'activesupport', '~> 8.1.0'

ndr_dev_support.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Gem::Specification.new do |spec|
4444
spec.add_dependency 'show_me_the_cookies'
4545

4646
# CI server dependencies:
47-
spec.add_dependency 'activesupport', '>= 6.1', '< 8.1'
47+
spec.add_dependency 'activesupport', '>= 7.0', '< 8.2'
4848
spec.add_dependency 'brakeman', '>= 4.7.1'
4949
spec.add_dependency 'bundler-audit'
5050
spec.add_dependency 'github-linguist'

0 commit comments

Comments
 (0)