-
Notifications
You must be signed in to change notification settings - Fork 739
/
CHANGELOG.json
1162 lines (1162 loc) · 36.7 KB
/
CHANGELOG.json
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
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "@autorest/modelerfour",
"entries": [
{
"version": "4.27.0",
"tag": "@autorest/modelerfour_v4.27.0",
"date": "Thu, 16 Nov 2023 16:00:04 GMT",
"comments": {
"minor": [
{
"comment": "Upgrade dependencies"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.19.3` to `~4.20.0`"
},
{
"comment": "Updating dependency \"@autorest/extension-base\" from `~3.5.2` to `~3.6.0`"
},
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.5.3` to `~0.6.0`"
},
{
"comment": "Updating dependency \"@azure-tools/codegen\" from `~2.9.2` to `~2.10.0`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.7.1` to `~4.8.0`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.5.0` to `~3.6.0`"
}
]
}
},
{
"version": "4.26.2",
"tag": "@autorest/modelerfour_v4.26.2",
"date": "Fri, 26 May 2023 14:12:36 GMT",
"comments": {
"patch": [
{
"comment": "Map `rfc7231` to `rfc1123` for date-time formats"
},
{
"comment": "Bypass autocorrect to type: object in some cases"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/extension-base\" from `~3.5.1` to `~3.5.2`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.4.1` to `~3.5.0`"
}
]
}
},
{
"version": "4.26.1",
"tag": "@autorest/modelerfour_v4.26.1",
"date": "Thu, 13 Apr 2023 04:20:09 GMT",
"comments": {
"patch": [
{
"comment": "Fix issue with multipart request body could cause circular reference"
}
]
}
},
{
"version": "4.26.0",
"tag": "@autorest/modelerfour_v4.26.0",
"date": "Wed, 07 Dec 2022 22:24:34 GMT",
"comments": {
"minor": [
{
"comment": "Support final-state-schema lro option"
}
],
"patch": [
{
"comment": "Update dependencies"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.19.2` to `~4.19.3`"
},
{
"comment": "Updating dependency \"@autorest/extension-base\" from `~3.5.0` to `~3.5.1`"
},
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.5.2` to `~0.5.3`"
},
{
"comment": "Updating dependency \"@azure-tools/codegen\" from `~2.9.1` to `~2.9.2`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.7.0` to `~4.7.1`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.4.0` to `~3.4.1`"
}
]
}
},
{
"version": "4.25.0",
"tag": "@autorest/modelerfour_v4.25.0",
"date": "Thu, 03 Nov 2022 18:44:18 GMT",
"comments": {
"minor": [
{
"comment": "Add support for specifying `api-version` parameter in the server variables"
}
]
}
},
{
"version": "4.24.3",
"tag": "@autorest/modelerfour_v4.24.3",
"date": "Thu, 22 Sep 2022 15:51:02 GMT",
"comments": {
"patch": [
{
"comment": "Fix duplicate $host when using {nextLink} param"
}
]
}
},
{
"version": "4.24.2",
"tag": "@autorest/modelerfour_v4.24.2",
"date": "Fri, 12 Aug 2022 19:53:22 GMT",
"comments": {
"patch": [
{
"comment": "Bump @autorest/codemodel with missing `ArmIdSchema` from yaml schema"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.19.1` to `~4.19.2`"
}
]
}
},
{
"version": "4.24.1",
"tag": "@autorest/modelerfour_v4.24.1",
"date": "Mon, 08 Aug 2022 16:48:55 GMT",
"comments": {
"patch": [
{
"comment": "Fix `format: arm-id` wasn't doing anything"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.19.0` to `~4.19.1`"
}
]
}
},
{
"version": "4.24.0",
"tag": "@autorest/modelerfour_v4.24.0",
"date": "Tue, 19 Jul 2022 15:09:55 GMT",
"comments": {
"minor": [
{
"comment": "Added support for `format:arm-id` creating a ]`ArmIdSchema` to represent Azure Resource Manager Resource Identifiers"
},
{
"comment": "Added: Include `externalDocs` information in codemodel"
},
{
"comment": "Treat `format: uri` as `format: url`"
},
{
"comment": "Errors emitted in 'modelerfour' step will have sourcemap."
},
{
"comment": "Improved 'name is empty' error to contain more information."
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.18.2` to `~4.19.0`"
},
{
"comment": "Updating dependency \"@autorest/extension-base\" from `~3.4.2` to `~3.5.0`"
},
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.5.1` to `~0.5.2`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.6.1` to `~4.7.0`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.3.0` to `~3.4.0`"
}
]
}
},
{
"version": "4.23.6",
"tag": "@autorest/modelerfour_v4.23.6",
"date": "Fri, 27 May 2022 15:55:11 GMT",
"comments": {
"patch": [
{
"comment": "Fix issue with having `application/json` and `application/x-www-form-urlencoded` content type for the request body. Json now takes precedence"
}
]
}
},
{
"version": "4.23.5",
"tag": "@autorest/modelerfour_v4.23.5",
"date": "Wed, 18 May 2022 02:34:13 GMT",
"comments": {
"patch": [
{
"comment": "Fix name bgeneration for contenttype and accept parameters only incrementing to 1"
}
]
}
},
{
"version": "4.23.4",
"tag": "@autorest/modelerfour_v4.23.4",
"date": "Mon, 09 May 2022 15:29:40 GMT",
"comments": {
"patch": [
{
"comment": "Fix `x-ms-client-flatten` defined at the root of the model would always flatten that model when referemced in properties"
}
]
}
},
{
"version": "4.23.3",
"tag": "@autorest/modelerfour_v4.23.3",
"date": "Tue, 03 May 2022 20:20:34 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** issue when using unknown media types with a known one. Ignore those."
}
]
}
},
{
"version": "4.23.2",
"tag": "@autorest/modelerfour_v4.23.2",
"date": "Thu, 07 Apr 2022 20:47:30 GMT",
"comments": {
"patch": [
{
"comment": "Modelerfour set correct known media type when `application/json` with `type: string`"
}
]
}
},
{
"version": "4.23.1",
"tag": "@autorest/modelerfour_v4.23.1",
"date": "Mon, 21 Mar 2022 15:38:03 GMT",
"comments": {
"patch": [
{
"comment": "Fix: Request body with `type: string, format: bytes|duration|date-time` being treated as string instead of base64 json"
}
]
}
},
{
"version": "4.23.0",
"tag": "@autorest/modelerfour_v4.23.0",
"date": "Tue, 15 Mar 2022 16:00:38 GMT",
"comments": {
"minor": [
{
"comment": "Add support for setting original `operationId` on operation"
},
{
"comment": "**Update** to the logic for resolving operation requests. Group request by body types instead of content-types to prevent overload issues\""
},
{
"comment": "Generalize security scheme by allowing AAD Token "
},
{
"comment": "Added support for special headers: headers automatically handled by the generator"
},
{
"comment": "Uptake change in typing in openapi library"
}
],
"none": [
{
"comment": "Fix name of special headers, and compare using lowercase."
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.17.2` to `~4.18.0`"
},
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.5.0` to `~0.5.1`"
},
{
"comment": "Updating dependency \"@azure-tools/codegen\" from `~2.9.0` to `~2.9.1`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.6.0` to `~4.6.1`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.2.3` to `~3.3.0`"
}
]
}
},
{
"version": "4.22.3",
"tag": "@autorest/modelerfour_v4.22.3",
"date": "Tue, 07 Dec 2021 16:58:46 GMT",
"comments": {
"patch": [
{
"comment": "**fix** discriminator value added to top level if it has some allOf"
}
]
}
},
{
"version": "4.22.2",
"tag": "@autorest/modelerfour_v4.22.2",
"date": "Mon, 06 Dec 2021 20:16:04 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** Flattened models with duplicate properties using `AutoGenerated` name instead of flattened path based"
}
]
}
},
{
"version": "4.22.1",
"tag": "@autorest/modelerfour_v4.22.1",
"date": "Mon, 22 Nov 2021 21:55:51 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"@autorest/extension-base\" from `~3.4.0` to `~3.4.2`"
}
]
}
},
{
"version": "4.22.0",
"tag": "@autorest/modelerfour_v4.22.0",
"date": "Fri, 19 Nov 2021 04:23:42 GMT",
"comments": {
"minor": [
{
"comment": "Uptake change to extension-base to provide sourcemap support for errors"
},
{
"comment": "**Added** Support for overriding shared param description"
}
],
"patch": [
{
"comment": "**Fix** issue with properties causing name conflict when consecutive words are deduplicated"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.17.0` to `~4.17.2`"
},
{
"comment": "Updating dependency \"@autorest/extension-base\" from `~3.3.2` to `~3.4.0`"
},
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.4.0` to `~0.5.0`"
},
{
"comment": "Updating dependency \"@azure-tools/codegen\" from `~2.8.0` to `~2.9.0`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.5.1` to `~4.6.0`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.2.1` to `~3.2.2`"
}
]
}
},
{
"version": "4.21.4",
"tag": "@autorest/modelerfour_v4.21.4",
"date": "Mon, 04 Oct 2021 18:15:27 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** Flatten nullable property doesn't propagate."
},
{
"comment": "**Internal** remove use of string and array extension method `.last`."
}
]
}
},
{
"version": "4.21.3",
"tag": "@autorest/modelerfour_v4.21.3",
"date": "Wed, 29 Sep 2021 15:39:07 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** Unknown format for number schema should not be an error."
}
]
}
},
{
"version": "4.21.2",
"tag": "@autorest/modelerfour_v4.21.2",
"date": "Wed, 22 Sep 2021 15:23:39 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** log error when using parameter with `content.<mediaType>` as not being supported"
}
]
}
},
{
"version": "4.21.1",
"tag": "@autorest/modelerfour_v4.21.1",
"date": "Thu, 16 Sep 2021 18:49:17 GMT",
"comments": {
"patch": [
{
"comment": "**Add** validation when schema use allOf referencing a schema with a different type"
},
{
"comment": "**Tweak** Better error message when enum has an empty value"
}
]
}
},
{
"version": "4.21.0",
"tag": "@autorest/modelerfour_v4.21.0",
"date": "Wed, 08 Sep 2021 15:39:22 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** Dictionaries don't get xml serialization information passed into codemodel"
}
],
"minor": [
{
"comment": "**Internal** Remove @azure-tools/linq library\""
},
{
"comment": "**Perf** Modified yaml dump improving serialization"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.16.0` to `~4.17.0`"
},
{
"comment": "Updating dependency \"@autorest/extension-base\" from `~3.3.0` to `~3.3.1`"
},
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.3.0` to `~0.4.0`"
},
{
"comment": "Updating dependency \"@azure-tools/codegen\" from `~2.6.0` to `~2.7.0`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.4.0` to `~4.5.0`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.2.0` to `~3.2.1`"
}
]
}
},
{
"version": "4.20.0",
"tag": "@autorest/modelerfour_v4.20.0",
"date": "Mon, 19 Jul 2021 15:15:41 GMT",
"comments": {
"minor": [
{
"comment": "Added support for anonymous security scheme"
},
{
"comment": "**Added** New option to make Content-Type extensible"
},
{
"comment": "**Added** Configuration to ignore certain header names from being added to the model parameters lists"
},
{
"comment": "**Change** Single-value enums are extensible by default and will not generate a constant "
},
{
"comment": "Drop support for node 10"
},
{
"comment": "**Perf** Flattener major performance improvement for large specs"
}
],
"patch": [
{
"comment": "**Fix** Ciruclar reference issue when using allOf parent referencing back to child in properties"
},
{
"comment": "**Improve** Duplicate schema resolution"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.15.0` to `~4.16.0`"
},
{
"comment": "Updating dependency \"@autorest/extension-base\" from `~3.2.1` to `~3.3.0`"
},
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.2.2` to `~0.3.0`"
},
{
"comment": "Updating dependency \"@azure-tools/codegen\" from `~2.5.294` to `~2.6.0`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.3.1` to `~4.4.0`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.1.3` to `~3.2.0`"
}
]
}
},
{
"version": "4.19.3",
"tag": "@autorest/modelerfour_v4.19.3",
"date": "Thu, 03 Jun 2021 22:37:55 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** Allow empty paths in operation"
}
]
}
},
{
"version": "4.19.2",
"tag": "@autorest/modelerfour_v4.19.2",
"date": "Thu, 20 May 2021 16:41:13 GMT",
"comments": {
"patch": [
{
"comment": "**Immproved** error message for duplicate operations"
}
],
"dependency": [
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.1.2` to `~3.1.3`"
}
]
}
},
{
"version": "4.19.1",
"tag": "@autorest/modelerfour_v4.19.1",
"date": "Tue, 04 May 2021 18:18:45 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** Using multiple security layers(`AND`) now produce warning instead of error."
}
]
}
},
{
"version": "4.19.0",
"tag": "@autorest/modelerfour_v4.19.0",
"date": "Tue, 27 Apr 2021 17:48:43 GMT",
"comments": {
"minor": [
{
"comment": "**Added** Distinction between anything and anyobject"
},
{
"comment": "**Added** Support for openapi deprecation"
},
{
"comment": "**Added** Support known set of security scheme"
}
],
"patch": [
{
"comment": "**Perf** Major performance improvment to duplicate schema finder"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.14.8` to `~4.15.0`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.3.0` to `~4.3.1`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.1.1` to `~3.1.2`"
}
]
}
},
{
"version": "4.18.4",
"tag": "@autorest/modelerfour_v4.18.4",
"date": "Mon, 19 Apr 2021 21:06:54 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** Enum defined just with allOf of other enum"
},
{
"comment": "**Typo** Ambigious -> Ambiguous "
}
]
}
},
{
"version": "4.18.3",
"tag": "@autorest/modelerfour_v4.18.3",
"date": "Tue, 13 Apr 2021 21:32:54 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** Enum without type resulting in null values"
}
]
}
},
{
"version": "4.18.2",
"tag": "@autorest/modelerfour_v4.18.2",
"date": "Fri, 09 Apr 2021 19:53:22 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** api-version-mode configuration not working if not auto"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.14.7` to `~4.14.8`"
},
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.2.1` to `~0.2.2`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.2.2` to `~4.3.0`"
}
]
}
},
{
"version": "4.18.1",
"tag": "@autorest/modelerfour_v4.18.1",
"date": "Thu, 01 Apr 2021 15:46:41 GMT",
"comments": {
"patch": [
{
"comment": "Bump @azure-tools/uri version to ~3.1.1"
},
{
"comment": "**Cleanup** Migrated use of require -> es6 imports"
},
{
"comment": "**Update** how binary request body are treated if the content-type is not binary: Group all binary body together to prevent multiple method overload with same parameter"
},
{
"comment": "**Fix** Some unhandled promises"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.2.0` to `~0.2.1`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.2.1` to `~4.2.2`"
}
]
}
},
{
"version": "4.18.0",
"tag": "@autorest/modelerfour_v4.18.0",
"date": "Tue, 16 Mar 2021 15:52:56 GMT",
"comments": {
"minor": [
{
"comment": "**Change** let single value enum parameters be able to be grouped."
},
{
"comment": "**Feature** Support using `allOf` in enum to reference a parent enum. All the parent choices will be flattened in the child enum"
}
],
"patch": [
{
"comment": "**Respect** OpenAPI3 discriminator mapping"
},
{
"comment": "Bump dependencies versions"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.14.6` to `~4.14.7`"
},
{
"comment": "Updating dependency \"@autorest/extension-base\" from `~3.2.0` to `~3.2.1`"
},
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.1.0` to `~0.2.0`"
},
{
"comment": "Updating dependency \"@azure-tools/codegen\" from `~2.5.293` to `~2.5.294`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.1.271` to `~4.2.0`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.1.0` to `~3.1.1`"
}
]
}
},
{
"version": "4.17.2",
"tag": "@autorest/modelerfour_v4.17.2",
"date": "Fri, 05 Mar 2021 16:31:29 GMT",
"comments": {
"patch": [
{
"comment": "Allow server variables to provide a string format(url, uri, etc.)"
}
]
}
},
{
"version": "4.17.1",
"tag": "@autorest/modelerfour_v4.17.1",
"date": "Fri, 26 Feb 2021 21:50:13 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** Don't add a duplicate Content-Type parameter if it is already provided in the spec"
},
{
"comment": "Fix x-ms-header-collection-prefix injected dictionary not defined in the list of schemas"
}
]
}
},
{
"version": "4.17.0",
"tag": "@autorest/modelerfour_v4.17.0",
"date": "Fri, 19 Feb 2021 21:42:09 GMT",
"comments": {
"minor": [
{
"comment": "**Change** Body parmaeters for a `formData` body will be seperate parameters in the generated model instead of being grouped in a body object."
}
],
"patch": [
{
"comment": "Change property redefinition error when changing type into a warning to allow polymorphism"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.14.5` to `~4.14.6`"
}
]
}
},
{
"version": "4.16.2",
"tag": "@autorest/modelerfour_v4.16.2",
"date": "Thu, 11 Feb 2021 18:03:07 GMT",
"comments": {
"patch": [
{
"comment": "**Internals** Update chalk dependency to ^4.1.0"
}
]
}
},
{
"version": "4.16.1",
"tag": "@autorest/modelerfour_v4.16.1",
"date": "Mon, 08 Feb 2021 23:06:15 GMT",
"comments": {
"none": [
{
"comment": "Internal: Update tsconfig, files get generated directly under dist/ instead of dist/src/"
}
],
"patch": [
{
"comment": "Set `isInMultipart: true` for multipart parameters"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.14.4` to `~4.14.5`"
}
]
}
},
{
"version": "4.16.0",
"tag": "@autorest/modelerfour_v4.16.0",
"date": "Thu, 04 Feb 2021 19:05:18 GMT",
"comments": {
"minor": [
{
"comment": "Migrate bundling system from static-link to webpack"
}
],
"patch": [
{
"comment": "Fix the use of circular dependencies in additionalProperties [PR #3819](https://github.com/Azure/autorest/pull/3819)"
},
{
"comment": "Internal code linting fixes"
},
{
"comment": "Internal: Move out test custom matchers to seperate package"
},
{
"comment": "Rename @azure-tools/autorest-extension-base dependency to new @autorest/extension-base pkg"
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.14.3` to `~4.14.4`"
},
{
"comment": "Updating dependency \"@autorest/extension-base\" from `~3.1.0` to `~3.2.0`"
},
{
"comment": "Updating dependency \"@autorest/test-utils\" from `~0.0.1` to `~0.1.0`"
},
{
"comment": "Updating dependency \"@azure-tools/codegen\" from `~2.5.0` to `~2.5.293`"
},
{
"comment": "Updating dependency \"@azure-tools/datastore\" from `~4.1.0` to `~4.1.271`"
},
{
"comment": "Updating dependency \"@azure-tools/openapi\" from `~3.0.0` to `~3.1.0`"
}
]
}
},
{
"version": "4.15.456",
"tag": "@autorest/modelerfour_v4.15.456",
"date": "Thu, 28 Jan 2021 00:22:27 GMT",
"comments": {
"patch": [
{
"comment": "Fix static linking issue with modelerfour resulting in incompatible dependency."
}
]
}
},
{
"version": "4.15.455",
"tag": "@autorest/modelerfour_v4.15.455",
"date": "Tue, 26 Jan 2021 21:36:02 GMT",
"comments": {
"patch": [
{
"comment": "Update modelerfour to use renamed package @azuretools/codemodel -> @autorest/codemodel."
}
],
"dependency": [
{
"comment": "Updating dependency \"@autorest/codemodel\" from `~4.14.1` to `~4.14.3`"
}
]
}
},
{
"version": "4.15.x",
"tag": "@autorest/modelerfour_v4.15.0",
"comments": {
"patch": [
{
"comment": "**Fix** Missing description in responses. ([PR 370](https://github.com/Azure/autorest.modelerfour/pull/370))"
},
{
"comment": "**Feature** Added new flag `always-create-accept-parameter` to enable/disable accept param auto generation. ([PR 366](https://github.com/Azure/autorest.modelerfour/pull/366))"
},
{
"comment": "**Fix** Allow request with body being a file and `application/json` content-type. ([PR 363](https://github.com/Azure/autorest.modelerfour/pull/363))"
},
{
"comment": "**Fix** Dictionaries of dictionaries not being modeled as such(`dict[str, object]` instead of `dict[str, dict[str, str]]`). ([PR 372](https://github.com/Azure/autorest.modelerfour/pull/372))"
},
{
"comment": "**Fix** Issue with sibling models(Model just being a ref of another) causing circular dependency exception. ([PR 375](https://github.com/Azure/autorest.modelerfour/pull/375))"
},
{
"comment": "**Fix** Issue with duplicates schemas names due to consequtive name duplicate removal. ([PR 374](https://github.com/Azure/autorest.modelerfour/pull/374))"
},
{
"comment": "Schemas with `x-ms-enum`'s `modelAsString` set to `true` will now be represented as `ChoiceSchema` even with a single value."
},
{
"comment": "`Accept` headers are now automatically added to operations having responses with content types"
},
{
"comment": "Added `always-seal-x-ms-enum` settings to always create `SealedChoiceSchema` when an `x-ms-enum` is encountered"
}
]
}
},
{
"version": "4.14.x",
"tag": "@autorest/modelerfour_v4.14.0",
"comments": {
"patch": [
{
"comment": "added `exception` SchemaContext for `usage` when used as an exception response"
},
{
"comment": "changed `output` SchemaContext for `usage` to no longer include exception response uses"
}
]
}
},
{
"version": "4.13.x",
"tag": "@autorest/modelerfour_v4.13.0",
"comments": {
"patch": [
{
"comment": "add security info (checks to see if `input.components?.securitySchemes` has any content)"
},
{
"comment": "sync version of m4 and perks/codemodel == 4.13.x"
},
{
"comment": "adding quality prechecker step as a way to test the OAI document for quality before modelerfour runs."
},
{
"comment": "report duplicate parents via allOf as an error."
},
{
"comment": "added `modelerfour.lenient-model-deduplication` to cause schemas with duplicated names to be renamed with an `AutoGenerated` suffix. Note that this is a *temporary* measuer that should only be used when Swaggers cannot be updated easily. This option will be removed in a future version of Modeler Four."
}
]
}
},
{
"version": "4.12.x",
"tag": "@autorest/modelerfour_v4.12.0",
"comments": {
"patch": [
{
"comment": "updated CI to build packages"
},
{
"comment": "any is in a category in schemas"
},
{
"comment": "times is a new category in schemas (not populated yet, next build)"
},
{
"comment": "polymorphic payloads are not flattened (when it's the class that declares the discriminator)"
},
{
"comment": "readonly is pulled from the schema if it's there"
},
{
"comment": "body parameters should have the required flag set correctly"
},
{