@balena/odata-to-abstract-sql 6.0.0 → 6.0.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.
@@ -1,3 +1,109 @@
1
+ - commits:
2
+ - subject: Update dependencies
3
+ hash: d749289e311ad22e2b09793ad1dd472762bdf402
4
+ body: |
5
+ Update @balena/odata-parser from 2.4.6 to 3.0.0
6
+ Update @balena/sbvr-types from 3.5.0 to 4.0.0
7
+ footer:
8
+ Change-type: patch
9
+ change-type: patch
10
+ author: Pagan Gazzard
11
+ nested:
12
+ - commits:
13
+ - subject: Use optional chaining operator
14
+ hash: 1fb39ef2497b964af0f2cbc953a3f0843936fe02
15
+ body: ""
16
+ footer:
17
+ Change-type: major
18
+ change-type: major
19
+ author: Pagan Gazzard
20
+ - subject: Set minimum supported nodejs version to 16.13.0
21
+ hash: 91b8f51691a9649e99f2dc64253cc5ce9b59035a
22
+ body: ""
23
+ footer:
24
+ Change-type: major
25
+ change-type: major
26
+ author: Pagan Gazzard
27
+ version: odata-parser-3.0.0
28
+ title: ""
29
+ date: 2023-04-26T14:57:49.416Z
30
+ - commits:
31
+ - subject: Update to peggy 3 and make us of the repetition operator
32
+ hash: 3d091133ca54dfba71c2bc0d17e60780fb1bda22
33
+ body: ""
34
+ footer:
35
+ Change-type: minor
36
+ change-type: minor
37
+ author: Pagan Gazzard
38
+ version: odata-parser-2.5.0
39
+ title: ""
40
+ date: 2023-04-26T11:09:24.513Z
41
+ - commits:
42
+ - subject: Add test cases for Objects in JSON validate
43
+ hash: be8fc31c3754186dd4c43ca8d4c056b0def7ffbd
44
+ body: >
45
+ As balena-lint rejects `new Boolean()`, `new Number()` and `new
46
+ String()` constructor usage, test cases double check that they
47
+ are not instantiated as object but primitive type.
48
+ footer:
49
+ Change-type: patch
50
+ change-type: patch
51
+ Signed-off-by: fisehara <harald@balena.io>
52
+ signed-off-by: fisehara <harald@balena.io>
53
+ author: fisehara
54
+ - subject: Drop `require-npm4-to-publish` devDependency
55
+ hash: 46a369117c9d1222089498a8794c32d14edef85b
56
+ body: >
57
+ As engine and npm is now required as part of package.json we can
58
+ drop this dependency
59
+ footer:
60
+ Change-type: patch
61
+ change-type: patch
62
+ Signed-off-by: fisehara <harald@balena.io>
63
+ signed-off-by: fisehara <harald@balena.io>
64
+ author: fisehara
65
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
66
+ hash: 54920d701a7aa4890c27801fc5cc6b9d74ece21c
67
+ body: ""
68
+ footer:
69
+ Change-type: major
70
+ change-type: major
71
+ author: Pagan Gazzard
72
+ - subject: Switch `JSON` to use `JSON` db type instead of `TEXT`
73
+ hash: 0d3561364ad018f59466c0dae9b3adb4390d9496
74
+ body: ""
75
+ footer:
76
+ Change-type: major
77
+ change-type: major
78
+ author: Pagan Gazzard
79
+ - subject: Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER`
80
+ hash: 5af2bd476a9032ab5d60c163a3940e0dd8e81cc6
81
+ body: ""
82
+ footer:
83
+ Change-type: major
84
+ change-type: major
85
+ author: Pagan Gazzard
86
+ - subject: Assert that JSON input typeof is object
87
+ hash: 1819ee97811e20da93c6e0f227db6a62ada8c00e
88
+ body: >
89
+ Ensure that the input passed in for JSON types is either an
90
+ object or
91
+
92
+ an array (typeof returns 'object' for arrays as well). This change is
93
+
94
+ mainly to prevent primitives from being stored as JSON.
95
+ footer:
96
+ Change-type: major
97
+ change-type: major
98
+ Signed-off-by: Josh Bowling <josh@monarci.com>
99
+ signed-off-by: Josh Bowling <josh@monarci.com>
100
+ author: Josh Bowling
101
+ version: sbvr-types-4.0.0
102
+ title: ""
103
+ date: 2023-04-26T15:00:16.169Z
104
+ version: 6.0.1
105
+ title: ""
106
+ date: 2023-04-27T08:42:25.615Z
1
107
  - commits:
2
108
  - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
3
109
  hash: 7f6f98637339f43b34ae7faa8e868129efe6d754
@@ -17,7 +123,7 @@
17
123
  nested: []
18
124
  version: 6.0.0
19
125
  title: ""
20
- date: 2023-04-26T12:43:30.473Z
126
+ date: 2023-04-26T13:50:25.845Z
21
127
  - commits:
22
128
  - subject: Collapse `AliasedFunction` into `FunctionMatch`
23
129
  hash: 98093a48aa75e5b8bd8eadc25ca37b53cc80ce2c
package/CHANGELOG.md CHANGED
@@ -4,6 +4,33 @@ 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
+ ## 6.0.1 - 2023-04-27
8
+
9
+
10
+ <details>
11
+ <summary> Update dependencies [Pagan Gazzard] </summary>
12
+
13
+ > ### odata-parser-3.0.0 - 2023-04-26
14
+ >
15
+ > * Use optional chaining operator [Pagan Gazzard]
16
+ > * Set minimum supported nodejs version to 16.13.0 [Pagan Gazzard]
17
+ >
18
+ > ### odata-parser-2.5.0 - 2023-04-26
19
+ >
20
+ > * Update to peggy 3 and make us of the repetition operator [Pagan Gazzard]
21
+ >
22
+ > ### sbvr-types-4.0.0 - 2023-04-26
23
+ >
24
+ > * Add test cases for Objects in JSON validate [fisehara]
25
+ > * Drop `require-npm4-to-publish` devDependency [fisehara]
26
+ > * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
27
+ > * Switch `JSON` to use `JSON` db type instead of `TEXT` [Pagan Gazzard]
28
+ > * Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER` [Pagan Gazzard]
29
+ > * Assert that JSON input typeof is object [Josh Bowling]
30
+ >
31
+
32
+ </details>
33
+
7
34
  ## 6.0.0 - 2023-04-26
