@swagger-api/apidom-parser-adapter-yaml-1-2 1.10.0 → 1.10.2

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,16 @@
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.10.2](https://github.com/swagger-api/apidom/compare/v1.10.1...v1.10.2) (2026-04-13)
7
+
8
+ **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-yaml-1-2
9
+
10
+ ## [1.10.1](https://github.com/swagger-api/apidom/compare/v1.10.0...v1.10.1) (2026-04-07)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **parser-adapter:** increase active trees threshold ([#5157](https://github.com/swagger-api/apidom/issues/5157)) ([468d4d6](https://github.com/swagger-api/apidom/commit/468d4d6d7a9068badb1d2d3ce3e79fd310e8aa70))
15
+
6
16
  # [1.10.0](https://github.com/swagger-api/apidom/compare/v1.9.0...v1.10.0) (2026-04-01)
7
17
 
8
18
  ### Bug Fixes
@@ -9896,7 +9896,7 @@
9896
9896
  let parser = null;
9897
9897
  let parserInitLock = null;
9898
9898
  const activeTrees = /* @__PURE__ */ new Set();
9899
- const MAX_ACTIVE_TREES = 5;
9899
+ const MAX_ACTIVE_TREES = 10;
9900
9900
  const createAnalyze = (treeSitterYaml) => (source) => __async$1(null, null, function* () {
9901
9901
  if (parser === null && parserInitLock === null) {
9902
9902
  parserInitLock = Parser.init().then(() => Parser.Language.load(treeSitterYaml)).then((yamlLanguage) => {
@@ -13566,7 +13566,7 @@
13566
13566
  * @name has
13567
13567
  * @memberOf SetCache
13568
13568
  * @param {*} value The value to search for.
13569
- * @returns {number} Returns `true` if `value` is found, else `false`.
13569
+ * @returns {boolean} Returns `true` if `value` is found, else `false`.
13570
13570
  */
13571
13571
 
13572
13572
  var _setCacheHas;