Skip to content

Commit 24a1e25

Browse files
committed
chore(release): cut the v0.4.0 release [skip ci]
1 parent 67874f6 commit 24a1e25

File tree

28 files changed

+174
-52
lines changed

28 files changed

+174
-52
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
9+
### Features
10+
11+
* **core:** add polymorphic support for structural predicates ([67874f6](https://github.com/swagger-api/apidom/commit/67874f631159e45afdd3e918689e200ef8ac8e07)), closes [#803](https://github.com/swagger-api/apidom/issues/803)
12+
* **reference:** expose errors from package ([3fd2bfc](https://github.com/swagger-api/apidom/commit/3fd2bfcc91a46401dabdefc0d6446354bd94ee88)), closes [#798](https://github.com/swagger-api/apidom/issues/798)
13+
14+
15+
16+
17+
618
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
719

820

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.3.0",
7+
"version": "0.4.0",
88
"changelogPreset": "angular",
99
"command": {
1010
"bootstrap": {

packages/apidom-ast/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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-ast
9+
10+
11+
12+
13+
614
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
715

816
**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.3.0",
3+
"version": "0.4.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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
9+
### Features
10+
11+
* **core:** add polymorphic support for structural predicates ([67874f6](https://github.com/swagger-api/apidom/commit/67874f631159e45afdd3e918689e200ef8ac8e07)), closes [#803](https://github.com/swagger-api/apidom/issues/803)
12+
13+
14+
15+
16+
617
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
718

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

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.3.0",
3+
"version": "0.4.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.3.0",
36+
"@swagger-api/apidom-ast": "^0.4.0",
3737
"@types/ramda": "=0.27.45",
3838
"minim": "=0.23.8",
3939
"ramda": "=0.27.1",

packages/apidom-ls/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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-ls
9+
10+
11+
12+
13+
614
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
715

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

packages/apidom-ls/package.json

+9-9
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.3.0",
7+
"version": "0.4.0",
88
"repository": {
99
"type": "git",
1010
"url": "git+https://github.com/swagger-api/apidom.git"
@@ -36,14 +36,14 @@
3636
},
3737
"dependencies": {
3838
"@babel/runtime-corejs3": "=7.15.4",
39-
"@swagger-api/apidom-core": "^0.3.0",
40-
"@swagger-api/apidom-ns-openapi-3-1": "^0.3.0",
41-
"@swagger-api/apidom-parser": "^0.3.0",
42-
"@swagger-api/apidom-parser-adapter-asyncapi-json-2": "^0.3.0",
43-
"@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": "^0.3.0",
44-
"@swagger-api/apidom-parser-adapter-openapi-json-3-1": "^0.3.0",
45-
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-1": "^0.3.0",
46-
"@swagger-api/apidom-reference": "^0.3.0",
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",
4747
"@types/ramda": "=0.27.45",
4848
"ajv": "^6.12.2",
4949
"json-source-map": "^0.6.1",

packages/apidom-ns-asyncapi-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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-ns-asyncapi-2
9+
10+
11+
12+
13+
614
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
715

816

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.3.0",
3+
"version": "0.4.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.3.0",
38+
"@swagger-api/apidom-core": "^0.4.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

+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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-ns-openapi-3-1
9+
10+
11+
12+
13+
614
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
715

816
**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.3.0",
3+
"version": "0.4.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.3.0",
39+
"@swagger-api/apidom-core": "^0.4.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

+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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-json-2
9+
10+
11+
12+
13+
614
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
715

816

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.3.0",
3+
"version": "0.4.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.3.0",
41-
"@swagger-api/apidom-ns-asyncapi-2": "^0.3.0",
42-
"@swagger-api/apidom-parser-adapter-json": "^0.3.0",
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",
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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-yaml-2
9+
10+
11+
12+
13+
614
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
715

816

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.3.0",
3+
"version": "0.4.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.3.0",
41-
"@swagger-api/apidom-ns-asyncapi-2": "^0.3.0",
42-
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.3.0",
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",
4343
"@types/ramda": "=0.27.45",
4444
"ramda": "=0.27.1",
4545
"ramda-adjunct": "=2.34.0"

packages/apidom-parser-adapter-json/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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-json
9+
10+
11+
12+
13+
614
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
715

816
**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.3.0",
3+
"version": "0.4.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.3.0",
42-
"@swagger-api/apidom-core": "^0.3.0",
41+
"@swagger-api/apidom-ast": "^0.4.0",
42+
"@swagger-api/apidom-core": "^0.4.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

+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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-openapi-json-3-1
9+
10+
11+
12+
13+
614
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
715

816
**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.3.0",
3+
"version": "0.4.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.3.0",
41-
"@swagger-api/apidom-ns-openapi-3-1": "^0.3.0",
42-
"@swagger-api/apidom-parser-adapter-json": "^0.3.0",
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",
4343
"@types/ramda": "=0.27.45",
4444
"ramda": "=0.27.1",
4545
"ramda-adjunct": "=2.34.0"

packages/apidom-parser-adapter-openapi-yaml-3-1/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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-openapi-yaml-3-1
9+
10+
11+
12+
13+
614
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
715

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

packages/apidom-parser-adapter-openapi-yaml-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-yaml-3-1",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "Parser adapter for parsing YAML documents into OpenAPI 3.1.x namespace.",
55
"publishConfig": {
66
"registry": "https://npm.pkg.github.com"
@@ -36,9 +36,9 @@
3636
"license": "Apache-2.0",
3737
"dependencies": {
3838
"@babel/runtime-corejs3": "=7.15.4",
39-
"@swagger-api/apidom-core": "^0.3.0",
40-
"@swagger-api/apidom-ns-openapi-3-1": "^0.3.0",
41-
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.3.0",
39+
"@swagger-api/apidom-core": "^0.4.0",
40+
"@swagger-api/apidom-ns-openapi-3-1": "^0.4.0",
41+
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.4.0",
4242
"@types/ramda": "=0.27.45",
4343
"ramda": "=0.27.1",
4444
"ramda-adjunct": "=2.34.0"

packages/apidom-parser-adapter-yaml-1-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.4.0](https://github.com/swagger-api/apidom/compare/v0.3.0...v0.4.0) (2021-10-22)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-yaml-1-2
9+
10+
11+
12+
13+
614
# [0.3.0](https://github.com/swagger-api/apidom/compare/v0.2.1...v0.3.0) (2021-10-05)
715

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

0 commit comments

Comments
 (0)