8
35
 
9
36
  * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/odata-to-abstract-sql",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "A consumer of the OData parser, written in OMeta",
5
5
  "main": "out/odata-to-abstract-sql.js",
6
6
  "scripts": {
@@ -16,7 +16,7 @@
16
16
  "license": "BSD",
17
17
  "dependencies": {
18
18
  "@balena/abstract-sql-compiler": "^8.4.1",
19
- "@balena/odata-parser": "^2.4.6",
19
+ "@balena/odata-parser": "^3.0.0",
20
20
  "@types/lodash": "^4.14.194",
21
21
  "@types/memoizee": "^0.4.8",
22
22
  "@types/string-hash": "^1.1.1",
@@ -28,14 +28,14 @@
28
28
  "@balena/lf-to-abstract-sql": "^5.0.0",
29
29
  "@balena/lint": "^6.2.2",
30
30
  "@balena/sbvr-parser": "^1.4.3",
31
- "@balena/sbvr-types": "^3.5.0",
31
+ "@balena/sbvr-types": "^4.0.0",
32
32
  "@types/chai": "^4.3.4",
33
33
  "@types/chai-things": "0.0.35",
34
34
  "@types/mocha": "^10.0.1",
35
35
  "chai": "^4.3.7",
36
36
  "chai-things": "~0.2.0",
37
37
  "husky": "^8.0.3",
38
- "lint-staged": "^13.2.1",
38
+ "lint-staged": "^13.2.2",
39
39
  "mocha": "^10.2.0",
40
40
  "require-npm4-to-publish": "^1.0.0",
41
41
  "ts-node": "^10.9.1",
@@ -53,6 +53,6 @@
53
53
  "npm": ">=8.1.0"
54
54
  },
55
55
  "versionist": {
56
- "publishedAt": "2023-04-26T12:43:30.967Z"
56
+ "publishedAt": "2023-04-27T08:42:27.260Z"
57
57
  }
58
58
  }