@swagger-api/apidom-parser-adapter-arazzo-yaml-1 1.8.0 → 1.9.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
+ # [1.9.0](https://github.com/swagger-api/apidom/compare/v1.8.0...v1.9.0) (2026-03-30)
7
+
8
+ **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-arazzo-yaml-1
9
+
6
10
  # [1.8.0](https://github.com/swagger-api/apidom/compare/v1.7.0...v1.8.0) (2026-03-20)
7
11
 
8
12
  **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-arazzo-yaml-1
@@ -19701,6 +19701,9 @@
19701
19701
  if (parser === null) {
19702
19702
  throw new ApiDOMError('Error while initializing web-tree-sitter and loading tree-sitter-yaml grammar.');
19703
19703
  }
19704
+ if (currentTree !== null) {
19705
+ currentTree.delete();
19706
+ }
19704
19707
  currentTree = parser.parse(source);
19705
19708
  parser.reset();
19706
19709
  return currentTree;