@balena/pinejs 16.0.0-build--batch-f2ffc3d6bcb9f3294fd4fc9de3c21bfe167e100d-1 → 16.0.0-build-fisehara-update-sbvr-types-cfbbecbb0387e87e17e14be8991be73d1a4efdd0-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. package/.pinejs-cache.json +1 -1
  2. package/.versionbot/CHANGELOG.yml +2168 -11
  3. package/CHANGELOG.md +815 -2
  4. package/Gruntfile.ts +9 -6
  5. package/README.md +10 -0
  6. package/build/browser.ts +2 -2
  7. package/build/config.ts +1 -1
  8. package/build/module.ts +2 -2
  9. package/build/server.ts +2 -2
  10. package/docker-compose.npm-test.yml +21 -3
  11. package/out/bin/abstract-sql-compiler.js +5 -5
  12. package/out/bin/abstract-sql-compiler.js.map +1 -1
  13. package/out/bin/odata-compiler.js +10 -10
  14. package/out/bin/odata-compiler.js.map +1 -1
  15. package/out/bin/sbvr-compiler.js +34 -11
  16. package/out/bin/sbvr-compiler.js.map +1 -1
  17. package/out/bin/utils.js +25 -2
  18. package/out/bin/utils.js.map +1 -1
  19. package/out/config-loader/config-loader.d.ts +4 -2
  20. package/out/config-loader/config-loader.js +54 -13
  21. package/out/config-loader/config-loader.js.map +1 -1
  22. package/out/config-loader/env.d.ts +2 -1
  23. package/out/config-loader/env.js +5 -2
  24. package/out/config-loader/env.js.map +1 -1
  25. package/out/data-server/sbvr-server.d.ts +1 -1
  26. package/out/data-server/sbvr-server.js +3 -1
  27. package/out/data-server/sbvr-server.js.map +1 -1
  28. package/out/database-layer/db.js +40 -14
  29. package/out/database-layer/db.js.map +1 -1
  30. package/out/express-emulator/express.js +5 -3
  31. package/out/express-emulator/express.js.map +1 -1
  32. package/out/http-transactions/transactions.d.ts +1 -1
  33. package/out/http-transactions/transactions.js +10 -5
  34. package/out/http-transactions/transactions.js.map +1 -1
  35. package/out/migrator/async.js +32 -5
  36. package/out/migrator/async.js.map +1 -1
  37. package/out/migrator/sync.d.ts +2 -1
  38. package/out/migrator/sync.js +29 -3
  39. package/out/migrator/sync.js.map +1 -1
  40. package/out/migrator/utils.d.ts +6 -3
  41. package/out/migrator/utils.js +30 -4
  42. package/out/migrator/utils.js.map +1 -1
  43. package/out/odata-metadata/odata-metadata-generator.js +4 -1
  44. package/out/odata-metadata/odata-metadata-generator.js.map +1 -1
  45. package/out/passport-pinejs/mount-login-router.d.ts +3 -0
  46. package/out/passport-pinejs/mount-login-router.js +65 -0
  47. package/out/passport-pinejs/mount-login-router.js.map +1 -0
  48. package/out/passport-pinejs/passport-pinejs.d.ts +2 -1
  49. package/out/passport-pinejs/passport-pinejs.js +28 -2
  50. package/out/passport-pinejs/passport-pinejs.js.map +1 -1
  51. package/out/pinejs-session-store/pinejs-session-store.js +30 -7
  52. package/out/pinejs-session-store/pinejs-session-store.js.map +1 -1
  53. package/out/sbvr-api/abstract-sql.d.ts +2 -2
  54. package/out/sbvr-api/abstract-sql.js +35 -9
  55. package/out/sbvr-api/abstract-sql.js.map +1 -1
  56. package/out/sbvr-api/cached-compile.js +9 -6
  57. package/out/sbvr-api/cached-compile.js.map +1 -1
  58. package/out/sbvr-api/common-types.d.ts +1 -1
  59. package/out/sbvr-api/control-flow.js +5 -2
  60. package/out/sbvr-api/control-flow.js.map +1 -1
  61. package/out/sbvr-api/express-extension.d.ts +10 -7
  62. package/out/sbvr-api/express-extension.js +1 -0
  63. package/out/sbvr-api/hooks.d.ts +5 -1
  64. package/out/sbvr-api/hooks.js +12 -10
  65. package/out/sbvr-api/hooks.js.map +1 -1
  66. package/out/sbvr-api/odata-response.d.ts +5 -2
  67. package/out/sbvr-api/odata-response.js +36 -6
  68. package/out/sbvr-api/odata-response.js.map +1 -1
  69. package/out/sbvr-api/permissions.d.ts +6 -7
  70. package/out/sbvr-api/permissions.js +69 -38
  71. package/out/sbvr-api/permissions.js.map +1 -1
  72. package/out/sbvr-api/sbvr-utils.d.ts +20 -9
  73. package/out/sbvr-api/sbvr-utils.js +134 -136
  74. package/out/sbvr-api/sbvr-utils.js.map +1 -1
  75. package/out/sbvr-api/translations.d.ts +2 -2
  76. package/out/sbvr-api/translations.js +17 -10
  77. package/out/sbvr-api/translations.js.map +1 -1
  78. package/out/sbvr-api/uri-parser.d.ts +7 -10
  79. package/out/sbvr-api/uri-parser.js +46 -19
  80. package/out/sbvr-api/uri-parser.js.map +1 -1
  81. package/out/server-glue/global-ext.d.ts +2 -1
  82. package/out/server-glue/module.d.ts +3 -1
  83. package/out/server-glue/module.js +40 -13
  84. package/out/server-glue/module.js.map +1 -1
  85. package/out/server-glue/sbvr-loader.js.map +1 -1
  86. package/out/server-glue/server.js +31 -39
  87. package/out/server-glue/server.js.map +1 -1
  88. package/out/webresource-handler/handlers/NoopHandler.d.ts +7 -0
  89. package/out/webresource-handler/handlers/NoopHandler.js +20 -0
  90. package/out/webresource-handler/handlers/NoopHandler.js.map +1 -0
  91. package/out/webresource-handler/handlers/S3Handler.d.ts +28 -0
  92. package/out/webresource-handler/handlers/S3Handler.js +97 -0
  93. package/out/webresource-handler/handlers/S3Handler.js.map +1 -0
  94. package/out/webresource-handler/handlers/index.d.ts +2 -0
  95. package/out/webresource-handler/handlers/index.js +19 -0
  96. package/out/webresource-handler/handlers/index.js.map +1 -0
  97. package/out/webresource-handler/index.d.ts +34 -0
  98. package/out/webresource-handler/index.js +307 -0
  99. package/out/webresource-handler/index.js.map +1 -0
  100. package/package.json +68 -62
  101. package/src/bin/abstract-sql-compiler.ts +7 -9
  102. package/src/bin/odata-compiler.ts +12 -15
  103. package/src/bin/sbvr-compiler.ts +14 -18
  104. package/src/bin/utils.ts +1 -1
  105. package/src/config-loader/config-loader.ts +44 -10
  106. package/src/config-loader/env.ts +1 -1
  107. package/src/data-server/sbvr-server.js +3 -1
  108. package/src/database-layer/db.ts +23 -19
  109. package/src/express-emulator/express.js +5 -3
  110. package/src/extended-sbvr-parser/extended-sbvr-parser.ts +1 -1
  111. package/src/http-transactions/transactions.js +10 -5
  112. package/src/migrator/async.ts +7 -6
  113. package/src/migrator/sync.ts +10 -7
  114. package/src/migrator/utils.ts +11 -5
  115. package/src/odata-metadata/odata-metadata-generator.ts +2 -2
  116. package/src/passport-pinejs/mount-login-router.ts +46 -0
  117. package/src/passport-pinejs/passport-pinejs.ts +7 -3
  118. package/src/pinejs-session-store/pinejs-session-store.ts +6 -6
  119. package/src/sbvr-api/abstract-sql.ts +5 -5
  120. package/src/sbvr-api/cached-compile.ts +1 -2
  121. package/src/sbvr-api/common-types.ts +1 -1
  122. package/src/sbvr-api/control-flow.ts +1 -1
  123. package/src/sbvr-api/express-extension.ts +12 -8
  124. package/src/sbvr-api/hooks.ts +11 -11
  125. package/src/sbvr-api/odata-response.ts +56 -9
  126. package/src/sbvr-api/permissions.ts +44 -35
  127. package/src/sbvr-api/sbvr-utils.ts +118 -172
  128. package/src/sbvr-api/translations.ts +9 -6
  129. package/src/sbvr-api/uri-parser.ts +22 -28
  130. package/src/server-glue/global-ext.d.ts +2 -1
  131. package/src/server-glue/module.ts +8 -2
  132. package/src/server-glue/sbvr-loader.ts +1 -1
  133. package/src/server-glue/server.ts +11 -49
  134. package/src/webresource-handler/handlers/NoopHandler.ts +21 -0
  135. package/src/webresource-handler/handlers/S3Handler.ts +143 -0
  136. package/src/webresource-handler/handlers/index.ts +2 -0
  137. package/src/webresource-handler/index.ts +450 -0
  138. package/tsconfig.dev.json +2 -1
  139. package/tsconfig.json +1 -1
  140. package/typings/lf-to-abstract-sql.d.ts +1 -1
  141. package/typings/memoizee.d.ts +3 -4
@@ -1,23 +1,2180 @@
1
1
  - commits:
2
- - subject: Add `$batch` endpoint for batch requests
3
- hash: f2ffc3d6bcb9f3294fd4fc9de3c21bfe167e100d
4
- body: ""
2
+ - subject: Update @balena/sbvr-types major
3
+ hash: cfbbecbb0387e87e17e14be8991be73d1a4efdd0
4
+ body: >
5
+ Update `@balena/sbvr-types` from 6.1.1 to 7.0.1
6
+
7
+
8
+ pinejs provides an internal and external interface. The external interface returns ISODateString encoded data.
9
+
10
+ The internal interface should be consistent to the external interface, so that the pinejs api internally used also returns an ISODateString encoded data. This is solved in `sbvr-types` and is a major in the submodule and made this also a major change for pinejs itself.
11
+
12
+
13
+ https://github.com/balena-io-modules/sbvr-types/pull/91
5
14
  footer:
6
15
  Change-type: major
7
16
  change-type: major
8
- author: myarmolinsky
17
+ Signed-off-by: Harald Fischer <harald@balena.io>
18
+ signed-off-by: Harald Fischer <harald@balena.io>
19
+ author: Harald Fischer
20
+ nested: []
21
+ version: 16.0.0
22
+ title: ""
23
+ date: 2024-03-06T08:27:29.829Z
24
+ - commits:
25
+ - subject: "Tests: Remove restart=always policy for sidecar containers"
26
+ hash: 70d46bc6ccf970a2750a5a92cb2331f168790507
27
+ body: |
28
+ These will automatically be started by subsequent test commands as
29
+ necessary and this will avoid them being unnecessarily started even
30
+ after a reboot or similar when they are not necessary
31
+ footer:
32
+ Change-type: patch
33
+ change-type: patch
34
+ author: Pagan Gazzard
9
35
  nested: []
10
- - subject: Use `status` in responses instead of `statusCode`
11
- hash: 26df847595b47d555100b98c07f41a3d399e3111
36
+ version: 15.6.3
37
+ title: ""
38
+ date: 2024-02-29T16:09:51.394Z
39
+ - commits:
40
+ - subject: Fix linting with proper import type
41
+ hash: 15e2a3fe62dba797c62e38d135695be17e083360
12
42
  body: ""
13
43
  footer:
14
- Change-type: major
15
- change-type: major
16
- author: myarmolinsky
44
+ Change-type: patch
45
+ change-type: patch
46
+ author: Otávio Jacobi
17
47
  nested: []
