@speclynx/apidom-ns-openapi-3-1 4.6.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,14 @@
|
|
|
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-ns-openapi-3-1
|
|
9
|
+
|
|
10
|
+
# [4.7.0](https://github.com/speclynx/apidom/compare/v4.6.0...v4.7.0) (2026-04-12)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @speclynx/apidom-ns-openapi-3-1
|
|
13
|
+
|
|
6
14
|
# [4.6.0](https://github.com/speclynx/apidom/compare/v4.5.0...v4.6.0) (2026-04-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @speclynx/apidom-ns-openapi-3-1
|
|
@@ -37165,11 +37165,6 @@ function* traverseGenerator(root, visitor, options) {
|
|
|
37165
37165
|
if (currentPath.shouldStop) {
|
|
37166
37166
|
break;
|
|
37167
37167
|
}
|
|
37168
|
-
if (currentPath.shouldSkip) {
|
|
37169
|
-
if (!isLeaving) {
|
|
37170
|
-
continue;
|
|
37171
|
-
}
|
|
37172
|
-
}
|
|
37173
37168
|
if (currentPath.removed) {
|
|
37174
37169
|
edits.push([key, null]);
|
|
37175
37170
|
if (!isLeaving) {
|
|
@@ -37179,12 +37174,19 @@ function* traverseGenerator(root, visitor, options) {
|
|
|
37179
37174
|
const replacement = currentPath._getReplacementNode();
|
|
37180
37175
|
edits.push([key, replacement]);
|
|
37181
37176
|
if (!isLeaving) {
|
|
37177
|
+
if (currentPath.shouldSkip) {
|
|
37178
|
+
continue;
|
|
37179
|
+
}
|
|
37182
37180
|
if (nodePredicate(replacement)) {
|
|
37183
37181
|
node = replacement;
|
|
37184
37182
|
} else {
|
|
37185
37183
|
continue;
|
|
37186
37184
|
}
|
|
37187
37185
|
}
|
|
37186
|
+
} else if (currentPath.shouldSkip) {
|
|
37187
|
+
if (!isLeaving) {
|
|
37188
|
+
continue;
|
|
37189
|
+
}
|
|
37188
37190
|
} else if (result !== undefined) {
|
|
37189
37191
|
// Support return value replacement for backwards compatibility
|
|
37190
37192
|
edits.push([key, result]);
|