@balena/pinejs 17.0.0-build-large-file-uploads-293e65ee371a69130834c50fef2f7f42cc18133f-1 → 17.0.0-build-17-x-74b0e8403edbd7922c684e3ce19bdb42ac41846b-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 -12
  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 +21 -30
  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
package/CHANGELOG.md CHANGED
@@ -5,12 +5,867 @@ automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  # v17.0.0
8
- ## (2024-04-19)
8
+ ## (2024-06-04)
9
9
 
10
- * Add webresource vocab & begin/commitUpload actions [Otavio Jacobi]
11
- * Add beginMultipartUpload/commitMultipartUpload to WebResourceHandler [Otavio Jacobi]
12
- * Remove S3 handler from core in favor of @balena/pinejs-webresource-s3 [Otavio Jacobi]
13
- * Drop support to node < 18.18 [Otavio Jacobi]
10
+ * Update tsconfig target to es2022 [Pagan Gazzard]
11
+ * Fix internal pinejs client class when used with es2022 [Pagan Gazzard]
12
+ * Update minimum supported nodejs version to 20.14.0 [Pagan Gazzard]
13
+
14
+ <details>
15
+ <summary> Update @balena/abstract-sql-to-typescript to 3.x [Pagan Gazzard] </summary>
16
+
17
+ > ## abstract-sql-to-typescript-3.0.2
18
+ > ### (2024-05-09)
19
+ >
20
+ > * Improve `Resource` typing [Pagan Gazzard]
21
+ >
22
+ > ## abstract-sql-to-typescript-3.0.1
23
+ > ### (2024-05-04)
24
+ >
25
+ > * Use `[A] | []` rather than `[A?]` for singular references [Pagan Gazzard]
26
+ > * Fix `Resource` typing to allow for null [Pagan Gazzard]
27
+ > * Fix `Resource` typing for expandable properties [Pagan Gazzard]
28
+ >
29
+ > ## abstract-sql-to-typescript-3.0.0
30
+ > ### (2024-05-02)
31
+ >
32
+ > * Export a `Resource` type which all resources should conform to [Pagan Gazzard]
33
+ > * Separate the generation code from the exported type helpers [Pagan Gazzard]
34
+ > * Use types directly from sbvr-types [Pagan Gazzard]
35
+ > * Expose read vs write selection in generated types [Pagan Gazzard]
36
+ >
37
+
38
+ </details>
39
+
40
+ * Remove deprecated logging functionality from exported API clients [Pagan Gazzard]
41
+
42
+ # v16.1.6
43
+ ## (2024-05-09)
44
+
45
+ * Deprecate LoggingClient in favor of a separate logger dictionary [Pagan Gazzard]
46
+
47
+ # v16.1.5
48
+ ## (2024-05-08)
49
+
50
+
51
+ <details>
52
+ <summary> Update dependencies [Pagan Gazzard] </summary>
53
+
54
+ > ## abstract-sql-compiler-9.1.4
55
+ > ### (2024-04-09)
56
+ >
57
+ > * Cast Big Serial to integer [Josh Bowling]
58
+ >
59
+ > ## abstract-sql-compiler-9.1.3
60
+ > ### (2024-04-09)
61
+ >
62
+ > * Update prepare script for husky v9 [Josh Bowling]
63
+ > * Update dependency husky to v9 [Self-hosted Renovate Bot]
64
+ >
65
+ > ## abstract-sql-compiler-9.1.2
66
+ > ### (2024-04-09)
67
+ >
68
+ > * Update dependency lint-staged to v15 [Self-hosted Renovate Bot]
69
+ >
70
+ > ## abstract-sql-compiler-9.1.1
71
+ > ### (2024-03-26)
72
+ >
73
+ > * Update dependency @balena/lint to v8 [Thodoris Greasidis]
74
+ >
75
+ > ## abstract-sql-to-typescript-2.4.0
76
+ > ### (2024-04-19)
77
+ >
78
+ > * Improve foreign key typings by referencing the appropriate interface [Pagan Gazzard]
79
+ >
80
+ > ## abstract-sql-to-typescript-2.3.0
81
+ > ### (2024-04-17)
82
+ >
83
+ > * Allow using `PickDeferred` with a single parameter to defer all keys [Pagan Gazzard]
84
+ > * Allow using `PickExpanded` with a single parameter to expand all keys [Pagan Gazzard]
85
+ >
86
+ > ## abstract-sql-to-typescript-2.2.0
87
+ > ### (2024-04-09)
88
+ >
89
+ > * Add support for Big Serial [Josh Bowling]
90
+ >
91
+ > ## abstract-sql-to-typescript-2.1.6
92
+ > ### (2024-04-09)
93
+ >
94
+ > * Update prepare script for husky v9 [Josh Bowling]
95
+ > * Update dependency husky to v9 [Self-hosted Renovate Bot]
96
+ >
97
+ > ## abstract-sql-to-typescript-2.1.5
98
+ > ### (2024-04-09)
99
+ >
100
+ > * Update dependency @balena/lint to v8 [Self-hosted Renovate Bot]
101
+ >
102
+ > ## abstract-sql-to-typescript-2.1.4
103
+ > ### (2024-03-04)
104
+ >
105
+ >
106
+ > <details>
107
+ > <summary> Update dependencies [Pagan Gazzard] </summary>
108
+ >
109
+ >> ### odata-to-abstract-sql-6.2.3
110
+ >> #### (2024-01-15)
111
+ >>
112
+ >> * Require at least one field to be updated for PATCH requests [Pagan Gazzard]
113
+ >>
114
+ >> ### odata-to-abstract-sql-6.2.2
115
+ >> #### (2024-01-15)
116
+ >>
117
+ >> * Simplify support for MERGE as an alias for PATCH [Pagan Gazzard]
118
+ >>
119
+ >> ### odata-to-abstract-sql-6.2.1
120
+ >> #### (2024-01-15)
121
+ >>
122
+ >>
123
+ >> <details>
124
+ >> <summary> Update dependencies [Pagan Gazzard] </summary>
125
+ >>
126
+ >>> #### abstract-sql-compiler-9.0.4
127
+ >>> ##### (2024-01-02)
128
+ >>>
129
+ >>> * Update dependency @types/node to v20 [Self-hosted Renovate Bot]
130
+ >>>
131
+ >>> #### odata-parser-3.0.3
132
+ >>> ##### (2024-01-04)
133
+ >>>
134
+ >>> * Optimize by moving constant values into global init [fisehara]
135
+ >>>
136
+ >>> #### odata-parser-3.0.2
137
+ >>> ##### (2024-01-04)
138
+ >>>
139
+ >>> * Update dependencies [fisehara]
140
+ >>>
141
+ >>> #### sbvr-types-6.1.1
142
+ >>> ##### (2024-01-02)
143
+ >>>
144
+ >>> * Update dependency @types/chai-datetime to ^0.0.39 [Self-hosted Renovate Bot]
145
+ >>>
146
+ >>
147
+ >> </details>
148
+ >>
149
+ >>
150
+ >> ### odata-to-abstract-sql-6.2.0
151
+ >> #### (2023-11-24)
152
+ >>
153
+ >> * Optimize Duplications of `ComputedField` queries [fisehara]
154
+ >>
155
+ >> ### odata-to-abstract-sql-6.1.3
156
+ >> #### (2023-11-10)
157
+ >>
158
+ >> * Update dependency @types/chai-things to v0.0.38 [Self-hosted Renovate Bot]
159
+ >>
160
+ >> ### odata-to-abstract-sql-6.1.2
161
+ >> #### (2023-10-20)
162
+ >>
163
+ >> * Update dependency @types/chai-things to v0.0.37 [Self-hosted Renovate Bot]
164
+ >>
165
+ >> ### odata-to-abstract-sql-6.1.1
166
+ >> #### (2023-10-19)
167
+ >>
168
+ >>
169
+ >> <details>
170
+ >> <summary> Update dependencies eslint, sbvrTypes, abstract-sql-compiler [Harald Fischer] </summary>
171
+ >>
172
+ >>> #### abstract-sql-compiler-9.0.3
173
+ >>> ##### (2023-08-09)
174
+ >>>
175
+ >>>
176
+ >>> <details>
177
+ >>> <summary> Update @balena/sbvr-types to 6.0.0 [Otávio Jacobi] </summary>
178
+ >>>
179
+ >>>> ##### sbvr-types-6.0.0
180
+ >>>> ###### (2023-08-09)
181
+ >>>>
182
+ >>>> * Change contents to snake_case [Otávio Jacobi]
183
+ >>>>
184
+ >>>> ##### sbvr-types-5.2.0
185
+ >>>> ###### (2023-08-08)
186
+ >>>>
187
+ >>>> * Expose WebResource as WebResourceType [Otávio Jacobi]
188
+ >>>>
189
+ >>>> ##### sbvr-types-5.1.0
190
+ >>>> ###### (2023-08-03)
191
+ >>>>
192
+ >>>> * Adds WebResource type [Otávio Jacobi]
193
+ >>>>
194
+ >>>
195
+ >>> </details>
196
+ >>>
197
+ >>>
198
+ >>> #### abstract-sql-compiler-9.0.2
199
+ >>> ##### (2023-05-16)
200
+ >>>
201
+ >>>
202
+ >>> <details>
203
+ >>> <summary> Update @balena/sbvr-types to 5.0.0 [Pagan Gazzard] </summary>
204
+ >>>
205
+ >>>> ##### sbvr-types-5.0.0
206
+ >>>> ###### (2023-05-16)
207
+ >>>>
208
+ >>>> * Switch from `export =` to `export default` [Pagan Gazzard]
209
+ >>>>
210
+ >>>> ##### sbvr-types-4.0.2
211
+ >>>> ###### (2023-05-03)
212
+ >>>>
213
+ >>>> * Improve typings [Pagan Gazzard]
214
+ >>>>
215
+ >>>> ##### sbvr-types-4.0.1
216
+ >>>> ###### (2023-05-02)
217
+ >>>>
218
+ >>>> * boolean: Avoid unnecessary array creation to reduce GCs [Thodoris Greasidis]
219
+ >>>>
220
+ >>>
221
+ >>> </details>
222
+ >>>
223
+ >>>
224
+ >>> #### abstract-sql-compiler-9.0.1
225
+ >>> ##### (2023-05-15)
226
+ >>>
227
+ >>> * Fix TS errors for the latest sbvrTypes [Thodoris Greasidis]
228
+ >>>
229
+ >>> #### abstract-sql-compiler-9.0.0
230
+ >>> ##### (2023-05-02)
231
+ >>>
232
+ >>> * Drop `require-npm4-to-publish` as `engines` used [fisehara]
233
+ >>>
234
+ >>> <details>
235
+ >>> <summary> Update @balena/odata-to-abstract-sql to 6.x [Pagan Gazzard] </summary>
236
+ >>>
237
+ >>>> ##### odata-to-abstract-sql-6.0.1
238
+ >>>> ###### (2023-04-27)
239
+ >>>>
240
+ >>>>
241
+ >>>> <details>
242
+ >>>> <summary> Update dependencies [Pagan Gazzard] </summary>
243
+ >>>>
244
+ >>>>> ###### odata-parser-3.0.0
245
+ >>>>> ####### (2023-04-26)
246
+ >>>>>
247
+ >>>>> * Use optional chaining operator [Pagan Gazzard]
248
+ >>>>> * Set minimum supported nodejs version to 16.13.0 [Pagan Gazzard]
249
+ >>>>>
250
+ >>>>> ###### odata-parser-2.5.0
251
+ >>>>> ####### (2023-04-26)
252
+ >>>>>
253
+ >>>>> * Update to peggy 3 and make us of the repetition operator [Pagan Gazzard]
254
+ >>>>>
255
+ >>>>> ###### sbvr-types-4.0.0
256
+ >>>>> ####### (2023-04-26)
257
+ >>>>>
258
+ >>>>> * Add test cases for Objects in JSON validate [fisehara]
259
+ >>>>> * Drop `require-npm4-to-publish` devDependency [fisehara]
260
+ >>>>> * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
261
+ >>>>> * Switch `JSON` to use `JSON` db type instead of `TEXT` [Pagan Gazzard]
262
+ >>>>> * Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER` [Pagan Gazzard]
263
+ >>>>> * Assert that JSON input typeof is object [Josh Bowling]
264
+ >>>>>
265
+ >>>>
266
+ >>>> </details>
267
+ >>>>
268
+ >>>>
269
+ >>>> ##### odata-to-abstract-sql-6.0.0
270
+ >>>> ###### (2023-04-26)
271
+ >>>>
272
+ >>>> * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
273
+ >>>> * Switch `AggregateJSON` to use the newer `ReferencedField` format [Pagan Gazzard]
274
+ >>>>
275
+ >>>> ##### odata-to-abstract-sql-5.9.6
276
+ >>>> ###### (2023-04-25)
277
+ >>>>
278
+ >>>> * Collapse `AliasedFunction` into `FunctionMatch` [Pagan Gazzard]
279
+ >>>>
280
+ >>>> ##### odata-to-abstract-sql-5.9.5
281
+ >>>> ###### (2023-04-25)
282
+ >>>>
283
+ >>>>
284
+ >>>> <details>
285
+ >>>> <summary> Improve typings [Pagan Gazzard] </summary>
286
+ >>>>
287
+ >>>>> ###### abstract-sql-compiler-8.4.1
288
+ >>>>> ####### (2023-04-25)
289
+ >>>>>
290
+ >>>>> * Add much finer grained typings for abstract-sql-optimizer [Pagan Gazzard]
291
+ >>>>>
292
+ >>>>
293
+ >>>> </details>
294
+ >>>>
295
+ >>>>
296
+ >>>> ##### odata-to-abstract-sql-5.9.4
297
+ >>>> ###### (2023-04-24)
298
+ >>>>
299
+ >>>>
300
+ >>>> <details>
301
+ >>>> <summary> Update dependencies [Pagan Gazzard] </summary>
302
+ >>>>
303
+ >>>>> ###### abstract-sql-compiler-8.4.0
304
+ >>>>> ####### (2023-04-24)
305
+ >>>>>
306
+ >>>>> * Add support for using field type nodes with an AggregateJSON node [Pagan Gazzard]
307
+ >>>>>
308
+ >>>>> ###### abstract-sql-compiler-8.3.13
309
+ >>>>> ####### (2023-04-24)
310
+ >>>>>
311
+ >>>>> * Deprecate `AliasableFromTypeNodes` type as it's redundant [Pagan Gazzard]
312
+ >>>>>
313
+ >>>>> ###### abstract-sql-compiler-8.3.12
314
+ >>>>> ####### (2023-04-17)
315
+ >>>>>
316
+ >>>>> * Revert tightening of `OrderBy` to only field nodes [Pagan Gazzard]
317
+ >>>>>
318
+ >>>>> ###### abstract-sql-compiler-8.3.11
319
+ >>>>> ####### (2023-04-13)
320
+ >>>>>
321
+ >>>>> * Do not allow ON clauses for CROSS JOIN as it is invalid [Pagan Gazzard]
322
+ >>>>> * Stop accepting `ExtractJSONPathAsText`/`ToJSON` as unknown node types [Pagan Gazzard]
323
+ >>>>>
324
+ >>>>> ###### abstract-sql-compiler-8.3.10
325
+ >>>>> ####### (2023-04-13)
326
+ >>>>>
327
+ >>>>> * Fix DateNode/AnyNode typings [Pagan Gazzard]
328
+ >>>>>
329
+ >>>>> ###### abstract-sql-compiler-8.3.9
330
+ >>>>> ####### (2023-04-13)
331
+ >>>>>
332
+ >>>>>
333
+ >>>>> <details>
334
+ >>>>> <summary> Update dependencies [Pagan Gazzard] </summary>
335
+ >>>>>
336
+ >>>>>> ####### sbvr-types-3.5.0
337
+ >>>>>> ######## (2023-03-21)
338
+ >>>>>>
339
+ >>>>>> * Add Big Serial type [Josh Bowling]
340
+ >>>>>>
341
+ >>>>>> ####### sbvr-types-3.4.19
342
+ >>>>>> ######## (2022-12-08)
343
+ >>>>>>
344
+ >>>>>> * Flowzone: Allow external contributions [Josh Bowling]
345
+ >>>>>>
346
+ >>>>>
347
+ >>>>> </details>
348
+ >>>>>
349
+ >>>>>
350
+ >>>>> ###### abstract-sql-compiler-8.3.8
351
+ >>>>> ####### (2023-04-12)
352
+ >>>>>
353
+ >>>>> * Improve typings [Pagan Gazzard]
354
+ >>>>>
355
+ >>>>> ###### abstract-sql-compiler-8.3.7
356
+ >>>>> ####### (2023-04-12)
357
+ >>>>>
358
+ >>>>> * Remove typing for non-existent JSON node [Pagan Gazzard]
359
+ >>>>>
360
+ >>>>> ###### abstract-sql-compiler-8.3.6
361
+ >>>>> ####### (2023-04-12)
362
+ >>>>>
363
+ >>>>> * Tighten the `isXValue` function typings [Pagan Gazzard]
364
+ >>>>>
365
+ >>>>> ###### abstract-sql-compiler-8.3.5
366
+ >>>>> ####### (2023-04-12)
367
+ >>>>>
368
+ >>>>> * Correctly treat `Value` nodes as rewritten to `Text` by the optimizer [Pagan Gazzard]
369
+ >>>>> * Add EmbeddedTextNode typing [Pagan Gazzard]
370
+ >>>>>
371
+ >>>>> ###### abstract-sql-compiler-8.3.4
372
+ >>>>> ####### (2023-04-12)
373
+ >>>>>
374
+ >>>>> * Enforce the first argument of ExtractJSONPathAsText is a JSON type node [Pagan Gazzard]
375
+ >>>>>
376
+ >>>>> ###### abstract-sql-compiler-8.3.3
377
+ >>>>> ####### (2023-04-12)
378
+ >>>>>
379
+ >>>>> * Improve node typings [Pagan Gazzard]
380
+ >>>>>
381
+ >>>>> ###### abstract-sql-compiler-8.3.2
382
+ >>>>> ####### (2023-04-12)
383
+ >>>>>
384
+ >>>>> * Add more node typings [Pagan Gazzard]
385
+ >>>>>
386
+ >>>>> ###### abstract-sql-compiler-8.3.1
387
+ >>>>> ####### (2023-04-12)
388
+ >>>>>
389
+ >>>>> * Add more node typings [Pagan Gazzard]
390
+ >>>>>
391
+ >>>>> ###### abstract-sql-compiler-8.3.0
392
+ >>>>> ####### (2023-04-11)
393
+ >>>>>
394
+ >>>>> * Support boolean nodes in a ValuesNode [Pagan Gazzard]
395
+ >>>>>
396
+ >>>>> ###### abstract-sql-compiler-8.2.0
397
+ >>>>> ####### (2023-04-11)
398
+ >>>>>
399
+ >>>>> * Add `Between` node type [Pagan Gazzard]
400
+ >>>>>
401
+ >>>>> ###### abstract-sql-compiler-8.1.0
402
+ >>>>> ####### (2023-04-11)
403
+ >>>>>
404
+ >>>>> * Add `BitwiseAnd`/`BitwiseShiftRight` node types [Pagan Gazzard]
405
+ >>>>>
406
+ >>>>> ###### abstract-sql-compiler-8.0.2
407
+ >>>>> ####### (2023-04-06)
408
+ >>>>>
409
+ >>>>> * Add `NotInNode` type [Pagan Gazzard]
410
+ >>>>> * Add `IsDistinctFromNode`/`IsNotDistinctFromNode` types [Pagan Gazzard]
411
+ >>>>> * Add `CharacterLengthNode` type [Pagan Gazzard]
412
+ >>>>>
413
+ >>>>> ###### abstract-sql-compiler-8.0.1
414
+ >>>>> ####### (2023-04-06)
415
+ >>>>>
416
+ >>>>> * Adds Cast node type to tree parsing [Otávio Jacobi]
417
+ >>>>>
418
+ >>>>> ###### odata-parser-2.4.6
419
+ >>>>> ####### (2023-02-24)
420
+ >>>>>
421
+ >>>>> * Improve typings [Pagan Gazzard]
422
+ >>>>>
423
+ >>>>> ###### odata-parser-2.4.5
424
+ >>>>> ####### (2023-02-23)
425
+ >>>>>
426
+ >>>>> * Use const/let as appropriate [Pagan Gazzard]
427
+ >>>>>
428
+ >>>>> ###### odata-parser-2.4.4
429
+ >>>>> ####### (2023-02-23)
430
+ >>>>>
431
+ >>>>> * Use shorthand object notation [Pagan Gazzard]
432
+ >>>>>
433
+ >>>>> ###### odata-parser-2.4.3
434
+ >>>>> ####### (2023-02-23)
435
+ >>>>>
436
+ >>>>> * Update dependencies [Pagan Gazzard]
437
+ >>>>>
438
+ >>>>
439
+ >>>> </details>
440
+ >>>>
441
+ >>>>
442
+ >>>
443
+ >>> </details>
444
+ >>>
445
+ >>> * Remove support for the legacy AggregateJSON format of `[tableName, fieldName]` [Pagan Gazzard]
446
+ >>> * Remove support for the legacy boolean format of `true|false` [Pagan Gazzard]
447
+ >>> * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
448
+ >>> * Remove support for the legacy alias format of `[node, alias]` [Pagan Gazzard]
449
+ >>> * Remove support for the legacy table format of `tableName` [Pagan Gazzard]
450
+ >>> * Remove support for the legacy null formats of `null` and `'Null'` [Pagan Gazzard]
451
+ >>> * Reflect the usage of BOOLEAN db type [Pagan Gazzard]
452
+ >>>
453
+ >>> <details>
454
+ >>> <summary> Update @balena/sbvr-types to 4.x [Pagan Gazzard] </summary>
455
+ >>>
456
+ >>>> ##### sbvr-types-4.0.0
457
+ >>>> ###### (2023-04-26)
458
+ >>>>
459
+ >>>> * Add test cases for Objects in JSON validate [fisehara]
460
+ >>>> * Drop `require-npm4-to-publish` devDependency [fisehara]
461
+ >>>> * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
462
+ >>>> * Switch `JSON` to use `JSON` db type instead of `TEXT` [Pagan Gazzard]
463
+ >>>> * Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER` [Pagan Gazzard]
464
+ >>>> * Assert that JSON input typeof is object [Josh Bowling]
465
+ >>>>
466
+ >>>
467
+ >>> </details>
468
+ >>>
469
+ >>>
470
+ >>> #### abstract-sql-compiler-8.5.0
471
+ >>> ##### (2023-04-27)
472
+ >>>
473
+ >>> * Use native `StartsWith` node type for postgres [Pagan Gazzard]
474
+ >>> * Convert `EscapeForLike` into a standalone node type [Pagan Gazzard]
475
+ >>>
476
+ >>> #### lf-to-abstract-sql-5.0.1
477
+ >>> ##### (2023-05-16)
478
+ >>>
479
+ >>>
480
+ >>> <details>
481
+ >>> <summary> Update @balena/sbvr-types to 5.0.0 [Pagan Gazzard] </summary>
482
+ >>>
483
+ >>>> ##### sbvr-types-5.0.0
484
+ >>>> ###### (2023-05-16)
485
+ >>>>
486
+ >>>> * Switch from `export =` to `export default` [Pagan Gazzard]
487
+ >>>>
488
+ >>>> ##### sbvr-types-4.0.2
489
+ >>>> ###### (2023-05-03)
490
+ >>>>
491
+ >>>> * Improve typings [Pagan Gazzard]
492
+ >>>>
493
+ >>>> ##### sbvr-types-4.0.1
494
+ >>>> ###### (2023-05-02)
495
+ >>>>
496
+ >>>> * boolean: Avoid unnecessary array creation to reduce GCs [Thodoris Greasidis]
497
+ >>>>
498
+ >>>> ##### sbvr-types-4.0.0
499
+ >>>> ###### (2023-04-26)
500
+ >>>>
501
+ >>>> * Add test cases for Objects in JSON validate [fisehara]
502
+ >>>> * Drop `require-npm4-to-publish` devDependency [fisehara]
503
+ >>>> * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
504
+ >>>> * Switch `JSON` to use `JSON` db type instead of `TEXT` [Pagan Gazzard]
505
+ >>>> * Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER` [Pagan Gazzard]
506
+ >>>> * Assert that JSON input typeof is object [Josh Bowling]
507
+ >>>>
508
+ >>>> ##### sbvr-types-3.5.0
509
+ >>>> ###### (2023-03-21)
510
+ >>>>
511
+ >>>> * Add Big Serial type [Josh Bowling]
512
+ >>>>
513
+ >>>> ##### sbvr-types-3.4.19
514
+ >>>> ###### (2022-12-08)
515
+ >>>>
516
+ >>>> * Flowzone: Allow external contributions [Josh Bowling]
517
+ >>>>
518
+ >>>
519
+ >>> </details>
520
+ >>>
521
+ >>>
522
+ >>> #### odata-parser-3.0.1
523
+ >>> ##### (2023-09-25)
524
+ >>>
525
+ >>> * Allow running CI on external PRs [Pagan Gazzard]
526
+ >>>
527
+ >>> #### sbvr-types-6.1.0
528
+ >>> ##### (2023-10-03)
529
+ >>>
530
+ >>> * Add checksum to WebResource [Otávio Jacobi]
531
+ >>>
532
+ >>> #### sbvr-types-6.0.0
533
+ >>> ##### (2023-08-09)
534
+ >>>
535
+ >>> * Change contents to snake_case [Otávio Jacobi]
536
+ >>>
537
+ >>> #### sbvr-types-5.2.0
538
+ >>> ##### (2023-08-08)
539
+ >>>
540
+ >>> * Expose WebResource as WebResourceType [Otávio Jacobi]
541
+ >>>
542
+ >>> #### sbvr-types-5.1.0
543
+ >>> ##### (2023-08-03)
544
+ >>>
545
+ >>> * Adds WebResource type [Otávio Jacobi]
546
+ >>>
547
+ >>> #### sbvr-types-5.0.0
548
+ >>> ##### (2023-05-16)
549
+ >>>
550
+ >>> * Switch from `export =` to `export default` [Pagan Gazzard]
551
+ >>>
552
+ >>> #### sbvr-types-4.0.2
553
+ >>> ##### (2023-05-03)
554
+ >>>
555
+ >>> * Improve typings [Pagan Gazzard]
556
+ >>>
557
+ >>> #### sbvr-types-4.0.1
558
+ >>> ##### (2023-05-02)
559
+ >>>
560
+ >>> * boolean: Avoid unnecessary array creation to reduce GCs [Thodoris Greasidis]
561
+ >>>
562
+ >>
563
+ >> </details>
564
+ >>
565
+ >>
566
+ >> ### odata-to-abstract-sql-6.1.0
567
+ >> #### (2023-08-16)
568
+ >>
569
+ >> * Support bind references as boolean types [Pagan Gazzard]
570
+ >>
571
+ >> ### odata-to-abstract-sql-6.0.1
572
+ >> #### (2023-04-27)
573
+ >>
574
+ >>
575
+ >> <details>
576
+ >> <summary> Update dependencies [Pagan Gazzard] </summary>
577
+ >>
578
+ >>> #### odata-parser-3.0.0
579
+ >>> ##### (2023-04-26)
580
+ >>>
581
+ >>> * Use optional chaining operator [Pagan Gazzard]
582
+ >>> * Set minimum supported nodejs version to 16.13.0 [Pagan Gazzard]
583
+ >>>
584
+ >>> #### odata-parser-2.5.0
585
+ >>> ##### (2023-04-26)
586
+ >>>
587
+ >>> * Update to peggy 3 and make us of the repetition operator [Pagan Gazzard]
588
+ >>>
589
+ >>> #### sbvr-types-4.0.0
590
+ >>> ##### (2023-04-26)
591
+ >>>
592
+ >>> * Add test cases for Objects in JSON validate [fisehara]
593
+ >>> * Drop `require-npm4-to-publish` devDependency [fisehara]
594
+ >>> * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
595
+ >>> * Switch `JSON` to use `JSON` db type instead of `TEXT` [Pagan Gazzard]
596
+ >>> * Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER` [Pagan Gazzard]
597
+ >>> * Assert that JSON input typeof is object [Josh Bowling]
598
+ >>>
599
+ >>
600
+ >> </details>
601
+ >>
602
+ >>
603
+ >> ### odata-to-abstract-sql-6.0.0
604
+ >> #### (2023-04-26)
605
+ >>
606
+ >> * Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021 [Pagan Gazzard]
607
+ >> * Switch `AggregateJSON` to use the newer `ReferencedField` format [Pagan Gazzard]
608
+ >>
609
+ >
610
+ > </details>
611
+ >
612
+ >
613
+ > ## lf-to-abstract-sql-5.0.2
614
+ > ### (2024-03-05)
615
+ >
616
+ >
617
+ > <details>
618
+ > <summary> Update `@balena/sbvr-types` devDependency [Harald Fischer] </summary>
619
+ >
620
+ >> ### sbvr-types-7.0.1
621
+ >> #### (2024-03-04)
622
+ >>
623
+ >> * Update dependency @balena/abstract-sql-compiler to v9 [Self-hosted Renovate Bot]
624
+ >>
625
+ >> ### sbvr-types-7.0.0
626
+ >> #### (2024-03-04)
627
+ >>
628
+ >> * Return `ISODateString` instead of `date` [fisehara]
629
+ >>
630
+ >> ### sbvr-types-6.1.1
631
+ >> #### (2024-01-02)
632
+ >>
633
+ >> * Update dependency @types/chai-datetime to ^0.0.39 [Self-hosted Renovate Bot]
634
+ >>
635
+ >> ### sbvr-types-6.1.0
636
+ >> #### (2023-10-03)
637
+ >>
638
+ >> * Add checksum to WebResource [Otávio Jacobi]
639
+ >>
640
+ >> ### sbvr-types-6.0.0
641
+ >> #### (2023-08-09)
642
+ >>
643
+ >> * Change contents to snake_case [Otávio Jacobi]
644
+ >>
645
+ >> ### sbvr-types-5.2.0
646
+ >> #### (2023-08-08)
647
+ >>
648
+ >> * Expose WebResource as WebResourceType [Otávio Jacobi]
649
+ >>
650
+ >> ### sbvr-types-5.1.0
651
+ >> #### (2023-08-03)
652
+ >>
653
+ >> * Adds WebResource type [Otávio Jacobi]
654
+ >>
655
+ >
656
+ > </details>
657
+ >
658
+ >
659
+ > ## odata-parser-3.0.7
660
+ > ### (2024-04-13)
661
+ >
662
+ > * Update dependency husky to v9 [Self-hosted Renovate Bot]
663
+ >
664
+ > ## odata-parser-3.0.6
665
+ > ### (2024-04-12)
666
+ >
667
+ > * Update dependency peggy to v4 [Self-hosted Renovate Bot]
668
+ >
669
+ > ## odata-parser-3.0.5
670
+ > ### (2024-04-12)
671
+ >
672
+ > * Update dependency lint-staged to v15 [Self-hosted Renovate Bot]
673
+ >
674
+ > ## odata-parser-3.0.4
675
+ > ### (2024-04-12)
676
+ >
677
+ > * Update dependency @balena/lint to v8 [Self-hosted Renovate Bot]
678
+ >
679
+ > ## pinejs-client-js-6.14.4
680
+ > ### (2024-05-08)
681
+ >
682
+ > * Deprecate the generic `PinejsClient` typing in favor of using `this` for `.clone` typing [Pagan Gazzard]
683
+ >
684
+ > ## pinejs-client-js-6.14.3
685
+ > ### (2024-04-17)
686
+ >
687
+ > * Update dev dependencies [Pagan Gazzard]
688
+ >
689
+ > ## pinejs-client-js-6.14.2
690
+ > ### (2024-03-04)
691
+ >
692
+ > * Improve typings [Pagan Gazzard]
693
+ >
694
+ > ## pinejs-client-js-6.14.1
695
+ > ### (2024-03-04)
696
+ >
697
+ > * Update dependencies [Pagan Gazzard]
698
+ >
699
+ > ## sbvr-parser-1.4.4
700
+ > ### (2024-03-05)
701
+ >
702
+ > * Updated `@balena/sbvr-types` [Harald Fischer]
703
+ >
704
+ > ## sbvr-types-7.1.0
705
+ > ### (2024-04-25)
706
+ >
707
+ > * Export typescript read/write types for each sbvr type [Pagan Gazzard]
708
+ >
709
+ > ## sbvr-types-7.0.10
710
+ > ### (2024-04-09)
711
+ >
712
+ > * Update Big Serial concept type to Big Integer [Josh Bowling]
713
+ >
714
+ > ## sbvr-types-7.0.9
715
+ > ### (2024-04-09)
716
+ >
717
+ > * Add Big Serial to Type.sbvr [Josh Bowling]
718
+ >
719
+ > ## sbvr-types-7.0.8
720
+ > ### (2024-04-09)
721
+ >
722
+ > * Update prepare script for husky v9 [Josh Bowling]
723
+ > * Update dependency husky to v9 [Self-hosted Renovate Bot]
724
+ >
725
+ > ## sbvr-types-7.0.7
726
+ > ### (2024-04-09)
727
+ >
728
+ > * Update dependency @balena/lint to v8 [Self-hosted Renovate Bot]
729
+ >
730
+ > ## sbvr-types-7.0.6
731
+ > ### (2024-03-21)
732
+ >
733
+ > * Improve JSON typings [Pagan Gazzard]
734
+ >
735
+ > ## sbvr-types-7.0.5
736
+ > ### (2024-03-13)
737
+ >
738
+ > * Remove unnecessary catch bindings [Pagan Gazzard]
739
+ >
740
+ > ## sbvr-types-7.0.4
741
+ > ### (2024-03-13)
742
+ >
743
+ > * Improve validate typings [Pagan Gazzard]
744
+ >
745
+ > ## sbvr-types-7.0.3
746
+ > ### (2024-03-12)
747
+ >
748
+ > * Improve fetchProcessing typings [Pagan Gazzard]
749
+ >
750
+ > ## sbvr-types-7.0.2
751
+ > ### (2024-03-12)
752
+ >
753
+ > * Tests: convert to typescript [Pagan Gazzard]
754
+ >
755
+
756
+ </details>
757
+
758
+ # v16.1.4
759
+ ## (2024-04-30)
760
+
761
+ * Tests: trap `INT` rather than `SIGINT` for broader shell support [Pagan Gazzard]
762
+
763
+ # v16.1.3
764
+ ## (2024-04-24)
765
+
766
+
767
+ <details>
768
+ <summary> Update @balena/odata-to-abstract-sql to 6.2.7 [Thodoris Greasidis] </summary>
769
+
770
+ > ## odata-to-abstract-sql-6.2.7
771
+ > ### (2024-04-23)
772
+ >
773
+ >
774
+ > <details>
775
+ > <summary> Properly error when using fields of a partial index as an alternate key [Thodoris Greasidis] </summary>
776
+ >
777
+ >> ### abstract-sql-compiler-9.1.4
778
+ >> #### (2024-04-09)
779
+ >>
780
+ >> * Cast Big Serial to integer [Josh Bowling]
781
+ >>
782
+ >> ### abstract-sql-compiler-9.1.3
783
+ >> #### (2024-04-09)
784
+ >>
785
+ >> * Update prepare script for husky v9 [Josh Bowling]
786
+ >> * Update dependency husky to v9 [Self-hosted Renovate Bot]
787
+ >>
788
+ >> ### abstract-sql-compiler-9.1.2
789
+ >> #### (2024-04-09)
790
+ >>
791
+ >> * Update dependency lint-staged to v15 [Self-hosted Renovate Bot]
792
+ >>
793
+ >> ### abstract-sql-compiler-9.1.1
794
+ >> #### (2024-03-26)
795
+ >>
796
+ >> * Update dependency @balena/lint to v8 [Thodoris Greasidis]
797
+ >>
798
+ >> ### abstract-sql-compiler-9.1.0
799
+ >> #### (2024-03-26)
800
+ >>
801
+ >> * Export the generateRuleHashAcronym helper [Thodoris Greasidis]
802
+ >> * Add support for unique indexes with NOT DISTINCT NULLS [Thodoris Greasidis]
803
+ >> * Add support for partial unique indexes [Thodoris Greasidis]
804
+ >>
805
+ >> ### abstract-sql-compiler-9.0.7
806
+ >> #### (2024-03-22)
807
+ >>
808
+ >>
809
+ >> <details>
810
+ >> <summary> Update dependency @balena/odata-parser to v3 [Self-hosted Renovate Bot] </summary>
811
+ >>
812
+ >>> #### odata-parser-3.0.3
813
+ >>> ##### (2024-01-04)
814
+ >>>
815
+ >>> * Optimize by moving constant values into global init [fisehara]
816
+ >>>
817
+ >>> #### odata-parser-3.0.2
818
+ >>> ##### (2024-01-04)
819
+ >>>
820
+ >>> * Update dependencies [fisehara]
821
+ >>>
822
+ >>> #### odata-parser-3.0.1
823
+ >>> ##### (2023-09-25)
824
+ >>>
825
+ >>> * Allow running CI on external PRs [Pagan Gazzard]
826
+ >>>
827
+ >>> #### odata-parser-3.0.0
828
+ >>> ##### (2023-04-26)
829
+ >>>
830
+ >>> * Use optional chaining operator [Pagan Gazzard]
831
+ >>> * Set minimum supported nodejs version to 16.13.0 [Pagan Gazzard]
832
+ >>>
833
+ >>
834
+ >> </details>
835
+ >>
836
+ >>
837
+ >> ### abstract-sql-compiler-9.0.6
838
+ >> #### (2024-03-21)
839
+ >>
840
+ >> * Update TypeScript to 5.4.3 [Thodoris Greasidis]
841
+ >>
842
+ >> ### abstract-sql-compiler-9.0.5
843
+ >> #### (2024-03-05)
844
+ >>
845
+ >> * Update `@balena/sbvr-types` [Harald Fischer]
846
+ >>
847
+ >
848
+ > </details>
849
+ >
850
+ >
851
+ > ## odata-to-abstract-sql-6.2.6
852
+ > ### (2024-04-13)
853
+ >
854
+ > * Update dependency husky to v9 [Self-hosted Renovate Bot]
855
+ >
856
+ > ## odata-to-abstract-sql-6.2.5
857
+ > ### (2024-04-10)
858
+ >
859
+ > * Update dependency @balena/lint to v8 [Self-hosted Renovate Bot]
860
+ >
861
+ > ## odata-to-abstract-sql-6.2.4
862
+ > ### (2024-03-05)
863
+ >
864
+ > * Update `@balena/sbvr-types` devDependencies [fisehara]
865
+ > * Fix linter issue [fisehara]
866
+ >
867
+
868
+ </details>
14
869
 
15
870
  # v16.1.2
16
871
  ## (2024-04-14)