18
- version: 16.0.0
48
+ version: 15.6.2
49
+ title: ""
50
+ date: 2024-02-09T12:35:39.112Z
51
+ - commits:
52
+ - subject: Improve type imports by using "import type" where possible
53
+ hash: 1405999a4ffd66d1e9541409d8158c0d9e065553
54
+ body: ""
55
+ footer:
56
+ Change-type: patch
57
+ change-type: patch
58
+ author: Josh Bowling
59
+ nested: []
60
+ version: 15.6.1
61
+ title: ""
62
+ date: 2024-02-04T02:31:08.153Z
63
+ - commits:
64
+ - subject: Add support for ESM migrations
65
+ hash: e8a2bf506f62ffa96ac6d1d12bc7b48e41c6b040
66
+ body: ""
67
+ footer:
68
+ Change-type: minor
69
+ change-type: minor
70
+ author: Pagan Gazzard
71
+ nested: []
72
+ version: 15.6.0
73
+ title: ""
74
+ date: 2024-01-24T13:33:42.588Z
75
+ - commits:
76
+ - subject: Use `Node16` module resolution for typescript
77
+ hash: 32a73b7a08fac700d10b2606c04383ab05608c9b
78
+ body: |
79
+ This continues to expose only commonjs but makes it decided by more
80
+ standard nodejs means
81
+ footer:
82
+ Change-type: minor
83
+ change-type: minor
84
+ author: Pagan Gazzard
85
+ nested: []
86
+ version: 15.5.0
87
+ title: ""
88
+ date: 2024-01-23T16:04:00.628Z
89
+ - commits:
90
+ - subject: Check that some fields are being updated for PATCH requests
91
+ hash: 8a8fe6582526e164810d46d8f12744a8113f8d74
92
+ body: ""
93
+ footer:
94
+ Change-type: patch
95
+ change-type: patch
96
+ author: Pagan Gazzard
97
+ nested: []
98
+ version: 15.4.5
99
+ title: ""
100
+ date: 2024-01-19T11:13:25.472Z
101
+ - commits:
102
+ - subject: Change NotFound for Unauthorized when requesting a resource that does
103
+ not exists
104
+ hash: 4fda84933d3ade581bed965abf2793d24d04fa9f
105
+ body: ""
106
+ footer:
107
+ Change-type: patch
108
+ change-type: patch
109
+ author: Otávio Jacobi
110
+ nested: []
111
+ version: 15.4.4
112
+ title: ""
113
+ date: 2024-01-17T16:31:19.586Z
114
+ - commits:
115
+ - subject: Update dependencies
116
+ hash: fed61f75aea3820edab9d4804f133c048bbfaf19
117
+ body: |
118
+ Update @balena/odata-to-abstract-sql from 6.2.0 to 6.2.3
119
+ footer:
120
+ Change-type: patch
121
+ change-type: patch
122
+ author: Pagan Gazzard
123
+ nested:
124
+ - commits:
125
+ - subject: Require at least one field to be updated for PATCH requests
126
+ hash: ad819432657598898a4811d9628c9ca0a0e428c6
127
+ body: ""
128
+ footer:
129
+ Change-type: patch
130
+ change-type: patch
131
+ author: Pagan Gazzard
132
+ nested: []
133
+ version: odata-to-abstract-sql-6.2.3
134
+ title: ""
135
+ date: 2024-01-15T16:41:10.852Z
136
+ - commits:
137
+ - subject: Simplify support for MERGE as an alias for PATCH
138
+ hash: 1da1bd4a49aab7d1bc5053c86109cb976f79c91d
139
+ body: ""
140
+ footer:
141
+ Change-type: patch
142
+ change-type: patch
143
+ author: Pagan Gazzard
144
+ nested: []
145
+ version: odata-to-abstract-sql-6.2.2
146
+ title: ""
147
+ date: 2024-01-15T16:21:54.195Z
148
+ - commits:
149
+ - subject: Update dependencies
150
+ hash: 6f619f6a24ec7a4086963b035fe3c015c729678c
151
+ body: |
152
+ Update @balena/abstract-sql-compiler from 9.0.3 to 9.0.4
153
+ Update @balena/lint from 7.2.0 to 7.2.4
154
+ Update @balena/odata-parser from 3.0.1 to 3.0.3
155
+ Update @balena/sbvr-types from 6.1.0 to 6.1.1
156
+ footer:
157
+ Change-type: patch
158
+ change-type: patch
159
+ author: Pagan Gazzard
160
+ nested:
161
+ - commits:
162
+ - subject: Update dependency @types/node to v20
163
+ hash: 82a6edce01af738b184d223351bdfe79c63e7cce
164
+ body: |
165
+ Update @types/node from 18.19.4 to 20.10.6
166
+ footer:
167
+ Change-type: patch
168
+ change-type: patch
169
+ author: Self-hosted Renovate Bot
170
+ nested: []
171
+ version: abstract-sql-compiler-9.0.4
172
+ title: ""
173
+ date: 2024-01-02T18:48:39.478Z
174
+ - commits:
175
+ - subject: Optimize by moving constant values into global init
176
+ hash: 94899b779fb879540f3675c3c9d7ca3f9d8af4bf
177
+ body: ""
178
+ footer:
179
+ Change-type: patch
180
+ change-type: patch
181
+ Signed-off-by: fisehara <harald@balena.io>
182
+ signed-off-by: fisehara <harald@balena.io>
183
+ author: fisehara
184
+ version: odata-parser-3.0.3
185
+ title: ""
186
+ date: 2024-01-04T15:30:09.102Z
187
+ - commits:
188
+ - subject: Update dependencies
189
+ hash: 0a7bd8ff2e506fa3988b6e1851e0098df5da3f86
190
+ body: >
191
+ - Update @balena/lint from 6.2.2 to 7.2.4
192
+
193
+ - Delete `require-npm4-to-publish` as handled by `engines` parameter in `package.json`
194
+ footer:
195
+ Change-type: patch
196
+ change-type: patch
197
+ Signed-off-by: fisehara <harald@balena.io>
198
+ signed-off-by: fisehara <harald@balena.io>
199
+ author: fisehara
200
+ version: odata-parser-3.0.2
201
+ title: ""
202
+ date: 2024-01-04T10:16:56.896Z
203
+ - commits:
204
+ - subject: Update dependency @types/chai-datetime to ^0.0.39
205
+ hash: 428c5a2c94bd753cc2ffc6d1e012c3a743e1b4d2
206
+ body: |
207
+ Update @types/chai-datetime from 0.0.37 to 0.0.39
208
+ footer:
209
+ Change-type: patch
210
+ change-type: patch
211
+ author: Self-hosted Renovate Bot
212
+ version: sbvr-types-6.1.1
213
+ title: ""
214
+ date: 2024-01-02T18:54:07.180Z
215
+ version: odata-to-abstract-sql-6.2.1
216
+ title: ""
217
+ date: 2024-01-15T15:03:52.684Z
218
+ version: 15.4.3
219
+ title: ""
220
+ date: 2024-01-16T12:22:22.998Z
221
+ - commits:
222
+ - subject: Fix nested translations
223
+ hash: a66ad6a82ce243fff63e06b2f7729c73cebc6bb2
224
+ body: |
225
+ They were failing because they were expecting translations for the
226
+ versioned copies of resources, eg `resource$v2`, so this just avoids
227
+ those copies and only requires the "true" resources from the model to
228
+ be translated
229
+ footer:
230
+ Change-type: patch
231
+ change-type: patch
232
+ author: Pagan Gazzard
233
+ nested: []
234
+ version: 15.4.2
235
+ title: ""
236
+ date: 2024-01-11T14:34:06.824Z
237
+ - commits:
238
+ - subject: Update dependencies
239
+ hash: dc23ee1c9bda7b122fe18e3ee6b9338e05f534d1
240
+ body: |
241
+ Update @balena/abstract-sql-compiler from 9.0.3 to 9.0.4
242
+ Update @balena/env-parsing from 1.1.8 to 1.1.10
243
+ Update @balena/odata-parser from 3.0.1 to 3.0.3
244
+ Update @balena/sbvr-types from 6.1.0 to 6.1.1
245
+ footer:
246
+ Change-type: patch
247
+ change-type: patch
248
+ author: Pagan Gazzard
249
+ nested:
250
+ - commits:
251
+ - subject: Update dependency @types/node to v20
252
+ hash: 82a6edce01af738b184d223351bdfe79c63e7cce
253
+ body: |
254
+ Update @types/node from 18.19.4 to 20.10.6
255
+ footer:
256
+ Change-type: patch
257
+ change-type: patch
258
+ author: Self-hosted Renovate Bot
259
+ nested: []
260
+ version: abstract-sql-compiler-9.0.4
261
+ title: ""
262
+ date: 2024-01-02T18:48:39.478Z
263
+ - commits:
264
+ - subject: Optimize by moving constant values into global init
265
+ hash: 94899b779fb879540f3675c3c9d7ca3f9d8af4bf
266
+ body: ""
267
+ footer:
268
+ Change-type: patch
269
+ change-type: patch
270
+ Signed-off-by: fisehara <harald@balena.io>
271
+ signed-off-by: fisehara <harald@balena.io>
272
+ author: fisehara
273
+ version: odata-parser-3.0.3
274
+ title: ""
275
+ date: 2024-01-04T15:30:09.102Z
276
+ - commits:
277
+ - subject: Update dependencies
278
+ hash: 0a7bd8ff2e506fa3988b6e1851e0098df5da3f86
279
+ body: >
280
+ - Update @balena/lint from 6.2.2 to 7.2.4
281
+
282
+ - Delete `require-npm4-to-publish` as handled by `engines` parameter in `package.json`
283
+ footer:
284
+ Change-type: patch
285
+ change-type: patch
286
+ Signed-off-by: fisehara <harald@balena.io>
287
+ signed-off-by: fisehara <harald@balena.io>
288
+ author: fisehara
289
+ version: odata-parser-3.0.2
290
+ title: ""
291
+ date: 2024-01-04T10:16:56.896Z
292
+ - commits:
293
+ - subject: Update dependency @types/chai-datetime to ^0.0.39
294
+ hash: 428c5a2c94bd753cc2ffc6d1e012c3a743e1b4d2
295
+ body: |
296
+ Update @types/chai-datetime from 0.0.37 to 0.0.39
297
+ footer:
298
+ Change-type: patch
299
+ change-type: patch
300
+ author: Self-hosted Renovate Bot
301
+ version: sbvr-types-6.1.1
302
+ title: ""
303
+ date: 2024-01-02T18:54:07.180Z
304
+ - subject: Correctly await web resource signing before responding
305
+ hash: a244b787fe296b591a689ae1de780971e6fe6def
306
+ body: ""
307
+ footer:
308
+ Change-type: patch
309
+ change-type: patch
310
+ author: Pagan Gazzard
311
+ nested: []
312
+ version: 15.4.1
313
+ title: ""
314
+ date: 2024-01-11T11:26:01.232Z
315
+ - commits:
316
+ - subject: Fix 404 error on canAccess action
317
+ hash: 05f0cbcc576972e815cfe3b3f63aeeecfca62422
318
+ body: ""
319
+ footer:
320
+ Change-type: patch
321
+ change-type: patch
322
+ author: Otávio Jacobi
323
+ nested: []
324
+ - subject: Add permissions tests & expose mountLoginRouter
325
+ hash: 6aaae2078457e2b178c6ced42f6fdc1f2088892e
326
+ body: ""
327
+ footer:
328
+ Change-type: minor
329
+ change-type: minor
330
+ author: Otávio Jacobi
331
+ nested: []
332
+ version: 15.4.0
333
+ title: ""
334
+ date: 2024-01-10T15:40:15.795Z
335
+ - commits:
336
+ - subject: Avoid error when trying to upload to a non-existent resource
337
+ hash: abb521be4b62918739e3732526b3b25bd763519f
338
+ body: ""
339
+ footer:
340
+ Change-type: patch
341
+ change-type: patch
342
+ author: Pagan Gazzard
343
+ nested: []
344
+ - subject: Ensure we consume the web resource upload stream even if errors occur
345
+ hash: 07571d0b87332958353887c88374ef5310985dc7
346
+ body: ""
347
+ footer:
348
+ Change-type: patch
349
+ change-type: patch
350
+ author: Pagan Gazzard
351
+ nested: []
352
+ version: 15.3.33
353
+ title: ""
354
+ date: 2023-12-19T10:46:49.728Z
355
+ - commits:
356
+ - subject: Remove unnecessary `async` on `parseOData`
357
+ hash: e277a4899e95f3e030558f7fe545977937d5cabb
358
+ body: ""
359
+ footer:
360
+ Change-type: patch
361
+ change-type: patch
362
+ author: Pagan Gazzard
363
+ nested: []
364
+ version: 15.3.32
365
+ title: ""
366
+ date: 2023-12-18T19:51:26.735Z
367
+ - commits:
368
+ - subject: Bail early with 404 when requesting a resource that doesn't exist
369
+ hash: adad5bd0647996fd9db7a0cb83bd6d0e96f6ab7d
370
+ body: ""
371
+ footer:
372
+ Change-type: patch
373
+ change-type: patch
374
+ author: Pagan Gazzard
375
+ nested: []
376
+ - subject: Don't try to generate permissions for non-existent tables
377
+ hash: 6c7832d712ca06ce872712e431fe6db9efe97798
378
+ body: ""
379
+ footer:
380
+ Change-type: patch
381
+ change-type: patch
382
+ author: Pagan Gazzard
383
+ nested: []
384
+ version: 15.3.31
385
+ title: ""
386
+ date: 2023-12-18T19:40:18.617Z
387
+ - commits:
388
+ - subject: Update dependencies
389
+ hash: 6acbb8140611019ed0ad413d137573c0c0eec513
390
+ body: |
391
+ Update @balena/abstract-sql-to-typescript from 2.1.1 to 2.1.3
392
+ Update @balena/lf-to-abstract-sql from 5.0.0 to 5.0.1
393
+ Update @balena/odata-parser from 3.0.0 to 3.0.1
394
+ Update @balena/sbvr-types from 6.0.0 to 6.1.0
395
+ Update pinejs-client-core from 6.13.0 to 6.14.0
396
+ footer:
397
+ Change-type: patch
398
+ change-type: patch
399
+ author: Pagan Gazzard
400
+ nested:
401
+ - commits:
402
+ - subject: Update dependency @types/node to v20
403
+ hash: 2da3ac75a216559964c0dcf385e7e5c3431d72e3
404
+ body: |
405
+ Update @types/node from 18.18.6 to 20.8.7
406
+ footer:
407
+ Change-type: patch
408
+ change-type: patch
409
+ author: Self-hosted Renovate Bot
410
+ nested: []
411
+ version: abstract-sql-to-typescript-2.1.3
412
+ title: ""
413
+ date: 2023-10-24T01:08:19.954Z
414
+ - commits:
415
+ - subject: Update dependency @types/node to v18
416
+ hash: 15d2c455710b6b68594c3ed6def0ccc1c26ecf51
417
+ body: |
418
+ Update @types/node from 16.18.42 to 18.17.7
419
+ footer:
420
+ Change-type: patch
421
+ change-type: patch
422
+ author: Self-hosted Renovate Bot
423
+ nested: []
424
+ version: abstract-sql-to-typescript-2.1.2
425
+ title: ""
426
+ date: 2023-08-23T19:44:34.641Z
427
+ - commits:
428
+ - subject: Update @balena/sbvr-types to 5.0.0
429
+ hash: 9acf28eac9790f47704d9103b5788fc4e1802e14
430
+ body: |
431
+ Update @balena/sbvr-types from 3.4.18 to 5.0.0
432
+ footer:
433
+ Change-type: patch
434
+ change-type: patch
435
+ author: Pagan Gazzard
436
+ nested:
437
+ - commits:
438
+ - subject: Switch from `export =` to `export default`
439
+ hash: 6cd01340e0fee46833942691fce5a9f6a42ac104
440
+ body: ""
441
+ footer:
442
+ Change-type: major
443
+ change-type: major
444
+ author: Pagan Gazzard
445
+ version: sbvr-types-5.0.0
446
+ title: ""
447
+ date: 2023-05-16T15:56:09.861Z
448
+ - commits:
449
+ - subject: Improve typings
450
+ hash: a5fd4a319cd0336afc5a765af9e1a1eec851f2c3
451
+ body: ""
452
+ footer:
453
+ Change-type: patch
454
+ change-type: patch
455
+ author: Pagan Gazzard
456
+ version: sbvr-types-4.0.2
457
+ title: ""
458
+ date: 2023-05-03T11:40:24.422Z
459
+ - commits:
460
+ - subject: "boolean: Avoid unnecessary array creation to reduce GCs"
461
+ hash: 5ba948cd5f42844974d43dc19f1c371e56376fc8
462
+ body: ""
463
+ footer:
464
+ Change-type: patch
465
+ change-type: patch
466
+ author: Thodoris Greasidis
467
+ version: sbvr-types-4.0.1
468
+ title: ""
469
+ date: 2023-05-02T13:39:37.722Z
470
+ - commits:
471
+ - subject: Add test cases for Objects in JSON validate
472
+ hash: be8fc31c3754186dd4c43ca8d4c056b0def7ffbd
473
+ body: >
474
+ As balena-lint rejects `new Boolean()`, `new Number()`
475
+ and `new String()` constructor usage, test cases double
476
+ check that they are not instantiated as object but
477
+ primitive type.
478
+ footer:
479
+ Change-type: patch
480
+ change-type: patch
481
+ Signed-off-by: fisehara <harald@balena.io>
482
+ signed-off-by: fisehara <harald@balena.io>
483
+ author: fisehara
484
+ - subject: Drop `require-npm4-to-publish` devDependency
485
+ hash: 46a369117c9d1222089498a8794c32d14edef85b
486
+ body: >
487
+ As engine and npm is now required as part of
488
+ package.json we can drop this dependency
489
+ footer:
490
+ Change-type: patch
491
+ change-type: patch
492
+ Signed-off-by: fisehara <harald@balena.io>
493
+ signed-off-by: fisehara <harald@balena.io>
494
+ author: fisehara
495
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
496
+ hash: 54920d701a7aa4890c27801fc5cc6b9d74ece21c
497
+ body: ""
498
+ footer:
499
+ Change-type: major
500
+ change-type: major
501
+ author: Pagan Gazzard
502
+ - subject: Switch `JSON` to use `JSON` db type instead of `TEXT`
503
+ hash: 0d3561364ad018f59466c0dae9b3adb4390d9496
504
+ body: ""
505
+ footer:
506
+ Change-type: major
507
+ change-type: major
508
+ author: Pagan Gazzard
509
+ - subject: Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER`
510
+ hash: 5af2bd476a9032ab5d60c163a3940e0dd8e81cc6
511
+ body: ""
512
+ footer:
513
+ Change-type: major
514
+ change-type: major
515
+ author: Pagan Gazzard
516
+ - subject: Assert that JSON input typeof is object
517
+ hash: 1819ee97811e20da93c6e0f227db6a62ada8c00e
518
+ body: >
519
+ Ensure that the input passed in for JSON types is either
520
+ an object or
521
+
522
+ an array (typeof returns 'object' for arrays as well). This change is
523
+
524
+ mainly to prevent primitives from being stored as JSON.
525
+ footer:
526
+ Change-type: major
527
+ change-type: major
528
+ Signed-off-by: Josh Bowling <josh@monarci.com>
529
+ signed-off-by: Josh Bowling <josh@monarci.com>
530
+ author: Josh Bowling
531
+ version: sbvr-types-4.0.0
532
+ title: ""
533
+ date: 2023-04-26T15:00:16.169Z
534
+ - commits:
535
+ - subject: Add Big Serial type
536
+ hash: 49460ad51fcbc60f81e61329c573a1af5b207a46
537
+ body: ""
538
+ footer:
539
+ Change-type: minor
540
+ change-type: minor
541
+ author: Josh Bowling
542
+ version: sbvr-types-3.5.0
543
+ title: ""
544
+ date: 2023-03-21T11:16:27.398Z
545
+ - commits:
546
+ - subject: "Flowzone: Allow external contributions"
547
+ hash: 9f7bb028bbac327e6fe0711491d7c0f2c6464f98
548
+ body: ""
549
+ footer:
550
+ Change-type: patch
551
+ change-type: patch
552
+ Signed-off-by: Josh Bowling <josh@monarci.com>
553
+ signed-off-by: Josh Bowling <josh@monarci.com>
554
+ author: Josh Bowling
555
+ version: sbvr-types-3.4.19
556
+ title: ""
557
+ date: 2022-12-08T01:08:35.143Z
558
+ version: lf-to-abstract-sql-5.0.1
559
+ title: ""
560
+ date: 2023-05-16T16:11:31.737Z
561
+ - commits:
562
+ - subject: Allow running CI on external PRs
563
+ hash: 875af25a9e8ba9ade051f76f4500f5146db675a7
564
+ body: ""
565
+ footer:
566
+ Change-type: patch
567
+ change-type: patch
568
+ author: Pagan Gazzard
569
+ version: odata-parser-3.0.1
570
+ title: ""
571
+ date: 2023-09-25T10:50:13.648Z
572
+ - commits:
573
+ - subject: Respect the Retry-After header when clients define the
574
+ getRetryAfterHeader option
575
+ hash: 04f146bbe2127f4bc140ce7c7e9d9d78f62e00dd
576
+ body: ""
577
+ footer:
578
+ Change-type: minor
579
+ change-type: minor
580
+ author: Thodoris Greasidis
581
+ nested: []
582
+ version: pinejs-client-js-6.14.0
583
+ title: ""
584
+ date: 2023-12-05T13:05:12.092Z
585
+ - commits:
586
+ - subject: Add checksum to WebResource
587
+ hash: be6a1e9bacad51f99d685f491b3bf81545536adb
588
+ body: ""
589
+ footer:
590
+ Change-type: minor
591
+ change-type: minor
592
+ author: Otávio Jacobi
593
+ version: sbvr-types-6.1.0
594
+ title: ""
595
+ date: 2023-10-03T22:49:47.984Z
596
+ version: 15.3.30
597
+ title: ""
598
+ date: 2023-12-18T19:21:40.459Z
599
+ - commits:
600
+ - subject: Remove unnecessary async on busboy file handler
601
+ hash: 26823c1b8aca2c8352a105fe8083909afa6aab48
602
+ body: ""
603
+ footer:
604
+ Change-type: patch
605
+ change-type: patch
606
+ author: Otávio Jacobi
607
+ nested: []
608
+ version: 15.3.29
609
+ title: ""
610
+ date: 2023-12-01T11:13:28.236Z
611
+ - commits:
612
+ - subject: Update TypeScript to 5.3.2
613
+ hash: 4a90e0e5e64908b042f91e71fe5084130f786d4c
614
+ body: ""
615
+ footer:
616
+ Change-type: patch
617
+ change-type: patch
618
+ author: Thodoris Greasidis
619
+ nested: []
620
+ version: 15.3.28
621
+ title: ""
622
+ date: 2023-11-30T16:07:38.567Z
623
+ - commits:
624
+ - subject: Fix unstable large webresource test
625
+ hash: 86867a49ec26c4a2cdad1a3d2d789aa530c369ee
626
+ body: ""
627
+ footer:
628
+ Change-type: patch
629
+ change-type: patch
630
+ Co-authored-by: Thodoris Greasidis <thgreasi@gmail.com>
631
+ co-authored-by: Thodoris Greasidis <thgreasi@gmail.com>
632
+ author: Otávio Jacobi
633
+ nested: []
634
+ version: 15.3.27
635
+ title: ""
636
+ date: 2023-11-30T15:22:05.981Z
637
+ - commits:
638
+ - subject: Update dependency passport to ^0.7.0
639
+ hash: d66132ed0e0e7f8749749a6aacb7bdc498bb59d5
640
+ body: |
641
+ Update passport from 0.6.0 to 0.7.0
642
+ footer:
643
+ Change-type: patch
644
+ change-type: patch
645
+ author: Self-hosted Renovate Bot
646
+ nested: []
647
+ version: 15.3.26
648
+ title: ""
649
+ date: 2023-11-28T14:18:46.660Z
650
+ - commits:
651
+ - subject: Update @balena/odata-to-abstract-sql
652
+ hash: 65bce26bd451613f116a44c5fb8485a0a17e1d0a
653
+ body: |
654
+ Update @balena/odata-to-abstract-sql from 6.0.1 to 6.2.0
655
+ footer:
656
+ Change-type: patch
657
+ change-type: patch
658
+ Signed-off-by: fisehara <harald@balena.io>
659
+ signed-off-by: fisehara <harald@balena.io>
660
+ author: fisehara
661
+ nested:
662
+ - commits:
663
+ - subject: Optimize Duplications of `ComputedField` queries
664
+ hash: 87c73d455a8495f268aa5bd0e291f3f3e8bf5777
665
+ body: >
666
+ For each modelName the a `ComputedField` is only compiled into
667
+ abstract-sql-query once. Afterwards it's used as ReferencedField
668
+ footer:
669
+ Change-type: minor
670
+ change-type: minor
671
+ Signed-off-by: fisehara <harald@balena.io>
672
+ signed-off-by: fisehara <harald@balena.io>
673
+ author: fisehara
674
+ nested: []
675
+ version: odata-to-abstract-sql-6.2.0
676
+ title: ""
677
+ date: 2023-11-24T17:37:33.674Z
678
+ - commits:
679
+ - subject: Update dependency @types/chai-things to v0.0.38
680
+ hash: eefceedfe462c2b5b8b6bbf2590f1c8b4afc1983
681
+ body: |
682
+ Update @types/chai-things from 0.0.37 to 0.0.38
683
+ footer:
684
+ Change-type: patch
685
+ change-type: patch
686
+ author: Self-hosted Renovate Bot
687
+ nested: []
688
+ version: odata-to-abstract-sql-6.1.3
689
+ title: ""
690
+ date: 2023-11-10T01:09:34.325Z
691
+ - commits:
692
+ - subject: Update dependency @types/chai-things to v0.0.37
693
+ hash: bb8f58d7429e4a91ab4f179c71a5970b4d516f1b
694
+ body: |
695
+ Update @types/chai-things from 0.0.36 to 0.0.37
696
+ footer:
697
+ Change-type: patch
698
+ change-type: patch
699
+ author: Self-hosted Renovate Bot
700
+ nested: []
701
+ version: odata-to-abstract-sql-6.1.2
702
+ title: ""
703
+ date: 2023-10-20T23:51:44.598Z
704
+ - commits:
705
+ - subject: Update dependencies eslint, sbvrTypes, abstract-sql-compiler
706
+ hash: f9e08b24decefe20be1d8fb1747063deb2c1cb5e
707
+ body: |
708
+ Update @balena/abstract-sql-compiler from 8.4.1 to 9.0.3
709
+ Update @balena/odata-parser from 3.0.0 to 3.0.1
710
+ Update @types/lodash from 4.14.194 to 4.14.199
711
+ Update @types/memoizee from 0.4.8 to 0.4.9
712
+ Update @balena/lf-to-abstract-sql from 5.0.0 to 5.0.1
713
+ Update @balena/lint from 6.2.2 to 7.2.0
714
+ Update @balena/sbvr-types from 4.0.0 to 6.1.0
715
+ Update @types/chai from 4.3.4 to 4.3.8
716
+ Update @types/chai-things from 0.0.35 to 0.0.36
717
+ Update @types/mocha from 10.0.1 to 10.0.2
718
+ Update chai from 4.3.7 to 4.3.10
719
+ Update lint-staged from 13.2.2 to 15.0.1
720
+ Update typescript from 5.0.4 to 5.2.2
721
+ footer:
722
+ Change-type: patch
723
+ change-type: patch
724
+ Signed-off-by: Harald Fischer <harald@balena.io>
725
+ signed-off-by: Harald Fischer <harald@balena.io>
726
+ author: Harald Fischer
727
+ nested:
728
+ - commits:
729
+ - subject: Update @balena/sbvr-types to 6.0.0
730
+ hash: 76aed21f8b79dea58914ef9d02775ba93c8226ec
731
+ body: |
732
+ Update @balena/sbvr-types from 5.0.0 to 6.0.0
733
+ footer:
734
+ Change-type: patch
735
+ change-type: patch
736
+ author: Otávio Jacobi
737
+ nested:
738
+ - commits:
739
+ - subject: Change contents to snake_case
740
+ hash: aaa12269901e364533cf2aa45a958948ce0339de
741
+ body: ""
742
+ footer:
743
+ Change-Type: major
744
+ change-type: major
745
+ author: Otávio Jacobi
746
+ version: sbvr-types-6.0.0
747
+ title: ""
748
+ date: 2023-08-09T00:10:50.917Z
749
+ - commits:
750
+ - subject: Expose WebResource as WebResourceType
751
+ hash: 9e42bfffb2145b5096539492b36b0f19b1f2e209
752
+ body: ""
753
+ footer:
754
+ Change-type: minor
755
+ change-type: minor
756
+ author: Otávio Jacobi
757
+ version: sbvr-types-5.2.0
758
+ title: ""
759
+ date: 2023-08-08T21:01:49.459Z
760
+ - commits:
761
+ - subject: Adds WebResource type
762
+ hash: db7ff44e95a040a0b250d8c7612b126b31a3f325
763
+ body: ""
764
+ footer:
765
+ Change-type: minor
766
+ change-type: minor
767
+ Co-authored-by: ramirogm
768
+ co-authored-by: ramirogm
769
+ author: Otávio Jacobi
770
+ version: sbvr-types-5.1.0
771
+ title: ""
772
+ date: 2023-08-03T09:36:41.490Z
773
+ version: abstract-sql-compiler-9.0.3
774
+ title: ""
775
+ date: 2023-08-09T00:41:33.356Z
776
+ - commits:
777
+ - subject: Update @balena/sbvr-types to 5.0.0
778
+ hash: 67e4fafb3f89a05646f9911354fc74d9012c3096
779
+ body: |
780
+ Update @balena/sbvr-types from 4.0.0 to 5.0.0
781
+ footer:
782
+ Change-type: patch
783
+ change-type: patch
784
+ author: Pagan Gazzard
785
+ nested:
786
+ - commits:
787
+ - subject: Switch from `export =` to `export default`
788
+ hash: 6cd01340e0fee46833942691fce5a9f6a42ac104
789
+ body: ""
790
+ footer:
791
+ Change-type: major
792
+ change-type: major
793
+ author: Pagan Gazzard
794
+ version: sbvr-types-5.0.0
795
+ title: ""
796
+ date: 2023-05-16T15:56:09.861Z
797
+ - commits:
798
+ - subject: Improve typings
799
+ hash: a5fd4a319cd0336afc5a765af9e1a1eec851f2c3
800
+ body: ""
801
+ footer:
802
+ Change-type: patch
803
+ change-type: patch
804
+ author: Pagan Gazzard
805
+ version: sbvr-types-4.0.2
806
+ title: ""
807
+ date: 2023-05-03T11:40:24.422Z
808
+ - commits:
809
+ - subject: "boolean: Avoid unnecessary array creation to reduce GCs"
810
+ hash: 5ba948cd5f42844974d43dc19f1c371e56376fc8
811
+ body: ""
812
+ footer:
813
+ Change-type: patch
814
+ change-type: patch
815
+ author: Thodoris Greasidis
816
+ version: sbvr-types-4.0.1
817
+ title: ""
818
+ date: 2023-05-02T13:39:37.722Z
819
+ version: abstract-sql-compiler-9.0.2
820
+ title: ""
821
+ date: 2023-05-16T16:05:11.077Z
822
+ - commits:
823
+ - subject: Fix TS errors for the latest sbvrTypes
824
+ hash: bb1f16713d084eaf6285138a2a587e9b36bc7759
825
+ body: ""
826
+ footer:
827
+ Change-type: patch
828
+ change-type: patch
829
+ author: Thodoris Greasidis
830
+ nested: []
831
+ version: abstract-sql-compiler-9.0.1
832
+ title: ""
833
+ date: 2023-05-15T12:54:08.040Z
834
+ - commits:
835
+ - subject: Drop `require-npm4-to-publish` as `engines` used
836
+ hash: 374bc5bd42c3caac5c68608f802302674a511c23
837
+ body: ""
838
+ footer:
839
+ Change-type: patch
840
+ change-type: patch
841
+ Signed-off-by: fisehara <harald@balena.io>
842
+ signed-off-by: fisehara <harald@balena.io>
843
+ author: fisehara
844
+ nested: []
845
+ - subject: Update @balena/odata-to-abstract-sql to 6.x
846
+ hash: e7194718065ab98328c0cb3266df9838787c08c3
847
+ body: |
848
+ Update @balena/odata-to-abstract-sql from 5.9.3 to 6.0.1
849
+ footer:
850
+ Change-type: major
851
+ change-type: major
852
+ author: Pagan Gazzard
853
+ nested:
854
+ - commits:
855
+ - subject: Update dependencies
856
+ hash: d749289e311ad22e2b09793ad1dd472762bdf402
857
+ body: |
858
+ Update @balena/odata-parser from 2.4.6 to 3.0.0
859
+ Update @balena/sbvr-types from 3.5.0 to 4.0.0
860
+ footer:
861
+ Change-type: patch
862
+ change-type: patch
863
+ author: Pagan Gazzard
864
+ nested:
865
+ - commits:
866
+ - subject: Use optional chaining operator
867
+ hash: 1fb39ef2497b964af0f2cbc953a3f0843936fe02
868
+ body: ""
869
+ footer:
870
+ Change-type: major
871
+ change-type: major
872
+ author: Pagan Gazzard
873
+ - subject: Set minimum supported nodejs version to 16.13.0
874
+ hash: 91b8f51691a9649e99f2dc64253cc5ce9b59035a
875
+ body: ""
876
+ footer:
877
+ Change-type: major
878
+ change-type: major
879
+ author: Pagan Gazzard
880
+ version: odata-parser-3.0.0
881
+ title: ""
882
+ date: 2023-04-26T14:57:49.416Z
883
+ - commits:
884
+ - subject: Update to peggy 3 and make us of the repetition operator
885
+ hash: 3d091133ca54dfba71c2bc0d17e60780fb1bda22
886
+ body: ""
887
+ footer:
888
+ Change-type: minor
889
+ change-type: minor
890
+ author: Pagan Gazzard
891
+ version: odata-parser-2.5.0
892
+ title: ""
893
+ date: 2023-04-26T11:09:24.513Z
894
+ - commits:
895
+ - subject: Add test cases for Objects in JSON validate
896
+ hash: be8fc31c3754186dd4c43ca8d4c056b0def7ffbd
897
+ body: >
898
+ As balena-lint rejects `new Boolean()`,
899
+ `new Number()` and `new String()`
900
+ constructor usage, test cases double
901
+ check that they are not instantiated as
902
+ object but primitive type.
903
+ footer:
904
+ Change-type: patch
905
+ change-type: patch
906
+ Signed-off-by: fisehara <harald@balena.io>
907
+ signed-off-by: fisehara <harald@balena.io>
908
+ author: fisehara
909
+ - subject: Drop `require-npm4-to-publish` devDependency
910
+ hash: 46a369117c9d1222089498a8794c32d14edef85b
911
+ body: >
912
+ As engine and npm is now required as
913
+ part of package.json we can drop this
914
+ dependency
915
+ footer:
916
+ Change-type: patch
917
+ change-type: patch
918
+ Signed-off-by: fisehara <harald@balena.io>
919
+ signed-off-by: fisehara <harald@balena.io>
920
+ author: fisehara
921
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
922
+ hash: 54920d701a7aa4890c27801fc5cc6b9d74ece21c
923
+ body: ""
924
+ footer:
925
+ Change-type: major
926
+ change-type: major
927
+ author: Pagan Gazzard
928
+ - subject: Switch `JSON` to use `JSON` db type instead of `TEXT`
929
+ hash: 0d3561364ad018f59466c0dae9b3adb4390d9496
930
+ body: ""
931
+ footer:
932
+ Change-type: major
933
+ change-type: major
934
+ author: Pagan Gazzard
935
+ - subject: Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER`
936
+ hash: 5af2bd476a9032ab5d60c163a3940e0dd8e81cc6
937
+ body: ""
938
+ footer:
939
+ Change-type: major
940
+ change-type: major
941
+ author: Pagan Gazzard
942
+ - subject: Assert that JSON input typeof is object
943
+ hash: 1819ee97811e20da93c6e0f227db6a62ada8c00e
944
+ body: >
945
+ Ensure that the input passed in for JSON
946
+ types is either an object or
947
+
948
+ an array (typeof returns 'object' for arrays as well). This change is
949
+
950
+ mainly to prevent primitives from being stored as JSON.
951
+ footer:
952
+ Change-type: major
953
+ change-type: major
954
+ Signed-off-by: Josh Bowling <josh@monarci.com>
955
+ signed-off-by: Josh Bowling <josh@monarci.com>
956
+ author: Josh Bowling
957
+ version: sbvr-types-4.0.0
958
+ title: ""
959
+ date: 2023-04-26T15:00:16.169Z
960
+ version: odata-to-abstract-sql-6.0.1
961
+ title: ""
962
+ date: 2023-04-27T08:45:33.841Z
963
+ - commits:
964
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
965
+ hash: 7f6f98637339f43b34ae7faa8e868129efe6d754
966
+ body: ""
967
+ footer:
968
+ Change-type: major
969
+ change-type: major
970
+ author: Pagan Gazzard
971
+ nested: []
972
+ - subject: Switch `AggregateJSON` to use the newer `ReferencedField` format
973
+ hash: e8038b15c471d801b21f39cec2c95ff6689b0595
974
+ body: ""
975
+ footer:
976
+ Change-type: major
977
+ change-type: major
978
+ author: Pagan Gazzard
979
+ nested: []
980
+ version: odata-to-abstract-sql-6.0.0
981
+ title: ""
982
+ date: 2023-04-26T13:50:25.845Z
983
+ - commits:
984
+ - subject: Collapse `AliasedFunction` into `FunctionMatch`
985
+ hash: 98093a48aa75e5b8bd8eadc25ca37b53cc80ce2c
986
+ body: ""
987
+ footer:
988
+ Change-type: patch
989
+ change-type: patch
990
+ author: Pagan Gazzard
991
+ nested: []
992
+ version: odata-to-abstract-sql-5.9.6
993
+ title: ""
994
+ date: 2023-04-25T13:27:44.188Z
995
+ - commits:
996
+ - subject: Improve typings
997
+ hash: 78d4a48022ac0465c5d2c48db53b8ddd08e6e1bf
998
+ body: >
999
+ Update @balena/abstract-sql-compiler from 8.4.0
1000
+ to 8.4.1
1001
+ footer:
1002
+ Change-type: patch
1003
+ change-type: patch
1004
+ author: Pagan Gazzard
1005
+ nested:
1006
+ - commits:
1007
+ - subject: Add much finer grained typings for abstract-sql-optimizer
1008
+ hash: 92bc7e93ca1b17401d902d66c68e090e50f70d1a
1009
+ body: ""
1010
+ footer:
1011
+ Change-type: patch
1012
+ change-type: patch
1013
+ author: Pagan Gazzard
1014
+ nested: []
1015
+ version: abstract-sql-compiler-8.4.1
1016
+ title: ""
1017
+ date: 2023-04-25T10:03:26.380Z
1018
+ version: odata-to-abstract-sql-5.9.5
1019
+ title: ""
1020
+ date: 2023-04-25T12:16:48.086Z
1021
+ - commits:
1022
+ - subject: Update dependencies
1023
+ hash: 5aa3c51cbbfc66cddedebd41dacba5eabbacf709
1024
+ body: >
1025
+ Update @balena/abstract-sql-compiler from 8.0.0
1026
+ to 8.4.0
1027
+
1028
+ Update @balena/odata-parser from 2.4.2 to 2.4.6
1029
+ footer:
1030
+ Change-type: patch
1031
+ change-type: patch
1032
+ author: Pagan Gazzard
1033
+ nested:
1034
+ - commits:
1035
+ - subject: Add support for using field type nodes with an AggregateJSON node
1036
+ hash: 19c2760ecf76b4097d7d3045c2eefbf74fd7c2da
1037
+ body: |
1038
+ This also deprecates the legacy version
1039
+ footer:
1040
+ Change-type: minor
1041
+ change-type: minor
1042
+ author: Pagan Gazzard
1043
+ nested: []
1044
+ version: abstract-sql-compiler-8.4.0
1045
+ title: ""
1046
+ date: 2023-04-24T12:05:48.116Z
1047
+ - commits:
1048
+ - subject: Deprecate `AliasableFromTypeNodes` type as it's redundant
1049
+ hash: 283da4816fe5e6d672e4959b05800861625dda99
1050
+ body: ""
1051
+ footer:
1052
+ Change-type: patch
1053
+ change-type: patch
1054
+ author: Pagan Gazzard
1055
+ nested: []
1056
+ version: abstract-sql-compiler-8.3.13
1057
+ title: ""
1058
+ date: 2023-04-24T12:00:41.593Z
1059
+ - commits:
1060
+ - subject: Revert tightening of `OrderBy` to only field nodes
1061
+ hash: 1c25d9b8d011791a9e98a5929ad48cdd9f3bab6b
1062
+ body: >
1063
+ It can in fact be a lot of different
1064
+ things and that is now also
1065
+
1066
+ reflected in the typing
1067
+ footer:
1068
+ Change-type: patch
1069
+ change-type: patch
1070
+ author: Pagan Gazzard
1071
+ nested: []
1072
+ version: abstract-sql-compiler-8.3.12
1073
+ title: ""
1074
+ date: 2023-04-17T16:53:20.918Z
1075
+ - commits:
1076
+ - subject: Do not allow ON clauses for CROSS JOIN as it is invalid
1077
+ hash: d47bf63d3a14cdbb4cb0aeb7544e41a9288699f4
1078
+ body: ""
1079
+ footer:
1080
+ Change-type: patch
1081
+ change-type: patch
1082
+ author: Pagan Gazzard
1083
+ nested: []
1084
+ - subject: Stop accepting `ExtractJSONPathAsText`/`ToJSON` as unknown node types
1085
+ hash: 6fcb2c4257f9fc50f6b4b1070dec86ace9f71237
1086
+ body: >
1087
+ We know what type they return and they
1088
+ should be explicitly accepted as
1089
+
1090
+ those types instead where it is valid to do so
1091
+ footer:
1092
+ Change-type: patch
1093
+ change-type: patch
1094
+ author: Pagan Gazzard
1095
+ nested: []
1096
+ version: abstract-sql-compiler-8.3.11
1097
+ title: ""
1098
+ date: 2023-04-13T11:28:36.049Z
1099
+ - commits:
1100
+ - subject: Fix DateNode/AnyNode typings
1101
+ hash: aab549e8cf4e274a2a8b93814da393451acc4238
1102
+ body: ""
1103
+ footer:
1104
+ Change-type: patch
1105
+ change-type: patch
1106
+ author: Pagan Gazzard
1107
+ nested: []
1108
+ version: abstract-sql-compiler-8.3.10
1109
+ title: ""
1110
+ date: 2023-04-13T10:27:14.478Z
1111
+ - commits:
1112
+ - subject: Update dependencies
1113
+ hash: 39058b2dacac51da96158d594b2d72e3238d0cbc
1114
+ body: >
1115
+ Update @balena/sbvr-types from 3.4.18 to
1116
+ 3.5.0
1117
+ footer:
1118
+ Change-type: patch
1119
+ change-type: patch
1120
+ author: Pagan Gazzard
1121
+ nested:
1122
+ - commits:
1123
+ - subject: Add Big Serial type
1124
+ hash: 49460ad51fcbc60f81e61329c573a1af5b207a46
1125
+ body: ""
1126
+ footer:
1127
+ Change-type: minor
1128
+ change-type: minor
1129
+ author: Josh Bowling
1130
+ version: sbvr-types-3.5.0
1131
+ title: ""
1132
+ date: 2023-03-21T11:16:27.398Z
1133
+ - commits:
1134
+ - subject: "Flowzone: Allow external contributions"
1135
+ hash: 9f7bb028bbac327e6fe0711491d7c0f2c6464f98
1136
+ body: ""
1137
+ footer:
1138
+ Change-type: patch
1139
+ change-type: patch
1140
+ Signed-off-by: Josh Bowling <josh@monarci.com>
1141
+ signed-off-by: Josh Bowling <josh@monarci.com>
1142
+ author: Josh Bowling
1143
+ version: sbvr-types-3.4.19
1144
+ title: ""
1145
+ date: 2022-12-08T01:08:35.143Z
1146
+ version: abstract-sql-compiler-8.3.9
1147
+ title: ""
1148
+ date: 2023-04-13T10:09:53.529Z
1149
+ - commits:
1150
+ - subject: Improve typings
1151
+ hash: 43e75ef37de956d1b583bc62b307b04e0f8455c1
1152
+ body: ""
1153
+ footer:
1154
+ Change-type: patch
1155
+ change-type: patch
1156
+ author: Pagan Gazzard
1157
+ nested: []
1158
+ version: abstract-sql-compiler-8.3.8
1159
+ title: ""
1160
+ date: 2023-04-12T17:26:10.992Z
1161
+ - commits:
1162
+ - subject: Remove typing for non-existent JSON node
1163
+ hash: 76181d438f0f37463642704d7908c1774040c2c2
1164
+ body: ""
1165
+ footer:
1166
+ Change-type: patch
1167
+ change-type: patch
1168
+ author: Pagan Gazzard
1169
+ nested: []
1170
+ version: abstract-sql-compiler-8.3.7
1171
+ title: ""
1172
+ date: 2023-04-12T16:38:07.014Z
1173
+ - commits:
1174
+ - subject: Tighten the `isXValue` function typings
1175
+ hash: 91485cd9c88faaaed9b1280bc34eb3a99628057e
1176
+ body: ""
1177
+ footer:
1178
+ Change-type: patch
1179
+ change-type: patch
1180
+ author: Pagan Gazzard
1181
+ nested: []
1182
+ version: abstract-sql-compiler-8.3.6
1183
+ title: ""
1184
+ date: 2023-04-12T16:18:20.829Z
1185
+ - commits:
1186
+ - subject: Correctly treat `Value` nodes as rewritten to `Text` by the optimizer
1187
+ hash: c9dbc4cfb3fa392e87a0775accdd6811b3c273b4
1188
+ body: ""
1189
+ footer:
1190
+ Change-type: patch
1191
+ change-type: patch
1192
+ author: Pagan Gazzard
1193
+ nested: []
1194
+ - subject: Add EmbeddedTextNode typing
1195
+ hash: d00ac00ca7af4d17b437c3d5511af8e506615db4
1196
+ body: ""
1197
+ footer:
1198
+ Change-type: patch
1199
+ change-type: patch
1200
+ author: Pagan Gazzard
1201
+ nested: []
1202
+ version: abstract-sql-compiler-8.3.5
1203
+ title: ""
1204
+ date: 2023-04-12T16:01:45.643Z
1205
+ - commits:
1206
+ - subject: Enforce the first argument of ExtractJSONPathAsText is a JSON type node
1207
+ hash: 08865295d4cd3ded56d77a30d33c0434e1da52b9
1208
+ body: ""
1209
+ footer:
1210
+ Change-type: patch
1211
+ change-type: patch
1212
+ author: Pagan Gazzard
1213
+ nested: []
1214
+ version: abstract-sql-compiler-8.3.4
1215
+ title: ""
1216
+ date: 2023-04-12T15:55:47.432Z
1217
+ - commits:
1218
+ - subject: Improve node typings
1219
+ hash: 2cb83cf242052c581ee5412e3a90ed87cf5fd39e
1220
+ body: ""
1221
+ footer:
1222
+ Change-type: patch
1223
+ change-type: patch
1224
+ author: Pagan Gazzard
1225
+ nested: []
1226
+ version: abstract-sql-compiler-8.3.3
1227
+ title: ""
1228
+ date: 2023-04-12T15:43:13.357Z
1229
+ - commits:
1230
+ - subject: Add more node typings
1231
+ hash: db162a8a4d645c2f37c968224d667ed753e534dd
1232
+ body: ""
1233
+ footer:
1234
+ Change-type: patch
1235
+ change-type: patch
1236
+ author: Pagan Gazzard
1237
+ nested: []
1238
+ version: abstract-sql-compiler-8.3.2
1239
+ title: ""
1240
+ date: 2023-04-12T15:01:22.252Z
1241
+ - commits:
1242
+ - subject: Add more node typings
1243
+ hash: 047954b6f66abb041bee74373f37c38d71cdc4d7
1244
+ body: ""
1245
+ footer:
1246
+ Change-type: patch
1247
+ change-type: patch
1248
+ author: Pagan Gazzard
1249
+ nested: []
1250
+ version: abstract-sql-compiler-8.3.1
1251
+ title: ""
1252
+ date: 2023-04-12T13:14:25.174Z
1253
+ - commits:
1254
+ - subject: Support boolean nodes in a ValuesNode
1255
+ hash: d589fb6cd92a3a7570e3b2ebea14acbb84807d8a
1256
+ body: >
1257
+ This also deprecates the legacy use of
1258
+ direct true/false entries
1259
+ footer:
1260
+ Change-type: minor
1261
+ change-type: minor
1262
+ author: Pagan Gazzard
1263
+ nested: []
1264
+ version: abstract-sql-compiler-8.3.0
1265
+ title: ""
1266
+ date: 2023-04-11T14:56:54.403Z
1267
+ - commits:
1268
+ - subject: Add `Between` node type
1269
+ hash: 4880072eeab6af198df47777b6579dcacc3d7fb1
1270
+ body: ""
1271
+ footer:
1272
+ Change-type: minor
1273
+ change-type: minor
1274
+ author: Pagan Gazzard
1275
+ nested: []
1276
+ version: abstract-sql-compiler-8.2.0
1277
+ title: ""
1278
+ date: 2023-04-11T14:19:22.378Z
1279
+ - commits:
1280
+ - subject: Add `BitwiseAnd`/`BitwiseShiftRight` node types
1281
+ hash: f155d1daca54086b653fa590e3248c5ef805afff
1282
+ body: ""
1283
+ footer:
1284
+ Change-type: minor
1285
+ change-type: minor
1286
+ author: Pagan Gazzard
1287
+ nested: []
1288
+ version: abstract-sql-compiler-8.1.0
1289
+ title: ""
1290
+ date: 2023-04-11T14:11:01.677Z
1291
+ - commits:
1292
+ - subject: Add `NotInNode` type
1293
+ hash: 9870d746344033db53ec14fddc23a8580b863ad9
1294
+ body: ""
1295
+ footer:
1296
+ Change-type: patch
1297
+ change-type: patch
1298
+ author: Pagan Gazzard
1299
+ nested: []
1300
+ - subject: Add `IsDistinctFromNode`/`IsNotDistinctFromNode` types
1301
+ hash: 09887280a6394a61a31c955602ccb2a0fe98c9b8
1302
+ body: ""
1303
+ footer:
1304
+ Change-type: patch
1305
+ change-type: patch
1306
+ author: Pagan Gazzard
1307
+ nested: []
1308
+ - subject: Add `CharacterLengthNode` type
1309
+ hash: 1fbab42cee8128025756076dc826dacda4ea1597
1310
+ body: ""
1311
+ footer:
1312
+ Change-type: patch
1313
+ change-type: patch
1314
+ author: Pagan Gazzard
1315
+ nested: []
1316
+ version: abstract-sql-compiler-8.0.2
1317
+ title: ""
1318
+ date: 2023-04-06T18:12:29.893Z
1319
+ - commits:
1320
+ - subject: Adds Cast node type to tree parsing
1321
+ hash: cbdb559bfce3c77f9bce9e07f05777f58965f324
1322
+ body: ""
1323
+ footer:
1324
+ Change-type: patch
1325
+ change-type: patch
1326
+ author: Otávio Jacobi
1327
+ nested: []
1328
+ version: abstract-sql-compiler-8.0.1
1329
+ title: ""
1330
+ date: 2023-04-06T17:59:29.723Z
1331
+ - commits:
1332
+ - subject: Improve typings
1333
+ hash: ed5fa5675021485a775eb777f2358d8041b93ce1
1334
+ body: ""
1335
+ footer:
1336
+ Change-type: patch
1337
+ change-type: patch
1338
+ author: Pagan Gazzard
1339
+ version: odata-parser-2.4.6
1340
+ title: ""
1341
+ date: 2023-02-24T17:02:58.272Z
1342
+ - commits:
1343
+ - subject: Use const/let as appropriate
1344
+ hash: 0824fe7d85eeb97941319749fc802f9bae3c9fb6
1345
+ body: ""
1346
+ footer:
1347
+ Change-type: patch
1348
+ change-type: patch
1349
+ author: Pagan Gazzard
1350
+ version: odata-parser-2.4.5
1351
+ title: ""
1352
+ date: 2023-02-23T16:31:08.299Z
1353
+ - commits:
1354
+ - subject: Use shorthand object notation
1355
+ hash: 611c0480681965c7af06302264eac79fea18bded
1356
+ body: ""
1357
+ footer:
1358
+ Change-type: patch
1359
+ change-type: patch
1360
+ author: Pagan Gazzard
1361
+ version: odata-parser-2.4.4
1362
+ title: ""
1363
+ date: 2023-02-23T16:26:30.639Z
1364
+ - commits:
1365
+ - subject: Update dependencies
1366
+ hash: 25b153aca258347c6742cb8b4efe54c0ae199695
1367
+ body: ""
1368
+ footer:
1369
+ Change-type: patch
1370
+ change-type: patch
1371
+ author: Pagan Gazzard
1372
+ version: odata-parser-2.4.3
1373
+ title: ""
1374
+ date: 2023-02-23T16:14:13.013Z
1375
+ version: odata-to-abstract-sql-5.9.4
1376
+ title: ""
1377
+ date: 2023-04-24T16:26:44.367Z
1378
+ - subject: Remove support for the legacy AggregateJSON format of `[tableName,
1379
+ fieldName]`
1380
+ hash: ab90bed96cd80599f57c59f03dd02b6ac7bc6115
1381
+ body: |
1382
+ Use `['ReferencedField, tableName, fieldName]` instead
1383
+ footer:
1384
+ Change-type: major
1385
+ change-type: major
1386
+ author: Pagan Gazzard
1387
+ nested: []
1388
+ - subject: Remove support for the legacy boolean format of `true|false`
1389
+ hash: 1826e6d9ad81542dd3c1123768ae926254a85a17
1390
+ body: |
1391
+ Use `['Boolean', true|false]` instead
1392
+ footer:
1393
+ Change-type: major
1394
+ change-type: major
1395
+ author: Pagan Gazzard
1396
+ nested: []
1397
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
1398
+ hash: 62bef1d7243d256ebe270881691c6a56216c67d6
1399
+ body: ""
1400
+ footer:
1401
+ Change-type: major
1402
+ change-type: major
1403
+ author: Pagan Gazzard
1404
+ nested: []
1405
+ - subject: Remove support for the legacy alias format of `[node, alias]`
1406
+ hash: 52038aa06d833c1bfbc14f721e7417d4272edc28
1407
+ body: ""
1408
+ footer:
1409
+ Change-type: major
1410
+ change-type: major
1411
+ author: Pagan Gazzard
1412
+ nested: []
1413
+ - subject: Remove support for the legacy table format of `tableName`
1414
+ hash: 3ff760a6e360421ed1030afe355761d655408547
1415
+ body: ""
1416
+ footer:
1417
+ Change-type: major
1418
+ change-type: major
1419
+ author: Pagan Gazzard
1420
+ nested: []
1421
+ - subject: Remove support for the legacy null formats of `null` and `'Null'`
1422
+ hash: 166d2616b245f8593b17160722c915a5868b2b3a
1423
+ body: ""
1424
+ footer:
1425
+ Change-type: major
1426
+ change-type: major
1427
+ author: Pagan Gazzard
1428
+ nested: []
1429
+ - subject: Reflect the usage of BOOLEAN db type
1430
+ hash: ddab41907418024df2747fa7f630abd80d580a43
1431
+ body: ""
1432
+ footer:
1433
+ Change-type: major
1434
+ change-type: major
1435
+ author: Pagan Gazzard
1436
+ nested: []
1437
+ - subject: Update @balena/sbvr-types to 4.x
1438
+ hash: ff17af594020723ab91bf65aed197dc01ace7981
1439
+ body: |
1440
+ Update @balena/sbvr-types from 3.5.0 to 4.0.0
1441
+ footer:
1442
+ Change-type: major
1443
+ change-type: major
1444
+ author: Pagan Gazzard
1445
+ nested:
1446
+ - commits:
1447
+ - subject: Add test cases for Objects in JSON validate
1448
+ hash: be8fc31c3754186dd4c43ca8d4c056b0def7ffbd
1449
+ body: >
1450
+ As balena-lint rejects `new Boolean()`, `new
1451
+ Number()` and `new String()` constructor usage,
1452
+ test cases double check that they are not
1453
+ instantiated as object but primitive type.
1454
+ footer:
1455
+ Change-type: patch
1456
+ change-type: patch
1457
+ Signed-off-by: fisehara <harald@balena.io>
1458
+ signed-off-by: fisehara <harald@balena.io>
1459
+ author: fisehara
1460
+ - subject: Drop `require-npm4-to-publish` devDependency
1461
+ hash: 46a369117c9d1222089498a8794c32d14edef85b
1462
+ body: >
1463
+ As engine and npm is now required as part of
1464
+ package.json we can drop this dependency
1465
+ footer:
1466
+ Change-type: patch
1467
+ change-type: patch
1468
+ Signed-off-by: fisehara <harald@balena.io>
1469
+ signed-off-by: fisehara <harald@balena.io>
1470
+ author: fisehara
1471
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
1472
+ hash: 54920d701a7aa4890c27801fc5cc6b9d74ece21c
1473
+ body: ""
1474
+ footer:
1475
+ Change-type: major
1476
+ change-type: major
1477
+ author: Pagan Gazzard
1478
+ - subject: Switch `JSON` to use `JSON` db type instead of `TEXT`
1479
+ hash: 0d3561364ad018f59466c0dae9b3adb4390d9496
1480
+ body: ""
1481
+ footer:
1482
+ Change-type: major
1483
+ change-type: major
1484
+ author: Pagan Gazzard
1485
+ - subject: Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER`
1486
+ hash: 5af2bd476a9032ab5d60c163a3940e0dd8e81cc6
1487
+ body: ""
1488
+ footer:
1489
+ Change-type: major
1490
+ change-type: major
1491
+ author: Pagan Gazzard
1492
+ - subject: Assert that JSON input typeof is object
1493
+ hash: 1819ee97811e20da93c6e0f227db6a62ada8c00e
1494
+ body: >
1495
+ Ensure that the input passed in for JSON types
1496
+ is either an object or
1497
+
1498
+ an array (typeof returns 'object' for arrays as well). This change is
1499
+
1500
+ mainly to prevent primitives from being stored as JSON.
1501
+ footer:
1502
+ Change-type: major
1503
+ change-type: major
1504
+ Signed-off-by: Josh Bowling <josh@monarci.com>
1505
+ signed-off-by: Josh Bowling <josh@monarci.com>
1506
+ author: Josh Bowling
1507
+ version: sbvr-types-4.0.0
1508
+ title: ""
1509
+ date: 2023-04-26T15:00:16.169Z
1510
+ version: abstract-sql-compiler-9.0.0
1511
+ title: ""
1512
+ date: 2023-05-02T10:21:03.552Z
1513
+ - commits:
1514
+ - subject: Use native `StartsWith` node type for postgres
1515
+ hash: 0e0055782f05eccf3d7d8bf01f2d6810e738c4e6
1516
+ body: ""
1517
+ footer:
1518
+ Change-type: minor
1519
+ change-type: minor
1520
+ author: Pagan Gazzard
1521
+ nested: []
1522
+ - subject: Convert `EscapeForLike` into a standalone node type
1523
+ hash: 9732e2e6e678262dfb25c8fbe5d935e4d6201296
1524
+ body: ""
1525
+ footer:
1526
+ Change-type: minor
1527
+ change-type: minor
1528
+ author: Pagan Gazzard
1529
+ nested: []
1530
+ version: abstract-sql-compiler-8.5.0
1531
+ title: ""
1532
+ date: 2023-04-27T14:11:46.912Z
1533
+ - commits:
1534
+ - subject: Update @balena/sbvr-types to 5.0.0
1535
+ hash: 9acf28eac9790f47704d9103b5788fc4e1802e14
1536
+ body: |
1537
+ Update @balena/sbvr-types from 3.4.18 to 5.0.0
1538
+ footer:
1539
+ Change-type: patch
1540
+ change-type: patch
1541
+ author: Pagan Gazzard
1542
+ nested:
1543
+ - commits:
1544
+ - subject: Switch from `export =` to `export default`
1545
+ hash: 6cd01340e0fee46833942691fce5a9f6a42ac104
1546
+ body: ""
1547
+ footer:
1548
+ Change-type: major
1549
+ change-type: major
1550
+ author: Pagan Gazzard
1551
+ version: sbvr-types-5.0.0
1552
+ title: ""
1553
+ date: 2023-05-16T15:56:09.861Z
1554
+ - commits:
1555
+ - subject: Improve typings
1556
+ hash: a5fd4a319cd0336afc5a765af9e1a1eec851f2c3
1557
+ body: ""
1558
+ footer:
1559
+ Change-type: patch
1560
+ change-type: patch
1561
+ author: Pagan Gazzard
1562
+ version: sbvr-types-4.0.2
1563
+ title: ""
1564
+ date: 2023-05-03T11:40:24.422Z
1565
+ - commits:
1566
+ - subject: "boolean: Avoid unnecessary array creation to reduce GCs"
1567
+ hash: 5ba948cd5f42844974d43dc19f1c371e56376fc8
1568
+ body: ""
1569
+ footer:
1570
+ Change-type: patch
1571
+ change-type: patch
1572
+ author: Thodoris Greasidis
1573
+ version: sbvr-types-4.0.1
1574
+ title: ""
1575
+ date: 2023-05-02T13:39:37.722Z
1576
+ - commits:
1577
+ - subject: Add test cases for Objects in JSON validate
1578
+ hash: be8fc31c3754186dd4c43ca8d4c056b0def7ffbd
1579
+ body: >
1580
+ As balena-lint rejects `new Boolean()`, `new
1581
+ Number()` and `new String()` constructor usage,
1582
+ test cases double check that they are not
1583
+ instantiated as object but primitive type.
1584
+ footer:
1585
+ Change-type: patch
1586
+ change-type: patch
1587
+ Signed-off-by: fisehara <harald@balena.io>
1588
+ signed-off-by: fisehara <harald@balena.io>
1589
+ author: fisehara
1590
+ - subject: Drop `require-npm4-to-publish` devDependency
1591
+ hash: 46a369117c9d1222089498a8794c32d14edef85b
1592
+ body: >
1593
+ As engine and npm is now required as part of
1594
+ package.json we can drop this dependency
1595
+ footer:
1596
+ Change-type: patch
1597
+ change-type: patch
1598
+ Signed-off-by: fisehara <harald@balena.io>
1599
+ signed-off-by: fisehara <harald@balena.io>
1600
+ author: fisehara
1601
+ - subject: Set minimum supported nodejs version to 16.13.0 and tsconfig to es2021
1602
+ hash: 54920d701a7aa4890c27801fc5cc6b9d74ece21c
1603
+ body: ""
1604
+ footer:
1605
+ Change-type: major
1606
+ change-type: major
1607
+ author: Pagan Gazzard
1608
+ - subject: Switch `JSON` to use `JSON` db type instead of `TEXT`
1609
+ hash: 0d3561364ad018f59466c0dae9b3adb4390d9496
1610
+ body: ""
1611
+ footer:
1612
+ Change-type: major
1613
+ change-type: major
1614
+ author: Pagan Gazzard
1615
+ - subject: Switch `Boolean` to use `BOOLEAN` db type instead of `INTEGER`
1616
+ hash: 5af2bd476a9032ab5d60c163a3940e0dd8e81cc6
1617
+ body: ""
1618
+ footer:
1619
+ Change-type: major
1620
+ change-type: major
1621
+ author: Pagan Gazzard
1622
+ - subject: Assert that JSON input typeof is object
1623
+ hash: 1819ee97811e20da93c6e0f227db6a62ada8c00e
1624
+ body: >
1625
+ Ensure that the input passed in for JSON types
1626
+ is either an object or
1627
+
1628
+ an array (typeof returns 'object' for arrays as well). This change is
1629
+
1630
+ mainly to prevent primitives from being stored as JSON.
1631
+ footer:
1632
+ Change-type: major
1633
+ change-type: major
1634
+ Signed-off-by: Josh Bowling <josh@monarci.com>
1635
+ signed-off-by: Josh Bowling <josh@monarci.com>
1636
+ author: Josh Bowling
1637
+ version: sbvr-types-4.0.0
1638
+ title: ""
1639
+ date: 2023-04-26T15:00:16.169Z
1640
+ - commits:
1641
+ - subject: Add Big Serial type
1642
+ hash: 49460ad51fcbc60f81e61329c573a1af5b207a46
1643
+ body: ""
1644
+ footer:
1645
+ Change-type: minor
1646
+ change-type: minor
1647
+ author: Josh Bowling
1648
+ version: sbvr-types-3.5.0
1649
+ title: ""
1650
+ date: 2023-03-21T11:16:27.398Z
1651
+ - commits:
1652
+ - subject: "Flowzone: Allow external contributions"
1653
+ hash: 9f7bb028bbac327e6fe0711491d7c0f2c6464f98
1654
+ body: ""
1655
+ footer:
1656
+ Change-type: patch
1657
+ change-type: patch
1658
+ Signed-off-by: Josh Bowling <josh@monarci.com>
1659
+ signed-off-by: Josh Bowling <josh@monarci.com>
1660
+ author: Josh Bowling
1661
+ version: sbvr-types-3.4.19
1662
+ title: ""
1663
+ date: 2022-12-08T01:08:35.143Z
1664
+ version: lf-to-abstract-sql-5.0.1
1665
+ title: ""
1666
+ date: 2023-05-16T16:11:31.737Z
1667
+ - commits:
1668
+ - subject: Allow running CI on external PRs
1669
+ hash: 875af25a9e8ba9ade051f76f4500f5146db675a7
1670
+ body: ""
1671
+ footer:
1672
+ Change-type: patch
1673
+ change-type: patch
1674
+ author: Pagan Gazzard
1675
+ version: odata-parser-3.0.1
1676
+ title: ""
1677
+ date: 2023-09-25T10:50:13.648Z
1678
+ - commits:
1679
+ - subject: Add checksum to WebResource
1680
+ hash: be6a1e9bacad51f99d685f491b3bf81545536adb
1681
+ body: ""
1682
+ footer:
1683
+ Change-type: minor
1684
+ change-type: minor
1685
+ author: Otávio Jacobi
1686
+ version: sbvr-types-6.1.0
1687
+ title: ""
1688
+ date: 2023-10-03T22:49:47.984Z
1689
+ - commits:
1690
+ - subject: Change contents to snake_case
1691
+ hash: aaa12269901e364533cf2aa45a958948ce0339de
1692
+ body: ""
1693
+ footer:
1694
+ Change-Type: major
1695
+ change-type: major
1696
+ author: Otávio Jacobi
1697
+ version: sbvr-types-6.0.0
1698
+ title: ""
1699
+ date: 2023-08-09T00:10:50.917Z
1700
+ - commits:
1701
+ - subject: Expose WebResource as WebResourceType
1702
+ hash: 9e42bfffb2145b5096539492b36b0f19b1f2e209
1703
+ body: ""
1704
+ footer:
1705
+ Change-type: minor
1706
+ change-type: minor
1707
+ author: Otávio Jacobi
1708
+ version: sbvr-types-5.2.0
1709
+ title: ""
1710
+ date: 2023-08-08T21:01:49.459Z
1711
+ - commits:
1712
+ - subject: Adds WebResource type
1713
+ hash: db7ff44e95a040a0b250d8c7612b126b31a3f325
1714
+ body: ""
1715
+ footer:
1716
+ Change-type: minor
1717
+ change-type: minor
1718
+ Co-authored-by: ramirogm
1719
+ co-authored-by: ramirogm
1720
+ author: Otávio Jacobi
1721
+ version: sbvr-types-5.1.0
1722
+ title: ""
1723
+ date: 2023-08-03T09:36:41.490Z
1724
+ - commits:
1725
+ - subject: Switch from `export =` to `export default`
1726
+ hash: 6cd01340e0fee46833942691fce5a9f6a42ac104
1727
+ body: ""
1728
+ footer:
1729
+ Change-type: major
1730
+ change-type: major
1731
+ author: Pagan Gazzard
1732
+ version: sbvr-types-5.0.0
1733
+ title: ""
1734
+ date: 2023-05-16T15:56:09.861Z
1735
+ - commits:
1736
+ - subject: Improve typings
1737
+ hash: a5fd4a319cd0336afc5a765af9e1a1eec851f2c3
1738
+ body: ""
1739
+ footer:
1740
+ Change-type: patch
1741
+ change-type: patch
1742
+ author: Pagan Gazzard
1743
+ version: sbvr-types-4.0.2
1744
+ title: ""
1745
+ date: 2023-05-03T11:40:24.422Z
1746
+ - commits:
1747
+ - subject: "boolean: Avoid unnecessary array creation to reduce GCs"
1748
+ hash: 5ba948cd5f42844974d43dc19f1c371e56376fc8
1749
+ body: ""
1750
+ footer:
1751
+ Change-type: patch
1752
+ change-type: patch
1753
+ author: Thodoris Greasidis
1754
+ version: sbvr-types-4.0.1
1755
+ title: ""
1756
+ date: 2023-05-02T13:39:37.722Z
1757
+ version: odata-to-abstract-sql-6.1.1
1758
+ title: ""
1759
+ date: 2023-10-19T06:28:01.252Z
1760
+ - commits:
1761
+ - subject: Support bind references as boolean types
1762
+ hash: 6eab6c354cf734861e207a58d6a289eeef043f70
1763
+ body: >
1764
+ This allows things like `$filter=true` and
1765
+ `$filter=x/any(y:true)` to
1766
+
1767
+ work
1768
+ footer:
1769
+ Change-type: minor
1770
+ change-type: minor
1771
+ author: Pagan Gazzard
1772
+ nested: []
1773
+ version: odata-to-abstract-sql-6.1.0
1774
+ title: ""
1775
+ date: 2023-08-16T15:36:29.822Z
1776
+ version: 15.3.25
1777
+ title: ""
1778
+ date: 2023-11-28T13:32:48.803Z
1779
+ - commits:
1780
+ - subject: Update dependency pinejs-client-supertest to v2
1781
+ hash: bf047987a8f4c37a4c17257174c128c66fb12104
1782
+ body: |
1783
+ Update pinejs-client-supertest from 1.5.0 to 2.0.1
1784
+ footer:
1785
+ Change-type: patch
1786
+ change-type: patch
1787
+ author: Self-hosted Renovate Bot
1788
+ nested: []
1789
+ version: 15.3.24
1790
+ title: ""
1791
+ date: 2023-11-24T15:28:14.042Z
1792
+ - commits:
1793
+ - subject: Update postgres Docker tag to v16
1794
+ hash: 31d4836ed5c81bc668eaf9202e1ee43175dc15f9
1795
+ body: |
1796
+ Update postgres from 15 to 16
1797
+ footer:
1798
+ Change-type: patch
1799
+ change-type: patch
1800
+ author: Self-hosted Renovate Bot
1801
+ nested: []
1802
+ version: 15.3.23
1803
+ title: ""
1804
+ date: 2023-11-24T14:26:08.002Z
1805
+ - commits:
1806
+ - subject: Update dependency commander to v11
1807
+ hash: b00a2e317c724f8d7f5cd8843ffd62b7b3b13af7
1808
+ body: |
1809
+ Update commander from 10.0.1 to 11.1.0
1810
+ footer:
1811
+ Change-type: patch
1812
+ change-type: patch
1813
+ author: Self-hosted Renovate Bot
1814
+ nested: []
1815
+ version: 15.3.22
1816
+ title: ""
1817
+ date: 2023-11-24T12:13:05.092Z
1818
+ - commits:
1819
+ - subject: Update dependency grunt-webpack to v6
1820
+ hash: 8e6a57ca6c715f8a9c329948788d58cc8ceeedd6
1821
+ body: |
1822
+ Update grunt-webpack from 5.0.0 to 6.0.0
1823
+ footer:
1824
+ Change-type: patch
1825
+ change-type: patch
1826
+ author: Self-hosted Renovate Bot
1827
+ nested: []
1828
+ version: 15.3.21
1829
+ title: ""
1830
+ date: 2023-11-24T12:00:32.882Z
1831
+ - commits:
1832
+ - subject: Update dependency @types/websql to ^0.0.30
1833
+ hash: 1df43317b094ec1230a7e494246804cf509dc6c1
1834
+ body: |
1835
+ Update @types/websql from 0.0.28 to 0.0.30
1836
+ footer:
1837
+ Change-type: patch
1838
+ change-type: patch
1839
+ author: Self-hosted Renovate Bot
1840
+ nested: []
1841
+ version: 15.3.20
1842
+ title: ""
1843
+ date: 2023-11-24T10:08:43.412Z
1844
+ - commits:
1845
+ - subject: Update dependency @types/method-override to ^0.0.35
1846
+ hash: 9c2ef078ad9cf65d6c74b38241e5d0387f2f7473
1847
+ body: |
1848
+ Update @types/method-override from 0.0.33 to 0.0.35
1849
+ footer:
1850
+ Change-type: patch
1851
+ change-type: patch
1852
+ author: Self-hosted Renovate Bot
1853
+ nested: []
1854
+ version: 15.3.19
1855
+ title: ""
1856
+ date: 2023-11-24T09:08:36.817Z
1857
+ - commits:
1858
+ - subject: Update dependency @faker-js/faker to v8
1859
+ hash: d4490df5ca66fb55235f27d40c5008d6e755e8ea
1860
+ body: |
1861
+ Update @faker-js/faker from 7.6.0 to 8.3.1
1862
+ footer:
1863
+ Change-type: patch
1864
+ change-type: patch
1865
+ author: Self-hosted Renovate Bot
1866
+ nested: []
1867
+ version: 15.3.18
1868
+ title: ""
1869
+ date: 2023-11-24T08:39:42.925Z
1870
+ - commits:
1871
+ - subject: Update @balena/lint
1872
+ hash: 079f1a9438c61b7642088470818ead9580eb1f85
1873
+ body: |
1874
+ Update @balena/lint from 7.1.1 to 7.2.4
1875
+ footer:
1876
+ Change-type: patch
1877
+ change-type: patch
1878
+ Signed-off-by: Harald Fischer <harald@balena.io>
1879
+ signed-off-by: Harald Fischer <harald@balena.io>
1880
+ author: Harald Fischer
1881
+ nested: []
1882
+ version: 15.3.17
1883
+ title: ""
1884
+ date: 2023-11-23T19:26:45.288Z
1885
+ - commits:
1886
+ - subject: Handling typing changes of @types/pg
1887
+ hash: f7520efb9e2c44ab5ae341ad8fdd635814819eb0
1888
+ body: >
1889
+ rowCount can be NULL in the case of PG returning from `LOCK`
1890
+
1891
+
1892
+ Refernece:
1893
+
1894
+ https://github.com/DefinitelyTyped/DefinitelyTyped/pull/66990
1895
+
1896
+ https://github.com/brianc/node-postgres/pull/2967
1897
+
1898
+
1899
+ In pinejs the case is handled and as of now we don't want to populate a breaking change by transparently push the types to callers.
1900
+ footer:
1901
+ Change-type: patch
1902
+ change-type: patch
1903
+ Signed-off-by: Harald Fischer <harald@balena.io>
1904
+ signed-off-by: Harald Fischer <harald@balena.io>
1905
+ author: Harald Fischer
1906
+ nested: []
1907
+ version: 15.3.16
1908
+ title: ""
1909
+ date: 2023-11-09T13:56:00.178Z
1910
+ - commits:
1911
+ - subject: Do not force storage class on s3 upload
1912
+ hash: e72ffa55f21408996c04eab44d0013bf7a3f905d
1913
+ body: ""
1914
+ footer:
1915
+ Change-type: patch
1916
+ change-type: patch
1917
+ author: Otávio Jacobi
1918
+ nested: []
1919
+ version: 15.3.15
1920
+ title: ""
1921
+ date: 2023-10-25T22:46:52.289Z
1922
+ - commits:
1923
+ - subject: Update dependency @types/node to v20
1924
+ hash: 86536af590e8b408e9cae3ee6e30621d6e2ae97e
1925
+ body: |
1926
+ Update @types/node from 18.18.6 to 20.8.7
1927
+ footer:
1928
+ Change-type: patch
1929
+ change-type: patch
1930
+ author: Self-hosted Renovate Bot
1931
+ nested: []
1932
+ version: 15.3.14
1933
+ title: ""
1934
+ date: 2023-10-24T02:14:39.535Z
1935
+ - commits:
1936
+ - subject: Blocks updating and creating webresources with non multipart-formdata
1937
+ requests
1938
+ hash: c3d6262661f2680f824790ab0d855caaeb89ec29
1939
+ body: ""
1940
+ footer:
1941
+ Change-type: patch
1942
+ change-type: patch
1943
+ author: Otávio Jacobi
1944
+ nested: []
1945
+ version: 15.3.13
1946
+ title: ""
1947
+ date: 2023-10-23T15:35:39.739Z
1948
+ - commits:
1949
+ - subject: Update dependency @types/websql to ^0.0.28
1950
+ hash: f1fc571c6340aaecb591ffaee446a59642bad1af
1951
+ body: |
1952
+ Update @types/websql from 0.0.27 to 0.0.28
1953
+ footer:
1954
+ Change-type: patch
1955
+ change-type: patch
1956
+ author: Self-hosted Renovate Bot
1957
+ nested: []
1958
+ version: 15.3.12
1959
+ title: ""
1960
+ date: 2023-10-20T01:33:45.209Z
1961
+ - commits:
1962
+ - subject: Update dependency @types/method-override to ^0.0.33
1963
+ hash: c3266ad791bcc11bed607657af460b87cdba2053
1964
+ body: |
1965
+ Update @types/method-override from 0.0.32 to 0.0.33
1966
+ footer:
1967
+ Change-type: patch
1968
+ change-type: patch
1969
+ author: Self-hosted Renovate Bot
1970
+ nested: []
1971
+ version: 15.3.11
1972
+ title: ""
1973
+ date: 2023-10-20T00:15:28.695Z
1974
+ - commits:
1975
+ - subject: Allow uploading file on resourceName and synonyms
1976
+ hash: 1f6f5aa7e60fe7e6ce938b97f072d13dcaa8012c
1977
+ body: ""
1978
+ footer:
1979
+ Change-type: patch
1980
+ change-type: patch
1981
+ author: Otávio Jacobi
1982
+ nested: []
1983
+ version: 15.3.10
1984
+ title: ""
1985
+ date: 2023-10-06T23:32:39.347Z
1986
+ - commits:
1987
+ - subject: Fix Term Forms and Synonyms on webresources models
1988
+ hash: 96747c24ee17652246c7d0c4391ed5e7e6af8586
1989
+ body: ""
1990
+ footer:
1991
+ Change-type: patch
1992
+ change-type: patch
1993
+ author: Otávio Jacobi
1994
+ nested: []
1995
+ version: 15.3.9
1996
+ title: ""
1997
+ date: 2023-10-06T18:11:11.295Z
1998
+ - commits:
1999
+ - subject: Fix $expand on parent resource with child webresource
2000
+ hash: c719ff2c3313b5c6870dff2d3ac71522d36c0935
2001
+ body: ""
2002
+ footer:
2003
+ Change-type: patch
2004
+ change-type: patch
2005
+ author: Otávio Jacobi
2006
+ nested: []
2007
+ version: 15.3.8
2008
+ title: ""
2009
+ date: 2023-09-29T16:43:20.967Z
2010
+ - commits:
2011
+ - subject: Update TypeScript to 5.2.2
2012
+ hash: 38838fe15d78a4cc0bbbb665edc5b6e98fbfd84a
2013
+ body: ""
2014
+ footer:
2015
+ Change-type: patch
2016
+ change-type: patch
2017
+ author: Thodoris Greasidis
2018
+ nested: []
2019
+ version: 15.3.7
2020
+ title: ""
2021
+ date: 2023-08-31T09:45:00.773Z
2022
+ - commits:
2023
+ - subject: Fix the remaining lint errors
2024
+ hash: c974ff49f97ca861665e55cf2f024372c46006b9
2025
+ body: ""
2026
+ footer:
2027
+ Change-type: patch
2028
+ change-type: patch
2029
+ author: Thodoris Greasidis
2030
+ nested: []
2031
+ - subject: Mark expected floating promises with the `void` operator
2032
+ hash: b05bfea78ebd635d07378f2147588573990e3322
2033
+ body: ""
2034
+ footer:
2035
+ Change-type: patch
2036
+ change-type: patch
2037
+ author: Thodoris Greasidis
2038
+ nested: []
2039
+ - subject: Switch hasOwnProperty() to Object.prototype.hasOwnProperty.call
2040
+ hash: 08b89ab63508961edf8a1a322e7c750934e2bda0
2041
+ body: ""
2042
+ footer:
2043
+ Change-type: patch
2044
+ change-type: patch
2045
+ author: Thodoris Greasidis
2046
+ nested: []
2047
+ - subject: Replace Function and {} types
2048
+ hash: aee746ac2b3ab5239ec0118faf35e3a17250f0ef
2049
+ body: ""
2050
+ footer:
2051
+ Change-type: patch
2052
+ change-type: patch
2053
+ author: Thodoris Greasidis
2054
+ nested: []
2055
+ - subject: Change `export let` to `export const`
2056
+ hash: 6745b55b82b62b21a2259c574a76539f6ff1b1bf
2057
+ body: ""
2058
+ footer:
2059
+ Change-type: patch
2060
+ change-type: patch
2061
+ author: Thodoris Greasidis
2062
+ nested: []
2063
+ - subject: Update @balena/lint to 7.1.1
2064
+ hash: 9bccb01eb0273a5a386af220feeabdcb65d75b4c
2065
+ body: |
2066
+ Update @balena/lint from 6.1.1 to 7.1.1
2067
+ footer:
2068
+ Change-type: patch
2069
+ change-type: patch
2070
+ author: Thodoris Greasidis
2071
+ nested: []
2072
+ - subject: Update @balena/abstract-sql-to-typescript to 2.1.1
2073
+ hash: 5004a1626d4d58fc588b1e50a0e77708f73f3f0e
2074
+ body: |
2075
+ Update @balena/abstract-sql-to-typescript
2076
+ from 2.1.0 to 2.1.1
2077
+ footer:
2078
+ Change-type: patch
2079
+ change-type: patch
2080
+ author: Thodoris Greasidis
2081
+ nested: []
2082
+ version: 15.3.6
2083
+ title: ""
2084
+ date: 2023-08-31T09:10:30.231Z
2085
+ - commits:
2086
+ - subject: Fix failure on delete requests with invalid ID
2087
+ hash: 4749ed86c9a3858a2eb84c58d2a9581c93b91bec
2088
+ body: ""
2089
+ footer:
2090
+ Change-type: patch
2091
+ change-type: patch
2092
+ author: Otávio Jacobi
2093
+ nested: []
2094
+ version: 15.3.5
2095
+ title: ""
2096
+ date: 2023-08-30T14:29:41.408Z
2097
+ - commits:
2098
+ - subject: Fix skipped migrations on empty database schema
2099
+ hash: b34235542b82a7d347b49f79f26be036509afd00
2100
+ body: >
2101
+ On empty database schemas the `migrations` model is not executed.
2102
+
2103
+ Hence, every model migration that is executed before the `migrations` model
2104
+
2105
+ will not be tracked properly. This is an edge case for empty database schemas.
2106
+ footer:
2107
+ Change-type: patch
2108
+ change-type: patch
2109
+ Signed-off-by: Harald Fischer <harald@balena.io>
2110
+ signed-off-by: Harald Fischer <harald@balena.io>
2111
+ author: Harald Fischer
2112
+ nested: []
2113
+ version: 15.3.4
2114
+ title: ""
2115
+ date: 2023-08-29T15:30:10.063Z
2116
+ - commits:
2117
+ - subject: Change S3Handler signing config from private to protected
2118
+ hash: 6d7741dfe4117e937d0f4af9c6abb338beeffa89
2119
+ body: ""
2120
+ footer:
2121
+ Change-type: patch
2122
+ change-type: patch
2123
+ author: Otávio Jacobi
2124
+ nested: []
2125
+ version: 15.3.3
2126
+ title: ""
2127
+ date: 2023-08-29T13:06:53.643Z
2128
+ - commits:
2129
+ - subject: Fix webresource patch on not accessible/inexistent key
2130
+ hash: de01723cf88ec09b422578a5ca76437fe10fdabb
2131
+ body: ""
2132
+ footer:
2133
+ Change-type: patch
2134
+ change-type: patch
2135
+ author: Otávio Jacobi
2136
+ nested: []
2137
+ version: 15.3.2
2138
+ title: ""
2139
+ date: 2023-08-24T20:20:55.423Z
2140
+ - commits:
2141
+ - subject: "bin: Use async imports in the cli commands"
2142
+ hash: 2bf7de6c60589f0b33575b7ab6f4309011fc8062
2143
+ body: ""
2144
+ footer:
2145
+ Change-type: patch
2146
+ change-type: patch
2147
+ See: https://github.com/balena-io/pinejs/pull/682#discussion_r1304255389
2148
+ see: https://github.com/balena-io/pinejs/pull/682#discussion_r1304255389
2149
+ author: Thodoris Greasidis
2150
+ nested: []
2151
+ version: 15.3.1
2152
+ title: ""
2153
+ date: 2023-08-24T17:46:19.792Z
2154
+ - commits:
2155
+ - subject: Add support to WebResrouce type
2156
+ hash: 9d17553b52bd105211d6c2619ccf7eeabfe4da01
2157
+ body: ""
2158
+ footer:
2159
+ Change-type: minor
2160
+ change-type: minor
2161
+ author: Otávio Jacobi
2162
+ nested: []
2163
+ version: 15.3.0
2164
+ title: ""
2165
+ date: 2023-08-16T21:54:26.306Z
2166
+ - commits:
2167
+ - subject: Mark that `tx` is always passed to `POSTRUN-ERROR` hooks
2168
+ hash: 29982a40eddb816f25c61ae47b1e6a7433c2f583
2169
+ body: ""
2170
+ footer:
2171
+ Change-type: patch
2172
+ change-type: patch
2173
+ author: Pagan Gazzard
2174
+ nested: []
2175
+ version: 15.2.1
19
2176
  title: ""
20
- date: 2023-08-14T13:58:19.643Z
2177
+ date: 2023-08-14T15:07:28.239Z
21
2178
  - commits:
22
2179
  - subject: Return a response even when the request resolves to an HTTP error
23
2180
  hash: d1d68a068778a617d7b14b12a2657fb44511ee52