@clairejs/server 3.0.22 → 3.0.25

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 (57) hide show
  1. package/README.md +496 -491
  2. package/dist/common/constants.d.ts +1 -1
  3. package/dist/database/adapter/AbstractDatabaseAdapter.d.ts +19 -19
  4. package/dist/database/adapter/AbstractQuery.d.ts +52 -52
  5. package/dist/database/adapter/DefaultSqlDatabaseAdapter.d.ts +18 -18
  6. package/dist/database/adapter/IDatabaseProvider.d.ts +4 -4
  7. package/dist/database/adapter/IQuery.d.ts +75 -75
  8. package/dist/database/adapter/IQueryProvider.d.ts +9 -9
  9. package/dist/database/adapter/aggregators.d.ts +21 -21
  10. package/dist/database/adapter/providers.d.ts +8 -8
  11. package/dist/database/decorators.d.ts +2 -2
  12. package/dist/database/migrator/AbstractDatabaseMigrator.d.ts +4 -4
  13. package/dist/database/migrator/DefaultSqlDatabaseMigrator.d.ts +28 -28
  14. package/dist/database/transaction/ITransaction.d.ts +10 -10
  15. package/dist/database/transaction/ITransactionProvider.d.ts +4 -4
  16. package/dist/database/transaction/TransactionLink.d.ts +14 -14
  17. package/dist/database/transaction/TransactionObjectMetadata.d.ts +4 -4
  18. package/dist/database/transaction/TransactionState.d.ts +5 -5
  19. package/dist/database/util/transaction-provider.d.ts +1 -1
  20. package/dist/http/common/HttpRequest.d.ts +39 -39
  21. package/dist/http/common/HttpResponse.d.ts +25 -25
  22. package/dist/http/common/RequestOptions.d.ts +9 -9
  23. package/dist/http/common/ResponseValues.d.ts +10 -10
  24. package/dist/http/common/types.d.ts +1 -1
  25. package/dist/http/controller/AbstractHttpController.d.ts +12 -12
  26. package/dist/http/controller/AbstractHttpMiddleware.d.ts +5 -5
  27. package/dist/http/controller/AbstractHttpRequestHandler.d.ts +10 -10
  28. package/dist/http/controller/ControllerMetadata.d.ts +6 -6
  29. package/dist/http/controller/CrudHttpController.d.ts +57 -58
  30. package/dist/http/controller/DefaultHttpRequestHandler.d.ts +19 -19
  31. package/dist/http/controller/EndpointMetadata.d.ts +36 -36
  32. package/dist/http/controller/HttpEndpoint.d.ts +12 -12
  33. package/dist/http/controller/ModelRepository.d.ts +36 -36
  34. package/dist/http/controller/MountedEndpointInfo.d.ts +6 -6
  35. package/dist/http/decorators.d.ts +26 -26
  36. package/dist/http/security/AbstractAccessCondition.d.ts +7 -7
  37. package/dist/http/security/AbstractHttpAuthorizationProvider.d.ts +7 -7
  38. package/dist/http/security/IPrincipal.d.ts +3 -3
  39. package/dist/http/security/access-conditions/FilterModelFieldAccessCondition.d.ts +4 -4
  40. package/dist/http/security/access-conditions/OwnedResourceAccessCondition.d.ts +5 -5
  41. package/dist/index.d.ts +38 -38
  42. package/dist/index.js +1 -1
  43. package/dist/logging/FileLogMedium.d.ts +13 -13
  44. package/dist/service/AbstractService.d.ts +9 -9
  45. package/dist/socket/AbstractServerSocket.d.ts +36 -36
  46. package/dist/socket/AbstractServerSocketManager.d.ts +19 -19
  47. package/dist/socket/AwsSocketManager.d.ts +46 -46
  48. package/dist/socket/IServerSocket.d.ts +9 -9
  49. package/dist/socket/LocalSocketManager.d.ts +23 -23
  50. package/dist/socket/ServerSocket.d.ts +14 -14
  51. package/dist/system/AbstractFileUploadHandler.d.ts +6 -6
  52. package/dist/system/ClaireServer.d.ts +10 -10
  53. package/dist/system/ExpressWrapper.d.ts +17 -17
  54. package/dist/system/IRequestHandler.d.ts +5 -5
  55. package/dist/system/LambdaWrapper.d.ts +17 -17
  56. package/dist/system/ServerGlobalStore.d.ts +5 -5
  57. package/package.json +59 -59
