forked from kamyar1979/rest-catalyst
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
745 lines (480 loc) · 10.8 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
CHANGES
=======
* fix: Form Data for async invoker fixed
* fix: Form Data parameters fix
* fix: Switch to DataClass from NamedTuple for generic problems
* refactor: Fix Generic Typing for invoker
* fix: Invoker raw response fix for registered content types
* fix: Empty payload fix
* feat: Invoker can return raw (non-deserialized) response
* feat: Support Tuple within DataClass for dict\_to\_object
* fix: Bug in async invoker with custom swagger file
1.17.2
------
* feat: Add inflection, fix security
1.17.1
------
* feat: Shapely types support for serialization
1.17.0
------
* feat: Add security features to invoker
* feat: Retry On Failure added for non-async code
1.16.13
-------
* feat: Read swagger base url scheme
1.16.12
-------
* feat: Add timeout capability to service invoker
1.16.11
-------
* fix: Typing problem in Generic Named Tuples fixed in favor of Python 3.7 and PyCharm fixtures
1.16.10
-------
* fix: UUID to hex configurable
1.16.9
------
* feat: Support UUID in DTO types
1.16.8
------
* fix: Change swagger cache name
1.16.7
------
* fix: When use\_cache is false, do not write to cache, +verbosity
1.16.6
------
* fix: Phone number regular expression pattern fixed
1.16.5
------
* feat: Add Persian/Arabic numbers to regex
1.16.4
------
* feat: Generic phone number regex pattern added
* feat: Add more RegEx patterns. Fix Tpying
1.16.3
------
* core: Make logs rich for cache
1.16.2
------
* fix: Add requirement s for signaling
1.16.1
------
* feat: Add auto-unregister capability to signals
1.16.0
------
* feat: Add Sql-Alchemy signaling
1.15.6
------
* fix: Remove debug log for non-async alien call
1.15.5
------
* fix: odata type fix. Revert alien call log to debug
1.15.4
------
* fix: Workers do not have app.name
1.15.3
------
* refactor: More logs: debug->info
1.15.2
------
* feat: use\_cache, and logging for alien\_call
1.15.1
------
* refactor: publish now uses keyword arguments for headers
1.15.0
------
* feat: Add clear\_cache
1.14.13
-------
* fix: MessagePack deserialization for dict was neglected!
1.14.12
-------
* fix: Delete cache non-async
1.14.11
-------
* fix: Cache initialization test fixture
1.14.10
-------
* fix: umsgpack requirement fixed
1.14.9
------
* fix: Cache invalidation changed for our applications
1.14.8
------
* feat: Invalidate cache as per resource name and slug
1.14.7
------
* feat: Cache items can now be deleted
1.14.6
------
* fix: MessagePack binary encoding fixed for cache
1.14.5
------
* fix: get\_current\_time not dependent to app
1.14.4
------
* fix: Duration must be int
1.14.3
------
* fix: Cache initialized fixed
1.14.2
------
* feat: Cache can be disabled
1.14.1
------
* fix: DateTime parsing fixture
1.14.0
------
* fix: Minor fixture in cache
* fix: Geometry type and Persian Date fixed
* feat: Complete cache system
* feat: add alien service parameter caching
1.13.15
-------
* fix: Enum type serialization fix
* refactor: Just changelog
* feat: Revise service invoker for swagger integration
* feat: Embed cache, timeout and retry into swagger invoker
* feat: Cache near complete
* feat: Prepare to support cache within inter-service invokation
1.13.14
-------
* fix: use dict\_to\_object for DTO feeding
* fix: Aysnc alien call fix for form-data when there is no form data
1.13.13
-------
* feat: ApiError now supports severity
1.13.12
-------
* feat: Add form data capability for swagger call
1.13.11
-------
* feat: Capability of parsing dict
* feat: broker publish now can get headers
1.13.9
------
* fix: date/time json serialization for timezone
1.13.8
------
* feat: Add timezone and calendar features for serialization flags
1.13.7
------
* fix: First time pooling fixed
1.13.6
------
1.13.5
------
* fix: Check if connection pool is empty
* refactor: Remove unneeded import
1.13.4
------
* fix: default values for pool parameters
* feat: Broker pool recycle
1.13.3
------
* fix: Broker channel close
1.13.2
------
1.13.1
------
* feat: Add changelog
* fix: Revise broker connection pool
1.13.0
------
* Update .gitlab-ci.yml
* Update .gitlab-ci.yml
* Update .gitlab-ci.yml
* feat: Add broker publish support
1.12.3
------
* fix: Return error for alien\_call
* fix: Locale and Accept-Language fixture
1.12.2
------
* Update .gitlab-ci.yml
* Update .gitlab-ci.yml
* Update .gitlab-ci.yml
* Update .gitlab-ci.yml
1.12.1
------
* Update .gitlab-ci.yml
* fix: Check payload type fix
* Add new file
* Update .gitlab-ci.yml
* Update .gitlab-ci.yml
* Update .gitlab-ci.yml
* feat: Automatically convert payload to dict to inter-service operations
* Update .gitlab-ci.yml
* Update .gitlab-ci.yml
* feat: Add SqlAlchemy hybrid properties support to create\_mapping
1.12.0
------
* fix: Service invoker does not try to convert objects to dict if status code is not 200
1.11.6
------
1.11.5
------
* fix: Register ApiError but no other errors in production mode
* fix: Flask\_Env instead of Env
1.11.4
------
1.11.3
------
* fix: dict\_to\_object revised for parse\_value
1.11.2
------
* feat: Add locale and format to service invoker
1.11.1
------
* fix: Error handling omitted in development mode
1.11.0
------
* feat: Add typed result to invoker. Fix Odata param
1.10.2
------
* fix: Raise error when swagger operation not found
1.10.1
------
* fix: Revert teardown
* fix: Rollback transaction in case of request teardown
1.10.0
------
* feat: Type Handler added for Shapely types
1.9.7
-----
* fix: Geometry types fixed
1.9.6
-----
* fix: Deserializers imported by default
1.9.5
-----
* fix: Error handling revised. Session rollback automatically
1.9.4
-----
* fix: Non optional UUID fixed
1.9.3
-----
* fix: Fix Optional type in DTO input
1.9.2
-----
* fix: TimeZone bug workaround
* fix: Patched TimeZone bug in Khayyam workaround
* refactor: Ignore timezone info due to Khayyam bug
1.9.1
-----
* fix: raw\_serialize bug. to\_dict bug
* fix: SerializationFlags fixed. feat: saw\_serialize added
1.9.0
-----
* feat: Add auth token for service invocation
1.8.17
------
* fix: Some fixture in serialization depth
* feat: Depth can be added to serialize method
1.8.16
------
* fix: Another depth fix
* fix: to\_dict depth bug removed (previous reease feature)
1.8.15
------
* feat: Converting object to dictionary function to get depth to prevent max recursion error
1.8.14
------
* feat: Header items automatically converted to string if not
1.8.13
------
* fix: Header parameters in service invoker must omit x- and change casing automatically
1.8.12
------
* feat: Type Handler for Python enum added
1.8.11
------
* chore: add numpy for shapely speedups
1.8.10
------
* fix: requirements fix
1.8.9
-----
* fix: pyyaml requirement added for swagger
1.8.8
-----
* fix: Error handling added
1.8.7
-----
* fix: payload serialized twice for invoking foreign services
1.8.6
-----
* fix: Database error catch. Minot fix in NTP
1.8.5
-----
* fix: SSL verification disabled for read swagger
1.8.4
-----
* feat: Add error checking to inter-service communication
1.8.3
-----
* fix: parse\_value for date\_time
1.8.2
-----
* fix: bug in TypeVar
1.8.1
-----
* fix: Type hint
1.8.0
-----
* Changelog
* Update .gitlab-ci.yml
* feat: Inter-service communications added
* Update setup.cfg
* Update .gitlab-ci.yml
* Update .gitlab-ci.yml
* Update .gitlab-ci.yml
* changelog updated
1.7.12
------
* fix: revert deserialization
1.7.11
------
* fix: DTO bug when getting data from dispatcher
* changelog added
1.7.10
------
* fix: row\_number added to options in OData queries
* changelog
* fix: NTP service configuration
1.7.8
-----
* changelog
* fix: get\_current\_time now can get config
* Chnagelog
1.7.7
-----
* feat: add function for converting dictionary to data-class object
1.7.6
-----
* Change deserializer input type to AnYStr
1.7.5
-----
* chore: get\_by\_slug now can get query options
1.7.4
-----
* fix: Change serializer handler function names (they were duplicate)
1.7.3
-----
* fix: Omit some directories in handler walking
* feat: exclude directories added due to better performance
1.7.2
-----
* fix: Minor fix in header parameters in dispatch
* fix: version change
1.7.1
-----
* fix: to not create mapping for lists
1.7.0
-----
* feat: add uuid tracking code. add data-class validation
1.6.1
-----
* fix: Add extra fields when input is named tuple in model mapper
* fix: pbr setup file fixed
* chore: Add pbr files
1.6.0
-----
* refactor: change versioning to pbr
1.5.3
-----
* fix: Named tuple mapping fixed for relationships
1.5.2
-----
* fix: non-scoped session does not close by context manager
1.5.1
-----
* feat: Baked query features added
1.4.3
-----
* feat: Add UUID functions to util
1.4.2
-----
* add version
* fix: minor typing bug
* fix: add required import
1.4.1
-----
* fix: Fix geometry decoding from geoalchemy to DTO
1.4.0
-----
* feat: Add alias for better OData query genration
1.2.1
-----
* fix: Bug in validate function
1.2.0
-----
* fix: Use alias for joins so that duplicate relations to a single tables does not raise error
1.1.9
-----
* fix: Do not raise error if some property is None ins create\_mapping
1.1.8
-----
* Add requirements
1.1.7
-----
* fix: Minor type hint fixture
1.1.6
-----
* fix: Immutability support for to\_dict
1.1.4
-----
* fix: Latest commit had bugs: exclude now works fine
1.1.3
-----
* fix: Exclude fields even if they are relationship fields
1.1.2
-----
* feat: Registering serializers now available. HTML serializer added
1.0.8
-----
* fix: Time fields must not apply timezone info. Validate function now accepts allow\_blank
1.0.7
-----
* fix: Session builder typing fix
1.0.6
-----
* fix: Change Set types to Tuple for immutability
1.0.5
-----
* fix: bug when string item is not provided
1.0.4
-----
* feat: Add count\_only feature to OData adapter
1.0.3
-----
* Change version
* Add array operators to OData adapter
1.0.2
-----
* fix: Typing fault in create\_mapping
1.0.1
-----
* fix: Version gets string
* change version
* fix: tuple in model mapper
1.0.0
-----
* fix: DTO field type can be (optional) enum. OData Adapter typing fixed
* fix: typing.Tuple fixture for serialization
* feat: Add support for typing.Tuple in serialization Add more type hints for better IDE experience
* chore: Add requirements.txt
* fix: Union/Optional type not fully supported with no exception. Some minor lint and make the code warning free
* fix: type handlers issue feat: add generic constrains support for type handlers
* Version change
* feat: slug name can be changed
* fix: Version changed
* chore: Better typing. Inline documentations added
* fix: Add import for handler registration
* fix: Simplify and fix distribution
* fix: Extra types in validation must not raise errors!
* Remove corporate from README
* Restructure the project and fix dependency problems
* Trying to make a standard Python package
* Add dispatch.md
* Update README.md
* Initial commit