@speclynx/apidom-parser-adapter-openapi-json-3-1 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-openapi-json-3-1
|
|
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-openapi-json-3-1
|
|
@@ -40566,11 +40566,6 @@ function* traverseGenerator(root, visitor, options) {
|
|
|
40566
40566
|
if (currentPath.shouldStop) {
|
|
40567
40567
|
break;
|
|
40568
40568
|
}
|
|
40569
|
-
if (currentPath.shouldSkip) {
|
|
40570
|
-
if (!isLeaving) {
|
|
40571
|
-
continue;
|
|
40572
|
-
}
|
|
40573
|
-
}
|
|
40574
40569
|
if (currentPath.removed) {
|
|
40575
40570
|
edits.push([key, null]);
|
|
40576
40571
|
if (!isLeaving) {
|
|
@@ -40580,12 +40575,19 @@ function* traverseGenerator(root, visitor, options) {
|
|
|
40580
40575
|
const replacement = currentPath._getReplacementNode();
|
|
40581
40576
|
edits.push([key, replacement]);
|
|
40582
40577
|
if (!isLeaving) {
|
|
40578
|
+
if (currentPath.shouldSkip) {
|
|
40579
|
+
continue;
|
|
40580
|
+
}
|
|
40583
40581
|
if (nodePredicate(replacement)) {
|
|
40584
40582
|
node = replacement;
|
|
40585
40583
|
} else {
|
|
40586
40584
|
continue;
|
|
40587
40585
|
}
|
|
40588
40586
|
}
|
|
40587
|
+
} else if (currentPath.shouldSkip) {
|
|
40588
|
+
if (!isLeaving) {
|
|
40589
|
+
continue;
|
|
40590
|
+
}
|
|
40589
40591
|
} else if (result !== undefined) {
|
|
40590
40592
|
// Support return value replacement for backwards compatibility
|
|
40591
40593
|
edits.push([key, result]);
|