@swagger-api/apidom-json-path 0.84.0 → 0.86.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 +8 -0
- package/dist/apidom-json-path.browser.js +0 -3
- package/package.json +5 -5
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
|
+
# [0.86.0](https://github.com/swagger-api/apidom/compare/v0.85.0...v0.86.0) (2023-12-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @swagger-api/apidom-json-path
|
|
9
|
+
|
|
10
|
+
# [0.85.0](https://github.com/swagger-api/apidom/compare/v0.84.0...v0.85.0) (2023-11-30)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @swagger-api/apidom-json-path
|
|
13
|
+
|
|
6
14
|
# [0.84.0](https://github.com/swagger-api/apidom/compare/v0.83.0...v0.84.0) (2023-11-24)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @swagger-api/apidom-json-path
|
|
@@ -14799,7 +14799,6 @@ visitor, {
|
|
|
14799
14799
|
if (edits.length !== 0) {
|
|
14800
14800
|
return edits[edits.length - 1][1]; // @TODO(vladimir.gorej@gmail.com): can be replaced by Array.prototype.at in future
|
|
14801
14801
|
}
|
|
14802
|
-
|
|
14803
14802
|
return root;
|
|
14804
14803
|
};
|
|
14805
14804
|
|
|
@@ -14905,7 +14904,6 @@ visitor, {
|
|
|
14905
14904
|
// retrieve result
|
|
14906
14905
|
result = await visitFn.call(visitor, node, key, parent, path, ancestors); // eslint-disable-line no-await-in-loop
|
|
14907
14906
|
}
|
|
14908
|
-
|
|
14909
14907
|
if (result === breakSymbol) {
|
|
14910
14908
|
break;
|
|
14911
14909
|
}
|
|
@@ -14952,7 +14950,6 @@ visitor, {
|
|
|
14952
14950
|
if (edits.length !== 0) {
|
|
14953
14951
|
return edits[edits.length - 1][1]; // @TODO(vladimir.gorej@gmail.com): can be replaced by Array.prototype.at in future
|
|
14954
14952
|
}
|
|
14955
|
-
|
|
14956
14953
|
return root;
|
|
14957
14954
|
};
|
|
14958
14955
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swagger-api/apidom-json-path",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.86.0",
|
|
4
4
|
"description": "Evaluate JSONPath expressions against ApiDOM.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"license": "Apache-2.0",
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@babel/runtime-corejs3": "^7.20.7",
|
|
41
|
-
"@swagger-api/apidom-core": "^0.
|
|
42
|
-
"@swagger-api/apidom-error": "^0.
|
|
43
|
-
"@swagger-api/apidom-json-pointer": "^0.
|
|
41
|
+
"@swagger-api/apidom-core": "^0.86.0",
|
|
42
|
+
"@swagger-api/apidom-error": "^0.86.0",
|
|
43
|
+
"@swagger-api/apidom-json-pointer": "^0.86.0",
|
|
44
44
|
"jsonpath-plus": "^7.2.0"
|
|
45
45
|
},
|
|
46
46
|
"files": [
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"README.md",
|
|
54
54
|
"CHANGELOG.md"
|
|
55
55
|
],
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "13eb0bd9d45950dfa21a65bc4bc8ac608e0802d0"
|
|
57
57
|
}
|