@speclynx/apidom-ns-asyncapi-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-ns-asyncapi-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-ns-asyncapi-2
@@ -39396,11 +39396,6 @@ function* traverseGenerator(root, visitor, options) {
39396
39396
  if (currentPath.shouldStop) {
39397
39397
  break;
39398
39398
  }
39399
- if (currentPath.shouldSkip) {
39400
- if (!isLeaving) {
39401
- continue;
39402
- }
39403
- }
39404
39399
  if (currentPath.removed) {
39405
39400
  edits.push([key, null]);
39406
39401
  if (!isLeaving) {
@@ -39410,12 +39405,19 @@ function* traverseGenerator(root, visitor, options) {
39410
39405
  const replacement = currentPath._getReplacementNode();
39411
39406
  edits.push([key, replacement]);
39412
39407
  if (!isLeaving) {
39408
+ if (currentPath.shouldSkip) {
39409
+ continue;
39410
+ }
39413
39411
  if (nodePredicate(replacement)) {
39414
39412
  node = replacement;
39415
39413
  } else {
39416
39414
  continue;
39417
39415
  }
39418
39416
  }
39417
+ } else if (currentPath.shouldSkip) {
39418
+ if (!isLeaving) {
39419
+ continue;
39420
+ }
39419
39421
  } else if (result !== undefined) {
39420
39422
  // Support return value replacement for backwards compatibility
39421
39423
  edits.push([key, result]);