@speclynx/apidom-parser-adapter-json-schema-json-2020-12 4.7.0 → 4.7.1
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
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
## [4.7.1](https://github.com/speclynx/apidom/compare/v4.7.0...v4.7.1) (2026-04-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @speclynx/apidom-parser-adapter-json-schema-json-2020-12
|
|
9
|
+
|
|
6
10
|
# [4.7.0](https://github.com/speclynx/apidom/compare/v4.6.0...v4.7.0) (2026-04-12)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @speclynx/apidom-parser-adapter-json-schema-json-2020-12
|
|
@@ -29076,11 +29076,6 @@ function* traverseGenerator(root, visitor, options) {
|
|
|
29076
29076
|
if (currentPath.shouldStop) {
|
|
29077
29077
|
break;
|
|
29078
29078
|
}
|
|
29079
|
-
if (currentPath.shouldSkip) {
|
|
29080
|
-
if (!isLeaving) {
|
|
29081
|
-
continue;
|
|
29082
|
-
}
|
|
29083
|
-
}
|
|
29084
29079
|
if (currentPath.removed) {
|
|
29085
29080
|
edits.push([key, null]);
|
|
29086
29081
|
if (!isLeaving) {
|
|
@@ -29090,12 +29085,19 @@ function* traverseGenerator(root, visitor, options) {
|
|
|
29090
29085
|
const replacement = currentPath._getReplacementNode();
|
|
29091
29086
|
edits.push([key, replacement]);
|
|
29092
29087
|
if (!isLeaving) {
|
|
29088
|
+
if (currentPath.shouldSkip) {
|
|
29089
|
+
continue;
|
|
29090
|
+
}
|
|
29093
29091
|
if (nodePredicate(replacement)) {
|
|
29094
29092
|
node = replacement;
|
|
29095
29093
|
} else {
|
|
29096
29094
|
continue;
|
|
29097
29095
|
}
|
|
29098
29096
|
}
|
|
29097
|
+
} else if (currentPath.shouldSkip) {
|
|
29098
|
+
if (!isLeaving) {
|
|
29099
|
+
continue;
|
|
29100
|
+
}
|
|
29099
29101
|
} else if (result !== undefined) {
|
|
29100
29102
|
// Support return value replacement for backwards compatibility
|
|
29101
29103
|
edits.push([key, result]);
|