Skip to content

Commit ae044e2

Browse files
committed
3.1.0
- OpenapiFirst::Test now raises `OpenapiFirst::Test::UnknownQueryParameterError` when it sees unknown query parameters. Note that `OpenapiFirst` ("core") still allows unknown query parameters. - OpenapiFirst::Test does not track requests/responses unless the OAD was registered via `OpenapiFirst::Test.register` (or `OpenapiFirst.register`)
1 parent 86c48aa commit ae044e2

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
## Unreleased
44

5-
## 3.1.0.beta1
5+
## 3.1.0
66

77
### openapi_first/test
88

99
#### Changed
10-
- Test now raises `OpenapiFirst::Test::UnknownQueryParameterError` when it sees unknown query parameters. Note that `OpenapiFirst` ("core") still allows unknown query parameters.
11-
- Test does not track requests/responses unless the OAD was registered via Test.register (or OpenapiFirst.register)
10+
- OpenapiFirst::Test now raises `OpenapiFirst::Test::UnknownQueryParameterError` when it sees unknown query parameters. Note that `OpenapiFirst` ("core") still allows unknown query parameters.
11+
- OpenapiFirst::Test does not track requests/responses unless the OAD was registered via `OpenapiFirst::Test.register` (or `OpenapiFirst.register`)
1212

1313
## 3.0.1
1414
- Add missing gem dependency "drb", which is no longer installed by default with newer rubies. This is used in openapi_first/test to make parallel tests work.

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
openapi_first (3.1.0.beta1)
4+
openapi_first (3.1.0)
55
drb (~> 2.0)
66
hana (~> 1.3)
77
json_schemer (>= 2.1, < 3.0)
@@ -90,7 +90,7 @@ GEM
9090
bigdecimal (3.3.1)
9191
builder (3.3.0)
9292
concurrent-ruby (1.3.5)
93-
connection_pool (2.5.4)
93+
connection_pool (2.5.5)
9494
crass (1.0.6)
9595
date (3.5.0)
9696
diff-lcs (1.6.2)

benchmarks/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
openapi_first (3.1.0.beta1)
4+
openapi_first (3.1.0)
55
drb (~> 2.0)
66
hana (~> 1.3)
77
json_schemer (>= 2.1, < 3.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 = '3.1.0.beta1'
4+
VERSION = '3.1.0'
55
end

0 commit comments

Comments
 (0)