@balena/pinejs 15.0.0-build-15-x-4acccbc677d2f8b6c23ace10945cd167339fc8df-1 → 15.0.0-build-15-x-c180fde6d07051ad2942276faea12f10ae026031-1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. package/.pinejs-cache.json +1 -1
  2. package/.versionbot/CHANGELOG.yml +1980 -66
  3. package/CHANGELOG.md +734 -2
  4. package/out/bin/abstract-sql-compiler.js.map +1 -1
  5. package/out/bin/sbvr-compiler.js.map +1 -1
  6. package/out/config-loader/config-loader.js +16 -4
  7. package/out/config-loader/config-loader.js.map +1 -1
  8. package/out/database-layer/db.d.ts +1 -0
  9. package/out/database-layer/db.js +3 -0
  10. package/out/database-layer/db.js.map +1 -1
  11. package/out/migrator/async.js +14 -8
  12. package/out/migrator/async.js.map +1 -1
  13. package/out/migrator/utils.d.ts +3 -4
  14. package/out/migrator/utils.js +11 -1
  15. package/out/migrator/utils.js.map +1 -1
  16. package/out/passport-pinejs/passport-pinejs.d.ts +1 -1
  17. package/out/passport-pinejs/passport-pinejs.js +3 -3
  18. package/out/passport-pinejs/passport-pinejs.js.map +1 -1
  19. package/out/pinejs-session-store/pinejs-session-store.d.ts +1 -1
  20. package/out/sbvr-api/abstract-sql.js.map +1 -1
  21. package/out/sbvr-api/hooks.js +1 -1
  22. package/out/sbvr-api/hooks.js.map +1 -1
  23. package/out/sbvr-api/permissions.js +1 -1
  24. package/out/sbvr-api/permissions.js.map +1 -1
  25. package/out/sbvr-api/sbvr-utils.d.ts +3 -3
  26. package/out/sbvr-api/sbvr-utils.js +28 -5
  27. package/out/sbvr-api/sbvr-utils.js.map +1 -1
  28. package/out/sbvr-api/translations.js +26 -11
  29. package/out/sbvr-api/translations.js.map +1 -1
  30. package/out/sbvr-api/uri-parser.d.ts +1 -1
  31. package/out/sbvr-api/uri-parser.js.map +1 -1
  32. package/package.json +19 -17
  33. package/src/bin/abstract-sql-compiler.ts +1 -2
  34. package/src/bin/sbvr-compiler.ts +1 -2
  35. package/src/config-loader/config-loader.ts +24 -7
  36. package/src/database-layer/db.ts +3 -0
  37. package/src/migrator/async.ts +22 -12
  38. package/src/migrator/utils.ts +16 -5
  39. package/src/passport-pinejs/passport-pinejs.ts +4 -4
  40. package/src/sbvr-api/abstract-sql.ts +2 -1
  41. package/src/sbvr-api/hooks.ts +1 -1
  42. package/src/sbvr-api/permissions.ts +6 -4
  43. package/src/sbvr-api/sbvr-utils.ts +65 -7
  44. package/src/sbvr-api/translations.ts +43 -14
  45. package/src/sbvr-api/uri-parser.ts +5 -5
  46. package/tsconfig.dev.json +1 -0
package/CHANGELOG.md CHANGED
@@ -5,7 +5,7 @@ automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  # v15.0.0
8
- ## (2023-02-09)
8
+ ## (2023-04-27)
9
9
 
10
10
  * Update grunt [Harald Fischer]
11
11
  * Do not convert `null` to the default value in `customApiKeyMiddleware` [Pagan Gazzard]
