@speclynx/apidom-parser-adapter-openapi-yaml-3-1 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-1
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-1
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-1
@@ -53311,11 +53311,6 @@ function* traverseGenerator(root, visitor, options) {
53311
53311
  if (currentPath.shouldStop) {
53312
53312
  break;
53313
53313
  }
53314
- if (currentPath.shouldSkip) {
53315
- if (!isLeaving) {
53316
- continue;
53317
- }
53318
- }
53319
53314
  if (currentPath.removed) {
53320
53315
  edits.push([key, null]);
53321
53316
  if (!isLeaving) {
@@ -53325,12 +53320,19 @@ function* traverseGenerator(root, visitor, options) {
53325
53320
  const replacement = currentPath._getReplacementNode();
53326
53321
  edits.push([key, replacement]);
53327
53322
  if (!isLeaving) {
53323
+ if (currentPath.shouldSkip) {
53324
+ continue;
53325
+ }
53328
53326
  if (nodePredicate(replacement)) {
53329
53327
  node = replacement;
53330
53328
  } else {
53331
53329
  continue;
53332
53330
  }
53333
53331
  }
53332
+ } else if (currentPath.shouldSkip) {
53333
+ if (!isLeaving) {
53334
+ continue;
53335
+ }
53334
53336
  } else if (result !== undefined) {
53335
53337
  // Support return value replacement for backwards compatibility
53336
53338
  edits.push([key, result]);