@speclynx/apidom-ns-openapi-3-0 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-0
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-0
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-0
@@ -31132,11 +31132,6 @@ function* traverseGenerator(root, visitor, options) {
31132
31132
  if (currentPath.shouldStop) {
31133
31133
  break;
31134
31134
  }
31135
- if (currentPath.shouldSkip) {
31136
- if (!isLeaving) {
31137
- continue;
31138
- }
31139
- }
31140
31135
  if (currentPath.removed) {
31141
31136
  edits.push([key, null]);
31142
31137
  if (!isLeaving) {
@@ -31146,12 +31141,19 @@ function* traverseGenerator(root, visitor, options) {
31146
31141
  const replacement = currentPath._getReplacementNode();
31147
31142
  edits.push([key, replacement]);
31148
31143
  if (!isLeaving) {
31144
+ if (currentPath.shouldSkip) {
31145
+ continue;
31146
+ }
31149
31147
  if (nodePredicate(replacement)) {
31150
31148
  node = replacement;
31151
31149
  } else {
31152
31150
  continue;
31153
31151
  }
31154
31152
  }
31153
+ } else if (currentPath.shouldSkip) {
31154
+ if (!isLeaving) {
31155
+ continue;
31156
+ }
31155
31157
  } else if (result !== undefined) {
31156
31158
  // Support return value replacement for backwards compatibility
31157
31159
  edits.push([key, result]);