@@ -20,7 +20,739 @@ This project adheres to [Semantic Versioning](http://semver.org/).
20
20
  * Remove support for `DEBUG` env var in favor of only `PINEJS_DEBUG` [Pagan Gazzard]
21
21
  * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
22
22
  * Reflect the usage of BOOLEAN/JSON database types [Pagan Gazzard]
23
- * Update dependencies [Pagan Gazzard]
23
+
24
+ <details>
25
+ <summary> Update dependencies [Pagan Gazzard] </summary>
26
+
27
+ > ## abstract-sql-compiler-8.4.1
28
+ > ### (2023-04-25)
29
+ >
30
+ > * Add much finer grained typings for abstract-sql-optimizer [Pagan Gazzard]
31
+ >
32
+ > ## abstract-sql-compiler-8.4.0
33
+ > ### (2023-04-24)
34
+ >
35
+ > * Add support for using field type nodes with an AggregateJSON node [Pagan Gazzard]
36
+ >
37
+ > ## abstract-sql-compiler-8.3.13
38
+ > ### (2023-04-24)
39
+ >
40
+ > * Deprecate `AliasableFromTypeNodes` type as it's redundant [Pagan Gazzard]
41
+ >
42
+ > ## abstract-sql-compiler-8.3.12
43
+ > ### (2023-04-17)
44
+ >
45
+ > * Revert tightening of `OrderBy` to only field nodes [Pagan Gazzard]
46
+ >
47
+ > ## abstract-sql-compiler-8.3.11
48
+ > ### (2023-04-13)
49
+ >
50
+ > * Do not allow ON clauses for CROSS JOIN as it is invalid [Pagan Gazzard]
51
+ > * Stop accepting `ExtractJSONPathAsText`/`ToJSON` as unknown node types [Pagan Gazzard]
52
+ >
53
+ > ## abstract-sql-compiler-8.3.10
54
+ > ### (2023-04-13)
55
+ >
56
+ > * Fix DateNode/AnyNode typings [Pagan Gazzard]
57
+ >
58
+ > ## abstract-sql-compiler-8.3.9
59
+ > ### (2023-04-13)
60
+ >
61
+ >
62
+ > <details>
63
+ > <summary> Update dependencies [Pagan Gazzard] </summary>
64
+ >
65
+ >> ### sbvr-types-3.5.0
66
+ >> #### (2023-03-21)
67
+ >>
68
+ >> * Add Big Serial type [Josh Bowling]
69
+ >>
70
+ >> ### sbvr-types-3.4.19
71
+ >> #### (2022-12-08)
72
+ >>
73
+ >> * Flowzone: Allow external contributions [Josh Bowling]
74
+ >>
75
+ >
76
+ > </details>
77
+ >
78
+ >
79
+ > ## abstract-sql-compiler-8.3.8
80
+ > ### (2023-04-12)
81
+ >
82
+ > * Improve typings [Pagan Gazzard]
83
+ >
84
+ > ## abstract-sql-compiler-8.3.7
85
+ > ### (2023-04-12)
86
+ >
87
+ > * Remove typing for non-existent JSON node [Pagan Gazzard]
88
+ >
89
+ > ## abstract-sql-compiler-8.3.6
90
+ > ### (2023-04-12)
91
+ >
92
+ > * Tighten the `isXValue` function typings [Pagan Gazzard]
93
+ >
94
+ > ## abstract-sql-compiler-8.3.5
95
+ > ### (2023-04-12)
96
+ >
97
+ > * Correctly treat `Value` nodes as rewritten to `Text` by the optimizer [Pagan Gazzard]
98
+ > * Add EmbeddedTextNode typing [Pagan Gazzard]
99
+ >
100
+ > ## abstract-sql-compiler-8.3.4
101
+ > ### (2023-04-12)
102
+ >
103
+ > * Enforce the first argument of ExtractJSONPathAsText is a JSON type node [Pagan Gazzard]
104
+ >
105
+ > ## abstract-sql-compiler-8.3.3
106
+ > ### (2023-04-12)
107
+ >
108
+ > * Improve node typings [Pagan Gazzard]
109
+ >
110
+ > ## abstract-sql-compiler-8.3.2
111
+ > ### (2023-04-12)
112
+ >
113
+ > * Add more node typings [Pagan Gazzard]
114
+ >
115
+ > ## abstract-sql-compiler-8.3.1
116
+ > ### (2023-04-12)
117
+ >
118
+ > * Add more node typings [Pagan Gazzard]
119
+ >
120
+ > ## abstract-sql-compiler-8.3.0
121
+ > ### (2023-04-11)
122
+ >
123
+ > * Support boolean nodes in a ValuesNode [Pagan Gazzard]
124
+ >
125
+ > ## abstract-sql-compiler-8.2.0
126
+ > ### (2023-04-11)
127
+ >
128
+ > * Add `Between` node type [Pagan Gazzard]
129
+ >
130
+ > ## abstract-sql-compiler-8.1.0
131
+ > ### (2023-04-11)
132
+ >
133
+ > * Add `BitwiseAnd`/`BitwiseShiftRight` node types [Pagan Gazzard]
134
+ >
135
+ > ## abstract-sql-compiler-8.0.2
136
+ > ### (2023-04-06)
137
+ >
138
+ > * Add `NotInNode` type [Pagan Gazzard]
139
+ > * Add `IsDistinctFromNode`/`IsNotDistinctFromNode` types [Pagan Gazzard]
140
+ > * Add `CharacterLengthNode` type [Pagan Gazzard]
141
+ >
142
+ > ## abstract-sql-compiler-8.0.1
143
+ > ### (2023-04-06)
144
+ >
145
+ > * Adds Cast node type to tree parsing [Otávio Jacobi]
146
+ >
147
+ > ## abstract-sql-to-typescript-1.5.1
148
+ > ### (2023-04-27)
149
+ >
150
+ >
151
+ > <details>
152
+ > <summary> Update dependencies [Pagan Gazzard] </summary>
153
+ >
154
+ >> ### odata-to-abstract-sql-5.9.6
155
+ >> #### (2023-04-25)
156
+ >>
157
+ >> * Collapse `AliasedFunction` into `FunctionMatch` [Pagan Gazzard]
158
+ >>
159
+ >> ### odata-to-abstract-sql-5.9.5
160
+ >> #### (2023-04-25)
161
+ >>
162
+ >>
163
+ >> <details>
164
+ >> <summary> Improve typings [Pagan Gazzard] </summary>
165
+ >>
166
+ >>> #### abstract-sql-compiler-8.4.1
167
+ >>> ##### (2023-04-25)
168
+ >>>
169
+ >>> * Add much finer grained typings for abstract-sql-optimizer [Pagan Gazzard]
170
+ >>>
171
+ >>
172
+ >> </details>
173
+ >>
174
+ >>
175
+ >> ### odata-to-abstract-sql-5.9.4
176
+ >> #### (2023-04-24)
177
+ >>
178
+ >>
179
+ >> <details>
180
+ >> <summary> Update dependencies [Pagan Gazzard] </summary>
181
+ >>
182
+ >>> #### abstract-sql-compiler-8.4.0
183
+ >>> ##### (2023-04-24)
184
+ >>>
185
+ >>> * Add support for using field type nodes with an AggregateJSON node [Pagan Gazzard]
186
+ >>>
187
+ >>> #### abstract-sql-compiler-8.3.13
188
+ >>> ##### (2023-04-24)
189
+ >>>
190
+ >>> * Deprecate `AliasableFromTypeNodes` type as it's redundant [Pagan Gazzard]
191
+ >>>
192
+ >>> #### abstract-sql-compiler-8.3.12
193
+ >>> ##### (2023-04-17)
194
+ >>>
195
+ >>> * Revert tightening of `OrderBy` to only field nodes [Pagan Gazzard]
196
+ >>>
197
+ >>> #### abstract-sql-compiler-8.3.11
198
+ >>> ##### (2023-04-13)
199
+ >>>
200
+ >>> * Do not allow ON clauses for CROSS JOIN as it is invalid [Pagan Gazzard]
201
+ >>> * Stop accepting `ExtractJSONPathAsText`/`ToJSON` as unknown node types [Pagan Gazzard]
202
+ >>>
203
+ >>> #### abstract-sql-compiler-8.3.10
204
+ >>> ##### (2023-04-13)
205
+ >>>
206
+ >>> * Fix DateNode/AnyNode typings [Pagan Gazzard]
207
+ >>>
208
+ >>> #### abstract-sql-compiler-8.3.9
209
+ >>> ##### (2023-04-13)
210
+ >>>
211
+ >>>
212
+ >>> <details>
213
+ >>> <summary> Update dependencies [Pagan Gazzard] </summary>
214
+ >>>
215
+ >>>> ##### sbvr-types-3.5.0
216
+ >>>> ###### (2023-03-21)
217
+ >>>>
218
+ >>>> * Add Big Serial type [Josh Bowling]
219
+ >>>>
220
+ >>>> ##### sbvr-types-3.4.19
221
+ >>>> ###### (2022-12-08)
222
+ >>>>
223
+ >>>> * Flowzone: Allow external contributions [Josh Bowling]
224
+ >>>>
225
+ >>>
226
+ >>> </details>
227
+ >>>
228
+ >>>
229
+ >>> #### abstract-sql-compiler-8.3.8
230
+ >>> ##### (2023-04-12)
231
+ >>>
232
+ >>> * Improve typings [Pagan Gazzard]
233
+ >>>
234
+ >>> #### abstract-sql-compiler-8.3.7
235
+ >>> ##### (2023-04-12)
236
+ >>>
237
+ >>> * Remove typing for non-existent JSON node [Pagan Gazzard]
238
+ >>>
239
+ >>> #### abstract-sql-compiler-8.3.6
240
+ >>> ##### (2023-04-12)
241
+ >>>
242
+ >>> * Tighten the `isXValue` function typings [Pagan Gazzard]
243
+ >>>
244
+ >>> #### abstract-sql-compiler-8.3.5
245
+ >>> ##### (2023-04-12)
246
+ >>>
247
+ >>> * Correctly treat `Value` nodes as rewritten to `Text` by the optimizer [Pagan Gazzard]
248
+ >>> * Add EmbeddedTextNode typing [Pagan Gazzard]
249
+ >>>
250
+ >>> #### abstract-sql-compiler-8.3.4
251
+ >>> ##### (2023-04-12)
252
+ >>>
253
+ >>> * Enforce the first argument of ExtractJSONPathAsText is a JSON type node [Pagan Gazzard]
254
+ >>>
255
+ >>> #### abstract-sql-compiler-8.3.3
256
+ >>> ##### (2023-04-12)
257
+ >>>
258
+ >>> * Improve node typings [Pagan Gazzard]
259
+ >>>
260
+ >>> #### abstract-sql-compiler-8.3.2
261
+ >>> ##### (2023-04-12)
262
+ >>>
263
+ >>> * Add more node typings [Pagan Gazzard]
264
+ >>>
265
+ >>> #### abstract-sql-compiler-8.3.1
266
+ >>> ##### (2023-04-12)
267
+ >>>
268
+ >>> * Add more node typings [Pagan Gazzard]
269
+ >>>
270
+ >>> #### abstract-sql-compiler-8.3.0
271
+ >>> ##### (2023-04-11)
272
+ >>>
273
+ >>> * Support boolean nodes in a ValuesNode [Pagan Gazzard]
274
+ >>>
275
+ >>> #### abstract-sql-compiler-8.2.0
276
+ >>> ##### (2023-04-11)
277
+ >>>
278
+ >>> * Add `Between` node type [Pagan Gazzard]
279
+ >>>
280
+ >>> #### abstract-sql-compiler-8.1.0
281
+ >>> ##### (2023-04-11)
282
+ >>>
283
+ >>> * Add `BitwiseAnd`/`BitwiseShiftRight` node types [Pagan Gazzard]
284
+ >>>
285
+ >>> #### abstract-sql-compiler-8.0.2
286
+ >>> ##### (2023-04-06)
287
+ >>>
288
+ >>> * Add `NotInNode` type [Pagan Gazzard]
289
+ >>> * Add `IsDistinctFromNode`/`IsNotDistinctFromNode` types [Pagan Gazzard]
290
+ >>> * Add `CharacterLengthNode` type [Pagan Gazzard]
291
+ >>>
292
+ >>> #### abstract-sql-compiler-8.0.1
293
+ >>> ##### (2023-04-06)
294
+ >>>
295
+ >>> * Adds Cast node type to tree parsing [Otávio Jacobi]
296
+ >>>
297
+ >>> #### odata-parser-2.4.6
298
+ >>> ##### (2023-02-24)
299
+ >>>
300
+ >>> * Improve typings [Pagan Gazzard]
301
+ >>>
302
+ >>> #### odata-parser-2.4.5
303
+ >>> ##### (2023-02-23)
304
+ >>>
305
+ >>> * Use const/let as appropriate [Pagan Gazzard]
306
+ >>>
307
+ >>> #### odata-parser-2.4.4
308
+ >>> ##### (2023-02-23)
309
+ >>>
310
+ >>> * Use shorthand object notation [Pagan Gazzard]
311
+ >>>
312
+ >>> #### odata-parser-2.4.3
313
+ >>> ##### (2023-02-23)
314
+ >>>
315
+ >>> * Update dependencies [Pagan Gazzard]
316
+ >>>
317
+ >>
318
+ >> </details>
319
+ >>
320
+ >>
321
+ >> ### odata-to-abstract-sql-5.9.3
322
+ >> #### (2023-03-08)
323
+ >>
324
+ >> * Fixes ODataBindings imported types [Otávio Jacobi]
325
+ >>
326
+ >> ### odata-to-abstract-sql-5.9.2
327
+ >> #### (2023-02-15)
328
+ >>
329
+ >> * Update typings to the minimal subset of the abstract sql model we need [Pagan Gazzard]
330
+ >>
331
+ >
332
+ > </details>
333
+ >
334
+ >
335
+ > ## abstract-sql-to-typescript-1.5.0
336
+ > ### (2023-03-01)
337
+ >
338
+ > * Adds native SQL Date type [Otávio Jacobi]
339
+ >
340
+ > ## odata-parser-3.0.0
341
+ > ### (2023-04-26)
342
+ >
343
+ > * Use optional chaining operator [Pagan Gazzard]
344
+ > * Set minimum supported nodejs version to 16.13.0 [Pagan Gazzard]
345
+ >
346
+ > ## odata-parser-2.5.0
347
+ > ### (2023-04-26)
348
+ >
349
+ > * Update to peggy 3 and make us of the repetition operator [Pagan Gazzard]
350
+ >
351
+ > ## odata-to-abstract-sql-6.0.1
352
+ > ### (2023-04-27)
353
+ >
354
+ >
355
+ > <details>
356
+ > <summary> Update dependencies [Pagan Gazzard] </summary>
357
+ >
358
+ >> ### odata-parser-3.0.0
359
+ >> #### (2023-04-26)
360
+ >>
361
+ >> * Use optional chaining operator [Pagan Gazzard]
362
+ >> * Set minimum supported nodejs version to 16.13.0 [Pagan Gazzard]
363
+ >>
364
+ >> ### odata-parser-2.5.0
365
+ >> #### (2023-04-26)
366
+ >>
367
+ >> * Update to peggy 3 and make us of the repetition operator [Pagan Gazzard]
368
+ >>
369
+ >> ### sbvr-types-4.0.0
370
+ >> #### (2023-04-26)
371
+ >>
372
+ >> * Add test cases for Objects in JSON validate [fisehara]
373
+ >> * Drop `require-npm4-to-publish` devDependency [fisehara]
374
+ >> * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
375
+ >> * Switch `JSON` to use `JSON` db type instead of `TEXT` [Pagan Gazzard]
376
+ >> * Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER` [Pagan Gazzard]
377
+ >> * Assert that JSON input typeof is object [Josh Bowling]
378
+ >>
379
+ >
380
+ > </details>
381
+ >
382
+ >
383
+ > ## odata-to-abstract-sql-6.0.0
384
+ > ### (2023-04-26)
385
+ >
386
+ > * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
387
+ > * Switch `AggregateJSON` to use the newer `ReferencedField` format [Pagan Gazzard]
388
+ >
389
+ > ## odata-to-abstract-sql-5.9.6
390
+ > ### (2023-04-25)
391
+ >
392
+ > * Collapse `AliasedFunction` into `FunctionMatch` [Pagan Gazzard]
393
+ >
394
+ > ## odata-to-abstract-sql-5.9.5
395
+ > ### (2023-04-25)
396
+ >
397
+ >
398
+ > <details>
399
+ > <summary> Improve typings [Pagan Gazzard] </summary>
400
+ >
401
+ >> ### abstract-sql-compiler-8.4.1
402
+ >> #### (2023-04-25)
403
+ >>
404
+ >> * Add much finer grained typings for abstract-sql-optimizer [Pagan Gazzard]
405
+ >>
406
+ >
407
+ > </details>
408
+ >
409
+ >
410
+ > ## odata-to-abstract-sql-5.9.4
411
+ > ### (2023-04-24)
412
+ >
413
+ >
414
+ > <details>
415
+ > <summary> Update dependencies [Pagan Gazzard] </summary>
416
+ >
417
+ >> ### abstract-sql-compiler-8.4.0
418
+ >> #### (2023-04-24)
419
+ >>
420
+ >> * Add support for using field type nodes with an AggregateJSON node [Pagan Gazzard]
421
+ >>
422
+ >> ### abstract-sql-compiler-8.3.13
423
+ >> #### (2023-04-24)
424
+ >>
425
+ >> * Deprecate `AliasableFromTypeNodes` type as it's redundant [Pagan Gazzard]
426
+ >>
427
+ >> ### abstract-sql-compiler-8.3.12
428
+ >> #### (2023-04-17)
429
+ >>
430
+ >> * Revert tightening of `OrderBy` to only field nodes [Pagan Gazzard]
431
+ >>
432
+ >> ### abstract-sql-compiler-8.3.11
433
+ >> #### (2023-04-13)
434
+ >>
435
+ >> * Do not allow ON clauses for CROSS JOIN as it is invalid [Pagan Gazzard]
436
+ >> * Stop accepting `ExtractJSONPathAsText`/`ToJSON` as unknown node types [Pagan Gazzard]
437
+ >>
438
+ >> ### abstract-sql-compiler-8.3.10
439
+ >> #### (2023-04-13)
440
+ >>
441
+ >> * Fix DateNode/AnyNode typings [Pagan Gazzard]
442
+ >>
443
+ >> ### abstract-sql-compiler-8.3.9
444
+ >> #### (2023-04-13)
445
+ >>
446
+ >>
447
+ >> <details>
448
+ >> <summary> Update dependencies [Pagan Gazzard] </summary>
449
+ >>
450
+ >>> #### sbvr-types-3.5.0
451
+ >>> ##### (2023-03-21)
452
+ >>>
453
+ >>> * Add Big Serial type [Josh Bowling]
454
+ >>>
455
+ >>> #### sbvr-types-3.4.19
456
+ >>> ##### (2022-12-08)
457
+ >>>
458
+ >>> * Flowzone: Allow external contributions [Josh Bowling]
459
+ >>>
460
+ >>
461
+ >> </details>
462
+ >>
463
+ >>
464
+ >> ### abstract-sql-compiler-8.3.8
465
+ >> #### (2023-04-12)
466
+ >>
467
+ >> * Improve typings [Pagan Gazzard]
468
+ >>
469
+ >> ### abstract-sql-compiler-8.3.7
470
+ >> #### (2023-04-12)
471
+ >>
472
+ >> * Remove typing for non-existent JSON node [Pagan Gazzard]
473
+ >>
474
+ >> ### abstract-sql-compiler-8.3.6
475
+ >> #### (2023-04-12)
476
+ >>
477
+ >> * Tighten the `isXValue` function typings [Pagan Gazzard]
478
+ >>
479
+ >> ### abstract-sql-compiler-8.3.5
480
+ >> #### (2023-04-12)
481
+ >>
482
+ >> * Correctly treat `Value` nodes as rewritten to `Text` by the optimizer [Pagan Gazzard]
483
+ >> * Add EmbeddedTextNode typing [Pagan Gazzard]
484
+ >>
485
+ >> ### abstract-sql-compiler-8.3.4
486
+ >> #### (2023-04-12)
487
+ >>
488
+ >> * Enforce the first argument of ExtractJSONPathAsText is a JSON type node [Pagan Gazzard]
489
+ >>
490
+ >> ### abstract-sql-compiler-8.3.3
491
+ >> #### (2023-04-12)
492
+ >>
493
+ >> * Improve node typings [Pagan Gazzard]
494
+ >>
495
+ >> ### abstract-sql-compiler-8.3.2
496
+ >> #### (2023-04-12)
497
+ >>
498
+ >> * Add more node typings [Pagan Gazzard]
499
+ >>
500
+ >> ### abstract-sql-compiler-8.3.1
501
+ >> #### (2023-04-12)
502
+ >>
503
+ >> * Add more node typings [Pagan Gazzard]
504
+ >>
505
+ >> ### abstract-sql-compiler-8.3.0
506
+ >> #### (2023-04-11)
507
+ >>
508
+ >> * Support boolean nodes in a ValuesNode [Pagan Gazzard]
509
+ >>
510
+ >> ### abstract-sql-compiler-8.2.0
511
+ >> #### (2023-04-11)
512
+ >>
513
+ >> * Add `Between` node type [Pagan Gazzard]
514
+ >>
515
+ >> ### abstract-sql-compiler-8.1.0
516
+ >> #### (2023-04-11)
517
+ >>
518
+ >> * Add `BitwiseAnd`/`BitwiseShiftRight` node types [Pagan Gazzard]
519
+ >>
520
+ >> ### abstract-sql-compiler-8.0.2
521
+ >> #### (2023-04-06)
522
+ >>
523
+ >> * Add `NotInNode` type [Pagan Gazzard]
524
+ >> * Add `IsDistinctFromNode`/`IsNotDistinctFromNode` types [Pagan Gazzard]
525
+ >> * Add `CharacterLengthNode` type [Pagan Gazzard]
526
+ >>
527
+ >> ### abstract-sql-compiler-8.0.1
528
+ >> #### (2023-04-06)
529
+ >>
530
+ >> * Adds Cast node type to tree parsing [Otávio Jacobi]
531
+ >>
532
+ >> ### odata-parser-2.4.6
533
+ >> #### (2023-02-24)
534
+ >>
535
+ >> * Improve typings [Pagan Gazzard]
536
+ >>
537
+ >> ### odata-parser-2.4.5
538
+ >> #### (2023-02-23)
539
+ >>
540
+ >> * Use const/let as appropriate [Pagan Gazzard]
541
+ >>
542
+ >> ### odata-parser-2.4.4
543
+ >> #### (2023-02-23)
544
+ >>
545
+ >> * Use shorthand object notation [Pagan Gazzard]
546
+ >>
547
+ >> ### odata-parser-2.4.3
548
+ >> #### (2023-02-23)
549
+ >>
550
+ >> * Update dependencies [Pagan Gazzard]
551
+ >>
552
+ >
553
+ > </details>
554
+ >
555
+ >
556
+ > ## odata-to-abstract-sql-5.9.3
557
+ > ### (2023-03-08)
558
+ >
559
+ > * Fixes ODataBindings imported types [Otávio Jacobi]
560
+ >
561
+ > ## sbvr-types-4.0.0
562
+ > ### (2023-04-26)
563
+ >
564
+ > * Add test cases for Objects in JSON validate [fisehara]
565
+ > * Drop `require-npm4-to-publish` devDependency [fisehara]
566
+ > * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
567
+ > * Switch `JSON` to use `JSON` db type instead of `TEXT` [Pagan Gazzard]
568
+ > * Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER` [Pagan Gazzard]
569
+ > * Assert that JSON input typeof is object [Josh Bowling]
570
+ >
571
+ > ## sbvr-types-3.5.0
572
+ > ### (2023-03-21)
573
+ >
574
+ > * Add Big Serial type [Josh Bowling]
575
+ >
576
+ > ## sbvr-types-3.4.19
577
+ > ### (2022-12-08)
578
+ >
579
+ > * Flowzone: Allow external contributions [Josh Bowling]
580
+ >
581
+
582
+ </details>
583
+
584
+ # v14.62.9
585
+ ## (2023-04-21)
586
+
587
+ * Narrow the registered express HTTP methods [fisehara]
588
+
589
+ # v14.62.8
590
+ ## (2023-04-19)
591
+
592
+ * Add test cases for native translations [Harald Fischer]
593
+
594
+ # v14.62.7
595
+ ## (2023-04-18)
596
+
597
+ * Update select sql typing [Josh Bowling]
598
+
599
+ # v14.62.6
600
+ ## (2023-04-11)
601
+
602
+ * Guard against translations aliasing to a field that does not exist [Pagan Gazzard]
603
+
604
+ # v14.62.5
605
+ ## (2023-03-23)
606
+
607
+ * Fix resourceName to resourceName native translation [fisehara]
608
+
609
+ # v14.62.4
610
+ ## (2023-02-28)
611
+
612
+ * Rollback async migration tx on failed async mgmt tx [fisehara]
613
+
614
+ # v14.62.3
615
+ ## (2023-02-27)
616
+
617
+ * Fix `isAsyncMigration` to accept mixed fn and sql async migrations [Pagan Gazzard]
618
+
619
+ # v14.62.2
620
+ ## (2023-02-27)
621
+
622
+ * Fix async migrator typings when mixing migrator fns and sql [Pagan Gazzard]
623
+
624
+ # v14.62.1
625
+ ## (2023-02-24)
626
+
627
+
628
+ <details>
629
+ <summary> Update @balena/odata-parser to 2.4.6 [Pagan Gazzard] </summary>
630
+
631
+ > ## odata-parser-2.4.6
632
+ > ### (2023-02-24)
633
+ >
634
+ > * Improve typings [Pagan Gazzard]
635
+ >
636
+ > ## odata-parser-2.4.5
637
+ > ### (2023-02-23)
638
+ >
639
+ > * Use const/let as appropriate [Pagan Gazzard]
640
+ >
641
+ > ## odata-parser-2.4.4
642
+ > ### (2023-02-23)
643
+ >
644
+ > * Use shorthand object notation [Pagan Gazzard]
645
+ >
646
+ > ## odata-parser-2.4.3
647
+ > ### (2023-02-23)
648
+ >
649
+ > * Update dependencies [Pagan Gazzard]
650
+ >
651
+
652
+ </details>
653
+
654
+ # v14.62.0
655
+ ## (2023-02-20)
656
+
657
+ * Use `affectedIds` to narrow the number of rows checked by rules [Carol Schulze]
658
+
659
+ # v14.61.5
660
+ ## (2023-02-20)
661
+
662
+ * Fixes setting only finalized async migration as executed [Harald Fischer]
663
+
664
+ # v14.61.4
665
+ ## (2023-02-20)
666
+
667
+ * Fixes implicit any type [Harald Fischer]
668
+
669
+ # v14.61.3
670
+ ## (2023-02-15)
671
+
672
+ * Tests: use transpile-only for faster tests [Pagan Gazzard]
673
+ * Tests: type-check tests as part of tsconfig.dev.json and fix typing error [Pagan Gazzard]
674
+
675
+ # v14.61.2
676
+ ## (2023-02-15)
677
+
678
+ * Fix read-only hook args when there is a read-only or no transaction [Pagan Gazzard]
679
+
680
+ # v14.61.1
681
+ ## (2023-02-15)
682
+
683
+
684
+ <details>
685
+ <summary> Update dependencies [Pagan Gazzard] </summary>
686
+
687
+ > ## abstract-sql-compiler-7.26.0
688
+ > ### (2023-02-07)
689
+ >
690
+ > * Optimize schema during compilation [Carol Schulze]
691
+ >
692
+ > ## abstract-sql-to-typescript-1.4.2
693
+ > ### (2023-02-15)
694
+ >
695
+ > * Update typings to the minimal subset of the abstract sql model we need [Pagan Gazzard]
696
+ >
697
+ > ## abstract-sql-to-typescript-1.4.1
698
+ > ### (2023-02-14)
699
+ >
700
+ > * Update `abstract-sql-compiler` and `odata-to-abstract-sql` [Carol Schulze]
701
+ >
702
+ > ## abstract-sql-to-typescript-1.4.0
703
+ > ### (2022-12-20)
704
+ >
705
+ > * Generate properties for reverse navigation relations using synonyms [Thodoris Greasidis]
706
+ >
707
+ > ## abstract-sql-to-typescript-1.3.1
708
+ > ### (2022-12-08)
709
+ >
710
+ > * Flowzone: Allow external contributions [Josh Bowling]
711
+ >
712
+ > ## odata-to-abstract-sql-5.9.2
713
+ > ### (2023-02-15)
714
+ >
715
+ > * Update typings to the minimal subset of the abstract sql model we need [Pagan Gazzard]
716
+ >
717
+ > ## odata-to-abstract-sql-5.9.1
718
+ > ### (2023-02-13)
719
+ >
720
+ >
721
+ > <details>
722
+ > <summary> Update dependency @balena/lf-to-abstract-sql to 5.0.0 [Renovate Bot] </summary>
723
+ >
724
+ >> ### lf-to-abstract-sql-5.0.0
725
+ >> #### (2023-02-10)
726
+ >>
727
+ >> * Expand `lfInfo` to also include the root table name [Carol Schulze]
728
+ >>
729
+ >
730
+ > </details>
731
+ >
732
+ >
733
+ > ## odata-to-abstract-sql-5.9.0
734
+ > ### (2023-02-13)
735
+ >
736
+ >
737
+ > <details>
738
+ > <summary> Update dependency @balena/abstract-sql-compiler to 8.0.0 [Renovate Bot] </summary>
739
+ >
740
+ >> ### abstract-sql-compiler-8.0.0
741
+ >> #### (2023-02-13)
742
+ >>
743
+ >> * Add binds for affected IDs in compiled rules [Carol Schulze]
744
+ >>
745
+ >
746
+ > </details>
747
+ >
748
+ >
749
+ > ## odata-to-abstract-sql-5.8.1
750
+ > ### (2023-02-13)
751
+ >
752
+ > * Cache the `ResourceMapping` result to avoid unnecessary work [Pagan Gazzard]
753
+ >
754
+
755
+ </details>
24
756
 
25
757
  # v14.61.0
26
758
  ## (2023-02-03)