@speclynx/apidom-parser-adapter-openapi-yaml-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-parser-adapter-openapi-yaml-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-parser-adapter-openapi-yaml-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-parser-adapter-openapi-yaml-3-0
@@ -47737,11 +47737,6 @@ function* traverseGenerator(root, visitor, options) {
47737
47737
  if (currentPath.shouldStop) {
47738
47738
  break;
47739
47739
  }
47740
- if (currentPath.shouldSkip) {
47741
- if (!isLeaving) {
47742
- continue;
47743
- }
47744
- }
47745
47740
  if (currentPath.removed) {
47746
47741
  edits.push([key, null]);
47747
47742
  if (!isLeaving) {
@@ -47751,12 +47746,19 @@ function* traverseGenerator(root, visitor, options) {
47751
47746
  const replacement = currentPath._getReplacementNode();
47752
47747
  edits.push([key, replacement]);
47753
47748
  if (!isLeaving) {
47749
+ if (currentPath.shouldSkip) {
47750
+ continue;
47751
+ }
47754
47752
  if (nodePredicate(replacement)) {
47755
47753
  node = replacement;
47756
47754
  } else {
47757
47755
  continue;
47758
47756
  }
47759
47757
  }
47758
+ } else if (currentPath.shouldSkip) {
47759
+ if (!isLeaving) {
47760
+ continue;
47761
+ }
47760
47762
  } else if (result !== undefined) {
47761
47763
  // Support return value replacement for backwards compatibility
47762
47764
  edits.push([key, result]);