@balena/pinejs 17.0.0-build-large-file-uploads-293e65ee371a69130834c50fef2f7f42cc18133f-1 → 17.0.0-build-17-x-0447fb6e94bafa136206d060acda2f2df4c00ad2-1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. package/.pinejs-cache.json +1 -1
  2. package/.versionbot/CHANGELOG.yml +2295 -17
  3. package/CHANGELOG.md +860 -5
  4. package/out/bin/abstract-sql-compiler.js +1 -1
  5. package/out/bin/abstract-sql-compiler.js.map +1 -1
  6. package/out/bin/sbvr-compiler.js +1 -1
  7. package/out/bin/sbvr-compiler.js.map +1 -1
  8. package/out/database-layer/db.js +30 -19
  9. package/out/database-layer/db.js.map +1 -1
  10. package/out/http-transactions/transactions.js +2 -2
  11. package/out/http-transactions/transactions.js.map +1 -1
  12. package/out/migrator/async.js +8 -9
  13. package/out/migrator/async.js.map +1 -1
  14. package/out/migrator/sync.js +6 -6
  15. package/out/migrator/sync.js.map +1 -1
  16. package/out/pinejs-session-store/pinejs-session-store.js +103 -108
  17. package/out/pinejs-session-store/pinejs-session-store.js.map +1 -1
  18. package/out/sbvr-api/abstract-sql.js +1 -1
  19. package/out/sbvr-api/abstract-sql.js.map +1 -1
  20. package/out/sbvr-api/errors.js +3 -0
  21. package/out/sbvr-api/errors.js.map +1 -1
  22. package/out/sbvr-api/hooks.js +4 -5
  23. package/out/sbvr-api/hooks.js.map +1 -1
  24. package/out/sbvr-api/permissions.js +3 -3
  25. package/out/sbvr-api/permissions.js.map +1 -1
  26. package/out/sbvr-api/sbvr-utils.d.ts +5 -6
  27. package/out/sbvr-api/sbvr-utils.js +16 -15
  28. package/out/sbvr-api/sbvr-utils.js.map +1 -1
  29. package/out/sbvr-api/uri-parser.js +1 -1
  30. package/out/sbvr-api/uri-parser.js.map +1 -1
  31. package/out/server-glue/module.js +0 -2
  32. package/out/server-glue/module.js.map +1 -1
  33. package/out/webresource-handler/handlers/NoopHandler.d.ts +1 -3
  34. package/out/webresource-handler/handlers/NoopHandler.js +0 -6
  35. package/out/webresource-handler/handlers/NoopHandler.js.map +1 -1
  36. package/out/webresource-handler/handlers/S3Handler.d.ts +28 -0
  37. package/out/webresource-handler/handlers/S3Handler.js +104 -0
  38. package/out/webresource-handler/handlers/S3Handler.js.map +1 -0
  39. package/out/webresource-handler/handlers/index.d.ts +1 -0
  40. package/out/webresource-handler/handlers/index.js +1 -0
  41. package/out/webresource-handler/handlers/index.js.map +1 -1
  42. package/out/webresource-handler/index.d.ts +7 -31
  43. package/out/webresource-handler/index.js +22 -23
  44. package/out/webresource-handler/index.js.map +1 -1
  45. package/package.json +40 -39
  46. package/src/bin/abstract-sql-compiler.ts +1 -1
  47. package/src/bin/sbvr-compiler.ts +1 -1
  48. package/src/http-transactions/transactions.js +2 -2
  49. package/src/migrator/async.ts +10 -11
  50. package/src/migrator/sync.ts +6 -6
  51. package/src/sbvr-api/abstract-sql.ts +1 -1
  52. package/src/sbvr-api/permissions.ts +3 -3
  53. package/src/sbvr-api/sbvr-utils.ts +24 -23
  54. package/src/sbvr-api/uri-parser.ts +1 -1
  55. package/src/server-glue/module.ts +0 -2
  56. package/src/webresource-handler/handlers/NoopHandler.ts +1 -14
  57. package/src/webresource-handler/handlers/S3Handler.ts +143 -0
  58. package/src/webresource-handler/handlers/index.ts +1 -0
  59. package/src/webresource-handler/index.ts +22 -64
  60. package/tsconfig.json +1 -1
  61. package/out/webresource-handler/multipartUpload.d.ts +0 -16
  62. package/out/webresource-handler/multipartUpload.js +0 -182
  63. package/out/webresource-handler/multipartUpload.js.map +0 -1
  64. package/out/webresource-handler/webresource.sbvr +0 -63
  65. package/src/webresource-handler/multipartUpload.ts +0 -275
  66. package/src/webresource-handler/webresource.sbvr +0 -63
@@ -1,40 +1,2318 @@
1
1
  - commits:
2
- - subject: Add webresource vocab & begin/commitUpload actions
3
- hash: 293e65ee371a69130834c50fef2f7f42cc18133f
2
+ - subject: Update tsconfig target to es2022
3
+ hash: 0447fb6e94bafa136206d060acda2f2df4c00ad2
4
4
  body: ""
5
5
  footer:
6
- Change-type: minor
7
- change-type: minor
8
- author: Otavio Jacobi
6
+ Change-type: major
7
+ change-type: major
8
+ author: Pagan Gazzard
9
9
  nested: []
10
- - subject: Add beginMultipartUpload/commitMultipartUpload to WebResourceHandler
11
- hash: a23172f0d3c5aa4169ebb0f29d4939508c9074cf
12
- body: ""
10
+ - subject: Fix internal pinejs client class when used with es2022
11
+ hash: eacfdb19357084fc73c23360e5afc419f26d5c02
12
+ body: |
13
+ We remove `passthrough` override from internal pinejs client class
14
+ because in es2022 it is actually defined and overrides the parent
15
+ version rather than just affecting typings, and that override causes
16
+ problems
13
17
  footer:
14
18
  Change-type: major
15
19
  change-type: major
16
- author: Otavio Jacobi
20
+ author: Pagan Gazzard
17
21
  nested: []
18
- - subject: Remove S3 handler from core in favor of @balena/pinejs-webresource-s3
19
- hash: 4b8f0faa9617d64057e94cdc0ca92650925c1d39
22
+ - subject: Update minimum supported nodejs version to 20.14.0
23
+ hash: 2dfd69025e6344628eabe971b4096fea34232f6c
20
24
  body: ""
21
25
  footer:
22
26
  Change-type: major
23
27
  change-type: major
24
- author: Otavio Jacobi
28
+ author: Pagan Gazzard
25
29
  nested: []
26
- - subject: Drop support to node < 18.18
27
- hash: 13acf75c74cc64a383aca6e91ba9582f40f60ea1
30
+ - subject: Update @balena/abstract-sql-to-typescript to 3.x
31
+ hash: d75f7764359af4403db5405e9b6b4bc5463173d6
32
+ body: |
33
+ Update @balena/abstract-sql-to-typescript from 2.4.0 to 3.0.2
34
+ footer:
35
+ Change-type: major
36
+ change-type: major
37
+ author: Pagan Gazzard
38
+ nested:
39
+ - commits:
40
+ - subject: Improve `Resource` typing
41
+ hash: ba1301734f1a71dc2a920d1f378173a6bfa7c4a5
42
+ body: ""
43
+ footer:
44
+ Change-type: patch
45
+ change-type: patch
46
+ author: Pagan Gazzard
47
+ nested: []
48
+ version: abstract-sql-to-typescript-3.0.2
49
+ title: ""
50
+ date: 2024-05-09T20:07:35.620Z
51
+ - commits:
52
+ - subject: Use `[A] | []` rather than `[A?]` for singular references
53
+ hash: 0b9661d460138a2e93e30974bb792f2f452290b0
54
+ body: >
55
+ This is a more accurate representation because the result will
56
+ never
57
+
58
+ contain `undefined` and will either be length of 0 or 1
59
+ footer:
60
+ Change-type: patch
61
+ change-type: patch
62
+ author: Pagan Gazzard
63
+ nested: []
64
+ - subject: Fix `Resource` typing to allow for null
65
+ hash: 9e1e5f606cbeb6b9e9739444291f43b80b480d3a
66
+ body: ""
67
+ footer:
68
+ Change-type: patch
69
+ change-type: patch
70
+ author: Pagan Gazzard
71
+ nested: []
72
+ - subject: Fix `Resource` typing for expandable properties
73
+ hash: 8f79d7379e132d17817b8420b01b198e2c1e7ae5
74
+ body: ""
75
+ footer:
76
+ Change-type: patch
77
+ change-type: patch
78
+ author: Pagan Gazzard
79
+ nested: []
80
+ version: abstract-sql-to-typescript-3.0.1
81
+ title: ""
82
+ date: 2024-05-04T04:34:02.941Z
83
+ - commits:
84
+ - subject: Export a `Resource` type which all resources should conform to
85
+ hash: 188ac11c28a722c202732b0ee71760e6e0c0d4e4
86
+ body: ""
87
+ footer:
88
+ Change-type: minor
89
+ change-type: minor
90
+ author: Pagan Gazzard
91
+ nested: []
92
+ - subject: Separate the generation code from the exported type helpers
93
+ hash: 0a9d4165461690b19ce6735cfc80c7a0cf11cf77
94
+ body: ""
95
+ footer:
96
+ Change-type: major
97
+ change-type: major
98
+ author: Pagan Gazzard
99
+ nested: []
100
+ - subject: Use types directly from sbvr-types
101
+ hash: 3ee00d89c1c41ed7f4c6ddfc7a77dea2c2361b35
102
+ body: >
103
+ This uses the typescript types exported from @balena/sbvr-types
104
+ so that
105
+
106
+ new types can be dynamically picked up and the types we expose
107
+ will
108
+
109
+ match those that sbvr-types expects, avoiding any potential
110
+ issues if
111
+
112
+ our hardcoded types were to diverge from the types sbvr-types
113
+ actually
114
+
115
+ expects
116
+ footer:
117
+ Change-type: major
118
+ change-type: major
119
+ author: Pagan Gazzard
120
+ nested: []
121
+ - subject: Expose read vs write selection in generated types
122
+ hash: 46a6b741771a1eb2aa4520445b40e61ef57bcd53
123
+ body: >
124
+ This allows easily choosing read vs write types with just one
125
+ set of
126
+
127
+ types with no need to generate/manage two separate sets of
128
+ typings. It
129
+
130
+ also allows these typings to be passed as generics to other
131
+ functions
132
+
133
+ and they will also be able to distinguish read vs write
134
+ footer:
135
+ Change-type: major
136
+ change-type: major
137
+ author: Pagan Gazzard
138
+ nested: []
139
+ version: abstract-sql-to-typescript-3.0.0
140
+ title: ""
141
+ date: 2024-05-02T11:30:52.814Z
142
+ - subject: Remove deprecated logging functionality from exported API clients
143
+ hash: 86a06663693464d57c31cdbac2802b25b84311f7
28
144
  body: |
29
- Node 18.18.0 is the latest LTS Node 18 version
145
+ This functionality can be accessed via the logger export instead
30
146
  footer:
31
147
  Change-type: major
32
148
  change-type: major
33
- author: Otavio Jacobi
149
+ author: Pagan Gazzard
34
150
  nested: []
35
151
  version: 17.0.0
36
152
  title: ""
