From daee5ada9e2bf20e60532647a2eb7abb7697e4bb Mon Sep 17 00:00:00 2001 From: Eric Proulx Date: Tue, 7 Apr 2026 08:59:33 +0200 Subject: [PATCH] Remove ruby 3.2 for rails_edge --- .github/workflows/edge.yml | 3 +++ CHANGELOG.md | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/edge.yml b/.github/workflows/edge.yml index 09f463e07..2f5c52c1d 100644 --- a/.github/workflows/edge.yml +++ b/.github/workflows/edge.yml @@ -8,6 +8,9 @@ jobs: matrix: ruby: ['3.2', '3.3', '3.4', '4.0', ruby-head, truffleruby-head, jruby-head] gemfile: [rails_edge, rack_edge] + exclude: + - ruby: '3.2' + gemfile: rails_edge runs-on: ubuntu-latest continue-on-error: true env: diff --git a/CHANGELOG.md b/CHANGELOG.md index 301ed8e4b..5bf5cde09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ * [#2655](https://github.com/ruby-grape/grape/pull/2655): Fix `before_each` method to handle `nil` parameter correctly - [@ericproulx](https://github.com/ericproulx). * [#2660](https://github.com/ruby-grape/grape/pull/2660): Fix thread safety: move mutable `ParamsScope` state (`index`, `params_meeting_dependency`) into a per-request `ParamScopeTracker` stored in `Fiber[]` - [@ericproulx](https://github.com/ericproulx). * [#2666](https://github.com/ruby-grape/grape/pull/2666): Endpoint cleanup and minor optimizations - [@ericproulx](https://github.com/ericproulx). +* [#2676](https://github.com/ruby-grape/grape/pull/2676): Exclude ruby 3.2 for rails_edge - [@ericproulx](https://github.com/ericproulx). * Your contribution here. ### 3.1.0 (2026-01-25)