@speclynx/apidom-parser-adapter-asyncapi-json-2 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-parser-adapter-asyncapi-json-2
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-parser-adapter-asyncapi-json-2
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-parser-adapter-asyncapi-json-2
@@ -42867,11 +42867,6 @@ function* traverseGenerator(root, visitor, options) {
42867
42867
  if (currentPath.shouldStop) {
42868
42868
  break;
42869
42869
  }
42870
- if (currentPath.shouldSkip) {
42871
- if (!isLeaving) {
42872
- continue;
42873
- }
42874
- }
42875
42870
  if (currentPath.removed) {
42876
42871
  edits.push([key, null]);
42877
42872
  if (!isLeaving) {
@@ -42881,12 +42876,19 @@ function* traverseGenerator(root, visitor, options) {
42881
42876
  const replacement = currentPath._getReplacementNode();
42882
42877
  edits.push([key, replacement]);
42883
42878
  if (!isLeaving) {
42879
+ if (currentPath.shouldSkip) {
42880
+ continue;
42881
+ }
42884
42882
  if (nodePredicate(replacement)) {
42885
42883
  node = replacement;
42886
42884
  } else {
42887
42885
  continue;
42888
42886
  }
42889
42887
  }
42888
+ } else if (currentPath.shouldSkip) {
42889
+ if (!isLeaving) {
42890
+ continue;
42891
+ }
42890
42892
  } else if (result !== undefined) {
42891
42893
  // Support return value replacement for backwards compatibility
42892
42894
  edits.push([key, result]);