37
- date: 2024-04-19T22:33:50.534Z
153
+ date: 2024-06-04T15:38:05.163Z
154
+ - commits:
155
+ - subject: Deprecate LoggingClient in favor of a separate logger dictionary
156
+ hash: 0abc88cc06bfb3eaa4852c8e2b7534edd816005c
157
+ body: ""
158
+ footer:
159
+ Change-type: patch
160
+ change-type: patch
161
+ author: Pagan Gazzard
162
+ nested: []
163
+ version: 16.1.6
164
+ title: ""
165
+ date: 2024-05-09T00:19:29.108Z
166
+ - commits:
167
+ - subject: Update dependencies
168
+ hash: 520cd49d9b5a982fe4e8ab844931d69d27627715
169
+ body: |
170
+ Update @balena/abstract-sql-compiler from 9.1.0 to 9.1.4
171
+ Update @balena/abstract-sql-to-typescript from 2.1.3 to 2.4.0
172
+ Update @balena/env-parsing from 1.1.10 to 1.1.12
173
+ Update @balena/lf-to-abstract-sql from 5.0.1 to 5.0.2
174
+ Update @balena/odata-parser from 3.0.3 to 3.0.7
175
+ Update @balena/sbvr-parser from 1.4.3 to 1.4.4
176
+ Update @balena/sbvr-types from 7.0.1 to 7.1.0
177
+ Update pinejs-client-core from 6.14.0 to 6.14.4
178
+ footer:
179
+ Change-type: patch
180
+ change-type: patch
181
+ author: Pagan Gazzard
182
+ nested:
183
+ - commits:
184
+ - subject: Cast Big Serial to integer
185
+ hash: 9e4025dd57517f4ad6d06f4cb894062c6ce370cf
186
+ body: ""
187
+ footer:
188
+ Change-type: patch
189
+ change-type: patch
190
+ author: Josh Bowling
191
+ nested: []
192
+ version: abstract-sql-compiler-9.1.4
193
+ title: ""
194
+ date: 2024-04-09T10:04:33.059Z
195
+ - commits:
196
+ - subject: Update prepare script for husky v9
197
+ hash: bae835665431a88f0fdd4804f1d70757a7e11dd0
198
+ body: ""
199
+ footer:
200
+ Change-type: patch
201
+ change-type: patch
202
+ author: Josh Bowling
203
+ nested: []
204
+ - subject: Update dependency husky to v9
205
+ hash: d53d2f121e97d0dde35fe646e63b9d7179f4f098
206
+ body: |
207
+ Update husky from 8.0.3 to 9.0.11
208
+ footer:
209
+ Change-type: patch
210
+ change-type: patch
211
+ author: Self-hosted Renovate Bot
212
+ nested: []
213
+ version: abstract-sql-compiler-9.1.3
214
+ title: ""
215
+ date: 2024-04-09T01:41:53.829Z
216
+ - commits:
217
+ - subject: Update dependency lint-staged to v15
218
+ hash: 6b5c28a3170006cd3f6f963f03ec2ee67273223e
219
+ body: |
220
+ Update lint-staged from 13.3.0 to 15.2.2
221
+ footer:
222
+ Change-type: patch
223
+ change-type: patch
224
+ author: Self-hosted Renovate Bot
225
+ nested: []
226
+ version: abstract-sql-compiler-9.1.2
227
+ title: ""
228
+ date: 2024-04-09T01:09:18.361Z
229
+ - commits:
230
+ - subject: Update dependency @balena/lint to v8
231
+ hash: 835365353b766b89d80c80b84f48583ba0322849
232
+ body: |
233
+ Update @balena/lint from 6.2.2 to 8.0.0
234
+ footer:
235
+ Change-type: patch
236
+ change-type: patch
237
+ author: Thodoris Greasidis
238
+ nested: []
239
+ version: abstract-sql-compiler-9.1.1
240
+ title: ""
241
+ date: 2024-03-26T10:27:12.964Z
242
+ - commits:
243
+ - subject: Improve foreign key typings by referencing the appropriate interface
244
+ hash: 2be23a8ad8a051bac1c52c0ca0b99c30e8c114d1
245
+ body: ""
246
+ footer:
247
+ Change-type: minor
248
+ change-type: minor
249
+ author: Pagan Gazzard
250
+ nested: []
251
+ version: abstract-sql-to-typescript-2.4.0
252
+ title: ""
253
+ date: 2024-04-19T15:06:30.962Z
254
+ - commits:
255
+ - subject: Allow using `PickDeferred` with a single parameter to defer all keys
256
+ hash: 60b4233b03c1ec25165b800de1fd9bd31158cfca
257
+ body: ""
258
+ footer:
259
+ Change-type: minor
260
+ change-type: minor
261
+ author: Pagan Gazzard
262
+ nested: []
263
+ - subject: Allow using `PickExpanded` with a single parameter to expand all keys
264
+ hash: aad3e7d76c925810cfa03e8e8e20662d5015a3b0
265
+ body: ""
266
+ footer:
267
+ Change-type: minor
268
+ change-type: minor
269
+ author: Pagan Gazzard
270
+ nested: []
271
+ version: abstract-sql-to-typescript-2.3.0
272
+ title: ""
273
+ date: 2024-04-17T23:02:53.473Z
274
+ - commits:
275
+ - subject: Add support for Big Serial
276
+ hash: b1d91eea5f28d2724be7c589fc6d6a9b446e9880
277
+ body: ""
278
+ footer:
279
+ Change-type: minor
280
+ change-type: minor
281
+ author: Josh Bowling
282
+ nested: []
283
+ version: abstract-sql-to-typescript-2.2.0
284
+ title: ""
285
+ date: 2024-04-09T10:02:51.592Z
286
+ - commits:
287
+ - subject: Update prepare script for husky v9
288
+ hash: d2d1970b67a473031dad091c3451b78af9fa13f4
289
+ body: ""
290
+ footer:
291
+ Change-type: patch
292
+ change-type: patch
293
+ author: Josh Bowling
294
+ nested: []
295
+ - subject: Update dependency husky to v9
296
+ hash: 0e0878a4ee4e55ea41a687807ddefba9d5eb1753
297
+ body: |
298
+ Update husky from 8.0.3 to 9.0.11
299
+ footer:
300
+ Change-type: patch
301
+ change-type: patch
302
+ author: Self-hosted Renovate Bot
303
+ nested: []
304
+ version: abstract-sql-to-typescript-2.1.6
305
+ title: ""
306
+ date: 2024-04-09T01:58:09.365Z
307
+ - commits:
308
+ - subject: Update dependency @balena/lint to v8
309
+ hash: ebafb1edda286e10394be6e137ac674645537b1a
310
+ body: |
311
+ Update @balena/lint from 7.3.0 to 8.0.0
312
+ footer:
313
+ Change-type: patch
314
+ change-type: patch
315
+ author: Self-hosted Renovate Bot
316
+ nested: []
317
+ version: abstract-sql-to-typescript-2.1.5
318
+ title: ""
319
+ date: 2024-04-09T01:09:23.010Z
320
+ - commits:
321
+ - subject: Update dependencies
322
+ hash: f5a822492b32f1395633f892c096a93058569441
323
+ body: |
324
+ Update @balena/abstract-sql-compiler from 9.0.3 to 9.0.4
325
+ Update @balena/odata-to-abstract-sql from 5.9.6 to 6.2.3
326
+ footer:
327
+ Change-type: patch
328
+ change-type: patch
329
+ author: Pagan Gazzard
330
+ nested:
331
+ - commits:
332
+ - subject: Require at least one field to be updated for PATCH requests
333
+ hash: ad819432657598898a4811d9628c9ca0a0e428c6
334
+ body: ""
335
+ footer:
336
+ Change-type: patch
337
+ change-type: patch
338
+ author: Pagan Gazzard
339
+ nested: []
340
+ version: odata-to-abstract-sql-6.2.3
341
+ title: ""
342
+ date: 2024-01-15T16:41:10.852Z
343
+ - commits:
344
+ - subject: Simplify support for MERGE as an alias for PATCH
345
+ hash: 1da1bd4a49aab7d1bc5053c86109cb976f79c91d
346
+ body: ""
347
+ footer:
348
+ Change-type: patch
349
+ change-type: patch
350
+ author: Pagan Gazzard
351
+ nested: []
352
+ version: odata-to-abstract-sql-6.2.2
353
+ title: ""
354
+ date: 2024-01-15T16:21:54.195Z
355
+ - commits:
356
+ - subject: Update dependencies
357
+ hash: 6f619f6a24ec7a4086963b035fe3c015c729678c
358
+ body: |
359
+ Update @balena/abstract-sql-compiler from 9.0.3 to 9.0.4
360
+ Update @balena/lint from 7.2.0 to 7.2.4
361
+ Update @balena/odata-parser from 3.0.1 to 3.0.3
362
+ Update @balena/sbvr-types from 6.1.0 to 6.1.1
363
+ footer:
364
+ Change-type: patch
365
+ change-type: patch
366
+ author: Pagan Gazzard
367
+ nested:
368
+ - commits:
369
+ - subject: Update dependency @types/node to v20
370
+ hash: 82a6edce01af738b184d223351bdfe79c63e7cce
371
+ body: |
372
+ Update @types/node from 18.19.4 to 20.10.6
373
+ footer:
374
+ Change-type: patch
375
+ change-type: patch
376
+ author: Self-hosted Renovate Bot
377
+ nested: []
378
+ version: abstract-sql-compiler-9.0.4
379
+ title: ""
380
+ date: 2024-01-02T18:48:39.478Z
381
+ - commits:
382
+ - subject: Optimize by moving constant values into global init
383
+ hash: 94899b779fb879540f3675c3c9d7ca3f9d8af4bf
384
+ body: ""
385
+ footer:
386
+ Change-type: patch
387
+ change-type: patch
388
+ Signed-off-by: fisehara <harald@balena.io>
389
+ signed-off-by: fisehara <harald@balena.io>
390
+ author: fisehara
391
+ version: odata-parser-3.0.3
392
+ title: ""
393
+ date: 2024-01-04T15:30:09.102Z
394
+ - commits:
395
+ - subject: Update dependencies
396
+ hash: 0a7bd8ff2e506fa3988b6e1851e0098df5da3f86
397
+ body: >
398
+ - Update @balena/lint from 6.2.2 to 7.2.4
399
+
400
+ - Delete `require-npm4-to-publish` as handled by
401
+ `engines` parameter in `package.json`
402
+ footer:
403
+ Change-type: patch
404
+ change-type: patch
405
+ Signed-off-by: fisehara <harald@balena.io>
406
+ signed-off-by: fisehara <harald@balena.io>
407
+ author: fisehara
408
+ version: odata-parser-3.0.2
409
+ title: ""
410
+ date: 2024-01-04T10:16:56.896Z
411
+ - commits:
412
+ - subject: Update dependency @types/chai-datetime to ^0.0.39
413
+ hash: 428c5a2c94bd753cc2ffc6d1e012c3a743e1b4d2
414
+ body: >
415
+ Update @types/chai-datetime from 0.0.37 to 0.0.39
416
+ footer:
417
+ Change-type: patch
418
+ change-type: patch
419
+ author: Self-hosted Renovate Bot
420
+ version: sbvr-types-6.1.1
421
+ title: ""
422
+ date: 2024-01-02T18:54:07.180Z
423
+ version: odata-to-abstract-sql-6.2.1
424
+ title: ""
425
+ date: 2024-01-15T15:03:52.684Z
426
+ - commits:
427
+ - subject: Optimize Duplications of `ComputedField` queries
428
+ hash: 87c73d455a8495f268aa5bd0e291f3f3e8bf5777
429
+ body: >
430
+ For each modelName the a `ComputedField` is only
431
+ compiled into abstract-sql-query once. Afterwards it's
432
+ used as ReferencedField
433
+ footer:
434
+ Change-type: minor
435
+ change-type: minor
436
+ Signed-off-by: fisehara <harald@balena.io>
437
+ signed-off-by: fisehara <harald@balena.io>
438
+ author: fisehara
439
+ nested: []
440
+ version: odata-to-abstract-sql-6.2.0
441
+ title: ""
442
+ date: 2023-11-24T17:37:33.674Z
443
+ - commits:
444
+ - subject: Update dependency @types/chai-things to v0.0.38
445
+ hash: eefceedfe462c2b5b8b6bbf2590f1c8b4afc1983
446
+ body: |
447
+ Update @types/chai-things from 0.0.37 to 0.0.38
448
+ footer:
449
+ Change-type: patch
450
+ change-type: patch
451
+ author: Self-hosted Renovate Bot
452
+ nested: []
453
+ version: odata-to-abstract-sql-6.1.3
454
+ title: ""
455
+ date: 2023-11-10T01:09:34.325Z
456
+ - commits:
457
+ - subject: Update dependency @types/chai-things to v0.0.37
458
+ hash: bb8f58d7429e4a91ab4f179c71a5970b4d516f1b
459
+ body: |
460
+ Update @types/chai-things from 0.0.36 to 0.0.37
461
+ footer:
462
+ Change-type: patch
463
+ change-type: patch
464
+ author: Self-hosted Renovate Bot
465
+ nested: []
466
+ version: odata-to-abstract-sql-6.1.2
467
+ title: ""
468
+ date: 2023-10-20T23:51:44.598Z
469
+ - commits:
470
+ - subject: Update dependencies eslint, sbvrTypes, abstract-sql-compiler
471
+ hash: f9e08b24decefe20be1d8fb1747063deb2c1cb5e
472
+ body: |
473
+ Update @balena/abstract-sql-compiler from 8.4.1 to 9.0.3
474
+ Update @balena/odata-parser from 3.0.0 to 3.0.1
475
+ Update @types/lodash from 4.14.194 to 4.14.199
476
+ Update @types/memoizee from 0.4.8 to 0.4.9
477
+ Update @balena/lf-to-abstract-sql from 5.0.0 to 5.0.1
478
+ Update @balena/lint from 6.2.2 to 7.2.0
479
+ Update @balena/sbvr-types from 4.0.0 to 6.1.0
480
+ Update @types/chai from 4.3.4 to 4.3.8
481
+ Update @types/chai-things from 0.0.35 to 0.0.36
482
+ Update @types/mocha from 10.0.1 to 10.0.2
483
+ Update chai from 4.3.7 to 4.3.10
484
+ Update lint-staged from 13.2.2 to 15.0.1
485
+ Update typescript from 5.0.4 to 5.2.2
486
+ footer:
487
+ Change-type: patch
488
+ change-type: patch
489
+ Signed-off-by: Harald Fischer <harald@balena.io>
490
+ signed-off-by: Harald Fischer <harald@balena.io>
491
+ author: Harald Fischer
492
+ nested:
493
+ - commits:
494
+ - subject: Update @balena/sbvr-types to 6.0.0
495
+ hash: 76aed21f8b79dea58914ef9d02775ba93c8226ec
496
+ body: |
497
+ Update @balena/sbvr-types from 5.0.0 to 6.0.0
498
+ footer:
499
+ Change-type: patch
500
+ change-type: patch
501
+ author: Otávio Jacobi
502
+ nested:
503
+ - commits:
504
+ - subject: Change contents to snake_case
505
+ hash: aaa12269901e364533cf2aa45a958948ce0339de
506
+ body: ""
507
+ footer:
508
+ Change-Type: major
509
+ change-type: major
510
+ author: Otávio Jacobi
511
+ version: sbvr-types-6.0.0
512
+ title: ""
513
+ date: 2023-08-09T00:10:50.917Z
514
+ - commits:
515
+ - subject: Expose WebResource as WebResourceType
516
+ hash: 9e42bfffb2145b5096539492b36b0f19b1f2e209
517
+ body: ""
518
+ footer:
519
+ Change-type: minor
520
+ change-type: minor
521
+ author: Otávio Jacobi
522
+ version: sbvr-types-5.2.0
523
+ title: ""
524
+ date: 2023-08-08T21:01:49.459Z
525
+ - commits:
526
+ - subject: Adds WebResource type
527
+ hash: db7ff44e95a040a0b250d8c7612b126b31a3f325
528
+ body: ""
529
+ footer:
530
+ Change-type: minor
531
+ change-type: minor
532
+ Co-authored-by: ramirogm
533
+ co-authored-by: ramirogm
534
+ author: Otávio Jacobi
535
+ version: sbvr-types-5.1.0
536
+ title: ""
537
+ date: 2023-08-03T09:36:41.490Z
538
+ version: abstract-sql-compiler-9.0.3
539
+ title: ""
540
+ date: 2023-08-09T00:41:33.356Z
541
+ - commits:
542
+ - subject: Update @balena/sbvr-types to 5.0.0
543
+ hash: 67e4fafb3f89a05646f9911354fc74d9012c3096
544
+ body: |
545
+ Update @balena/sbvr-types from 4.0.0 to 5.0.0
546
+ footer:
547
+ Change-type: patch
548
+ change-type: patch
549
+ author: Pagan Gazzard
550
+ nested:
551
+ - commits:
552
+ - subject: Switch from `export =` to `export default`
553
+ hash: 6cd01340e0fee46833942691fce5a9f6a42ac104
554
+ body: ""
555
+ footer:
556
+ Change-type: major
557
+ change-type: major
558
+ author: Pagan Gazzard
559
+ version: sbvr-types-5.0.0
560
+ title: ""
561
+ date: 2023-05-16T15:56:09.861Z
562
+ - commits:
563
+ - subject: Improve typings
564
+ hash: a5fd4a319cd0336afc5a765af9e1a1eec851f2c3
565
+ body: ""
566
+ footer:
567
+ Change-type: patch
568
+ change-type: patch
569
+ author: Pagan Gazzard
570
+ version: sbvr-types-4.0.2
571
+ title: ""
572
+ date: 2023-05-03T11:40:24.422Z
573
+ - commits:
574
+ - subject: "boolean: Avoid unnecessary array creation to reduce GCs"
575
+ hash: 5ba948cd5f42844974d43dc19f1c371e56376fc8
576
+ body: ""
577
+ footer:
578
+ Change-type: patch
579
+ change-type: patch
580
+ author: Thodoris Greasidis
581
+ version: sbvr-types-4.0.1
582
+ title: ""
583
+ date: 2023-05-02T13:39:37.722Z
584
+ version: abstract-sql-compiler-9.0.2
585
+ title: ""
586
+ date: 2023-05-16T16:05:11.077Z
587
+ - commits:
588
+ - subject: Fix TS errors for the latest sbvrTypes
589
+ hash: bb1f16713d084eaf6285138a2a587e9b36bc7759
590
+ body: ""
591
+ footer:
592
+ Change-type: patch
593
+ change-type: patch
594
+ author: Thodoris Greasidis
595
+ nested: []
596
+ version: abstract-sql-compiler-9.0.1
597
+ title: ""
598
+ date: 2023-05-15T12:54:08.040Z
599
+ - commits:
600
+ - subject: Drop `require-npm4-to-publish` as `engines` used
601
+ hash: 374bc5bd42c3caac5c68608f802302674a511c23
602
+ body: ""
603
+ footer:
604
+ Change-type: patch
605
+ change-type: patch
606
+ Signed-off-by: fisehara <harald@balena.io>
607
+ signed-off-by: fisehara <harald@balena.io>
608
+ author: fisehara
609
+ nested: []
610
+ - subject: Update @balena/odata-to-abstract-sql to 6.x
611
+ hash: e7194718065ab98328c0cb3266df9838787c08c3
612
+ body: >
613
+ Update @balena/odata-to-abstract-sql from 5.9.3
614
+ to 6.0.1
615
+ footer:
616
+ Change-type: major
617
+ change-type: major
618
+ author: Pagan Gazzard
619
+ nested:
620
+ - commits:
621
+ - subject: Update dependencies
622
+ hash: d749289e311ad22e2b09793ad1dd472762bdf402
623
+ body: >
624
+ Update @balena/odata-parser from 2.4.6
625
+ to 3.0.0
626
+
627
+ Update @balena/sbvr-types from 3.5.0 to
628
+ 4.0.0
629
+ footer:
630
+ Change-type: patch
631
+ change-type: patch
632
+ author: Pagan Gazzard
633
+ nested:
634
+ - commits:
635
+ - subject: Use optional chaining operator
636
+ hash: 1fb39ef2497b964af0f2cbc953a3f0843936fe02
637
+ body: ""
638
+ footer:
639
+ Change-type: major
640
+ change-type: major
641
+ author: Pagan Gazzard
642
+ - subject: Set minimum supported nodejs version to 16.13.0
643
+ hash: 91b8f51691a9649e99f2dc64253cc5ce9b59035a
644
+ body: ""
645
+ footer:
646
+ Change-type: major
647
+ change-type: major
648
+ author: Pagan Gazzard
649
+ version: odata-parser-3.0.0
650
+ title: ""
651
+ date: 2023-04-26T14:57:49.416Z
652
+ - commits:
653
+ - subject: Update to peggy 3 and make us of the repetition operator
654
+ hash: 3d091133ca54dfba71c2bc0d17e60780fb1bda22
655
+ body: ""
656
+ footer:
657
+ Change-type: minor
658
+ change-type: minor
659
+ author: Pagan Gazzard
660
+ version: odata-parser-2.5.0
661
+ title: ""
662
+ date: 2023-04-26T11:09:24.513Z
663
+ - commits:
664
+ - subject: Add test cases for Objects in JSON validate
665
+ hash: be8fc31c3754186dd4c43ca8d4c056b0def7ffbd
666
+ body: >
667
+ As balena-lint rejects `new
668
+ Boolean()`, `new Number()` and
669
+ `new String()` constructor
670
+ usage, test cases double check
671
+ that they are not instantiated
672
+ as object but primitive type.
673
+ footer:
674
+ Change-type: patch
675
+ change-type: patch
676
+ Signed-off-by: fisehara <harald@balena.io>
677
+ signed-off-by: fisehara <harald@balena.io>
678
+ author: fisehara
679
+ - subject: Drop `require-npm4-to-publish` devDependency
680
+ hash: 46a369117c9d1222089498a8794c32d14edef85b
681
+ body: >
682
+ As engine and npm is now
683
+ required as part of package.json
684
+ we can drop this dependency
685
+ footer:
686
+ Change-type: patch
687
+ change-type: patch
688
+ Signed-off-by: fisehara <harald@balena.io>
689
+ signed-off-by: fisehara <harald@balena.io>
690
+ author: fisehara
691
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
692
+ hash: 54920d701a7aa4890c27801fc5cc6b9d74ece21c
693
+ body: ""
694
+ footer:
695
+ Change-type: major
696
+ change-type: major
697
+ author: Pagan Gazzard
698
+ - subject: Switch `JSON` to use `JSON` db type instead of `TEXT`
699
+ hash: 0d3561364ad018f59466c0dae9b3adb4390d9496
700
+ body: ""
701
+ footer:
702
+ Change-type: major
703
+ change-type: major
704
+ author: Pagan Gazzard
705
+ - subject: Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER`
706
+ hash: 5af2bd476a9032ab5d60c163a3940e0dd8e81cc6
707
+ body: ""
708
+ footer:
709
+ Change-type: major
710
+ change-type: major
711
+ author: Pagan Gazzard
712
+ - subject: Assert that JSON input typeof is object
713
+ hash: 1819ee97811e20da93c6e0f227db6a62ada8c00e
714
+ body: >
715
+ Ensure that the input passed in
716
+ for JSON types is either an
717
+ object or
718
+
719
+ an array (typeof returns
720
+ 'object' for arrays as well).
721
+ This change is
722
+
723
+ mainly to prevent primitives
724
+ from being stored as JSON.
725
+ footer:
726
+ Change-type: major
727
+ change-type: major
728
+ Signed-off-by: Josh Bowling <josh@monarci.com>
729
+ signed-off-by: Josh Bowling <josh@monarci.com>
730
+ author: Josh Bowling
731
+ version: sbvr-types-4.0.0
732
+ title: ""
733
+ date: 2023-04-26T15:00:16.169Z
734
+ version: odata-to-abstract-sql-6.0.1
735
+ title: ""
736
+ date: 2023-04-27T08:45:33.841Z
737
+ - commits:
738
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
739
+ hash: 7f6f98637339f43b34ae7faa8e868129efe6d754
740
+ body: ""
741
+ footer:
742
+ Change-type: major
743
+ change-type: major
744
+ author: Pagan Gazzard
745
+ nested: []
746
+ - subject: Switch `AggregateJSON` to use the newer `ReferencedField` format
747
+ hash: e8038b15c471d801b21f39cec2c95ff6689b0595
748
+ body: ""
749
+ footer:
750
+ Change-type: major
751
+ change-type: major
752
+ author: Pagan Gazzard
753
+ nested: []
754
+ version: odata-to-abstract-sql-6.0.0
755
+ title: ""
756
+ date: 2023-04-26T13:50:25.845Z
757
+ - commits:
758
+ - subject: Collapse `AliasedFunction` into `FunctionMatch`
759
+ hash: 98093a48aa75e5b8bd8eadc25ca37b53cc80ce2c
760
+ body: ""
761
+ footer:
762
+ Change-type: patch
763
+ change-type: patch
764
+ author: Pagan Gazzard
765
+ nested: []
766
+ version: odata-to-abstract-sql-5.9.6
767
+ title: ""
768
+ date: 2023-04-25T13:27:44.188Z
769
+ - commits:
770
+ - subject: Improve typings
771
+ hash: 78d4a48022ac0465c5d2c48db53b8ddd08e6e1bf
772
+ body: >
773
+ Update @balena/abstract-sql-compiler
774
+ from 8.4.0 to 8.4.1
775
+ footer:
776
+ Change-type: patch
777
+ change-type: patch
778
+ author: Pagan Gazzard
779
+ nested:
780
+ - commits:
781
+ - subject: Add much finer grained typings for abstract-sql-optimizer
782
+ hash: 92bc7e93ca1b17401d902d66c68e090e50f70d1a
783
+ body: ""
784
+ footer:
785
+ Change-type: patch
786
+ change-type: patch
787
+ author: Pagan Gazzard
788
+ nested: []
789
+ version: abstract-sql-compiler-8.4.1
790
+ title: ""
791
+ date: 2023-04-25T10:03:26.380Z
792
+ version: odata-to-abstract-sql-5.9.5
793
+ title: ""
794
+ date: 2023-04-25T12:16:48.086Z
795
+ - commits:
796
+ - subject: Update dependencies
797
+ hash: 5aa3c51cbbfc66cddedebd41dacba5eabbacf709
798
+ body: >
799
+ Update @balena/abstract-sql-compiler
800
+ from 8.0.0 to 8.4.0
801
+
802
+ Update @balena/odata-parser from 2.4.2
803
+ to 2.4.6
804
+ footer:
805
+ Change-type: patch
806
+ change-type: patch
807
+ author: Pagan Gazzard
808
+ nested:
809
+ - commits:
810
+ - subject: Add support for using field type nodes with an AggregateJSON node
811
+ hash: 19c2760ecf76b4097d7d3045c2eefbf74fd7c2da
812
+ body: >
813
+ This also deprecates the legacy
814
+ version
815
+ footer:
816
+ Change-type: minor
817
+ change-type: minor
818
+ author: Pagan Gazzard
819
+ nested: []
820
+ version: abstract-sql-compiler-8.4.0
821
+ title: ""
822
+ date: 2023-04-24T12:05:48.116Z
823
+ - commits:
824
+ - subject: Deprecate `AliasableFromTypeNodes` type as it's redundant
825
+ hash: 283da4816fe5e6d672e4959b05800861625dda99
826
+ body: ""
827
+ footer:
828
+ Change-type: patch
829
+ change-type: patch
830
+ author: Pagan Gazzard
831
+ nested: []
832
+ version: abstract-sql-compiler-8.3.13
833
+ title: ""
834
+ date: 2023-04-24T12:00:41.593Z
835
+ - commits:
836
+ - subject: Revert tightening of `OrderBy` to only field nodes
837
+ hash: 1c25d9b8d011791a9e98a5929ad48cdd9f3bab6b
838
+ body: >
839
+ It can in fact be a lot of
840
+ different things and that is now
841
+ also
842
+
843
+ reflected in the typing
844
+ footer:
845
+ Change-type: patch
846
+ change-type: patch
847
+ author: Pagan Gazzard
848
+ nested: []
849
+ version: abstract-sql-compiler-8.3.12
850
+ title: ""
851
+ date: 2023-04-17T16:53:20.918Z
852
+ - commits:
853
+ - subject: Do not allow ON clauses for CROSS JOIN as it is invalid
854
+ hash: d47bf63d3a14cdbb4cb0aeb7544e41a9288699f4
855
+ body: ""
856
+ footer:
857
+ Change-type: patch
858
+ change-type: patch
859
+ author: Pagan Gazzard
860
+ nested: []
861
+ - subject: Stop accepting `ExtractJSONPathAsText`/`ToJSON` as unknown node types
862
+ hash: 6fcb2c4257f9fc50f6b4b1070dec86ace9f71237
863
+ body: >
864
+ We know what type they return
865
+ and they should be explicitly
866
+ accepted as
867
+
868
+ those types instead where it is
869
+ valid to do so
870
+ footer:
871
+ Change-type: patch
872
+ change-type: patch
873
+ author: Pagan Gazzard
874
+ nested: []
875
+ version: abstract-sql-compiler-8.3.11
876
+ title: ""
877
+ date: 2023-04-13T11:28:36.049Z
878
+ - commits:
879
+ - subject: Fix DateNode/AnyNode typings
880
+ hash: aab549e8cf4e274a2a8b93814da393451acc4238
881
+ body: ""
882
+ footer:
883
+ Change-type: patch
884
+ change-type: patch
885
+ author: Pagan Gazzard
886
+ nested: []
887
+ version: abstract-sql-compiler-8.3.10
888
+ title: ""
889
+ date: 2023-04-13T10:27:14.478Z
890
+ - commits:
891
+ - subject: Update dependencies
892
+ hash: 39058b2dacac51da96158d594b2d72e3238d0cbc
893
+ body: >
894
+ Update @balena/sbvr-types from
895
+ 3.4.18 to 3.5.0
896
+ footer:
897
+ Change-type: patch
898
+ change-type: patch
899
+ author: Pagan Gazzard
900
+ nested:
901
+ - commits:
902
+ - subject: Add Big Serial type
903
+ hash: 49460ad51fcbc60f81e61329c573a1af5b207a46
904
+ body: ""
905
+ footer:
906
+ Change-type: minor
907
+ change-type: minor
908
+ author: Josh Bowling
909
+ version: sbvr-types-3.5.0
910
+ title: ""
911
+ date: 2023-03-21T11:16:27.398Z
912
+ - commits:
913
+ - subject: "Flowzone: Allow external contributions"
914
+ hash: 9f7bb028bbac327e6fe0711491d7c0f2c6464f98
915
+ body: ""
916
+ footer:
917
+ Change-type: patch
918
+ change-type: patch
919
+ Signed-off-by: Josh Bowling <josh@monarci.com>
920
+ signed-off-by: Josh Bowling <josh@monarci.com>
921
+ author: Josh Bowling
922
+ version: sbvr-types-3.4.19
923
+ title: ""
924
+ date: 2022-12-08T01:08:35.143Z
925
+ version: abstract-sql-compiler-8.3.9
926
+ title: ""
927
+ date: 2023-04-13T10:09:53.529Z
928
+ - commits:
929
+ - subject: Improve typings
930
+ hash: 43e75ef37de956d1b583bc62b307b04e0f8455c1
931
+ body: ""
932
+ footer:
933
+ Change-type: patch
934
+ change-type: patch
935
+ author: Pagan Gazzard
936
+ nested: []
937
+ version: abstract-sql-compiler-8.3.8
938
+ title: ""
939
+ date: 2023-04-12T17:26:10.992Z
940
+ - commits:
941
+ - subject: Remove typing for non-existent JSON node
942
+ hash: 76181d438f0f37463642704d7908c1774040c2c2
943
+ body: ""
944
+ footer:
945
+ Change-type: patch
946
+ change-type: patch
947
+ author: Pagan Gazzard
948
+ nested: []
949
+ version: abstract-sql-compiler-8.3.7
950
+ title: ""
951
+ date: 2023-04-12T16:38:07.014Z
952
+ - commits:
953
+ - subject: Tighten the `isXValue` function typings
954
+ hash: 91485cd9c88faaaed9b1280bc34eb3a99628057e
955
+ body: ""
956
+ footer:
957
+ Change-type: patch
958
+ change-type: patch
959
+ author: Pagan Gazzard
960
+ nested: []
961
+ version: abstract-sql-compiler-8.3.6
962
+ title: ""
963
+ date: 2023-04-12T16:18:20.829Z
964
+ - commits:
965
+ - subject: Correctly treat `Value` nodes as rewritten to `Text` by the optimizer
966
+ hash: c9dbc4cfb3fa392e87a0775accdd6811b3c273b4
967
+ body: ""
968
+ footer:
969
+ Change-type: patch
970
+ change-type: patch
971
+ author: Pagan Gazzard
972
+ nested: []
973
+ - subject: Add EmbeddedTextNode typing
974
+ hash: d00ac00ca7af4d17b437c3d5511af8e506615db4
975
+ body: ""
976
+ footer:
977
+ Change-type: patch
978
+ change-type: patch
979
+ author: Pagan Gazzard
980
+ nested: []
981
+ version: abstract-sql-compiler-8.3.5
982
+ title: ""
983
+ date: 2023-04-12T16:01:45.643Z
984
+ - commits:
985
+ - subject: Enforce the first argument of ExtractJSONPathAsText is a JSON type node
986
+ hash: 08865295d4cd3ded56d77a30d33c0434e1da52b9
987
+ body: ""
988
+ footer:
989
+ Change-type: patch
990
+ change-type: patch
991
+ author: Pagan Gazzard
992
+ nested: []
993
+ version: abstract-sql-compiler-8.3.4
994
+ title: ""
995
+ date: 2023-04-12T15:55:47.432Z
996
+ - commits:
997
+ - subject: Improve node typings
998
+ hash: 2cb83cf242052c581ee5412e3a90ed87cf5fd39e
999
+ body: ""
1000
+ footer:
1001
+ Change-type: patch
1002
+ change-type: patch
1003
+ author: Pagan Gazzard
1004
+ nested: []
1005
+ version: abstract-sql-compiler-8.3.3
1006
+ title: ""
1007
+ date: 2023-04-12T15:43:13.357Z
1008
+ - commits:
1009
+ - subject: Add more node typings
1010
+ hash: db162a8a4d645c2f37c968224d667ed753e534dd
1011
+ body: ""
1012
+ footer:
1013
+ Change-type: patch
1014
+ change-type: patch
1015
+ author: Pagan Gazzard
1016
+ nested: []
1017
+ version: abstract-sql-compiler-8.3.2
1018
+ title: ""
1019
+ date: 2023-04-12T15:01:22.252Z
1020
+ - commits:
1021
+ - subject: Add more node typings
1022
+ hash: 047954b6f66abb041bee74373f37c38d71cdc4d7
1023
+ body: ""
1024
+ footer:
1025
+ Change-type: patch
1026
+ change-type: patch
1027
+ author: Pagan Gazzard
1028
+ nested: []
1029
+ version: abstract-sql-compiler-8.3.1
1030
+ title: ""
1031
+ date: 2023-04-12T13:14:25.174Z
1032
+ - commits:
1033
+ - subject: Support boolean nodes in a ValuesNode
1034
+ hash: d589fb6cd92a3a7570e3b2ebea14acbb84807d8a
1035
+ body: >
1036
+ This also deprecates the legacy
1037
+ use of direct true/false entries
1038
+ footer:
1039
+ Change-type: minor
1040
+ change-type: minor
1041
+ author: Pagan Gazzard
1042
+ nested: []
1043
+ version: abstract-sql-compiler-8.3.0
1044
+ title: ""
1045
+ date: 2023-04-11T14:56:54.403Z
1046
+ - commits:
1047
+ - subject: Add `Between` node type
1048
+ hash: 4880072eeab6af198df47777b6579dcacc3d7fb1
1049
+ body: ""
1050
+ footer:
1051
+ Change-type: minor
1052
+ change-type: minor
1053
+ author: Pagan Gazzard
1054
+ nested: []
1055
+ version: abstract-sql-compiler-8.2.0
1056
+ title: ""
1057
+ date: 2023-04-11T14:19:22.378Z
1058
+ - commits:
1059
+ - subject: Add `BitwiseAnd`/`BitwiseShiftRight` node types
1060
+ hash: f155d1daca54086b653fa590e3248c5ef805afff
1061
+ body: ""
1062
+ footer:
1063
+ Change-type: minor
1064
+ change-type: minor
1065
+ author: Pagan Gazzard
1066
+ nested: []
1067
+ version: abstract-sql-compiler-8.1.0
1068
+ title: ""
1069
+ date: 2023-04-11T14:11:01.677Z
1070
+ - commits:
1071
+ - subject: Add `NotInNode` type
1072
+ hash: 9870d746344033db53ec14fddc23a8580b863ad9
1073
+ body: ""
1074
+ footer:
1075
+ Change-type: patch
1076
+ change-type: patch
1077
+ author: Pagan Gazzard
1078
+ nested: []
1079
+ - subject: Add `IsDistinctFromNode`/`IsNotDistinctFromNode` types
1080
+ hash: 09887280a6394a61a31c955602ccb2a0fe98c9b8
1081
+ body: ""
1082
+ footer:
1083
+ Change-type: patch
1084
+ change-type: patch
1085
+ author: Pagan Gazzard
1086
+ nested: []
1087
+ - subject: Add `CharacterLengthNode` type
1088
+ hash: 1fbab42cee8128025756076dc826dacda4ea1597
1089
+ body: ""
1090
+ footer:
1091
+ Change-type: patch
1092
+ change-type: patch
1093
+ author: Pagan Gazzard
1094
+ nested: []
1095
+ version: abstract-sql-compiler-8.0.2
1096
+ title: ""
1097
+ date: 2023-04-06T18:12:29.893Z
1098
+ - commits:
1099
+ - subject: Adds Cast node type to tree parsing
1100
+ hash: cbdb559bfce3c77f9bce9e07f05777f58965f324
1101
+ body: ""
1102
+ footer:
1103
+ Change-type: patch
1104
+ change-type: patch
1105
+ author: Otávio Jacobi
1106
+ nested: []
1107
+ version: abstract-sql-compiler-8.0.1
1108
+ title: ""
1109
+ date: 2023-04-06T17:59:29.723Z
1110
+ - commits:
1111
+ - subject: Improve typings
1112
+ hash: ed5fa5675021485a775eb777f2358d8041b93ce1
1113
+ body: ""
1114
+ footer:
1115
+ Change-type: patch
1116
+ change-type: patch
1117
+ author: Pagan Gazzard
1118
+ version: odata-parser-2.4.6
1119
+ title: ""
1120
+ date: 2023-02-24T17:02:58.272Z
1121
+ - commits:
1122
+ - subject: Use const/let as appropriate
1123
+ hash: 0824fe7d85eeb97941319749fc802f9bae3c9fb6
1124
+ body: ""
1125
+ footer:
1126
+ Change-type: patch
1127
+ change-type: patch
1128
+ author: Pagan Gazzard
1129
+ version: odata-parser-2.4.5
1130
+ title: ""
1131
+ date: 2023-02-23T16:31:08.299Z
1132
+ - commits:
1133
+ - subject: Use shorthand object notation
1134
+ hash: 611c0480681965c7af06302264eac79fea18bded
1135
+ body: ""
1136
+ footer:
1137
+ Change-type: patch
1138
+ change-type: patch
1139
+ author: Pagan Gazzard
1140
+ version: odata-parser-2.4.4
1141
+ title: ""
1142
+ date: 2023-02-23T16:26:30.639Z
1143
+ - commits:
1144
+ - subject: Update dependencies
1145
+ hash: 25b153aca258347c6742cb8b4efe54c0ae199695
1146
+ body: ""
1147
+ footer:
1148
+ Change-type: patch
1149
+ change-type: patch
1150
+ author: Pagan Gazzard
1151
+ version: odata-parser-2.4.3
1152
+ title: ""
1153
+ date: 2023-02-23T16:14:13.013Z
1154
+ version: odata-to-abstract-sql-5.9.4
1155
+ title: ""
1156
+ date: 2023-04-24T16:26:44.367Z
1157
+ - subject: Remove support for the legacy AggregateJSON format of `[tableName,
1158
+ fieldName]`
1159
+ hash: ab90bed96cd80599f57c59f03dd02b6ac7bc6115
1160
+ body: >
1161
+ Use `['ReferencedField, tableName, fieldName]`
1162
+ instead
1163
+ footer:
1164
+ Change-type: major
1165
+ change-type: major
1166
+ author: Pagan Gazzard
1167
+ nested: []
1168
+ - subject: Remove support for the legacy boolean format of `true|false`
1169
+ hash: 1826e6d9ad81542dd3c1123768ae926254a85a17
1170
+ body: |
1171
+ Use `['Boolean', true|false]` instead
1172
+ footer:
1173
+ Change-type: major
1174
+ change-type: major
1175
+ author: Pagan Gazzard
1176
+ nested: []
1177
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
1178
+ hash: 62bef1d7243d256ebe270881691c6a56216c67d6
1179
+ body: ""
1180
+ footer:
1181
+ Change-type: major
1182
+ change-type: major
1183
+ author: Pagan Gazzard
1184
+ nested: []
1185
+ - subject: Remove support for the legacy alias format of `[node, alias]`
1186
+ hash: 52038aa06d833c1bfbc14f721e7417d4272edc28
1187
+ body: ""
1188
+ footer:
1189
+ Change-type: major
1190
+ change-type: major
1191
+ author: Pagan Gazzard
1192
+ nested: []
1193
+ - subject: Remove support for the legacy table format of `tableName`
1194
+ hash: 3ff760a6e360421ed1030afe355761d655408547
1195
+ body: ""
1196
+ footer:
1197
+ Change-type: major
1198
+ change-type: major
1199
+ author: Pagan Gazzard
1200
+ nested: []
1201
+ - subject: Remove support for the legacy null formats of `null` and `'Null'`
1202
+ hash: 166d2616b245f8593b17160722c915a5868b2b3a
1203
+ body: ""
1204
+ footer:
1205
+ Change-type: major
1206
+ change-type: major
1207
+ author: Pagan Gazzard
1208
+ nested: []
1209
+ - subject: Reflect the usage of BOOLEAN db type
1210
+ hash: ddab41907418024df2747fa7f630abd80d580a43
1211
+ body: ""
1212
+ footer:
1213
+ Change-type: major
1214
+ change-type: major
1215
+ author: Pagan Gazzard
1216
+ nested: []
1217
+ - subject: Update @balena/sbvr-types to 4.x
1218
+ hash: ff17af594020723ab91bf65aed197dc01ace7981
1219
+ body: |
1220
+ Update @balena/sbvr-types from 3.5.0 to 4.0.0
1221
+ footer:
1222
+ Change-type: major
1223
+ change-type: major
1224
+ author: Pagan Gazzard
1225
+ nested:
1226
+ - commits:
1227
+ - subject: Add test cases for Objects in JSON validate
1228
+ hash: be8fc31c3754186dd4c43ca8d4c056b0def7ffbd
1229
+ body: >
1230
+ As balena-lint rejects `new Boolean()`,
1231
+ `new Number()` and `new String()`
1232
+ constructor usage, test cases double
1233
+ check that they are not instantiated as
1234
+ object but primitive type.
1235
+ footer:
1236
+ Change-type: patch
1237
+ change-type: patch
1238
+ Signed-off-by: fisehara <harald@balena.io>
1239
+ signed-off-by: fisehara <harald@balena.io>
1240
+ author: fisehara
1241
+ - subject: Drop `require-npm4-to-publish` devDependency
1242
+ hash: 46a369117c9d1222089498a8794c32d14edef85b
1243
+ body: >
1244
+ As engine and npm is now required as
1245
+ part of package.json we can drop this
1246
+ dependency
1247
+ footer:
1248
+ Change-type: patch
1249
+ change-type: patch
1250
+ Signed-off-by: fisehara <harald@balena.io>
1251
+ signed-off-by: fisehara <harald@balena.io>
1252
+ author: fisehara
1253
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
1254
+ hash: 54920d701a7aa4890c27801fc5cc6b9d74ece21c
1255
+ body: ""
1256
+ footer:
1257
+ Change-type: major
1258
+ change-type: major
1259
+ author: Pagan Gazzard
1260
+ - subject: Switch `JSON` to use `JSON` db type instead of `TEXT`
1261
+ hash: 0d3561364ad018f59466c0dae9b3adb4390d9496
1262
+ body: ""
1263
+ footer:
1264
+ Change-type: major
1265
+ change-type: major
1266
+ author: Pagan Gazzard
1267
+ - subject: Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER`
1268
+ hash: 5af2bd476a9032ab5d60c163a3940e0dd8e81cc6
1269
+ body: ""
1270
+ footer:
1271
+ Change-type: major
1272
+ change-type: major
1273
+ author: Pagan Gazzard
1274
+ - subject: Assert that JSON input typeof is object
1275
+ hash: 1819ee97811e20da93c6e0f227db6a62ada8c00e
1276
+ body: >
1277
+ Ensure that the input passed in for JSON
1278
+ types is either an object or
1279
+
1280
+ an array (typeof returns 'object' for
1281
+ arrays as well). This change is
1282
+
1283
+ mainly to prevent primitives from being
1284
+ stored as JSON.
1285
+ footer:
1286
+ Change-type: major
1287
+ change-type: major
1288
+ Signed-off-by: Josh Bowling <josh@monarci.com>
1289
+ signed-off-by: Josh Bowling <josh@monarci.com>
1290
+ author: Josh Bowling
1291
+ version: sbvr-types-4.0.0
1292
+ title: ""
1293
+ date: 2023-04-26T15:00:16.169Z
1294
+ version: abstract-sql-compiler-9.0.0
1295
+ title: ""
1296
+ date: 2023-05-02T10:21:03.552Z
1297
+ - commits:
1298
+ - subject: Use native `StartsWith` node type for postgres
1299
+ hash: 0e0055782f05eccf3d7d8bf01f2d6810e738c4e6
1300
+ body: ""
1301
+ footer:
1302
+ Change-type: minor
1303
+ change-type: minor
1304
+ author: Pagan Gazzard
1305
+ nested: []
1306
+ - subject: Convert `EscapeForLike` into a standalone node type
1307
+ hash: 9732e2e6e678262dfb25c8fbe5d935e4d6201296
1308
+ body: ""
1309
+ footer:
1310
+ Change-type: minor
1311
+ change-type: minor
1312
+ author: Pagan Gazzard
1313
+ nested: []
1314
+ version: abstract-sql-compiler-8.5.0
1315
+ title: ""
1316
+ date: 2023-04-27T14:11:46.912Z
1317
+ - commits:
1318
+ - subject: Update @balena/sbvr-types to 5.0.0
1319
+ hash: 9acf28eac9790f47704d9103b5788fc4e1802e14
1320
+ body: |
1321
+ Update @balena/sbvr-types from 3.4.18 to 5.0.0
1322
+ footer:
1323
+ Change-type: patch
1324
+ change-type: patch
1325
+ author: Pagan Gazzard
1326
+ nested:
1327
+ - commits:
1328
+ - subject: Switch from `export =` to `export default`
1329
+ hash: 6cd01340e0fee46833942691fce5a9f6a42ac104
1330
+ body: ""
1331
+ footer:
1332
+ Change-type: major
1333
+ change-type: major
1334
+ author: Pagan Gazzard
1335
+ version: sbvr-types-5.0.0
1336
+ title: ""
1337
+ date: 2023-05-16T15:56:09.861Z
1338
+ - commits:
1339
+ - subject: Improve typings
1340
+ hash: a5fd4a319cd0336afc5a765af9e1a1eec851f2c3
1341
+ body: ""
1342
+ footer:
1343
+ Change-type: patch
1344
+ change-type: patch
1345
+ author: Pagan Gazzard
1346
+ version: sbvr-types-4.0.2
1347
+ title: ""
1348
+ date: 2023-05-03T11:40:24.422Z
1349
+ - commits:
1350
+ - subject: "boolean: Avoid unnecessary array creation to reduce GCs"
1351
+ hash: 5ba948cd5f42844974d43dc19f1c371e56376fc8
1352
+ body: ""
1353
+ footer:
1354
+ Change-type: patch
1355
+ change-type: patch
1356
+ author: Thodoris Greasidis
1357
+ version: sbvr-types-4.0.1
1358
+ title: ""
1359
+ date: 2023-05-02T13:39:37.722Z
1360
+ - commits:
1361
+ - subject: Add test cases for Objects in JSON validate
1362
+ hash: be8fc31c3754186dd4c43ca8d4c056b0def7ffbd
1363
+ body: >
1364
+ As balena-lint rejects `new Boolean()`,
1365
+ `new Number()` and `new String()`
1366
+ constructor usage, test cases double
1367
+ check that they are not instantiated as
1368
+ object but primitive type.
1369
+ footer:
1370
+ Change-type: patch
1371
+ change-type: patch
1372
+ Signed-off-by: fisehara <harald@balena.io>
1373
+ signed-off-by: fisehara <harald@balena.io>
1374
+ author: fisehara
1375
+ - subject: Drop `require-npm4-to-publish` devDependency
1376
+ hash: 46a369117c9d1222089498a8794c32d14edef85b
1377
+ body: >
1378
+ As engine and npm is now required as
1379
+ part of package.json we can drop this
1380
+ dependency
1381
+ footer:
1382
+ Change-type: patch
1383
+ change-type: patch
1384
+ Signed-off-by: fisehara <harald@balena.io>
1385
+ signed-off-by: fisehara <harald@balena.io>
1386
+ author: fisehara
1387
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
1388
+ hash: 54920d701a7aa4890c27801fc5cc6b9d74ece21c
1389
+ body: ""
1390
+ footer:
1391
+ Change-type: major
1392
+ change-type: major
1393
+ author: Pagan Gazzard
1394
+ - subject: Switch `JSON` to use `JSON` db type instead of `TEXT`
1395
+ hash: 0d3561364ad018f59466c0dae9b3adb4390d9496
1396
+ body: ""
1397
+ footer:
1398
+ Change-type: major
1399
+ change-type: major
1400
+ author: Pagan Gazzard
1401
+ - subject: Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER`
1402
+ hash: 5af2bd476a9032ab5d60c163a3940e0dd8e81cc6
1403
+ body: ""
1404
+ footer:
1405
+ Change-type: major
1406
+ change-type: major
1407
+ author: Pagan Gazzard
1408
+ - subject: Assert that JSON input typeof is object
1409
+ hash: 1819ee97811e20da93c6e0f227db6a62ada8c00e
1410
+ body: >
1411
+ Ensure that the input passed in for JSON
1412
+ types is either an object or
1413
+
1414
+ an array (typeof returns 'object' for
1415
+ arrays as well). This change is
1416
+
1417
+ mainly to prevent primitives from being
1418
+ stored as JSON.
1419
+ footer:
1420
+ Change-type: major
1421
+ change-type: major
1422
+ Signed-off-by: Josh Bowling <josh@monarci.com>
1423
+ signed-off-by: Josh Bowling <josh@monarci.com>
1424
+ author: Josh Bowling
1425
+ version: sbvr-types-4.0.0
1426
+ title: ""
1427
+ date: 2023-04-26T15:00:16.169Z
1428
+ - commits:
1429
+ - subject: Add Big Serial type
1430
+ hash: 49460ad51fcbc60f81e61329c573a1af5b207a46
1431
+ body: ""
1432
+ footer:
1433
+ Change-type: minor
1434
+ change-type: minor
1435
+ author: Josh Bowling
1436
+ version: sbvr-types-3.5.0
1437
+ title: ""
1438
+ date: 2023-03-21T11:16:27.398Z
1439
+ - commits:
1440
+ - subject: "Flowzone: Allow external contributions"
1441
+ hash: 9f7bb028bbac327e6fe0711491d7c0f2c6464f98
1442
+ body: ""
1443
+ footer:
1444
+ Change-type: patch
1445
+ change-type: patch
1446
+ Signed-off-by: Josh Bowling <josh@monarci.com>
1447
+ signed-off-by: Josh Bowling <josh@monarci.com>
1448
+ author: Josh Bowling
1449
+ version: sbvr-types-3.4.19
1450
+ title: ""
1451
+ date: 2022-12-08T01:08:35.143Z
1452
+ version: lf-to-abstract-sql-5.0.1
1453
+ title: ""
1454
+ date: 2023-05-16T16:11:31.737Z
1455
+ - commits:
1456
+ - subject: Allow running CI on external PRs
1457
+ hash: 875af25a9e8ba9ade051f76f4500f5146db675a7
1458
+ body: ""
1459
+ footer:
1460
+ Change-type: patch
1461
+ change-type: patch
1462
+ author: Pagan Gazzard
1463
+ version: odata-parser-3.0.1
1464
+ title: ""
1465
+ date: 2023-09-25T10:50:13.648Z
1466
+ - commits:
1467
+ - subject: Add checksum to WebResource
1468
+ hash: be6a1e9bacad51f99d685f491b3bf81545536adb
1469
+ body: ""
1470
+ footer:
1471
+ Change-type: minor
1472
+ change-type: minor
1473
+ author: Otávio Jacobi
1474
+ version: sbvr-types-6.1.0
1475
+ title: ""
1476
+ date: 2023-10-03T22:49:47.984Z
1477
+ - commits:
1478
+ - subject: Change contents to snake_case
1479
+ hash: aaa12269901e364533cf2aa45a958948ce0339de
1480
+ body: ""
1481
+ footer:
1482
+ Change-Type: major
1483
+ change-type: major
1484
+ author: Otávio Jacobi
1485
+ version: sbvr-types-6.0.0
1486
+ title: ""
1487
+ date: 2023-08-09T00:10:50.917Z
1488
+ - commits:
1489
+ - subject: Expose WebResource as WebResourceType
1490
+ hash: 9e42bfffb2145b5096539492b36b0f19b1f2e209
1491
+ body: ""
1492
+ footer:
1493
+ Change-type: minor
1494
+ change-type: minor
1495
+ author: Otávio Jacobi
1496
+ version: sbvr-types-5.2.0
1497
+ title: ""
1498
+ date: 2023-08-08T21:01:49.459Z
1499
+ - commits:
1500
+ - subject: Adds WebResource type
1501
+ hash: db7ff44e95a040a0b250d8c7612b126b31a3f325
1502
+ body: ""
1503
+ footer:
1504
+ Change-type: minor
1505
+ change-type: minor
1506
+ Co-authored-by: ramirogm
1507
+ co-authored-by: ramirogm
1508
+ author: Otávio Jacobi
1509
+ version: sbvr-types-5.1.0
1510
+ title: ""
1511
+ date: 2023-08-03T09:36:41.490Z
1512
+ - commits:
1513
+ - subject: Switch from `export =` to `export default`
1514
+ hash: 6cd01340e0fee46833942691fce5a9f6a42ac104
1515
+ body: ""
1516
+ footer:
1517
+ Change-type: major
1518
+ change-type: major
1519
+ author: Pagan Gazzard
1520
+ version: sbvr-types-5.0.0
1521
+ title: ""
1522
+ date: 2023-05-16T15:56:09.861Z
1523
+ - commits:
1524
+ - subject: Improve typings
1525
+ hash: a5fd4a319cd0336afc5a765af9e1a1eec851f2c3
1526
+ body: ""
1527
+ footer:
1528
+ Change-type: patch
1529
+ change-type: patch
1530
+ author: Pagan Gazzard
1531
+ version: sbvr-types-4.0.2
1532
+ title: ""
1533
+ date: 2023-05-03T11:40:24.422Z
1534
+ - commits:
1535
+ - subject: "boolean: Avoid unnecessary array creation to reduce GCs"
1536
+ hash: 5ba948cd5f42844974d43dc19f1c371e56376fc8
1537
+ body: ""
1538
+ footer:
1539
+ Change-type: patch
1540
+ change-type: patch
1541
+ author: Thodoris Greasidis
1542
+ version: sbvr-types-4.0.1
1543
+ title: ""
1544
+ date: 2023-05-02T13:39:37.722Z
1545
+ version: odata-to-abstract-sql-6.1.1
1546
+ title: ""
1547
+ date: 2023-10-19T06:28:01.252Z
1548
+ - commits:
1549
+ - subject: Support bind references as boolean types
1550
+ hash: 6eab6c354cf734861e207a58d6a289eeef043f70
1551
+ body: >
1552
+ This allows things like `$filter=true` and
1553
+ `$filter=x/any(y:true)` to
1554
+
1555
+ work
1556
+ footer:
1557
+ Change-type: minor
1558
+ change-type: minor
1559
+ author: Pagan Gazzard
1560
+ nested: []
1561
+ version: odata-to-abstract-sql-6.1.0
1562
+ title: ""
1563
+ date: 2023-08-16T15:36:29.822Z
1564
+ - commits:
1565
+ - subject: Update dependencies
1566
+ hash: d749289e311ad22e2b09793ad1dd472762bdf402
1567
+ body: |
1568
+ Update @balena/odata-parser from 2.4.6 to 3.0.0
1569
+ Update @balena/sbvr-types from 3.5.0 to 4.0.0
1570
+ footer:
1571
+ Change-type: patch
1572
+ change-type: patch
1573
+ author: Pagan Gazzard
1574
+ nested:
1575
+ - commits:
1576
+ - subject: Use optional chaining operator
1577
+ hash: 1fb39ef2497b964af0f2cbc953a3f0843936fe02
1578
+ body: ""
1579
+ footer:
1580
+ Change-type: major
1581
+ change-type: major
1582
+ author: Pagan Gazzard
1583
+ - subject: Set minimum supported nodejs version to 16.13.0
1584
+ hash: 91b8f51691a9649e99f2dc64253cc5ce9b59035a
1585
+ body: ""
1586
+ footer:
1587
+ Change-type: major
1588
+ change-type: major
1589
+ author: Pagan Gazzard
1590
+ version: odata-parser-3.0.0
1591
+ title: ""
1592
+ date: 2023-04-26T14:57:49.416Z
1593
+ - commits:
1594
+ - subject: Update to peggy 3 and make us of the repetition operator
1595
+ hash: 3d091133ca54dfba71c2bc0d17e60780fb1bda22
1596
+ body: ""
1597
+ footer:
1598
+ Change-type: minor
1599
+ change-type: minor
1600
+ author: Pagan Gazzard
1601
+ version: odata-parser-2.5.0
1602
+ title: ""
1603
+ date: 2023-04-26T11:09:24.513Z
1604
+ - commits:
1605
+ - subject: Add test cases for Objects in JSON validate
1606
+ hash: be8fc31c3754186dd4c43ca8d4c056b0def7ffbd
1607
+ body: >
1608
+ As balena-lint rejects `new Boolean()`, `new
1609
+ Number()` and `new String()` constructor usage,
1610
+ test cases double check that they are not
1611
+ instantiated as object but primitive type.
1612
+ footer:
1613
+ Change-type: patch
1614
+ change-type: patch
1615
+ Signed-off-by: fisehara <harald@balena.io>
1616
+ signed-off-by: fisehara <harald@balena.io>
1617
+ author: fisehara
1618
+ - subject: Drop `require-npm4-to-publish` devDependency
1619
+ hash: 46a369117c9d1222089498a8794c32d14edef85b
1620
+ body: >
1621
+ As engine and npm is now required as part of
1622
+ package.json we can drop this dependency
1623
+ footer:
1624
+ Change-type: patch
1625
+ change-type: patch
1626
+ Signed-off-by: fisehara <harald@balena.io>
1627
+ signed-off-by: fisehara <harald@balena.io>
1628
+ author: fisehara
1629
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
1630
+ hash: 54920d701a7aa4890c27801fc5cc6b9d74ece21c
1631
+ body: ""
1632
+ footer:
1633
+ Change-type: major
1634
+ change-type: major
1635
+ author: Pagan Gazzard
1636
+ - subject: Switch `JSON` to use `JSON` db type instead of `TEXT`
1637
+ hash: 0d3561364ad018f59466c0dae9b3adb4390d9496
1638
+ body: ""
1639
+ footer:
1640
+ Change-type: major
1641
+ change-type: major
1642
+ author: Pagan Gazzard
1643
+ - subject: Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER`
1644
+ hash: 5af2bd476a9032ab5d60c163a3940e0dd8e81cc6
1645
+ body: ""
1646
+ footer:
1647
+ Change-type: major
1648
+ change-type: major
1649
+ author: Pagan Gazzard
1650
+ - subject: Assert that JSON input typeof is object
1651
+ hash: 1819ee97811e20da93c6e0f227db6a62ada8c00e
1652
+ body: >
1653
+ Ensure that the input passed in for JSON types
1654
+ is either an object or
1655
+
1656
+ an array (typeof returns 'object' for arrays as
1657
+ well). This change is
1658
+
1659
+ mainly to prevent primitives from being stored
1660
+ as JSON.
1661
+ footer:
1662
+ Change-type: major
1663
+ change-type: major
1664
+ Signed-off-by: Josh Bowling <josh@monarci.com>
1665
+ signed-off-by: Josh Bowling <josh@monarci.com>
1666
+ author: Josh Bowling
1667
+ version: sbvr-types-4.0.0
1668
+ title: ""
1669
+ date: 2023-04-26T15:00:16.169Z
1670
+ version: odata-to-abstract-sql-6.0.1
1671
+ title: ""
1672
+ date: 2023-04-27T08:45:33.841Z
1673
+ - commits:
1674
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
1675
+ hash: 7f6f98637339f43b34ae7faa8e868129efe6d754
1676
+ body: ""
1677
+ footer:
1678
+ Change-type: major
1679
+ change-type: major
1680
+ author: Pagan Gazzard
1681
+ nested: []
1682
+ - subject: Switch `AggregateJSON` to use the newer `ReferencedField` format
1683
+ hash: e8038b15c471d801b21f39cec2c95ff6689b0595
1684
+ body: ""
1685
+ footer:
1686
+ Change-type: major
1687
+ change-type: major
1688
+ author: Pagan Gazzard
1689
+ nested: []
1690
+ version: odata-to-abstract-sql-6.0.0
1691
+ title: ""
1692
+ date: 2023-04-26T13:50:25.845Z
1693
+ version: abstract-sql-to-typescript-2.1.4
1694
+ title: ""
1695
+ date: 2024-03-04T11:27:50.585Z
1696
+ - commits:
1697
+ - subject: Update `@balena/sbvr-types` devDependency
1698
+ hash: 01f9b8aea7750c6033d535c791fad2b853071bda
1699
+ body: |
1700
+ Update @balena/sbvr-types from 5.0.0 to 7.0.1
1701
+ footer:
1702
+ Change-type: patch
1703
+ change-type: patch
1704
+ Signed-off-by: Harald Fischer <harald@balena.io>
1705
+ signed-off-by: Harald Fischer <harald@balena.io>
1706
+ author: Harald Fischer
1707
+ nested:
1708
+ - commits:
1709
+ - subject: Update dependency @balena/abstract-sql-compiler to v9
1710
+ hash: 37684ebb1692f97780dd27056b9cfe299c456b3c
1711
+ body: |
1712
+ Update @balena/abstract-sql-compiler from 8.5.0 to 9.0.4
1713
+ footer:
1714
+ Change-type: patch
1715
+ change-type: patch
1716
+ author: Self-hosted Renovate Bot
1717
+ version: sbvr-types-7.0.1
1718
+ title: ""
1719
+ date: 2024-03-04T19:48:17.416Z
1720
+ - commits:
1721
+ - subject: Return `ISODateString` instead of `date`
1722
+ hash: 37e2d446c0ec11f2e3a1ab41b1a205280062bd5d
1723
+ body: >
1724
+ The internal and external representation of the returned
1725
+ object from pinejs should be consistent.
1726
+
1727
+ Pinejs internal interface will return date or date time
1728
+ fields as date object. For the external interface the
1729
+ object is JSON.stringified so that date becomes an ISO
1730
+ string anyway.
1731
+ footer:
1732
+ Change-type: major
1733
+ change-type: major
1734
+ Signed-off-by: fisehara <harald@balena.io>
1735
+ signed-off-by: fisehara <harald@balena.io>
1736
+ author: fisehara
1737
+ version: sbvr-types-7.0.0
1738
+ title: ""
1739
+ date: 2024-03-04T17:37:23.873Z
1740
+ - commits:
1741
+ - subject: Update dependency @types/chai-datetime to ^0.0.39
1742
+ hash: 428c5a2c94bd753cc2ffc6d1e012c3a743e1b4d2
1743
+ body: |
1744
+ Update @types/chai-datetime from 0.0.37 to 0.0.39
1745
+ footer:
1746
+ Change-type: patch
1747
+ change-type: patch
1748
+ author: Self-hosted Renovate Bot
1749
+ version: sbvr-types-6.1.1
1750
+ title: ""
1751
+ date: 2024-01-02T18:54:07.180Z
1752
+ - commits:
1753
+ - subject: Add checksum to WebResource
1754
+ hash: be6a1e9bacad51f99d685f491b3bf81545536adb
1755
+ body: ""
1756
+ footer:
1757
+ Change-type: minor
1758
+ change-type: minor
1759
+ author: Otávio Jacobi
1760
+ version: sbvr-types-6.1.0
1761
+ title: ""
1762
+ date: 2023-10-03T22:49:47.984Z
1763
+ - commits:
1764
+ - subject: Change contents to snake_case
1765
+ hash: aaa12269901e364533cf2aa45a958948ce0339de
1766
+ body: ""
1767
+ footer:
1768
+ Change-Type: major
1769
+ change-type: major
1770
+ author: Otávio Jacobi
1771
+ version: sbvr-types-6.0.0
1772
+ title: ""
1773
+ date: 2023-08-09T00:10:50.917Z
1774
+ - commits:
1775
+ - subject: Expose WebResource as WebResourceType
1776
+ hash: 9e42bfffb2145b5096539492b36b0f19b1f2e209
1777
+ body: ""
1778
+ footer:
1779
+ Change-type: minor
1780
+ change-type: minor
1781
+ author: Otávio Jacobi
1782
+ version: sbvr-types-5.2.0
1783
+ title: ""
1784
+ date: 2023-08-08T21:01:49.459Z
1785
+ - commits:
1786
+ - subject: Adds WebResource type
1787
+ hash: db7ff44e95a040a0b250d8c7612b126b31a3f325
1788
+ body: ""
1789
+ footer:
1790
+ Change-type: minor
1791
+ change-type: minor
1792
+ Co-authored-by: ramirogm
1793
+ co-authored-by: ramirogm
1794
+ author: Otávio Jacobi
1795
+ version: sbvr-types-5.1.0
1796
+ title: ""
1797
+ date: 2023-08-03T09:36:41.490Z
1798
+ version: lf-to-abstract-sql-5.0.2
1799
+ title: ""
1800
+ date: 2024-03-05T13:44:30.007Z
1801
+ - commits:
1802
+ - subject: Update dependency husky to v9
1803
+ hash: 8d5929cbbce1765e8ad14a84a1b6e669daedd9a8
1804
+ body: |
1805
+ Update husky from 8.0.3 to 9.0.11
1806
+ footer:
1807
+ Change-type: patch
1808
+ change-type: patch
1809
+ author: Self-hosted Renovate Bot
1810
+ version: odata-parser-3.0.7
1811
+ title: ""
1812
+ date: 2024-04-13T14:30:01.103Z
1813
+ - commits:
1814
+ - subject: Update dependency peggy to v4
1815
+ hash: d0c83b2955f285f3cac927e4310e0b948d522189
1816
+ body: |
1817
+ Update peggy from 3.0.2 to 4.0.2
1818
+ footer:
1819
+ Change-type: patch
1820
+ change-type: patch
1821
+ author: Self-hosted Renovate Bot
1822
+ version: odata-parser-3.0.6
1823
+ title: ""
1824
+ date: 2024-04-12T09:10:02.194Z
1825
+ - commits:
1826
+ - subject: Update dependency lint-staged to v15
1827
+ hash: 703834a4c358dd348e1ffce797f6e3c37a03941f
1828
+ body: |
1829
+ Update lint-staged from 13.3.0 to 15.2.2
1830
+ footer:
1831
+ Change-type: patch
1832
+ change-type: patch
1833
+ author: Self-hosted Renovate Bot
1834
+ version: odata-parser-3.0.5
1835
+ title: ""
1836
+ date: 2024-04-12T08:19:19.907Z
1837
+ - commits:
1838
+ - subject: Update dependency @balena/lint to v8
1839
+ hash: 8048f717367a41233a995096edf2da6710e9e247
1840
+ body: |
1841
+ Update @balena/lint from 7.3.0 to 8.0.0
1842
+ footer:
1843
+ Change-type: patch
1844
+ change-type: patch
1845
+ author: Self-hosted Renovate Bot
1846
+ version: odata-parser-3.0.4
1847
+ title: ""
1848
+ date: 2024-04-12T02:48:22.037Z
1849
+ - commits:
1850
+ - subject: Deprecate the generic `PinejsClient` typing in favor of using `this`
1851
+ for `.clone` typing
1852
+ hash: 010c949c91a1765bec8050140fa35367a8279950
1853
+ body: ""
1854
+ footer:
1855
+ Change-type: patch
1856
+ change-type: patch
1857
+ author: Pagan Gazzard
1858
+ nested: []
1859
+ version: pinejs-client-js-6.14.4
1860
+ title: ""
1861
+ date: 2024-05-08T01:05:08.480Z
1862
+ - commits:
1863
+ - subject: Update dev dependencies
1864
+ hash: 4042a5be6e35d26f3db74309a5c3e5e3948cb75c
1865
+ body: ""
1866
+ footer:
1867
+ Change-type: patch
1868
+ change-type: patch
1869
+ author: Pagan Gazzard
1870
+ nested: []
1871
+ version: pinejs-client-js-6.14.3
1872
+ title: ""
1873
+ date: 2024-04-17T15:47:43.685Z
1874
+ - commits:
1875
+ - subject: Improve typings
1876
+ hash: 45240b18c41f7558bed64fb2e5689d58b7742f51
1877
+ body: ""
1878
+ footer:
1879
+ Change-type: patch
1880
+ change-type: patch
1881
+ author: Pagan Gazzard
1882
+ nested: []
1883
+ version: pinejs-client-js-6.14.2
1884
+ title: ""
1885
+ date: 2024-03-04T16:18:00.230Z
1886
+ - commits:
1887
+ - subject: Update dependencies
1888
+ hash: 4e982dab1dcd6d786e4224b695aa2801c283b9f7
1889
+ body: ""
1890
+ footer:
1891
+ Change-type: patch
1892
+ change-type: patch
1893
+ author: Pagan Gazzard
1894
+ nested: []
1895
+ version: pinejs-client-js-6.14.1
1896
+ title: ""
1897
+ date: 2024-03-04T16:05:19.595Z
1898
+ - commits:
1899
+ - subject: Updated `@balena/sbvr-types`
1900
+ hash: a6c901c8c3b624dabaf282d0229276be8a9ea320
1901
+ body: |
1902
+ Update @balena/sbvr-types from 3.4.15 to 7.0.1
1903
+ footer:
1904
+ Change-type: patch
1905
+ change-type: patch
1906
+ Signed-off-by: Harald Fischer <harald@balena.io>
1907
+ signed-off-by: Harald Fischer <harald@balena.io>
1908
+ author: Harald Fischer
1909
+ version: sbvr-parser-1.4.4
1910
+ title: ""
1911
+ date: 2024-03-05T12:54:23.843Z
1912
+ - commits:
1913
+ - subject: Export typescript read/write types for each sbvr type
1914
+ hash: 66b9a012e242533372ce34a73e31f6e3aac93d91
1915
+ body: ""
1916
+ footer:
1917
+ Change-type: minor
1918
+ change-type: minor
1919
+ author: Pagan Gazzard
1920
+ version: sbvr-types-7.1.0
1921
+ title: ""
1922
+ date: 2024-04-25T11:57:56.975Z
1923
+ - commits:
1924
+ - subject: Update Big Serial concept type to Big Integer
1925
+ hash: 6343737f7eb62282ebb2b572faf2b91716508a8b
1926
+ body: ""
1927
+ footer:
1928
+ Change-type: patch
1929
+ change-type: patch
1930
+ author: Josh Bowling
1931
+ version: sbvr-types-7.0.10
1932
+ title: ""
1933
+ date: 2024-04-09T11:21:31.060Z
1934
+ - commits:
1935
+ - subject: Add Big Serial to Type.sbvr
1936
+ hash: c5add0fc65e8e78ab481e97d37aeb8353c082b57
1937
+ body: ""
1938
+ footer:
1939
+ Change-type: patch
1940
+ change-type: patch
1941
+ author: Josh Bowling
1942
+ version: sbvr-types-7.0.9
1943
+ title: ""
1944
+ date: 2024-04-09T10:03:09.812Z
1945
+ - commits:
1946
+ - subject: Update prepare script for husky v9
1947
+ hash: 72d7dac84880aa8604345a6fee74ec3eacbe1176
1948
+ body: ""
1949
+ footer:
1950
+ Change-type: patch
1951
+ change-type: patch
1952
+ author: Josh Bowling
1953
+ - subject: Update dependency husky to v9
1954
+ hash: 3a3e4f4e2ae95b5691cb31a1448854318e5b8cc5
1955
+ body: |
1956
+ Update husky from 8.0.3 to 9.0.11
1957
+ footer:
1958
+ Change-type: patch
1959
+ change-type: patch
1960
+ author: Self-hosted Renovate Bot
1961
+ version: sbvr-types-7.0.8
1962
+ title: ""
1963
+ date: 2024-04-09T01:25:47.103Z
1964
+ - commits:
1965
+ - subject: Update dependency @balena/lint to v8
1966
+ hash: 58e3db3861e13d463a5535b60d533280de70c4c1
1967
+ body: |
1968
+ Update @balena/lint from 7.3.0 to 8.0.0
1969
+ footer:
1970
+ Change-type: patch
1971
+ change-type: patch
1972
+ author: Self-hosted Renovate Bot
1973
+ version: sbvr-types-7.0.7
1974
+ title: ""
1975
+ date: 2024-04-09T01:07:54.165Z
1976
+ - commits:
1977
+ - subject: Improve JSON typings
1978
+ hash: 487000677cbc9decdcc0029b24f7c6de81216b57
1979
+ body: ""
1980
+ footer:
1981
+ Change-type: patch
1982
+ change-type: patch
1983
+ author: Pagan Gazzard
1984
+ version: sbvr-types-7.0.6
1985
+ title: ""
1986
+ date: 2024-03-21T15:44:08.831Z
1987
+ - commits:
1988
+ - subject: Remove unnecessary catch bindings
1989
+ hash: fcef4ec9f19378eea8d0dea167b2bd1958831306
1990
+ body: ""
1991
+ footer:
1992
+ Change-type: patch
1993
+ change-type: patch
1994
+ author: Pagan Gazzard
1995
+ version: sbvr-types-7.0.5
1996
+ title: ""
1997
+ date: 2024-03-13T15:50:57.151Z
1998
+ - commits:
1999
+ - subject: Improve validate typings
2000
+ hash: 6ed4746379e8b038e4a148ca6f6c4c1e52aa67a2
2001
+ body: ""
2002
+ footer:
2003
+ Change-type: patch
2004
+ change-type: patch
2005
+ author: Pagan Gazzard
2006
+ version: sbvr-types-7.0.4
2007
+ title: ""
2008
+ date: 2024-03-13T01:47:54.313Z
2009
+ - commits:
2010
+ - subject: Improve fetchProcessing typings
2011
+ hash: 0512e2c89ad83458b91cbaa380b8de729db81342
2012
+ body: ""
2013
+ footer:
2014
+ Change-type: patch
2015
+ change-type: patch
2016
+ author: Pagan Gazzard
2017
+ version: sbvr-types-7.0.3
2018
+ title: ""
2019
+ date: 2024-03-12T15:51:33.314Z
2020
+ - commits:
2021
+ - subject: "Tests: convert to typescript"
2022
+ hash: a78e1c02edc63927ae978f57afdd5edea25adec1
2023
+ body: ""
2024
+ footer:
2025
+ Change-type: patch
2026
+ change-type: patch
2027
+ author: Pagan Gazzard
2028
+ version: sbvr-types-7.0.2
2029
+ title: ""
2030
+ date: 2024-03-12T15:06:28.057Z
2031
+ version: 16.1.5
2032
+ title: ""
2033
+ date: 2024-05-08T12:27:55.727Z
2034
+ - commits:
2035
+ - subject: "Tests: trap `INT` rather than `SIGINT` for broader shell support"
2036
+ hash: 77d35219d88740218a123eb645953e463827d67e
2037
+ body: ""
2038
+ footer:
2039
+ Change-type: patch
2040
+ change-type: patch
2041
+ author: Pagan Gazzard
2042
+ nested: []
2043
+ version: 16.1.4
2044
+ title: ""
2045
+ date: 2024-04-30T09:10:29.177Z
2046
+ - commits:
2047
+ - subject: Update @balena/odata-to-abstract-sql to 6.2.7
2048
+ hash: 76b2f842af0b49ef2956db23a22758fc0d1e50a0
2049
+ body: |
2050
+ Update @balena/odata-to-abstract-sql from 6.2.3 to 6.2.7
2051
+ footer:
2052
+ Change-type: patch
2053
+ change-type: patch
2054
+ author: Thodoris Greasidis
2055
+ nested:
2056
+ - commits:
2057
+ - subject: Properly error when using fields of a partial index as an alternate key
2058
+ hash: 8652f142511cef14872353ec879365a5fd745c53
2059
+ body: |
2060
+ Update @balena/abstract-sql-compiler from 9.0.4 to 9.1.4
2061
+ footer:
2062
+ Change-type: patch
2063
+ change-type: patch
2064
+ author: Thodoris Greasidis
2065
+ nested:
2066
+ - commits:
2067
+ - subject: Cast Big Serial to integer
2068
+ hash: 9e4025dd57517f4ad6d06f4cb894062c6ce370cf
2069
+ body: ""
2070
+ footer:
2071
+ Change-type: patch
2072
+ change-type: patch
2073
+ author: Josh Bowling
2074
+ nested: []
2075
+ version: abstract-sql-compiler-9.1.4
2076
+ title: ""
2077
+ date: 2024-04-09T10:04:33.059Z
2078
+ - commits:
2079
+ - subject: Update prepare script for husky v9
2080
+ hash: bae835665431a88f0fdd4804f1d70757a7e11dd0
2081
+ body: ""
2082
+ footer:
2083
+ Change-type: patch
2084
+ change-type: patch
2085
+ author: Josh Bowling
2086
+ nested: []
2087
+ - subject: Update dependency husky to v9
2088
+ hash: d53d2f121e97d0dde35fe646e63b9d7179f4f098
2089
+ body: |
2090
+ Update husky from 8.0.3 to 9.0.11
2091
+ footer:
2092
+ Change-type: patch
2093
+ change-type: patch
2094
+ author: Self-hosted Renovate Bot
2095
+ nested: []
2096
+ version: abstract-sql-compiler-9.1.3
2097
+ title: ""
2098
+ date: 2024-04-09T01:41:53.829Z
2099
+ - commits:
2100
+ - subject: Update dependency lint-staged to v15
2101
+ hash: 6b5c28a3170006cd3f6f963f03ec2ee67273223e
2102
+ body: |
2103
+ Update lint-staged from 13.3.0 to 15.2.2
2104
+ footer:
2105
+ Change-type: patch
2106
+ change-type: patch
2107
+ author: Self-hosted Renovate Bot
2108
+ nested: []
2109
+ version: abstract-sql-compiler-9.1.2
2110
+ title: ""
2111
+ date: 2024-04-09T01:09:18.361Z
2112
+ - commits:
2113
+ - subject: Update dependency @balena/lint to v8
2114
+ hash: 835365353b766b89d80c80b84f48583ba0322849
2115
+ body: |
2116
+ Update @balena/lint from 6.2.2 to 8.0.0
2117
+ footer:
2118
+ Change-type: patch
2119
+ change-type: patch
2120
+ author: Thodoris Greasidis
2121
+ nested: []
2122
+ version: abstract-sql-compiler-9.1.1
2123
+ title: ""
2124
+ date: 2024-03-26T10:27:12.964Z
2125
+ - commits:
2126
+ - subject: Export the generateRuleHashAcronym helper
2127
+ hash: 6d00b7dba58690019cfb443e4c876d30e8d7ad98
2128
+ body: ""
2129
+ footer:
2130
+ Change-type: minor
2131
+ change-type: minor
2132
+ author: Thodoris Greasidis
2133
+ nested: []
2134
+ - subject: Add support for unique indexes with NOT DISTINCT NULLS
2135
+ hash: cbd1177d14cd2266dd92f29755819a3139bf3bc1
2136
+ body: ""
2137
+ footer:
2138
+ Change-type: minor
2139
+ change-type: minor
2140
+ author: Thodoris Greasidis
2141
+ nested: []
2142
+ - subject: Add support for partial unique indexes
2143
+ hash: e2c92b8d5022ad29b95dd1e0837ec9dddec24fa4
2144
+ body: ""
2145
+ footer:
2146
+ Change-type: minor
2147
+ change-type: minor
2148
+ author: Thodoris Greasidis
2149
+ nested: []
2150
+ version: abstract-sql-compiler-9.1.0
2151
+ title: ""
2152
+ date: 2024-03-26T09:29:57.519Z
2153
+ - commits:
2154
+ - subject: Update dependency @balena/odata-parser to v3
2155
+ hash: d23614a1f7346edb262897ca8ff62abc2eaffff6
2156
+ body: |
2157
+ Update @balena/odata-parser from 2.5.0 to 3.0.3
2158
+ footer:
2159
+ Change-type: patch
2160
+ change-type: patch
2161
+ author: Self-hosted Renovate Bot
2162
+ nested:
2163
+ - commits:
2164
+ - subject: Optimize by moving constant values into global init
2165
+ hash: 94899b779fb879540f3675c3c9d7ca3f9d8af4bf
2166
+ body: ""
2167
+ footer:
2168
+ Change-type: patch
2169
+ change-type: patch
2170
+ Signed-off-by: fisehara <harald@balena.io>
2171
+ signed-off-by: fisehara <harald@balena.io>
2172
+ author: fisehara
2173
+ version: odata-parser-3.0.3
2174
+ title: ""
2175
+ date: 2024-01-04T15:30:09.102Z
2176
+ - commits:
2177
+ - subject: Update dependencies
2178
+ hash: 0a7bd8ff2e506fa3988b6e1851e0098df5da3f86
2179
+ body: >
2180
+ - Update @balena/lint from 6.2.2 to 7.2.4
2181
+
2182
+ - Delete `require-npm4-to-publish` as handled by
2183
+ `engines` parameter in `package.json`
2184
+ footer:
2185
+ Change-type: patch
2186
+ change-type: patch
2187
+ Signed-off-by: fisehara <harald@balena.io>
2188
+ signed-off-by: fisehara <harald@balena.io>
2189
+ author: fisehara
2190
+ version: odata-parser-3.0.2
2191
+ title: ""
2192
+ date: 2024-01-04T10:16:56.896Z
2193
+ - commits:
2194
+ - subject: Allow running CI on external PRs
2195
+ hash: 875af25a9e8ba9ade051f76f4500f5146db675a7
2196
+ body: ""
2197
+ footer:
2198
+ Change-type: patch
2199
+ change-type: patch
2200
+ author: Pagan Gazzard
2201
+ version: odata-parser-3.0.1
2202
+ title: ""
2203
+ date: 2023-09-25T10:50:13.648Z
2204
+ - commits:
2205
+ - subject: Use optional chaining operator
2206
+ hash: 1fb39ef2497b964af0f2cbc953a3f0843936fe02
2207
+ body: ""
2208
+ footer:
2209
+ Change-type: major
2210
+ change-type: major
2211
+ author: Pagan Gazzard
2212
+ - subject: Set minimum supported nodejs version to 16.13.0
2213
+ hash: 91b8f51691a9649e99f2dc64253cc5ce9b59035a
2214
+ body: ""
2215
+ footer:
2216
+ Change-type: major
2217
+ change-type: major
2218
+ author: Pagan Gazzard
2219
+ version: odata-parser-3.0.0
2220
+ title: ""
2221
+ date: 2023-04-26T14:57:49.416Z
2222
+ version: abstract-sql-compiler-9.0.7
2223
+ title: ""
2224
+ date: 2024-03-22T13:08:03.336Z
2225
+ - commits:
2226
+ - subject: Update TypeScript to 5.4.3
2227
+ hash: 29299180ecbcb5bcd26b47e52f86538fa9a1f0f8
2228
+ body: ""
2229
+ footer:
2230
+ Change-type: patch
2231
+ change-type: patch
2232
+ author: Thodoris Greasidis
2233
+ nested: []
2234
+ version: abstract-sql-compiler-9.0.6
2235
+ title: ""
2236
+ date: 2024-03-21T16:34:21.387Z
2237
+ - commits:
2238
+ - subject: Update `@balena/sbvr-types`
2239
+ hash: 1822aa5e81736f18f2a4dd265e5754b589d4fd36
2240
+ body: >
2241
+ Updaet @balena/sbvr-types from 6.0.0 to 7.0.1
2242
+
2243
+
2244
+ @balena/sbvr-types changes `fetchProcessing` and not
2245
+ validate. No change in abstract-sql-compiler interfaces.
2246
+ => Patch
2247
+ footer:
2248
+ Change-type: patch
2249
+ change-type: patch
2250
+ Signed-off-by: Harald Fischer <harald@balena.io>
2251
+ signed-off-by: Harald Fischer <harald@balena.io>
2252
+ author: Harald Fischer
2253
+ nested: []
2254
+ version: abstract-sql-compiler-9.0.5
2255
+ title: ""
2256
+ date: 2024-03-05T19:12:37.779Z
2257
+ version: odata-to-abstract-sql-6.2.7
2258
+ title: ""
2259
+ date: 2024-04-23T12:52:44.677Z
2260
+ - commits:
2261
+ - subject: Update dependency husky to v9
2262
+ hash: cb1f02871fbea35df4b637f73625fbc39840da3a
2263
+ body: |
2264
+ Update husky from 8.0.3 to 9.0.11
2265
+ footer:
2266
+ Change-type: patch
2267
+ change-type: patch
2268
+ author: Self-hosted Renovate Bot
2269
+ nested: []
2270
+ version: odata-to-abstract-sql-6.2.6
2271
+ title: ""
2272
+ date: 2024-04-13T14:30:55.197Z
2273
+ - commits:
2274
+ - subject: Update dependency @balena/lint to v8
2275
+ hash: 7b0e4b7272b0cda5690b925b7de259612085940e
2276
+ body: |
2277
+ Update @balena/lint from 7.3.0 to 8.0.0
2278
+ footer:
2279
+ Change-type: patch
2280
+ change-type: patch
2281
+ author: Self-hosted Renovate Bot
2282
+ nested: []
2283
+ version: odata-to-abstract-sql-6.2.5
2284
+ title: ""
2285
+ date: 2024-04-10T00:24:14.349Z
2286
+ - commits:
2287
+ - subject: Update `@balena/sbvr-types` devDependencies
2288
+ hash: 93ba82f914f8e036e79fa174a58881db294b84c6
2289
+ body: |
2290
+ Update `@balena/sbvr-types` from 6.1.1 to 7.0.1
2291
+
2292
+ Update of devDependencies => patch
2293
+ footer:
2294
+ Change-type: patch
2295
+ change-type: patch
2296
+ Signed-off-by: fisehara <harald@balena.io>
2297
+ signed-off-by: fisehara <harald@balena.io>
2298
+ author: fisehara
2299
+ nested: []
2300
+ - subject: Fix linter issue
2301
+ hash: d5e0d142e779f29ef316cdb20d0f91a983960e69
2302
+ body: ""
2303
+ footer:
2304
+ Change-type: patch
2305
+ change-type: patch
2306
+ Signed-off-by: fisehara <harald@balena.io>
2307
+ signed-off-by: fisehara <harald@balena.io>
2308
+ author: fisehara
2309
+ nested: []
2310
+ version: odata-to-abstract-sql-6.2.4
2311
+ title: ""
2312
+ date: 2024-03-05T18:23:43.575Z
2313
+ version: 16.1.3
2314
+ title: ""
2315
+ date: 2024-04-24T08:28:28.477Z
38
2316
  - commits:
39
2317
  - subject: Update dependency husky to v9
40
2318
  hash: 715d2dd993591d449bca7ece48f069ed6994c8c7