@speclynx/apidom-parser-adapter-openapi-yaml-2 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-yaml-2
|
|
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-yaml-2
|
|
@@ -45431,11 +45431,6 @@ function* traverseGenerator(root, visitor, options) {
|
|
|
45431
45431
|
if (currentPath.shouldStop) {
|
|
45432
45432
|
break;
|
|
45433
45433
|
}
|
|
45434
|
-
if (currentPath.shouldSkip) {
|
|
45435
|
-
if (!isLeaving) {
|
|
45436
|
-
continue;
|
|
45437
|
-
}
|
|
45438
|
-
}
|
|
45439
45434
|
if (currentPath.removed) {
|
|
45440
45435
|
edits.push([key, null]);
|
|
45441
45436
|
if (!isLeaving) {
|
|
@@ -45445,12 +45440,19 @@ function* traverseGenerator(root, visitor, options) {
|
|
|
45445
45440
|
const replacement = currentPath._getReplacementNode();
|
|
45446
45441
|
edits.push([key, replacement]);
|
|
45447
45442
|
if (!isLeaving) {
|
|
45443
|
+
if (currentPath.shouldSkip) {
|
|
45444
|
+
continue;
|
|
45445
|
+
}
|
|
45448
45446
|
if (nodePredicate(replacement)) {
|
|
45449
45447
|
node = replacement;
|
|
45450
45448
|
} else {
|
|
45451
45449
|
continue;
|
|
45452
45450
|
}
|
|
45453
45451
|
}
|
|
45452
|
+
} else if (currentPath.shouldSkip) {
|
|
45453
|
+
if (!isLeaving) {
|
|
45454
|
+
continue;
|
|
45455
|
+
}
|
|
45454
45456
|
} else if (result !== undefined) {
|
|
45455
45457
|
// Support return value replacement for backwards compatibility
|
|
45456
45458
|
edits.push([key, result]);
|