Skip to content

Commit f3b4eee

Browse files
committed
2.7.4
- Return 400 if Rack cannot parse query string instead of raising an exception. Fixes #372
1 parent a727f77 commit f3b4eee

4 files changed

Lines changed: 11 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 2.7.4
6+
57
- Return 400 if Rack cannot parse query string instead of raising an exception. Fixes https://github.com/ahx/openapi_first/issues/372
68

79
## 2.7.3

Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
openapi_first (2.7.3)
4+
openapi_first (2.7.4)
55
hana (~> 1.3)
66
json_schemer (>= 2.1, < 3.0)
77
openapi_parameters (>= 0.5.1, < 2.0)
@@ -42,7 +42,7 @@ GEM
4242
ast (2.4.3)
4343
base64 (0.3.0)
4444
benchmark (0.4.1)
45-
bigdecimal (3.2.1)
45+
bigdecimal (3.2.2)
4646
builder (3.3.0)
4747
concurrent-ruby (1.3.5)
4848
connection_pool (2.5.3)
@@ -110,18 +110,18 @@ GEM
110110
diff-lcs (>= 1.2.0, < 2.0)
111111
rspec-support (~> 3.13.0)
112112
rspec-support (3.13.4)
113-
rubocop (1.75.8)
113+
rubocop (1.76.2)
114114
json (~> 2.3)
115115
language_server-protocol (~> 3.17.0.2)
116116
lint_roller (~> 1.1.0)
117117
parallel (~> 1.10)
118118
parser (>= 3.3.0.2)
119119
rainbow (>= 2.2.2, < 4.0)
120120
regexp_parser (>= 2.9.3, < 3.0)
121-
rubocop-ast (>= 1.44.0, < 2.0)
121+
rubocop-ast (>= 1.45.1, < 2.0)
122122
ruby-progressbar (~> 1.7)
123123
unicode-display_width (>= 2.4.0, < 4.0)
124-
rubocop-ast (1.45.0)
124+
rubocop-ast (1.45.1)
125125
parser (>= 3.3.7.2)
126126
prism (~> 1.4)
127127
rubocop-performance (1.25.0)

benchmarks/Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PATH
22
remote: ..
33
specs:
4-
openapi_first (2.7.3)
4+
openapi_first (2.7.4)
55
hana (~> 1.3)
66
json_schemer (>= 2.1, < 3.0)
7-
openapi_parameters (>= 0.3.3, < 2.0)
7+
openapi_parameters (>= 0.5.1, < 2.0)
88
rack (>= 2.2, < 4.0)
99

1010
GEM
@@ -32,7 +32,7 @@ GEM
3232
mustermann (3.0.3)
3333
ruby2_keywords (~> 0.0.1)
3434
nio4r (2.7.4)
35-
openapi_parameters (0.5.0)
35+
openapi_parameters (0.5.1)
3636
rack (>= 2.2)
3737
openapi_parser (2.2.6)
3838
optparse (0.6.0)

lib/openapi_first/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module OpenapiFirst
4-
VERSION = '2.7.3'
4+
VERSION = '2.7.4'
55
end

0 commit comments

Comments
 (0)