@swagger-api/apidom-parser-adapter-json 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-json
|
|
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
|
|
@@ -9006,7 +9006,7 @@
|
|
|
9006
9006
|
let parser = null;
|
|
9007
9007
|
let parserInitLock = null;
|
|
9008
9008
|
const activeTrees = /* @__PURE__ */ new Set();
|
|
9009
|
-
const MAX_ACTIVE_TREES =
|
|
9009
|
+
const MAX_ACTIVE_TREES = 10;
|
|
9010
9010
|
const analyze$2 = (source) => __async$1(null, null, function* () {
|
|
9011
9011
|
if (parser === null && parserInitLock === null) {
|
|
9012
9012
|
parserInitLock = Parser.init().then(() => Parser.Language.load(treeSitterJson)).then((jsonLanguage) => {
|
|
@@ -11805,7 +11805,7 @@
|
|
|
11805
11805
|
* @name has
|
|
11806
11806
|
* @memberOf SetCache
|
|
11807
11807
|
* @param {*} value The value to search for.
|
|
11808
|
-
* @returns {
|
|
11808
|
+
* @returns {boolean} Returns `true` if `value` is found, else `false`.
|
|
11809
11809
|
*/
|
|
11810
11810
|
|
|
11811
11811
|
var _setCacheHas;
|