Skip to content

Commit 08bde72

Browse files
committed
2.7.3
1 parent d5a6106 commit 08bde72

File tree

4 files changed

+26
-24
lines changed

4 files changed

+26
-24
lines changed

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.3
6+
57
- Accept loading OAD documents with numeric status codes. Fixes "Unknown reference" error. https://github.com/ahx/openapi_first/issues/367
68

79
- Support QUERY request method

Gemfile.lock

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
openapi_first (2.7.2)
4+
openapi_first (2.7.3)
55
hana (~> 1.3)
66
json_schemer (>= 2.1, < 3.0)
77
openapi_parameters (>= 0.3.3, < 2.0)
@@ -40,21 +40,21 @@ GEM
4040
tzinfo (~> 2.0, >= 2.0.5)
4141
uri (>= 0.13.1)
4242
ast (2.4.3)
43-
base64 (0.2.0)
44-
benchmark (0.4.0)
45-
bigdecimal (3.1.9)
43+
base64 (0.3.0)
44+
benchmark (0.4.1)
45+
bigdecimal (3.2.1)
4646
builder (3.3.0)
4747
concurrent-ruby (1.3.5)
4848
connection_pool (2.5.3)
4949
crass (1.0.6)
5050
diff-lcs (1.6.2)
5151
docile (1.4.1)
52-
drb (2.2.1)
52+
drb (2.2.3)
5353
erubi (1.13.1)
5454
hana (1.3.7)
5555
i18n (1.14.7)
5656
concurrent-ruby (~> 1.0)
57-
json (2.12.0)
57+
json (2.12.2)
5858
json_schemer (2.4.0)
5959
bigdecimal
6060
hana (~> 1.3)
@@ -79,38 +79,38 @@ GEM
7979
racc
8080
prism (1.4.0)
8181
racc (1.8.1)
82-
rack (3.1.14)
82+
rack (3.1.15)
8383
rack-session (2.1.1)
8484
base64 (>= 0.1.0)
8585
rack (>= 3.0.0)
8686
rack-test (2.2.0)
8787
rack (>= 1.3)
8888
rackup (2.2.1)
8989
rack (>= 3)
90-
rails-dom-testing (2.2.0)
90+
rails-dom-testing (2.3.0)
9191
activesupport (>= 5.0.0)
9292
minitest
9393
nokogiri (>= 1.6)
9494
rails-html-sanitizer (1.6.2)
9595
loofah (~> 2.21)
9696
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
9797
rainbow (3.1.1)
98-
rake (13.2.1)
98+
rake (13.3.0)
9999
regexp_parser (2.10.0)
100-
rspec (3.13.0)
100+
rspec (3.13.1)
101101
rspec-core (~> 3.13.0)
102102
rspec-expectations (~> 3.13.0)
103103
rspec-mocks (~> 3.13.0)
104-
rspec-core (3.13.3)
104+
rspec-core (3.13.4)
105105
rspec-support (~> 3.13.0)
106-
rspec-expectations (3.13.4)
106+
rspec-expectations (3.13.5)
107107
diff-lcs (>= 1.2.0, < 2.0)
108108
rspec-support (~> 3.13.0)
109-
rspec-mocks (3.13.4)
109+
rspec-mocks (3.13.5)
110110
diff-lcs (>= 1.2.0, < 2.0)
111111
rspec-support (~> 3.13.0)
112-
rspec-support (3.13.3)
113-
rubocop (1.75.6)
112+
rspec-support (3.13.4)
113+
rubocop (1.75.8)
114114
json (~> 2.3)
115115
language_server-protocol (~> 3.17.0.2)
116116
lint_roller (~> 1.1.0)
@@ -121,7 +121,7 @@ GEM
121121
rubocop-ast (>= 1.44.0, < 2.0)
122122
ruby-progressbar (~> 1.7)
123123
unicode-display_width (>= 2.4.0, < 4.0)
124-
rubocop-ast (1.44.1)
124+
rubocop-ast (1.45.0)
125125
parser (>= 3.3.7.2)
126126
prism (~> 1.4)
127127
rubocop-performance (1.25.0)

benchmarks/Gemfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
openapi_first (2.7.2)
4+
openapi_first (2.7.3)
55
hana (~> 1.3)
66
json_schemer (>= 2.1, < 3.0)
77
openapi_parameters (>= 0.3.3, < 2.0)
@@ -10,12 +10,12 @@ PATH
1010
GEM
1111
remote: https://rubygems.org/
1212
specs:
13-
base64 (0.2.0)
14-
benchmark (0.4.0)
13+
base64 (0.3.0)
14+
benchmark (0.4.1)
1515
benchmark-ips (2.14.0)
1616
benchmark-memory (0.2.0)
1717
memory_profiler (~> 1)
18-
bigdecimal (3.1.9)
18+
bigdecimal (3.2.1)
1919
committee (5.5.4)
2020
json_schema (~> 0.14, >= 0.14.3)
2121
openapi_parser (~> 2.0)
@@ -41,7 +41,7 @@ GEM
4141
webrick
4242
puma (6.6.0)
4343
nio4r (~> 2.0)
44-
rack (3.1.14)
44+
rack (3.1.15)
4545
rack-protection (4.1.1)
4646
base64 (>= 0.1.0)
4747
logger (>= 1.6.0)
@@ -60,7 +60,7 @@ GEM
6060
rack-session (>= 2.0.0, < 3)
6161
tilt (~> 2.0)
6262
tilt (2.6.0)
63-
vernier (1.7.1)
63+
vernier (1.8.0)
6464
webrick (1.9.1)
6565

6666
PLATFORMS
@@ -81,4 +81,4 @@ DEPENDENCIES
8181
vernier
8282

8383
BUNDLED WITH
84-
2.5.9
84+
2.6.7

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.2'
4+
VERSION = '2.7.3'
55
end

0 commit comments

Comments
 (0)