@balena/odata-parser 3.1.0 → 3.1.1
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/.versionbot/CHANGELOG.yml +19 -1
- package/CHANGELOG.md +6 -0
- package/odata-parser.js +476 -503
- package/odata-parser.pegjs +25 -16
- package/package.json +2 -2
- package/test/expand.js +27 -1
- package/test/resource_parsing.js +4 -0
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Avoid setting `property`/`count`/`options` for expands when not provided
|
|
3
|
+
hash: 1f3e69085a7e4225c648ea55a594895c288c45e2
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
Change-type: patch
|
|
7
|
+
change-type: patch
|
|
8
|
+
author: Pagan Gazzard
|
|
9
|
+
- subject: Avoid setting nested `property` for `PropertyPath` when not provided
|
|
10
|
+
hash: 020a2a429e8782c38c84650fe644953a90288321
|
|
11
|
+
body: ""
|
|
12
|
+
footer:
|
|
13
|
+
Change-type: patch
|
|
14
|
+
change-type: patch
|
|
15
|
+
author: Pagan Gazzard
|
|
16
|
+
version: 3.1.1
|
|
17
|
+
title: ""
|
|
18
|
+
date: 2024-10-04T15:26:18.229Z
|
|
1
19
|
- commits:
|
|
2
20
|
- subject: Use bind vars for $top and $skip options
|
|
3
21
|
hash: f160a140209cc5c9d3abc617cf8de7a37a0abf16
|
|
@@ -8,7 +26,7 @@
|
|
|
8
26
|
author: Pagan Gazzard
|
|
9
27
|
version: 3.1.0
|
|
10
28
|
title: ""
|
|
11
|
-
date: 2024-10-
|
|
29
|
+
date: 2024-10-03T23:27:17.856Z
|
|
12
30
|
- commits:
|
|
13
31
|
- subject: Fix type checking of the declaration file
|
|
14
32
|
hash: 17dc377da3031f28bb5f2ffaff9b2185d65159aa
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
# v3.1.1
|
|
8
|
+
## (2024-10-04)
|
|
9
|
+
|
|
10
|
+
* Avoid setting `property`/`count`/`options` for expands when not provided [Pagan Gazzard]
|
|
11
|
+
* Avoid setting nested `property` for `PropertyPath` when not provided [Pagan Gazzard]
|
|
12
|
+
|
|
7
13
|
# v3.1.0
|
|
8
14
|
## (2024-10-03)
|
|
9
15
|
|