@balena/odata-to-abstract-sql 5.6.2 → 5.7.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/.versionbot/CHANGELOG.yml +50 -1
- package/CHANGELOG.md +16 -0
- package/package.json +3 -3
|
@@ -1,3 +1,52 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Update dependencies
|
|
3
|
+
hash: aec2d59610504bcc670d1af913c05805aabd312a
|
|
4
|
+
body: |
|
|
5
|
+
Update @balena/abstract-sql-compiler from 7.21.0 to 7.22.0
|
|
6
|
+
footer:
|
|
7
|
+
Change-type: minor
|
|
8
|
+
change-type: minor
|
|
9
|
+
Signed-off-by: fisehara <harald@balena.io>
|
|
10
|
+
signed-off-by: fisehara <harald@balena.io>
|
|
11
|
+
author: fisehara
|
|
12
|
+
nested:
|
|
13
|
+
- commits:
|
|
14
|
+
- subject: Fix date fields used inside arithmetic expressions
|
|
15
|
+
hash: 3368afd1e908890e79691372f9c496665a329e6a
|
|
16
|
+
body: >
|
|
17
|
+
isNumericValue is evaluated in arithmetic expressions
|
|
18
|
+
|
|
19
|
+
if operands in expression can be used as numericValues.
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
In SQL statements arithmetic expressions like add/sub are supported for date values.
|
|
23
|
+
|
|
24
|
+
DateArithmetic nodes need input dependent typing.
|
|
25
|
+
footer:
|
|
26
|
+
Change-type: minor
|
|
27
|
+
change-type: minor
|
|
28
|
+
Signed-off-by: fisehara <harald@balena.io>
|
|
29
|
+
signed-off-by: fisehara <harald@balena.io>
|
|
30
|
+
author: fisehara
|
|
31
|
+
nested: []
|
|
32
|
+
version: abstract-sql-compiler-7.22.0
|
|
33
|
+
title: ""
|
|
34
|
+
date: 2022-11-23T16:53:11.719Z
|
|
35
|
+
- commits:
|
|
36
|
+
- subject: Add support for getting the modified fields of an aliased query
|
|
37
|
+
hash: 3dacd6339349596d4e365c809971a86030bae4dc
|
|
38
|
+
body: ""
|
|
39
|
+
footer:
|
|
40
|
+
Change-type: patch
|
|
41
|
+
change-type: patch
|
|
42
|
+
author: Pagan Gazzard
|
|
43
|
+
nested: []
|
|
44
|
+
version: abstract-sql-compiler-7.21.1
|
|
45
|
+
title: ""
|
|
46
|
+
date: 2022-11-22T20:29:32.720Z
|
|
47
|
+
version: 5.7.0
|
|
48
|
+
title: ""
|
|
49
|
+
date: 2022-11-24T10:23:42.810Z
|
|
1
50
|
- commits:
|
|
2
51
|
- subject: Fix replacing an aliased resource select with bind vars for inserts
|
|
3
52
|
hash: e4c0f6569257ba7f4698bbdca66581c29f41f42a
|
|
@@ -9,7 +58,7 @@
|
|
|
9
58
|
nested: []
|
|
10
59
|
version: 5.6.2
|
|
11
60
|
title: ""
|
|
12
|
-
date: 2022-11-22T20:
|
|
61
|
+
date: 2022-11-22T20:26:13.635Z
|
|
13
62
|
- commits:
|
|
14
63
|
- subject: Update dependencies
|
|
15
64
|
hash: 4148764f03b889684f81f49104b8b9d05e7d180d
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ 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
|
+
## 5.7.0 - 2022-11-24
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<details>
|
|
11
|
+
<summary> Update dependencies [fisehara] </summary>
|
|
12
|
+
|
|
13
|
+
> ### abstract-sql-compiler-7.22.0 - 2022-11-23
|
|
14
|
+
>
|
|
15
|
+
> * Fix date fields used inside arithmetic expressions [fisehara]
|
|
16
|
+
>
|
|
17
|
+
> ### abstract-sql-compiler-7.21.1 - 2022-11-22
|
|
18
|
+
>
|
|
19
|
+
> * Add support for getting the modified fields of an aliased query [Pagan Gazzard]
|
|
20
|
+
>
|
|
21
|
+
</details>
|
|
22
|
+
|
|
7
23
|
## 5.6.2 - 2022-11-22
|
|
8
24
|
|
|
9
25
|
* Fix replacing an aliased resource select with bind vars for inserts [Pagan Gazzard]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@balena/odata-to-abstract-sql",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.7.0",
|
|
4
4
|
"description": "A consumer of the OData parser, written in OMeta",
|
|
5
5
|
"main": "out/odata-to-abstract-sql.js",
|
|
6
6
|
"scripts": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"author": "",
|
|
16
16
|
"license": "BSD",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@balena/abstract-sql-compiler": "^7.
|
|
18
|
+
"@balena/abstract-sql-compiler": "^7.22.0",
|
|
19
19
|
"@balena/odata-parser": "^2.4.2",
|
|
20
20
|
"@types/lodash": "^4.14.189",
|
|
21
21
|
"@types/memoizee": "^0.4.8",
|
|
@@ -54,6 +54,6 @@
|
|
|
54
54
|
"_": "test/*.js"
|
|
55
55
|
},
|
|
56
56
|
"versionist": {
|
|
57
|
-
"publishedAt": "2022-11-
|
|
57
|
+
"publishedAt": "2022-11-24T10:23:44.152Z"
|
|
58
58
|
}
|
|
59
59
|
}
|