Skip to content

Commit da50891

Browse files
committed
chore(release): cut the v0.5.0 release [skip ci]
1 parent c8360e2 commit da50891

File tree

28 files changed

+217
-53
lines changed

28 files changed

+217
-53
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/swagger-api/apidom/compare/v0.4.0...v0.5.0) (2021-10-26)
7+
8+
9+
### Features
10+
11+
* add schema type related metadata to namespaces ([433a2c2](https://github.com/swagger-api/apidom/commit/433a2c29aaccad4bf63e27fc4b79ea5f47f6c050))
12+
* **apidom-ls:** completion and validation fixes ([2ded62c](https://github.com/swagger-api/apidom/commit/2ded62c6a7fd2c407fbf9d48322a60872dbad81a))
13+
* **apidom-ls:** document cache ([aefaa44](https://github.com/swagger-api/apidom/commit/aefaa441af833e031c32f2bccdc9e953179dd1c6))
14+
* **apidom-ls:** single ajv instance ([a93d428](https://github.com/swagger-api/apidom/commit/a93d428ddf83576540c71dbdee5cdc7e7eee8567))
15+
* **apidom-ls:** update validation providers and json schemas ([a49154b](https://github.com/swagger-api/apidom/commit/a49154b0f6d435da3375035222d769e3a1c04c35))
16+
17+
18+
### Performance Improvements
19+
20+
* optimize JSON direct syntactic analysis ([5b5887e](https://github.com/swagger-api/apidom/commit/5b5887ec1d38a0cb3b4c542997818f39cda84108)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
21+
* optimize predicates for AsyncAPI namesapce ([7c7817f](https://github.com/swagger-api/apidom/commit/7c7817faa93b827a3d3827f929e2671cd9b90d8c)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
22+
* optimize predicates for base namespace ([e23b670](https://github.com/swagger-api/apidom/commit/e23b670c232d3d94bb0e889faaca616d03d01b6e)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
23+
* optimize predicates for OpenAPI namespace ([5e106c2](https://github.com/swagger-api/apidom/commit/5e106c27ff329ebd29bc383b72f6a095f3e452e1)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
24+
25+
26+
27+
28+
629
# [0.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
730

831

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
],
55
"npmClient": "npm",
66
"useWorkspaces": true,
7-
"version": "0.4.0",
7+
"version": "0.5.0",
88
"changelogPreset": "angular",
99
"command": {
1010
"bootstrap": {

packages/apidom-ast/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/swagger-api/apidom/compare/v0.4.0...v0.5.0) (2021-10-26)
7+
8+
9+
### Performance Improvements
10+
11+
* optimize JSON direct syntactic analysis ([5b5887e](https://github.com/swagger-api/apidom/commit/5b5887ec1d38a0cb3b4c542997818f39cda84108)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
12+
13+
14+
15+
16+
617
# [0.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
718

819
**Note:** Version bump only for package @swagger-api/apidom-ast

packages/apidom-ast/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-ast",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Tools necessary for parsing stage of ApiDOM, specifically for syntactic analysis.",
55
"publishConfig": {
66
"registry": "https://npm.pkg.github.com"

packages/apidom-core/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/swagger-api/apidom/compare/v0.4.0...v0.5.0) (2021-10-26)
7+
8+
9+
### Performance Improvements
10+
11+
* optimize predicates for base namespace ([e23b670](https://github.com/swagger-api/apidom/commit/e23b670c232d3d94bb0e889faaca616d03d01b6e)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
12+
13+
14+
15+
16+
617
# [0.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
718

819

packages/apidom-core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-core",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Tools for manipulating ApiDOM structures.",
55
"publishConfig": {
66
"registry": "https://npm.pkg.github.com"
@@ -33,7 +33,7 @@
3333
"license": "Apache-2.0",
3434
"dependencies": {
3535
"@babel/runtime-corejs3": "=7.15.4",
36-
"@swagger-api/apidom-ast": "^0.4.0",
36+
"@swagger-api/apidom-ast": "^0.5.0",
3737
"@types/ramda": "=0.27.45",
3838
"minim": "=0.23.8",
3939
"ramda": "=0.27.1",

packages/apidom-ls/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/swagger-api/apidom/compare/v0.4.0...v0.5.0) (2021-10-26)
7+
8+
9+
### Features
10+
11+
* **apidom-ls:** completion and validation fixes ([2ded62c](https://github.com/swagger-api/apidom/commit/2ded62c6a7fd2c407fbf9d48322a60872dbad81a))
12+
* **apidom-ls:** document cache ([aefaa44](https://github.com/swagger-api/apidom/commit/aefaa441af833e031c32f2bccdc9e953179dd1c6))
13+
* **apidom-ls:** single ajv instance ([a93d428](https://github.com/swagger-api/apidom/commit/a93d428ddf83576540c71dbdee5cdc7e7eee8567))
14+
* **apidom-ls:** update validation providers and json schemas ([a49154b](https://github.com/swagger-api/apidom/commit/a49154b0f6d435da3375035222d769e3a1c04c35))
15+
16+
17+
18+
19+
620
# [0.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
721

822
**Note:** Version bump only for package @swagger-api/apidom-ls

packages/apidom-ls/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"publishConfig": {
55
"registry": "https://npm.pkg.github.com"
66
},
7-
"version": "0.4.0",
7+
"version": "0.5.0",
88
"repository": {
99
"type": "git",
1010
"url": "git+https://github.com/swagger-api/apidom.git"
@@ -36,18 +36,18 @@
3636
},
3737
"dependencies": {
3838
"@babel/runtime-corejs3": "=7.15.4",
39-
"@swagger-api/apidom-core": "^0.4.0",
40-
"@swagger-api/apidom-ns-openapi-3-1": "^0.4.0",
41-
"@swagger-api/apidom-parser": "^0.4.0",
42-
"@swagger-api/apidom-parser-adapter-asyncapi-json-2": "^0.4.0",
43-
"@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": "^0.4.0",
44-
"@swagger-api/apidom-parser-adapter-openapi-json-3-1": "^0.4.0",
45-
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-1": "^0.4.0",
46-
"@swagger-api/apidom-reference": "^0.4.0",
39+
"@swagger-api/apidom-core": "^0.5.0",
40+
"@swagger-api/apidom-ns-openapi-3-1": "^0.5.0",
41+
"@swagger-api/apidom-parser": "^0.5.0",
42+
"@swagger-api/apidom-parser-adapter-asyncapi-json-2": "^0.5.0",
43+
"@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": "^0.5.0",
44+
"@swagger-api/apidom-parser-adapter-openapi-json-3-1": "^0.5.0",
45+
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-1": "^0.5.0",
46+
"@swagger-api/apidom-reference": "^0.5.0",
4747
"@types/ramda": "=0.27.45",
4848
"ajv": "^8.6.3",
49-
"ajv-formats": "^2.1.1",
5049
"ajv-errors": "^3.0.0",
50+
"ajv-formats": "^2.1.1",
5151
"json-source-map": "^0.6.1",
5252
"ramda": "=0.27.1",
5353
"ramda-adjunct": "=2.34.0",

packages/apidom-ns-asyncapi-2/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/swagger-api/apidom/compare/v0.4.0...v0.5.0) (2021-10-26)
7+
8+
9+
### Features
10+
11+
* add schema type related metadata to namespaces ([433a2c2](https://github.com/swagger-api/apidom/commit/433a2c29aaccad4bf63e27fc4b79ea5f47f6c050))
12+
13+
14+
### Performance Improvements
15+
16+
* optimize predicates for AsyncAPI namesapce ([7c7817f](https://github.com/swagger-api/apidom/commit/7c7817faa93b827a3d3827f929e2671cd9b90d8c)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
17+
18+
19+
20+
21+
622
# [0.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
723

824
**Note:** Version bump only for package @swagger-api/apidom-ns-asyncapi-2

packages/apidom-ns-asyncapi-2/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-ns-asyncapi-2",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "AsyncAPI 2.x.y namespace for ApiDOM.",
55
"publishConfig": {
66
"registry": "https://npm.pkg.github.com"
@@ -35,7 +35,7 @@
3535
"license": "Apache-2.0",
3636
"dependencies": {
3737
"@babel/runtime-corejs3": "=7.15.4",
38-
"@swagger-api/apidom-core": "^0.4.0",
38+
"@swagger-api/apidom-core": "^0.5.0",
3939
"@types/ramda": "=0.27.45",
4040
"ramda": "=0.27.1",
4141
"ramda-adjunct": "=2.34.0",

packages/apidom-ns-openapi-3-1/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/swagger-api/apidom/compare/v0.4.0...v0.5.0) (2021-10-26)
7+
8+
9+
### Features
10+
11+
* add schema type related metadata to namespaces ([433a2c2](https://github.com/swagger-api/apidom/commit/433a2c29aaccad4bf63e27fc4b79ea5f47f6c050))
12+
13+
14+
### Performance Improvements
15+
16+
* optimize predicates for OpenAPI namespace ([5e106c2](https://github.com/swagger-api/apidom/commit/5e106c27ff329ebd29bc383b72f6a095f3e452e1)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
17+
18+
19+
20+
21+
622
# [0.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
723

824
**Note:** Version bump only for package @swagger-api/apidom-ns-openapi-3-1

packages/apidom-ns-openapi-3-1/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-ns-openapi-3-1",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Parser adapter for parsing JSON documents into AsyncAPI 2.x.y namespace.",
55
"publishConfig": {
66
"registry": "https://npm.pkg.github.com"
@@ -36,7 +36,7 @@
3636
"license": "Apache-2.0",
3737
"dependencies": {
3838
"@babel/runtime-corejs3": "=7.15.4",
39-
"@swagger-api/apidom-core": "^0.4.0",
39+
"@swagger-api/apidom-core": "^0.5.0",
4040
"@types/ramda": "=0.27.45",
4141
"ramda": "=0.27.1",
4242
"ramda-adjunct": "=2.34.0",

packages/apidom-parser-adapter-asyncapi-json-2/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/swagger-api/apidom/compare/v0.4.0...v0.5.0) (2021-10-26)
7+
8+
9+
### Performance Improvements
10+
11+
* optimize JSON direct syntactic analysis ([5b5887e](https://github.com/swagger-api/apidom/commit/5b5887ec1d38a0cb3b4c542997818f39cda84108)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
12+
13+
14+
15+
16+
617
# [0.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
718

819
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-json-2

packages/apidom-parser-adapter-asyncapi-json-2/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-parser-adapter-asyncapi-json-2",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Parser adapter for parsing JSON documents into AsyncAPI 2.x.y namespace.",
55
"publishConfig": {
66
"registry": "https://npm.pkg.github.com"
@@ -37,9 +37,9 @@
3737
"license": "Apache-2.0",
3838
"dependencies": {
3939
"@babel/runtime-corejs3": "=7.15.4",
40-
"@swagger-api/apidom-core": "^0.4.0",
41-
"@swagger-api/apidom-ns-asyncapi-2": "^0.4.0",
42-
"@swagger-api/apidom-parser-adapter-json": "^0.4.0",
40+
"@swagger-api/apidom-core": "^0.5.0",
41+
"@swagger-api/apidom-ns-asyncapi-2": "^0.5.0",
42+
"@swagger-api/apidom-parser-adapter-json": "^0.5.0",
4343
"@types/ramda": "=0.27.45",
4444
"ramda": "=0.27.1",
4545
"ramda-adjunct": "=2.34.0"

packages/apidom-parser-adapter-asyncapi-yaml-2/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/swagger-api/apidom/compare/v0.4.0...v0.5.0) (2021-10-26)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-yaml-2
9+
10+
11+
12+
13+
614
# [0.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
715

816
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-yaml-2

packages/apidom-parser-adapter-asyncapi-yaml-2/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-parser-adapter-asyncapi-yaml-2",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Parser adapter for parsing YAML documents into AsyncAPI 2.x.y namespace.",
55
"publishConfig": {
66
"registry": "https://npm.pkg.github.com"
@@ -37,9 +37,9 @@
3737
"license": "Apache-2.0",
3838
"dependencies": {
3939
"@babel/runtime-corejs3": "=7.15.4",
40-
"@swagger-api/apidom-core": "^0.4.0",
41-
"@swagger-api/apidom-ns-asyncapi-2": "^0.4.0",
42-
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.4.0",
40+
"@swagger-api/apidom-core": "^0.5.0",
41+
"@swagger-api/apidom-ns-asyncapi-2": "^0.5.0",
42+
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.5.0",
4343
"@types/ramda": "=0.27.45",
4444
"ramda": "=0.27.1",
4545
"ramda-adjunct": "=2.34.0"

packages/apidom-parser-adapter-json/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/swagger-api/apidom/compare/v0.4.0...v0.5.0) (2021-10-26)
7+
8+
9+
### Performance Improvements
10+
11+
* optimize JSON direct syntactic analysis ([5b5887e](https://github.com/swagger-api/apidom/commit/5b5887ec1d38a0cb3b4c542997818f39cda84108)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
12+
13+
14+
15+
16+
617
# [0.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
718

819
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-json

packages/apidom-parser-adapter-json/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-parser-adapter-json",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Parser adapter for parsing JSON documents into base namespace.",
55
"publishConfig": {
66
"registry": "https://npm.pkg.github.com"
@@ -38,8 +38,8 @@
3838
"license": "Apache-2.0",
3939
"dependencies": {
4040
"@babel/runtime-corejs3": "=7.15.4",
41-
"@swagger-api/apidom-ast": "^0.4.0",
42-
"@swagger-api/apidom-core": "^0.4.0",
41+
"@swagger-api/apidom-ast": "^0.5.0",
42+
"@swagger-api/apidom-core": "^0.5.0",
4343
"@types/ramda": "=0.27.45",
4444
"ramda": "=0.27.1",
4545
"ramda-adjunct": "=2.34.0",

packages/apidom-parser-adapter-openapi-json-3-1/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/swagger-api/apidom/compare/v0.4.0...v0.5.0) (2021-10-26)
7+
8+
9+
### Performance Improvements
10+
11+
* optimize JSON direct syntactic analysis ([5b5887e](https://github.com/swagger-api/apidom/commit/5b5887ec1d38a0cb3b4c542997818f39cda84108)), closes [#691](https://github.com/swagger-api/apidom/issues/691)
12+
13+
14+
15+
16+
617
# [0.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
718

819
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-openapi-json-3-1

packages/apidom-parser-adapter-openapi-json-3-1/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-parser-adapter-openapi-json-3-1",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Parser adapter for parsing JSON documents into OpenAPI 3.1.x namespace.",
55
"publishConfig": {
66
"registry": "https://npm.pkg.github.com"
@@ -37,9 +37,9 @@
3737
"license": "Apache-2.0",
3838
"dependencies": {
3939
"@babel/runtime-corejs3": "=7.15.4",
40-
"@swagger-api/apidom-core": "^0.4.0",
41-
"@swagger-api/apidom-ns-openapi-3-1": "^0.4.0",
42-
"@swagger-api/apidom-parser-adapter-json": "^0.4.0",
40+
"@swagger-api/apidom-core": "^0.5.0",
41+
"@swagger-api/apidom-ns-openapi-3-1": "^0.5.0",
42+
"@swagger-api/apidom-parser-adapter-json": "^0.5.0",
4343
"@types/ramda": "=0.27.45",
4444
"ramda": "=0.27.1",
4545
"ramda-adjunct": "=2.34.0"

0 commit comments

Comments
 (0)