package/README.md CHANGED
@@ -1,491 +1,496 @@
1
- ## Change Log
2
-
3
- #### 3.0.22:
4
-
5
- - fix timestamp field
6
-
7
- #### 3.0.19:
8
-
9
- - fix error throw in transactional
10
-
11
- #### 3.0.18:
12
-
13
- - fix not escape search value
14
- - fix accent & sensitive search in Mysql and Postgres
15
-
16
- #### 3.0.15:
17
-
18
- - require injection of database adapter in AbstractSerivce & AbstractHttpController
19
-
20
- #### 3.0.14:
21
-
22
- - add getById and getByIds to IQuery
23
-
24
- #### 3.0.12:
25
-
26
- - fix error return
27
-
28
- #### 3.0.10:
29
-
30
- - remove count query when getOne
31
-
32
- #### 3.0.8:
33
-
34
- - freeze table name in join clause
35
-
36
- #### 3.0.6:
37
-
38
- - fix index export
39
- - fix AbstractAccessCondition signature
40
-
41
- #### 3.0.5:
42
-
43
- - tested on Postgres & MySql
44
- - add join ability to IQuery, awesome!!
45
-
46
- #### 3.0.3: http method decorator return type check
47
-
48
- - add @ApiResponse decorator to store response body validator
49
- - add TypedPropertyDescriptor in HTTP method decorator to validate function return type (Promise<HttpResponse<any>>>)
50
-
51
- #### 3.0.2: improve http response
52
-
53
- - add binary response
54
-
55
- #### 3.0.0:
56
-
57
- - update claire core 3.0
58
- - controller function param decorators
59
- - ResponseBuilder
60
- - remove ops in getMany
61
-
62
- #### 2.3.13:
63
-
64
- - update raw query function signature
65
-
66
- #### 2.3.12:
67
-
68
- - fix & export CrudService
69
-
70
- #### 2.3.10:
71
-
72
- - Array & Object model field persist & parse
73
-
74
- #### 2.3.9:
75
-
76
- - @TextField will default to Sequelize.TEXT if length is not specified
77
-
78
- #### 2.3.6:
79
-
80
- - fix missing beforeCreate call when update nesting
81
-
82
- #### 2.3.1:
83
-
84
- - fix returning nested uris
85
-
86
- #### 2.3.0:
87
-
88
- - introduce CrudService
89
- - CrudHttpController support @HasMany
90
-
91
- #### 2.2.12:
92
-
93
- - fix isIntegral default
94
-
95
- #### 2.2.10:
96
-
97
- - update `CrudHttpController` Update and Delete to return `Partial<T>`
98
-
99
- #### 2.2.2:
100
-
101
- - fix `@CurrentUser` decorator
102
- - implement `@CurrentUser` decorator
103
-
104
- #### 2.2.0:
105
-
106
- - add `AbstractFileUploadHandler` and handle file upload in `CrudHttpController`
107
- - fix migration contraint remove order
108
-
109
- #### 2.1.20:
110
-
111
- - extends IPrincipal
112
-
113
- #### 2.1.19:
114
-
115
- - fix crud http controller not init database adapter
116
-
117
- #### 2.1.18:
118
-
119
- - downgrade webpack
120
-
121
- #### 2.1.16:
122
-
123
- - add pg-hstore
124
-
125
- #### 2.1.15:
126
-
127
- - add optional injection for socket manager
128
-
129
- #### 2.1.14:
130
-
131
- - AwsSocketManger needs always to be fed by JSON object
132
-
133
- #### 2.1.13:
134
-
135
- - correct json parsing when hanling aws socket message
136
-
137
- #### 2.1.11:
138
-
139
- - adjust getMany and getRecords to return Pick type based on projection
140
- - add getRecords for IQuery to return just the records
141
-
142
- #### 2.1.9:
143
-
144
- - fix CrudHttpController updateMany FilterField condition check
145
-
146
- #### 2.1.8:
147
-
148
- - fix server socket remove not delete its redis info
149
- - add socket created timestamp info
150
- - add get all alive sockets to remove stale sockets in server
151
-
152
- #### 2.1.5:
153
-
154
- - support model defualt value in db migrator & adapter
155
-
156
- #### 2.1.3:
157
-
158
- - add test for cascade delete
159
-
160
- #### 2.1.2:
161
-
162
- - update claire core
163
- - fix converting QueryCondition use "and" as default operator
164
-
165
- #### 2.1.1:
166
-
167
- - update claire core
168
- - update implementation of FileLogMedium
169
-
170
- #### 2.0.26:
171
-
172
- - parse client socket data
173
- - add more debug log
174
- - fix ExpressWrapper AWS GW socket http integration
175
-
176
- #### 2.0.17:
177
-
178
- - add AWS API GW socket request parser for express
179
-
180
- #### 2.0.16:
181
-
182
- - add log to http request handler
183
- - refactor to allow AwsSocketManager to be used with ExpressWrapper
184
-
185
- #### 2.0.14:
186
-
187
- - fix express socket unique id
188
-
189
- #### 2.0.13:
190
-
191
- - update error code from claire core
192
-
193
- #### 2.0.12:
194
-
195
- - export Get, Post, Put, Del decorators
196
-
197
- #### 2.0.11:
198
-
199
- - add log in http request handler
200
- - fix AbstractAccessCondition signature
201
-
202
- #### 2.0.9:
203
-
204
- - fix AccessCondition (to use injection)
205
- - fix ExpressWrapper & LambdaWrapper to resolve AbstractServerSocketManager
206
- - remove getMountedEndpointInfo from AbstractHttpRequestHandler, move to ServerGlobalStore
207
- - fix property assignment in isolated transactional object
208
- - add log for AwsSocketManager, fix connection problem to redis
209
-
210
- #### 2.0.1:
211
-
212
- - fix some import redundancies
213
-
214
- #### 2.0.0:
215
-
216
- - Upgrade with claire core 2.0.0
217
-
218
- #### 1.6.4:
219
-
220
- - Add pong socket response
221
-
222
- #### 1.6.3:
223
-
224
- - AbstractDatabaseMigrator: supply migration directory to migrate and rollback functions
225
- - fix migrator cli path
226
-
227
- #### 1.6.1:
228
-
229
- - AbstractPrincipal -> IPrincipal (for serialization)
230
-
231
- #### 1.5.51:
232
-
233
- - fix AwsSocketManager not release redis connection, add more log
234
- - fix ExpressWrapper unhandled socket promise exception
235
-
236
- #### 1.5.39 (Breaking change):
237
-
238
- - fix properties null check
239
- - socket multiplex
240
-
241
- #### 1.5.28:
242
-
243
- - fix server socket authId => authInfo
244
-
245
- #### 1.5.26:
246
-
247
- - add OwnedResourceAccessCondition
248
-
249
- #### 1.5.24:
250
-
251
- - replace HttpRequest.getPrincipalId by HttpRequest.getAuthInfo
252
-
253
- #### 1.5.23:
254
-
255
- - fix ServerSocket
256
- - fix not remove disconnect socket from socket manager
257
-
258
- #### 1.5.15 (Breaking change):
259
-
260
- - remove getValue / setValue in HttpRequest
261
- - add setPrincipalId / getPrincipalId in HttpRequest
262
- - adjust Socket Server
263
-
264
- #### 1.5.12:
265
-
266
- - handle socket in lambda wrapper
267
-
268
- #### 1.5.11:
269
-
270
- - fix ServerSocket
271
-
272
- #### 1.5.6:
273
-
274
- - update claire core
275
- - fix ServerSocket
276
-
277
- #### 1.5.4:
278
-
279
- - run middleware before socket authentication
280
-
281
- #### 1.5.2:
282
-
283
- - add websocket support in ExpressWrapper
284
-
285
- #### 1.5.1:
286
-
287
- - update claire core
288
-
289
- #### 1.5.0:
290
-
291
- - revert back to 1.3.38
292
-
293
- #### 1.3.38:
294
-
295
- - export QueryCondition
296
-
297
- #### 1.3.37:
298
-
299
- - return error name instead of TRANSACTION_ERROR
300
- - update claire core
301
-
302
- #### 1.3.36:
303
-
304
- - fix missing down script of unique constraint in database migrator
305
- - add rollback to database migrator
306
-
307
- #### 1.3.34:
308
-
309
- - export AbstractDatabaseMigrator
310
- - fix DefaultSqlDatabaseMigrator not generate new unique constraints for new field
311
-
312
- #### 1.3.32:
313
-
314
- - fix DefaultSqlDatabaseMigrator missing foreign constraint check when add/remove fields
315
-
316
- #### 1.3.31:
317
-
318
- - update server modify
319
-
320
- #### 1.3.30:
321
-
322
- - adjust body raw parser in ExpressWrapper
323
-
324
- #### 1.3.28:
325
-
326
- - fix not supply HttpResponse in Http handler
327
-
328
- #### 1.3.27:
329
-
330
- - add body parser raw middleware
331
-
332
- #### 1.3.26:
333
-
334
- - modify express wrapper send result
335
-
336
- #### 1.3.25:
337
-
338
- - add request options mapper in LambdaWrapper
339
-
340
- #### 1.3.24:
341
-
342
- - add LambdaWrapper
343
-
344
- #### 1.3.23:
345
-
346
- - add ExpressWrapper
347
-
348
- #### 1.3.22:
349
-
350
- - merge accessConditions in CrudHttpController
351
-
352
- #### 1.3.21:
353
-
354
- - DefaultSqlDatabaseMigrator will no longer generate remove table query.
355
-
356
- #### 1.3.20:
357
-
358
- - add permissionGroup and displayName metadata for EndpointMetadata
359
-
360
- #### 1.3.16:
361
-
362
- - update claire core
363
- - allow empty records for CrudHttpController createMany
364
-
365
- #### 1.3.15:
366
-
367
- - fix incorrect parse Http params
368
-
369
- #### 1.3.13:
370
-
371
- - update claire core
372
-
373
- #### 1.3.12:
374
-
375
- - re-introduce terser plugin
376
- - update claire core
377
-
378
- #### 1.3.10:
379
-
380
- - emit source map
381
-
382
- #### 1.3.9:
383
-
384
- - update claire core
385
-
386
- #### 1.3.8:
387
-
388
- - fix missing HttpResponse export
389
-
390
- #### 1.3.7:
391
-
392
- - upgrade Clairejs/core
393
-
394
- #### 1.3.6:
395
-
396
- - upgrade Clairejs/core
397
-
398
- - interpret @ServerTime and @Timestamp
399
-
400
- #### 1.3.2 (Breaking change):
401
-
402
- - re-introduce http response to controller
403
-
404
- #### 1.2.6:
405
-
406
- - add unaccent operators (uSUBSTR, iuSUBSTR)
407
-
408
- #### 1.2.5:
409
-
410
- - allow multiple calls to boot
411
-
412
- #### 1.2.4:
413
-
414
- - fix http request handler parse get and delete request body
415
-
416
- #### 1.2.2:
417
-
418
- - split database migrator
419
- - rework of ClaireServer to be request handler
420
- - remove dependency of expressjs and its middleware
421
-
422
- #### 1.1.9:
423
-
424
- - revert 1.1.8
425
-
426
- #### 1.1.8:
427
-
428
- - init app when getExpressApp
429
-
430
- #### 1.1.7:
431
-
432
- - add pg-hstore as dependency
433
-
434
- #### 1.1.6:
435
-
436
- - fix autoCommit in @Transactional
437
-
438
- #### 1.1.5:
439
-
440
- - use AbstractModel id field for primary key query
441
-
442
- #### 1.1.3:
443
-
444
- - fix returning ids for updateMany and deleteMany
445
-
446
- #### 1.1.2:
447
-
448
- - fix not auto generate migration when changing cascade of @FK
449
- - set build target es6
450
-
451
- #### 1.1.0:
452
-
453
- - fix foreign key cascase delete
454
- - fix auto commit of crud http controller
455
- - return array of ids when updateMany or deleteMany
456
-
457
- #### 1.0.22:
458
-
459
- - CrudHttpController exposes static validators
460
-
461
- #### 1.0.21:
462
-
463
- - update Clairejs Core
464
-
465
- #### 1.0.20:
466
-
467
- - update CrudHttpController for query change
468
-
469
- #### 1.0.17:
470
-
471
- - perform json parsing for fields of request params and queries
472
-
473
- #### 1.0.15:
474
-
475
- - fix @Searchable in CrudHttpController
476
-
477
- #### 1.0.13:
478
-
479
- - add iSUBSTR operator to search for case insensitive string
480
-
481
- #### 1.0.9:
482
-
483
- - fix CrudHttpController endpoint naming
484
-
485
- #### 1.0.8:
486
-
487
- - fix DefaultHttpRequestHandler upgrade Http
488
-
489
- #### 1.0.6:
490
-
491
- - fix DefaultHttpRequestHandler cannot return request body when no validator is provided
1
+ ## Change Log
2
+
3
+ #### 3.0.25:
4
+
5
+ - add null search in vector
6
+ - support array search for isSymbol field
7
+
8
+ #### 3.0.22:
9
+
10
+ - fix timestamp field
11
+
12
+ #### 3.0.19:
13
+
14
+ - fix error throw in transactional
15
+
16
+ #### 3.0.18:
17
+
18
+ - fix not escape search value
19
+ - fix accent & sensitive search in Mysql and Postgres
20
+
21
+ #### 3.0.15:
22
+
23
+ - require injection of database adapter in AbstractSerivce & AbstractHttpController
24
+
25
+ #### 3.0.14:
26
+
27
+ - add getById and getByIds to IQuery
28
+
29
+ #### 3.0.12:
30
+
31
+ - fix error return
32
+
33
+ #### 3.0.10:
34
+
35
+ - remove count query when getOne
36
+
37
+ #### 3.0.8:
38
+
39
+ - freeze table name in join clause
40
+
41
+ #### 3.0.6:
42
+
43
+ - fix index export
44
+ - fix AbstractAccessCondition signature
45
+
46
+ #### 3.0.5:
47
+
48
+ - tested on Postgres & MySql
49
+ - add join ability to IQuery, awesome!!
50
+
51
+ #### 3.0.3: http method decorator return type check
52
+
53
+ - add @ApiResponse decorator to store response body validator
54
+ - add TypedPropertyDescriptor in HTTP method decorator to validate function return type (Promise<HttpResponse<any>>>)
55
+
56
+ #### 3.0.2: improve http response
57
+
58
+ - add binary response
59
+
60
+ #### 3.0.0:
61
+
62
+ - update claire core 3.0
63
+ - controller function param decorators
64
+ - ResponseBuilder
65
+ - remove ops in getMany
66
+
67
+ #### 2.3.13:
68
+
69
+ - update raw query function signature
70
+
71
+ #### 2.3.12:
72
+
73
+ - fix & export CrudService
74
+
75
+ #### 2.3.10:
76
+
77
+ - Array & Object model field persist & parse
78
+
79
+ #### 2.3.9:
80
+
81
+ - @TextField will default to Sequelize.TEXT if length is not specified
82
+
83
+ #### 2.3.6:
84
+
85
+ - fix missing beforeCreate call when update nesting
86
+
87
+ #### 2.3.1:
88
+
89
+ - fix returning nested uris
90
+
91
+ #### 2.3.0:
92
+
93
+ - introduce CrudService
94
+ - CrudHttpController support @HasMany
95
+
96
+ #### 2.2.12:
97
+
98
+ - fix isIntegral default
99
+
100
+ #### 2.2.10:
101
+
102
+ - update `CrudHttpController` Update and Delete to return `Partial<T>`
103
+
104
+ #### 2.2.2:
105
+
106
+ - fix `@CurrentUser` decorator
107
+ - implement `@CurrentUser` decorator
108
+
109
+ #### 2.2.0:
110
+
111
+ - add `AbstractFileUploadHandler` and handle file upload in `CrudHttpController`
112
+ - fix migration contraint remove order
113
+
114
+ #### 2.1.20:
115
+
116
+ - extends IPrincipal
117
+
118
+ #### 2.1.19:
119
+
120
+ - fix crud http controller not init database adapter
121
+
122
+ #### 2.1.18:
123
+
124
+ - downgrade webpack
125
+
126
+ #### 2.1.16:
127
+
128
+ - add pg-hstore
129
+
130
+ #### 2.1.15:
131
+
132
+ - add optional injection for socket manager
133
+
134
+ #### 2.1.14:
135
+
136
+ - AwsSocketManger needs always to be fed by JSON object
137
+
138
+ #### 2.1.13:
139
+
140
+ - correct json parsing when hanling aws socket message
141
+
142
+ #### 2.1.11:
143
+
144
+ - adjust getMany and getRecords to return Pick type based on projection
145
+ - add getRecords for IQuery to return just the records
146
+
147
+ #### 2.1.9:
148
+
149
+ - fix CrudHttpController updateMany FilterField condition check
150
+
151
+ #### 2.1.8:
152
+
153
+ - fix server socket remove not delete its redis info
154
+ - add socket created timestamp info
155
+ - add get all alive sockets to remove stale sockets in server
156
+
157
+ #### 2.1.5:
158
+
159
+ - support model defualt value in db migrator & adapter
160
+
161
+ #### 2.1.3:
162
+
163
+ - add test for cascade delete
164
+
165
+ #### 2.1.2:
166
+
167
+ - update claire core
168
+ - fix converting QueryCondition use "and" as default operator
169
+
170
+ #### 2.1.1:
171
+
172
+ - update claire core
173
+ - update implementation of FileLogMedium
174
+
175
+ #### 2.0.26:
176
+
177
+ - parse client socket data
178
+ - add more debug log
179
+ - fix ExpressWrapper AWS GW socket http integration
180
+
181
+ #### 2.0.17:
182
+
183
+ - add AWS API GW socket request parser for express
184
+
185
+ #### 2.0.16:
186
+
187
+ - add log to http request handler
188
+ - refactor to allow AwsSocketManager to be used with ExpressWrapper
189
+
190
+ #### 2.0.14:
191
+
192
+ - fix express socket unique id
193
+
194
+ #### 2.0.13:
195
+
196
+ - update error code from claire core
197
+
198
+ #### 2.0.12:
199
+
200
+ - export Get, Post, Put, Del decorators
201
+
202
+ #### 2.0.11:
203
+
204
+ - add log in http request handler
205
+ - fix AbstractAccessCondition signature
206
+
207
+ #### 2.0.9:
208
+
209
+ - fix AccessCondition (to use injection)
210
+ - fix ExpressWrapper & LambdaWrapper to resolve AbstractServerSocketManager
211
+ - remove getMountedEndpointInfo from AbstractHttpRequestHandler, move to ServerGlobalStore
212
+ - fix property assignment in isolated transactional object
213
+ - add log for AwsSocketManager, fix connection problem to redis
214
+
215
+ #### 2.0.1:
216
+
217
+ - fix some import redundancies
218
+
219
+ #### 2.0.0:
220
+
221
+ - Upgrade with claire core 2.0.0
222
+
223
+ #### 1.6.4:
224
+
225
+ - Add pong socket response
226
+
227
+ #### 1.6.3:
228
+
229
+ - AbstractDatabaseMigrator: supply migration directory to migrate and rollback functions
230
+ - fix migrator cli path
231
+
232
+ #### 1.6.1:
233
+
234
+ - AbstractPrincipal -> IPrincipal (for serialization)
235
+
236
+ #### 1.5.51:
237
+
238
+ - fix AwsSocketManager not release redis connection, add more log
239
+ - fix ExpressWrapper unhandled socket promise exception
240
+
241
+ #### 1.5.39 (Breaking change):
242
+
243
+ - fix properties null check
244
+ - socket multiplex
245
+
246
+ #### 1.5.28:
247
+
248
+ - fix server socket authId => authInfo
249
+
250
+ #### 1.5.26:
251
+
252
+ - add OwnedResourceAccessCondition
253
+
254
+ #### 1.5.24:
255
+
256
+ - replace HttpRequest.getPrincipalId by HttpRequest.getAuthInfo
257
+
258
+ #### 1.5.23:
259
+
260
+ - fix ServerSocket
261
+ - fix not remove disconnect socket from socket manager
262
+
263
+ #### 1.5.15 (Breaking change):
264
+
265
+ - remove getValue / setValue in HttpRequest
266
+ - add setPrincipalId / getPrincipalId in HttpRequest
267
+ - adjust Socket Server
268
+
269
+ #### 1.5.12:
270
+
271
+ - handle socket in lambda wrapper
272
+
273
+ #### 1.5.11:
274
+
275
+ - fix ServerSocket
276
+
277
+ #### 1.5.6:
278
+
279
+ - update claire core
280
+ - fix ServerSocket
281
+
282
+ #### 1.5.4:
283
+
284
+ - run middleware before socket authentication
285
+
286
+ #### 1.5.2:
287
+
288
+ - add websocket support in ExpressWrapper
289
+
290
+ #### 1.5.1:
291
+
292
+ - update claire core
293
+
294
+ #### 1.5.0:
295
+
296
+ - revert back to 1.3.38
297
+
298
+ #### 1.3.38:
299
+
300
+ - export QueryCondition
301
+
302
+ #### 1.3.37:
303
+
304
+ - return error name instead of TRANSACTION_ERROR
305
+ - update claire core
306
+
307
+ #### 1.3.36:
308
+
309
+ - fix missing down script of unique constraint in database migrator
310
+ - add rollback to database migrator
311
+
312
+ #### 1.3.34:
313
+
314
+ - export AbstractDatabaseMigrator
315
+ - fix DefaultSqlDatabaseMigrator not generate new unique constraints for new field
316
+
317
+ #### 1.3.32:
318
+
319
+ - fix DefaultSqlDatabaseMigrator missing foreign constraint check when add/remove fields
320
+
321
+ #### 1.3.31:
322
+
323
+ - update server modify
324
+
325
+ #### 1.3.30:
326
+
327
+ - adjust body raw parser in ExpressWrapper
328
+
329
+ #### 1.3.28:
330
+
331
+ - fix not supply HttpResponse in Http handler
332
+
333
+ #### 1.3.27:
334
+
335
+ - add body parser raw middleware
336
+
337
+ #### 1.3.26:
338
+
339
+ - modify express wrapper send result
340
+
341
+ #### 1.3.25:
342
+
343
+ - add request options mapper in LambdaWrapper
344
+
345
+ #### 1.3.24:
346
+
347
+ - add LambdaWrapper
348
+
349
+ #### 1.3.23:
350
+
351
+ - add ExpressWrapper
352
+
353
+ #### 1.3.22:
354
+
355
+ - merge accessConditions in CrudHttpController
356
+
357
+ #### 1.3.21:
358
+
359
+ - DefaultSqlDatabaseMigrator will no longer generate remove table query.
360
+
361
+ #### 1.3.20:
362
+
363
+ - add permissionGroup and displayName metadata for EndpointMetadata
364
+
365
+ #### 1.3.16:
366
+
367
+ - update claire core
368
+ - allow empty records for CrudHttpController createMany
369
+
370
+ #### 1.3.15:
371
+
372
+ - fix incorrect parse Http params
373
+
374
+ #### 1.3.13:
375
+
376
+ - update claire core
377
+
378
+ #### 1.3.12:
379
+
380
+ - re-introduce terser plugin
381
+ - update claire core
382
+
383
+ #### 1.3.10:
384
+
385
+ - emit source map
386
+
387
+ #### 1.3.9:
388
+
389
+ - update claire core
390
+
391
+ #### 1.3.8:
392
+
393
+ - fix missing HttpResponse export
394
+
395
+ #### 1.3.7:
396
+
397
+ - upgrade Clairejs/core
398
+
399
+ #### 1.3.6:
400
+
401
+ - upgrade Clairejs/core
402
+
403
+ - interpret @ServerTime and @Timestamp
404
+
405
+ #### 1.3.2 (Breaking change):
406
+
407
+ - re-introduce http response to controller
408
+
409
+ #### 1.2.6:
410
+
411
+ - add unaccent operators (uSUBSTR, iuSUBSTR)
412
+
413
+ #### 1.2.5:
414
+
415
+ - allow multiple calls to boot
416
+
417
+ #### 1.2.4:
418
+
419
+ - fix http request handler parse get and delete request body
420
+
421
+ #### 1.2.2:
422
+
423
+ - split database migrator
424
+ - rework of ClaireServer to be request handler
425
+ - remove dependency of expressjs and its middleware
426
+
427
+ #### 1.1.9:
428
+
429
+ - revert 1.1.8
430
+
431
+ #### 1.1.8:
432
+
433
+ - init app when getExpressApp
434
+
435
+ #### 1.1.7:
436
+
437
+ - add pg-hstore as dependency
438
+
439
+ #### 1.1.6:
440
+
441
+ - fix autoCommit in @Transactional
442
+
443
+ #### 1.1.5:
444
+
445
+ - use AbstractModel id field for primary key query
446
+
447
+ #### 1.1.3:
448
+
449
+ - fix returning ids for updateMany and deleteMany
450
+
451
+ #### 1.1.2:
452
+
453
+ - fix not auto generate migration when changing cascade of @FK
454
+ - set build target es6
455
+
456
+ #### 1.1.0:
457
+
458
+ - fix foreign key cascase delete
459
+ - fix auto commit of crud http controller
460
+ - return array of ids when updateMany or deleteMany
461
+
462
+ #### 1.0.22:
463
+
464
+ - CrudHttpController exposes static validators
465
+
466
+ #### 1.0.21:
467
+
468
+ - update Clairejs Core
469
+
470
+ #### 1.0.20:
471
+
472
+ - update CrudHttpController for query change
473
+
474
+ #### 1.0.17:
475
+
476
+ - perform json parsing for fields of request params and queries
477
+
478
+ #### 1.0.15:
479
+
480
+ - fix @Searchable in CrudHttpController
481
+
482
+ #### 1.0.13:
483
+
484
+ - add iSUBSTR operator to search for case insensitive string
485
+
486
+ #### 1.0.9:
487
+
488
+ - fix CrudHttpController endpoint naming
489
+
490
+ #### 1.0.8:
491
+
492
+ - fix DefaultHttpRequestHandler upgrade Http
493
+
494
+ #### 1.0.6:
495
+
496
+ - fix DefaultHttpRequestHandler cannot return request body when no validator is provided