Skip to content

Commit 2923c19

Browse files
committed
chore(release): cut the v1.0.0-beta.11 release [skip ci]
1 parent f68adb7 commit 2923c19

File tree

75 files changed

+496
-306
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+496
-306
lines changed

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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
### Bug Fixes
9+
10+
- **ns-json-schema:** collect properly metadata for dialect and schema identifiers ([#4689](https://github.com/swagger-api/apidom/issues/4689)) ([a69a698](https://github.com/swagger-api/apidom/commit/a69a6983e5b0295417fbab8f2213d641f34768e2))
11+
12+
### Features
13+
14+
- **ns-openapi-3-1:** use JSON Schema 2020-12 namespace ([#4691](https://github.com/swagger-api/apidom/issues/4691)) ([f68adb7](https://github.com/swagger-api/apidom/commit/f68adb7645b692152c80537828247e9ad71e5933)), closes [#1822](https://github.com/swagger-api/apidom/issues/1822)
15+
- **workflows-1:** use JSON Schema 2020-12 namespace ([#4690](https://github.com/swagger-api/apidom/issues/4690)) ([23f22ec](https://github.com/swagger-api/apidom/commit/23f22ec75a2bb6a9a28f79a388378100ec409f83)), closes [#1822](https://github.com/swagger-api/apidom/issues/1822)
16+
617
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
718

819
### Features

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"packages": ["packages/*"],
33
"npmClient": "npm",
4-
"version": "1.0.0-beta.10",
4+
"version": "1.0.0-beta.11",
55
"changelogPreset": "angular",
66
"command": {
77
"bootstrap": {

package-lock.json

+152-152
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/apidom-ast/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-ast
9+
610
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
711

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

packages/apidom-ast/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-ast",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "Tools necessary for parsing stage of ApiDOM, specifically for syntactic analysis.",
55
"publishConfig": {
66
"access": "public",
@@ -42,7 +42,7 @@
4242
"homepage": "https://github.com/swagger-api/apidom#readme",
4343
"dependencies": {
4444
"@babel/runtime-corejs3": "^7.20.7",
45-
"@swagger-api/apidom-error": "^1.0.0-beta.10",
45+
"@swagger-api/apidom-error": "^1.0.0-beta.11",
4646
"@types/ramda": "~0.30.0",
4747
"ramda": "~0.30.0",
4848
"ramda-adjunct": "^5.0.0",

packages/apidom-core/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-core
9+
610
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
711

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

packages/apidom-core/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-core",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "Tools for manipulating ApiDOM structures.",
55
"publishConfig": {
66
"access": "public",
@@ -42,8 +42,8 @@
4242
"license": "Apache-2.0",
4343
"dependencies": {
4444
"@babel/runtime-corejs3": "^7.20.7",
45-
"@swagger-api/apidom-ast": "^1.0.0-beta.10",
46-
"@swagger-api/apidom-error": "^1.0.0-beta.10",
45+
"@swagger-api/apidom-ast": "^1.0.0-beta.11",
46+
"@swagger-api/apidom-error": "^1.0.0-beta.11",
4747
"@types/ramda": "~0.30.0",
4848
"minim": "~0.23.8",
4949
"ramda": "~0.30.0",

packages/apidom-error/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-error
9+
610
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
711

812
**Note:** Version bump only for package @swagger-api/apidom-error

packages/apidom-error/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-error",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "Backward compatible custom ApiDOM errors with causes.",
55
"publishConfig": {
66
"access": "public",

packages/apidom-json-path/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-json-path
9+
610
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
711

812
**Note:** Version bump only for package @swagger-api/apidom-json-path

packages/apidom-json-path/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-json-path",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "Evaluate JSONPath expressions against ApiDOM.",
55
"publishConfig": {
66
"access": "public",
@@ -38,9 +38,9 @@
3838
"license": "Apache-2.0",
3939
"dependencies": {
4040
"@babel/runtime-corejs3": "^7.20.7",
41-
"@swagger-api/apidom-core": "^1.0.0-beta.10",
42-
"@swagger-api/apidom-error": "^1.0.0-beta.10",
43-
"@swagger-api/apidom-json-pointer": "^1.0.0-beta.10",
41+
"@swagger-api/apidom-core": "^1.0.0-beta.11",
42+
"@swagger-api/apidom-error": "^1.0.0-beta.11",
43+
"@swagger-api/apidom-json-pointer": "^1.0.0-beta.11",
4444
"jsonpath-plus": "^10.0.6"
4545
},
4646
"files": [

packages/apidom-json-pointer-relative/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-json-pointer-relative
9+
610
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
711

812
**Note:** Version bump only for package @swagger-api/apidom-json-pointer-relative

packages/apidom-json-pointer-relative/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-json-pointer-relative",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "Evaluate Relative JSON Pointer expressions against ApiDOM.",
55
"publishConfig": {
66
"access": "public",
@@ -38,9 +38,9 @@
3838
"license": "Apache-2.0",
3939
"dependencies": {
4040
"@babel/runtime-corejs3": "^7.20.7",
41-
"@swagger-api/apidom-core": "^1.0.0-beta.10",
42-
"@swagger-api/apidom-error": "^1.0.0-beta.10",
43-
"@swagger-api/apidom-json-pointer": "^1.0.0-beta.10",
41+
"@swagger-api/apidom-core": "^1.0.0-beta.11",
42+
"@swagger-api/apidom-error": "^1.0.0-beta.11",
43+
"@swagger-api/apidom-json-pointer": "^1.0.0-beta.11",
4444
"@types/ramda": "~0.30.0",
4545
"ramda": "~0.30.0",
4646
"ramda-adjunct": "^5.0.0"

packages/apidom-json-pointer/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-json-pointer
9+
610
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
711

812
**Note:** Version bump only for package @swagger-api/apidom-json-pointer

packages/apidom-json-pointer/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-json-pointer",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "Evaluate JSON Pointer expressions against ApiDOM.",
55
"publishConfig": {
66
"access": "public",
@@ -38,8 +38,8 @@
3838
"license": "Apache-2.0",
3939
"dependencies": {
4040
"@babel/runtime-corejs3": "^7.20.7",
41-
"@swagger-api/apidom-core": "^1.0.0-beta.10",
42-
"@swagger-api/apidom-error": "^1.0.0-beta.10",
41+
"@swagger-api/apidom-core": "^1.0.0-beta.11",
42+
"@swagger-api/apidom-error": "^1.0.0-beta.11",
4343
"@types/ramda": "~0.30.0",
4444
"ramda": "~0.30.0",
4545
"ramda-adjunct": "^5.0.0"

packages/apidom-ls/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-ls
9+
610
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
711

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

packages/apidom-ls/package.json

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@swagger-api/apidom-ls",
33
"description": "ApiDOM based language service library.",
4-
"version": "1.0.0-beta.10",
4+
"version": "1.0.0-beta.11",
55
"publishConfig": {
66
"access": "public",
77
"registry": "https://registry.npmjs.org"
@@ -93,28 +93,28 @@
9393
},
9494
"dependencies": {
9595
"@babel/runtime-corejs3": "^7.20.7",
96-
"@swagger-api/apidom-core": "^1.0.0-beta.10",
97-
"@swagger-api/apidom-json-path": "^1.0.0-beta.10",
98-
"@swagger-api/apidom-json-pointer": "^1.0.0-beta.10",
99-
"@swagger-api/apidom-ns-api-design-systems": "^1.0.0-beta.10",
100-
"@swagger-api/apidom-ns-asyncapi-2": "^1.0.0-beta.10",
101-
"@swagger-api/apidom-ns-openapi-2": "^1.0.0-beta.10",
102-
"@swagger-api/apidom-ns-openapi-3-0": "^1.0.0-beta.10",
103-
"@swagger-api/apidom-ns-openapi-3-1": "^1.0.0-beta.10",
104-
"@swagger-api/apidom-parser": "^1.0.0-beta.10",
105-
"@swagger-api/apidom-parser-adapter-api-design-systems-json": "^1.0.0-beta.10",
106-
"@swagger-api/apidom-parser-adapter-api-design-systems-yaml": "^1.0.0-beta.10",
107-
"@swagger-api/apidom-parser-adapter-asyncapi-json-2": "^1.0.0-beta.10",
108-
"@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": "^1.0.0-beta.10",
109-
"@swagger-api/apidom-parser-adapter-json": "^1.0.0-beta.10",
110-
"@swagger-api/apidom-parser-adapter-openapi-json-2": "^1.0.0-beta.10",
111-
"@swagger-api/apidom-parser-adapter-openapi-json-3-0": "^1.0.0-beta.10",
112-
"@swagger-api/apidom-parser-adapter-openapi-json-3-1": "^1.0.0-beta.10",
113-
"@swagger-api/apidom-parser-adapter-openapi-yaml-2": "^1.0.0-beta.10",
114-
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-0": "^1.0.0-beta.10",
115-
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-1": "^1.0.0-beta.10",
116-
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^1.0.0-beta.10",
117-
"@swagger-api/apidom-reference": "^1.0.0-beta.10",
96+
"@swagger-api/apidom-core": "^1.0.0-beta.11",
97+
"@swagger-api/apidom-json-path": "^1.0.0-beta.11",
98+
"@swagger-api/apidom-json-pointer": "^1.0.0-beta.11",
99+
"@swagger-api/apidom-ns-api-design-systems": "^1.0.0-beta.11",
100+
"@swagger-api/apidom-ns-asyncapi-2": "^1.0.0-beta.11",
101+
"@swagger-api/apidom-ns-openapi-2": "^1.0.0-beta.11",
102+
"@swagger-api/apidom-ns-openapi-3-0": "^1.0.0-beta.11",
103+
"@swagger-api/apidom-ns-openapi-3-1": "^1.0.0-beta.11",
104+
"@swagger-api/apidom-parser": "^1.0.0-beta.11",
105+
"@swagger-api/apidom-parser-adapter-api-design-systems-json": "^1.0.0-beta.11",
106+
"@swagger-api/apidom-parser-adapter-api-design-systems-yaml": "^1.0.0-beta.11",
107+
"@swagger-api/apidom-parser-adapter-asyncapi-json-2": "^1.0.0-beta.11",
108+
"@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": "^1.0.0-beta.11",
109+
"@swagger-api/apidom-parser-adapter-json": "^1.0.0-beta.11",
110+
"@swagger-api/apidom-parser-adapter-openapi-json-2": "^1.0.0-beta.11",
111+
"@swagger-api/apidom-parser-adapter-openapi-json-3-0": "^1.0.0-beta.11",
112+
"@swagger-api/apidom-parser-adapter-openapi-json-3-1": "^1.0.0-beta.11",
113+
"@swagger-api/apidom-parser-adapter-openapi-yaml-2": "^1.0.0-beta.11",
114+
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-0": "^1.0.0-beta.11",
115+
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-1": "^1.0.0-beta.11",
116+
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^1.0.0-beta.11",
117+
"@swagger-api/apidom-reference": "^1.0.0-beta.11",
118118
"@types/ramda": "~0.30.0",
119119
"openapi-path-templating": "^2.0.1",
120120
"ramda": "~0.30.0",

packages/apidom-ns-api-design-systems/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
### Features
9+
10+
- **ns-openapi-3-1:** use JSON Schema 2020-12 namespace ([#4691](https://github.com/swagger-api/apidom/issues/4691)) ([f68adb7](https://github.com/swagger-api/apidom/commit/f68adb7645b692152c80537828247e9ad71e5933)), closes [#1822](https://github.com/swagger-api/apidom/issues/1822)
11+
612
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
713

814
**Note:** Version bump only for package @swagger-api/apidom-ns-api-design-systems

packages/apidom-ns-api-design-systems/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@swagger-api/apidom-ns-api-design-systems",
33
"description": "API Design Systems 2021-05-07 namespace for ApiDOM.",
4-
"version": "1.0.0-beta.10",
4+
"version": "1.0.0-beta.11",
55
"publishConfig": {
66
"access": "public",
77
"registry": "https://registry.npmjs.org"
@@ -42,9 +42,9 @@
4242
"license": "Apache-2.0",
4343
"dependencies": {
4444
"@babel/runtime-corejs3": "^7.20.7",
45-
"@swagger-api/apidom-core": "^1.0.0-beta.10",
46-
"@swagger-api/apidom-error": "^1.0.0-beta.10",
47-
"@swagger-api/apidom-ns-openapi-3-1": "^1.0.0-beta.10",
45+
"@swagger-api/apidom-core": "^1.0.0-beta.11",
46+
"@swagger-api/apidom-error": "^1.0.0-beta.11",
47+
"@swagger-api/apidom-ns-openapi-3-1": "^1.0.0-beta.11",
4848
"@types/ramda": "~0.30.0",
4949
"ramda": "~0.30.0",
5050
"ramda-adjunct": "^5.0.0",

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

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
**Note:** Version bump only for package @swagger-api/apidom-ns-asyncapi-2
9+
610
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
711

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

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-ns-asyncapi-2",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "AsyncAPI 2.x.y namespace for ApiDOM.",
55
"publishConfig": {
66
"access": "public",
@@ -44,8 +44,8 @@
4444
"license": "Apache-2.0",
4545
"dependencies": {
4646
"@babel/runtime-corejs3": "^7.20.7",
47-
"@swagger-api/apidom-core": "^1.0.0-beta.10",
48-
"@swagger-api/apidom-ns-json-schema-draft-7": "^1.0.0-beta.10",
47+
"@swagger-api/apidom-core": "^1.0.0-beta.11",
48+
"@swagger-api/apidom-ns-json-schema-draft-7": "^1.0.0-beta.11",
4949
"@types/ramda": "~0.30.0",
5050
"ramda": "~0.30.0",
5151
"ramda-adjunct": "^5.0.0",

packages/apidom-ns-json-schema-2019-09/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
### Bug Fixes
9+
10+
- **ns-json-schema:** collect properly metadata for dialect and schema identifiers ([#4689](https://github.com/swagger-api/apidom/issues/4689)) ([a69a698](https://github.com/swagger-api/apidom/commit/a69a6983e5b0295417fbab8f2213d641f34768e2))
11+
12+
### Features
13+
14+
- **ns-openapi-3-1:** use JSON Schema 2020-12 namespace ([#4691](https://github.com/swagger-api/apidom/issues/4691)) ([f68adb7](https://github.com/swagger-api/apidom/commit/f68adb7645b692152c80537828247e9ad71e5933)), closes [#1822](https://github.com/swagger-api/apidom/issues/1822)
15+
616
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
717

818
**Note:** Version bump only for package @swagger-api/apidom-ns-json-schema-2019-09

packages/apidom-ns-json-schema-2019-09/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swagger-api/apidom-ns-json-schema-2019-09",
3-
"version": "1.0.0-beta.10",
3+
"version": "1.0.0-beta.11",
44
"description": "JSON Schema 2019-09 namespace for ApiDOM.",
55
"publishConfig": {
66
"access": "public",
@@ -42,9 +42,9 @@
4242
"license": "Apache-2.0",
4343
"dependencies": {
4444
"@babel/runtime-corejs3": "^7.20.7",
45-
"@swagger-api/apidom-core": "^1.0.0-beta.10",
46-
"@swagger-api/apidom-error": "^1.0.0-beta.10",
47-
"@swagger-api/apidom-ns-json-schema-draft-7": "^1.0.0-beta.10",
45+
"@swagger-api/apidom-core": "^1.0.0-beta.11",
46+
"@swagger-api/apidom-error": "^1.0.0-beta.11",
47+
"@swagger-api/apidom-ns-json-schema-draft-7": "^1.0.0-beta.11",
4848
"@types/ramda": "~0.30.0",
4949
"ramda": "~0.30.0",
5050
"ramda-adjunct": "^5.0.0",

packages/apidom-ns-json-schema-2020-12/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
7+
8+
### Bug Fixes
9+
10+
- **ns-json-schema:** collect properly metadata for dialect and schema identifiers ([#4689](https://github.com/swagger-api/apidom/issues/4689)) ([a69a698](https://github.com/swagger-api/apidom/commit/a69a6983e5b0295417fbab8f2213d641f34768e2))
11+
12+
### Features
13+
14+
- **ns-openapi-3-1:** use JSON Schema 2020-12 namespace ([#4691](https://github.com/swagger-api/apidom/issues/4691)) ([f68adb7](https://github.com/swagger-api/apidom/commit/f68adb7645b692152c80537828247e9ad71e5933)), closes [#1822](https://github.com/swagger-api/apidom/issues/1822)
15+
616
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
717

818
**Note:** Version bump only for package @swagger-api/apidom-ns-json-schema-2020-12

0 commit comments

Comments
 (0)