@swagger-api/apidom-ns-openapi-2 0.80.0 → 0.82.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/README.md +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.82.0](https://github.com/swagger-api/apidom/compare/v0.81.0...v0.82.0) (2023-11-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @swagger-api/apidom-ns-openapi-2
|
|
9
|
+
|
|
10
|
+
# [0.81.0](https://github.com/swagger-api/apidom/compare/v0.80.0...v0.81.0) (2023-10-30)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- add OpenAPI 2.0 JSON parser adapter ([#3333](https://github.com/swagger-api/apidom/issues/3333)) ([17d4ee1](https://github.com/swagger-api/apidom/commit/17d4ee1a6beadc4bb823603051b8f41c27bc066d)), closes [#3099](https://github.com/swagger-api/apidom/issues/3099)
|
|
15
|
+
|
|
6
16
|
# [0.80.0](https://github.com/swagger-api/apidom/compare/v0.79.0...v0.80.0) (2023-10-26)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @swagger-api/apidom-ns-openapi-2
|
package/README.md
CHANGED
|
@@ -12,9 +12,9 @@ You can install this package via [npm CLI](https://docs.npmjs.com/cli) by runnin
|
|
|
12
12
|
$ npm install @swagger-api/apidom-ns-openapi-2
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
##
|
|
15
|
+
## OpenAPI 2.0 namespace
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
OpenAPI 2.0 namespace consists of [number of elements](https://github.com/swagger-api/apidom/tree/main/packages/apidom-ns-openapi-2/src/elements) implemented on top
|
|
18
18
|
of [primitive ones](https://github.com/refractproject/minim/tree/master/lib/primitives).
|
|
19
19
|
|
|
20
20
|
```js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swagger-api/apidom-ns-openapi-2",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.82.0",
|
|
4
4
|
"description": "OpenAPI 2.0 namespace for ApiDOM.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"license": "Apache-2.0",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@babel/runtime-corejs3": "^7.20.7",
|
|
45
|
-
"@swagger-api/apidom-core": "^0.
|
|
46
|
-
"@swagger-api/apidom-error": "^0.
|
|
47
|
-
"@swagger-api/apidom-ns-json-schema-draft-4": "^0.
|
|
45
|
+
"@swagger-api/apidom-core": "^0.82.0",
|
|
46
|
+
"@swagger-api/apidom-error": "^0.82.0",
|
|
47
|
+
"@swagger-api/apidom-ns-json-schema-draft-4": "^0.82.0",
|
|
48
48
|
"@types/ramda": "~0.29.6",
|
|
49
49
|
"ramda": "~0.29.0",
|
|
50
50
|
"ramda-adjunct": "^4.1.1",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"README.md",
|
|
61
61
|
"CHANGELOG.md"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "343498decaceb7b13134159e6253016ddef7e154"
|
|
64
64
|
}
|