@swagger-api/apidom-parser-adapter-openapi-yaml-2 0.82.2 → 0.83.0

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
+ # [0.83.0](https://github.com/swagger-api/apidom/compare/v0.82.2...v0.83.0) (2023-11-07)
7
+
8
+ **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-openapi-yaml-2
9
+
6
10
  ## [0.82.2](https://github.com/swagger-api/apidom/compare/v0.82.1...v0.82.2) (2023-11-03)
7
11
 
8
12
  **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-openapi-yaml-2
@@ -18893,7 +18893,7 @@ class CloneError extends _swagger_api_apidom_error__WEBPACK_IMPORTED_MODULE_0__[
18893
18893
  constructor(message, structuredOptions) {
18894
18894
  super(message, structuredOptions);
18895
18895
  if (typeof structuredOptions !== 'undefined') {
18896
- this.value = structuredOptions.source;
18896
+ this.value = structuredOptions.value;
18897
18897
  }
18898
18898
  }
18899
18899
  }
@@ -28130,7 +28130,7 @@ const analyze = (cst, {
28130
28130
  } = {}) => {
28131
28131
  const cursor = cst.walk();
28132
28132
  const iterator = new _TreeCursorIterator_mjs__WEBPACK_IMPORTED_MODULE_0__["default"](cursor);
28133
- const rootNode = [...iterator][0];
28133
+ const [rootNode] = Array.from(iterator);
28134
28134
  const cstVisitor = (0,_visitors_CstVisitor_mjs__WEBPACK_IMPORTED_MODULE_1__["default"])();
28135
28135
  const astVisitor = (0,_visitors_YamlAstVisitor_mjs__WEBPACK_IMPORTED_MODULE_2__["default"])();
28136
28136
  const schema = (0,_swagger_api_apidom_ast__WEBPACK_IMPORTED_MODULE_3__["default"])();