Skip to content

Commit aec409e

Browse files
committed
Merge branch '28184-upgrade-and-fix-Vulnerability' into 'master'
chore: relax activesupport constraint and promote from beta See merge request kdanmobile/shared-code-base/gems/error_response!50
2 parents 955c304 + 93829f7 commit aec409e

4 files changed

Lines changed: 13 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [1.3.2.beta] - 2026-06-16
2+
- Relax `activesupport` dependency constraint from `~> 7.1.6` to `>= 7.1.6, < 9.0` to unblock services upgrading to Rails 7.2 / 8.x.
3+
14
## [1.3.1.beta] - 2026-06-03
25
- Prevent `ErrorResponse::RequestError` from being swallowed by broad handlers such as `rescue_from Exception`.
36
- Handle `RequestError` through `ErrorResponse::Helper#rescue_with_handler` before falling back to generic rescue flow.

Gemfile.lock

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
11
PATH
22
remote: .
33
specs:
4-
error_response (1.3.1.beta)
5-
activesupport (~> 7.1.6)
4+
error_response (1.3.2.beta)
5+
activesupport (>= 7.1.6, < 9.0)
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
10-
activesupport (7.1.6)
10+
activesupport (8.1.3)
1111
base64
12-
benchmark (>= 0.3)
1312
bigdecimal
14-
concurrent-ruby (~> 1.0, >= 1.0.2)
13+
concurrent-ruby (~> 1.0, >= 1.3.1)
1514
connection_pool (>= 2.2.5)
1615
drb
1716
i18n (>= 1.6, < 2)
17+
json
1818
logger (>= 1.4.2)
1919
minitest (>= 5.1)
20-
mutex_m
2120
securerandom (>= 0.3)
22-
tzinfo (~> 2.0)
21+
tzinfo (~> 2.0, >= 2.0.5)
22+
uri (>= 0.13.1)
2323
addressable (2.9.0)
2424
public_suffix (>= 2.0.2, < 8.0)
2525
ast (2.4.3)
2626
base64 (0.3.0)
27-
benchmark (0.4.1)
2827
bigdecimal (3.2.2)
2928
concurrent-ruby (1.3.5)
3029
connection_pool (2.5.3)
@@ -48,7 +47,6 @@ GEM
4847
mcp (0.9.2)
4948
json-schema (>= 4.1)
5049
minitest (5.25.5)
51-
mutex_m (0.3.0)
5250
parallel (1.27.0)
5351
parser (3.3.10.2)
5452
ast (~> 2.4.1)
@@ -103,6 +101,7 @@ GEM
103101
unicode-display_width (3.2.0)
104102
unicode-emoji (~> 4.1)
105103
unicode-emoji (4.2.0)
104+
uri (1.1.1)
106105

107106
PLATFORMS
108107
ruby

VERSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.1.beta
1+
1.3.2.beta

error_response.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ Gem::Specification.new do |s|
1818
"rubygems_mfa_required" => "true"
1919
}
2020

21-
s.add_dependency "activesupport", "~> 7.1.6"
21+
s.add_dependency "activesupport", ">= 7.1.6", "< 9.0"
2222
end

0 commit comments

Comments
 (0)