rspec-openapi 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +19 -0
- data/Gemfile +1 -1
- data/lib/rspec/openapi/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1b6910e5f6511e985a899e1c3b7dacec413924a6f19d79fddc5b9e4c5059c4a
|
4
|
+
data.tar.gz: 8bccc7c850b4d1f1cea4125abba829fc8a128bc2bfe448ae4fa1523a11f0a414
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60661ba7a0f3828bcbe20437c280a791e90fcd0b00e64f4d27a7052b000c3c70640b45ba1976749df47693d956b97cf4aa491db7957ceb3383dba16e3901da38
|
7
|
+
data.tar.gz: 3a4431f735c5b2bc6684d8f79ed5ced925edb1c8941f449ccbc02e80bec4401ef4fe65bd5af45c1096fee4b6ca766b46b7bc15d49e4aad0405feb70f44f5b3cd
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,22 @@
|
|
1
|
+
## v0.7.1
|
2
|
+
- $ref enhancements: Generate Response Headers
|
3
|
+
[#80](https://github.com/k0kubun/rspec-openapi/pull/80)
|
4
|
+
- Administration
|
5
|
+
- Setup RuboCop
|
6
|
+
[#73](https://github.com/k0kubun/rspec-openapi/pull/73)
|
7
|
+
- Setup CodeQL
|
8
|
+
[#73](https://github.com/k0kubun/rspec-openapi/pull/73)
|
9
|
+
- Bump Rails v6.0.3.x to fix bundle failure
|
10
|
+
[#72](https://github.com/k0kubun/rspec-openapi/pull/72)
|
11
|
+
|
12
|
+
## v0.7.0
|
13
|
+
- Generate Response Headers
|
14
|
+
[#69](https://github.com/k0kubun/rspec-openapi/pull/69)
|
15
|
+
- Initial support for $ref
|
16
|
+
[#67](https://github.com/k0kubun/rspec-openapi/pull/67)
|
17
|
+
- Fixed an empty array is turned into nullable object wrongly
|
18
|
+
[#70](https://github.com/k0kubun/rspec-openapi/pull/70)
|
19
|
+
|
1
20
|
## v0.6.1
|
2
21
|
|
3
22
|
* Stabilize the order parameter objects and preserve newer examples
|
data/Gemfile
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-openapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takashi Kokubun
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08
|
11
|
+
date: 2022-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionpack
|
@@ -92,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: '0'
|
94
94
|
requirements: []
|
95
|
-
rubygems_version: 3.
|
95
|
+
rubygems_version: 3.3.24
|
96
96
|
signing_key:
|
97
97
|
specification_version: 4
|
98
98
|
summary: Generate OpenAPI schema from RSpec request specs
|