@balena/odata-to-abstract-sql 5.4.8 → 5.4.9
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 +601 -581
- package/CHANGELOG.md +28 -0
- package/package.json +13 -13
- package/.circleci/config.yml +0 -34
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,34 @@ 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.4.9 - 2022-04-08
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<details>
|
|
11
|
+
<summary> Update dependencies [Pagan Gazzard] </summary>
|
|
12
|
+
|
|
13
|
+
> ### abstract-sql-compiler-7.19.0 - 2022-03-24
|
|
14
|
+
>
|
|
15
|
+
> * Remove .circleci/config.yml [Thodoris Greasidis]
|
|
16
|
+
> * Add support for `ConcatenateWithSeparator` nodes [Thodoris Greasidis]
|
|
17
|
+
>
|
|
18
|
+
> ### abstract-sql-compiler-7.18.0 - 2022-02-16
|
|
19
|
+
>
|
|
20
|
+
> * Add reference property type [Harald Fischer]
|
|
21
|
+
>
|
|
22
|
+
> ### abstract-sql-compiler-7.17.1 - 2022-01-24
|
|
23
|
+
>
|
|
24
|
+
> * Avoid the operation type optimization for HAVING clauses [Pagan Gazzard]
|
|
25
|
+
>
|
|
26
|
+
> ### odata-parser-2.2.9 - 2022-04-08
|
|
27
|
+
>
|
|
28
|
+
> * Update dependencies [Pagan Gazzard]
|
|
29
|
+
> * Remove circleci [Pagan Gazzard]
|
|
30
|
+
>
|
|
31
|
+
</details>
|
|
32
|
+
|
|
33
|
+
* Remove circleci [Pagan Gazzard]
|
|
34
|
+
|
|
7
35
|
## 5.4.8 - 2022-01-13
|
|
8
36
|
|
|
9
37
|
* Use the full alias for the prefix hash [Pagan Gazzard]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@balena/odata-to-abstract-sql",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.9",
|
|
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,9 +15,9 @@
|
|
|
15
15
|
"author": "",
|
|
16
16
|
"license": "BSD",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@balena/abstract-sql-compiler": "^7.
|
|
19
|
-
"@balena/odata-parser": "^2.2.
|
|
20
|
-
"@types/lodash": "^4.14.
|
|
18
|
+
"@balena/abstract-sql-compiler": "^7.19.0",
|
|
19
|
+
"@balena/odata-parser": "^2.2.9",
|
|
20
|
+
"@types/lodash": "^4.14.181",
|
|
21
21
|
"@types/memoizee": "^0.4.7",
|
|
22
22
|
"@types/string-hash": "^1.1.1",
|
|
23
23
|
"lodash": "^4.17.21",
|
|
@@ -25,21 +25,21 @@
|
|
|
25
25
|
"string-hash": "^1.1.3"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@balena/lf-to-abstract-sql": "^4.
|
|
28
|
+
"@balena/lf-to-abstract-sql": "^4.5.1",
|
|
29
29
|
"@balena/lint": "^6.2.0",
|
|
30
|
-
"@balena/sbvr-parser": "^1.
|
|
30
|
+
"@balena/sbvr-parser": "^1.4.1",
|
|
31
31
|
"@balena/sbvr-types": "^3.4.6",
|
|
32
32
|
"@types/chai": "^4.3.0",
|
|
33
33
|
"@types/chai-things": "0.0.35",
|
|
34
|
-
"@types/mocha": "^9.
|
|
35
|
-
"chai": "^4.3.
|
|
34
|
+
"@types/mocha": "^9.1.0",
|
|
35
|
+
"chai": "^4.3.6",
|
|
36
36
|
"chai-things": "~0.2.0",
|
|
37
37
|
"husky": "^4.3.8",
|
|
38
|
-
"lint-staged": "^12.
|
|
39
|
-
"mocha": "^9.
|
|
38
|
+
"lint-staged": "^12.3.7",
|
|
39
|
+
"mocha": "^9.2.2",
|
|
40
40
|
"require-npm4-to-publish": "^1.0.0",
|
|
41
|
-
"ts-node": "^10.
|
|
42
|
-
"typescript": "^4.
|
|
41
|
+
"ts-node": "^10.7.0",
|
|
42
|
+
"typescript": "^4.6.3"
|
|
43
43
|
},
|
|
44
44
|
"husky": {
|
|
45
45
|
"hooks": {
|
|
@@ -54,6 +54,6 @@
|
|
|
54
54
|
"_": "test/*.js"
|
|
55
55
|
},
|
|
56
56
|
"versionist": {
|
|
57
|
-
"publishedAt": "2022-
|
|
57
|
+
"publishedAt": "2022-04-08T13:33:07.757Z"
|
|
58
58
|
}
|
|
59
59
|
}
|
package/.circleci/config.yml
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
version: 2
|
|
2
|
-
|
|
3
|
-
buildSteps: &buildSteps
|
|
4
|
-
- checkout
|
|
5
|
-
- run:
|
|
6
|
-
name: Install
|
|
7
|
-
command: npm install --loglevel warn
|
|
8
|
-
- run:
|
|
9
|
-
name: Test
|
|
10
|
-
command: npm test --loglevel warn
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
node-10:
|
|
14
|
-
docker:
|
|
15
|
-
- image: circleci/node:10
|
|
16
|
-
steps: *buildSteps
|
|
17
|
-
|
|
18
|
-
node-12:
|
|
19
|
-
docker:
|
|
20
|
-
- image: circleci/node:12
|
|
21
|
-
steps: *buildSteps
|
|
22
|
-
|
|
23
|
-
node-14:
|
|
24
|
-
docker:
|
|
25
|
-
- image: circleci/node:14
|
|
26
|
-
steps: *buildSteps
|
|
27
|
-
|
|
28
|
-
workflows:
|
|
29
|
-
version: 2
|
|
30
|
-
build:
|
|
31
|
-
jobs:
|
|
32
|
-
- node-10
|
|
33
|
-
- node-12
|
|
34
|
-
- node-14
|