Skip to content

Commit d31f981

Browse files
authored
Merge pull request #297 from jrafanie/rails-8
Add support for rails 8, drop ruby 3.1 and rails 7.1
2 parents 12b92e7 + 1b9e695 commit d31f981

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
strategy:
2020
matrix:
2121
ruby-version:
22-
- '3.1'
22+
- '3.2'
2323
- '3.3'
2424
- '3.4'
2525
rails-version:
26-
- '7.1'
2726
- '7.2'
27+
- '8.0'
2828
services:
2929
postgres:
3030
image: manageiq/postgresql:13

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

7+
- Add support for rails 8, drop ruby 3.1 and rails 7.1
8+
79
## [10.0.2] - 2025-05-08
810
## Changed
911
- Remove ping of IPA Server [[#278](https://github.com/ManageIQ/manageiq-appliance_console/pull/278)]

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ gemspec
55

66
minimum_version =
77
case ENV['TEST_RAILS_VERSION']
8-
when "7.2"
9-
"~>7.2.2"
8+
when "8.0"
9+
"~>8.0.4"
1010
else
11-
"~>7.1.5"
11+
"~>7.2.3"
1212
end
1313

1414
gem "activerecord", minimum_version

0 commit comments

Comments
 (0)