@speclynx/apidom-parser-adapter-arazzo-json-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-arazzo-json-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-arazzo-json-1
@@ -33291,11 +33291,6 @@ function* traverseGenerator(root, visitor, options) {
33291
33291
  if (currentPath.shouldStop) {
33292
33292
  break;
33293
33293
  }
33294
- if (currentPath.shouldSkip) {
33295
- if (!isLeaving) {
33296
- continue;
33297
- }
33298
- }
33299
33294
  if (currentPath.removed) {
33300
33295
  edits.push([key, null]);
33301
33296
  if (!isLeaving) {
@@ -33305,12 +33300,19 @@ function* traverseGenerator(root, visitor, options) {
33305
33300
  const replacement = currentPath._getReplacementNode();
33306
33301
  edits.push([key, replacement]);
33307
33302
  if (!isLeaving) {
33303
+ if (currentPath.shouldSkip) {
33304
+ continue;
33305
+ }
33308
33306
  if (nodePredicate(replacement)) {
33309
33307
  node = replacement;
33310
33308
  } else {
33311
33309
  continue;
33312
33310
  }
33313
33311
  }
33312
+ } else if (currentPath.shouldSkip) {
33313
+ if (!isLeaving) {
33314
+ continue;
33315
+ }
33314
33316
  } else if (result !== undefined) {
33315
33317
  // Support return value replacement for backwards compatibility
33316
33318
  edits.push([key, result]);