forked from microsoft/typespec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.json
1067 lines (1067 loc) · 33.6 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": "@typespec/openapi3",
"entries": [
{
"version": "0.40.0",
"tag": "@typespec/openapi3_v0.40.0",
"date": "Tue, 07 Feb 2023 21:56:17 GMT",
"comments": {
"patch": [
{
"comment": "Convert Ref objects to ref string in OpenAPI YAML output"
}
],
"none": [
{
"comment": "Fix issue where operation parameters could not target a ModelProperty."
},
{
"comment": "Sort OpenAPI 3 output"
},
{
"comment": "Don't emit extra \"canonical\" model when always impacted by visibility"
}
]
}
},
{
"version": "0.39.0",
"tag": "@typespec/openapi3_v0.39.0",
"date": "Fri, 13 Jan 2023 00:05:26 GMT",
"comments": {
"none": [
{
"comment": "Add support for emitting exclusiveMinimum and exclusiveMaximum based on the corresponding decorators"
},
{
"comment": "**Breaking Change** Add yaml serialization for openapi output. Default has been changed to yaml. Use `file-type: json` or `output-file: myfile.json` to use json"
}
],
"patch": [
{
"comment": "Emit style & explode per encoding options"
},
{
"comment": "Generate recursive update schemas with optional properties for resource update operation"
}
]
}
},
{
"version": "0.38.0",
"tag": "@typespec/openapi3_v0.38.0",
"date": "Wed, 07 Dec 2022 17:21:52 GMT",
"comments": {
"patch": [
{
"comment": "Emit 'deprecated' operation property in openapi3"
},
{
"comment": "Internal: Update tests to change from `emitters` compiler options to `emit` and `options`"
},
{
"comment": "Fix: Respect `@header` and `@query` over the wire name"
},
{
"comment": "Update dependencies"
}
],
"minor": [
{
"comment": "Omit metadata properties of type `never`"
},
{
"comment": "Internal: update to use new `getTypeName` and `getNamespaceString` helper"
},
{
"comment": "Uptake change to `onEmit` signature"
},
{
"comment": "**Breaking change** using new built-in `emitter-output-dir` option instead of custom `output-dir`."
},
{
"comment": "Add support for multiple services"
},
{
"comment": "Uptake changes to compiler api to support Scalars"
},
{
"comment": "Add support for renamed `url` scalar"
},
{
"comment": "Uptake changes to rest library api"
}
],
"none": [
{
"comment": "Remove undocumented use of atVersion projection"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/eslint-config-typespec\" from `~0.4.1` to `~0.5.0`"
}
]
}
},
{
"version": "0.17.0",
"tag": "@typespec/openapi3_v0.17.0",
"date": "Sat, 12 Nov 2022 00:14:04 GMT",
"comments": {
"minor": [
{
"comment": "Declare decorators in typespec using `extern dec`"
},
{
"comment": "Feature: Add support for `unknown`"
}
],
"patch": [
{
"comment": "Fix: @extension on a model is intrinsic types are being applied"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.36.1` to `~0.37.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.18.0` to `~0.19.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.13.0` to `~0.14.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.9.0` to `~0.10.0`"
},
{
"comment": "Updating dependency \"@typespec/library-linter\" from `~0.2.1` to `~0.2.2`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.9.0` to `~0.10.0`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.36.1` to `~0.37.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.18.0` to `~0.19.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.13.0` to `~0.14.0`"
}
]
}
},
{
"version": "0.16.0",
"tag": "@typespec/openapi3_v0.16.0",
"date": "Wed, 12 Oct 2022 21:12:35 GMT",
"comments": {
"minor": [
{
"comment": "Use new `getDiscriminatedUnion` helper from compiler"
},
{
"comment": "Empty object as a response will not produce a 204 response anymore"
},
{
"comment": "Implement automatic visibility transformations"
},
{
"comment": "Add support for `@minItems` and `@maxItems` decorators"
},
{
"comment": "Add support for referencing model properties."
},
{
"comment": "Emitted openapi3 document include all types under the service namespace"
},
{
"comment": "Uptake move of `@discriminator` into compiler"
},
{
"comment": "Add `output-dir` emitter option"
},
{
"comment": "Add support for overloads(Using `@overload` decorator)"
},
{
"comment": "Uptake changes to rest library"
}
],
"patch": [
{
"comment": "Fix: Response headers are marked as required unless optional"
},
{
"comment": "Fix: `Content-Type` request header lookup is case insensitive"
},
{
"comment": "Exclude properties of type `never` when emitting model schemas"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.35.0` to `~0.36.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.17.0` to `~0.18.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.12.0` to `~0.13.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.8.0` to `~0.9.0`"
},
{
"comment": "Updating dependency \"@typespec/library-linter\" from `~0.2.0` to `~0.2.1`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.8.0` to `~0.9.0`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.35.0` to `~0.36.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.17.0` to `~0.18.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.12.0` to `~0.13.0`"
}
]
}
},
{
"version": "0.15.0",
"tag": "@typespec/openapi3_v0.15.0",
"date": "Thu, 08 Sep 2022 01:04:53 GMT",
"comments": {
"minor": [
{
"comment": "Uptake change to enum members map type "
},
{
"comment": "Use projectedName projection for `json` to get the real over the wire properties."
},
{
"comment": "Uptake changes to compiler with current projection"
},
{
"comment": "Update decororator state key to allow multiple instance of library to work together."
},
{
"comment": "React to Type suffix removal"
},
{
"comment": "Support more kinds of unions, fix various union bugs, and add support for @discriminator on unions"
},
{
"comment": "Uptake changes to http service authentication oauth2 scopes"
}
],
"patch": [
{
"comment": "Add support for `@extension` on Server variables"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.34.0` to `~0.35.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.16.0` to `~0.17.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.11.0` to `~0.12.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.7.0` to `~0.8.0`"
},
{
"comment": "Updating dependency \"@typespec/eslint-config-typespec\" from `~0.4.0` to `~0.4.1`"
},
{
"comment": "Updating dependency \"@typespec/library-linter\" from `~0.1.3` to `~0.2.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.7.0` to `~0.8.0`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.34.0` to `~0.35.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.16.0` to `~0.17.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.11.0` to `~0.12.0`"
}
]
}
},
{
"version": "0.14.0",
"tag": "@typespec/openapi3_v0.14.0",
"date": "Thu, 11 Aug 2022 19:05:23 GMT",
"comments": {
"none": [
{
"comment": "Update Readme.md for new decorators."
}
],
"minor": [
{
"comment": "Added support for default value for properties with enum type."
},
{
"comment": "Use authentication configured via `@useAuth` http decorator"
},
{
"comment": "Add new emitter option `new-line` to configure emitted line endings"
},
{
"comment": "Uptake changes to type relations"
},
{
"comment": "Support set of unannotated parameters as request body"
},
{
"comment": "Inline generic instantiations without `@friendlyName`"
},
{
"comment": "Uptake new `resolveOperationId` helper from openapi library improving the logic"
},
{
"comment": "Add warning if there is no exposed routes"
},
{
"comment": "Internal: Uptake new compiler helpers to work with template types"
}
],
"patch": [
{
"comment": "Fix: Description being ignored on non-string primitive models"
},
{
"comment": "Fix uninitialized parent namespaces in projection"
},
{
"comment": "Run projections on types returned from getEffectiveType"
},
{
"comment": "fix infinite recursion with self referencing model"
},
{
"comment": "Remove `summary` property set on schemas"
},
{
"comment": "Make response descriptions more consistent"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.33.0` to `~0.34.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.15.1` to `~0.16.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.10.1` to `~0.11.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.6.1` to `~0.7.0`"
},
{
"comment": "Updating dependency \"@typespec/eslint-config-typespec\" from `~0.3.0` to `~0.4.0`"
},
{
"comment": "Updating dependency \"@typespec/library-linter\" from `~0.1.2` to `~0.1.3`"
},
{
"comment": "Updating dependency \"@typespec/eslint-plugin\" from `~0.1.0` to `~0.1.1`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.6.1` to `~0.7.0`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.33.0` to `~0.34.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.15.1` to `~0.16.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.10.1` to `~0.11.0`"
}
]
}
},
{
"version": "0.13.0",
"tag": "@typespec/openapi3_v0.13.0",
"date": "Fri, 08 Jul 2022 23:22:57 GMT",
"comments": {
"minor": [
{
"comment": "Emitter can take `outputFile` as an option"
},
{
"comment": "Rename emitter options to be `kebab-case`"
}
],
"patch": [
{
"comment": "Inline parameters spread from anonymous model"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.32.0` to `~0.33.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.15.0` to `~0.15.1`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.10.0` to `~0.10.1`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.6.0` to `~0.6.1`"
},
{
"comment": "Updating dependency \"@typespec/library-linter\" from `~0.1.1` to `~0.1.2`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.6.0` to `~0.6.1`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.32.0` to `~0.33.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.15.0` to `~0.15.1`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.10.0` to `~0.10.1`"
}
]
}
},
{
"version": "0.12.0",
"tag": "@typespec/openapi3_v0.12.0",
"date": "Mon, 13 Jun 2022 23:42:28 GMT",
"comments": {
"minor": [
{
"comment": "Uptake changes to @typespec/rest libraries around accessor"
},
{
"comment": "Uptake changes to decorator context"
},
{
"comment": "Add support for new @server decorator used to specify api endpoints."
},
{
"comment": "Find good names where possible for anonymous models that differ from named models only by properties that are not part of the schema"
},
{
"comment": "Uptake changes to versioning library using enums for version"
}
],
"none": [
{
"comment": "Upgrade to TS4.7"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.31.0` to `~0.32.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.14.0` to `~0.15.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.9.0` to `~0.10.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.5.0` to `~0.6.0`"
},
{
"comment": "Updating dependency \"@typespec/library-linter\" from `~0.1.0` to `~0.1.1`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.5.0` to `~0.6.0`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.31.0` to `~0.32.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.14.0` to `~0.15.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.9.0` to `~0.10.0`"
}
]
}
},
{
"version": "0.11.0",
"tag": "@typespec/openapi3_v0.11.0",
"date": "Fri, 06 May 2022 17:19:57 GMT",
"comments": {
"minor": [
{
"comment": "Uptake change in compiler with children references"
},
{
"comment": "Move decorators to `OpenAPI` namespace"
},
{
"comment": "Uptake change to versioning library"
},
{
"comment": "Remove node 14 support"
}
],
"patch": [
{
"comment": "Fix issue not excluding template models from derived models causing crash"
},
{
"comment": "Fix duplicate `description` in parameters"
},
{
"comment": "Rearrange some aspects of operation output in the OpenAPI emitter"
},
{
"comment": "URI-encode refs"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.30.0` to `~0.31.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.13.0` to `~0.14.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.8.0` to `~0.9.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.4.0` to `~0.5.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.4.0` to `~0.5.0`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.30.0` to `~0.31.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.13.0` to `~0.14.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.8.0` to `~0.9.0`"
}
]
}
},
{
"version": "0.10.0",
"tag": "@typespec/openapi3_v0.10.0",
"date": "Thu, 31 Mar 2022 17:10:49 GMT",
"comments": {
"minor": [
{
"comment": "Include discriminator property in base schema with a boilerplace description"
},
{
"comment": "Add support for `void` type"
},
{
"comment": "Moved http response interpretation to @typespec/rest library."
},
{
"comment": "implement multiple response content types"
},
{
"comment": "Uptake change to allow versioned dependency with unversioned service"
}
],
"patch": [
{
"comment": "Fix bug with number enums that reference `0`."
},
{
"comment": "Use parent .model of ModelTypeProperty"
},
{
"comment": "Support browser builds"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.29.0` to `~0.30.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.12.0` to `~0.13.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.7.0` to `~0.8.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.3.2` to `~0.4.0`"
},
{
"comment": "Updating dependency \"@typespec/eslint-config-typespec\" from `~0.2.0` to `~0.3.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.3.2` to `~0.4.0`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.29.0` to `~0.30.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.12.0` to `~0.13.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.7.0` to `~0.8.0`"
}
]
}
},
{
"version": "0.9.0",
"tag": "@typespec/openapi3_v0.9.0",
"date": "Wed, 09 Mar 2022 17:42:09 GMT",
"comments": {
"minor": [
{
"comment": "@doc and @summary will set the description and summary on extended primitive types"
},
{
"comment": "Emit child models to OpenAPI when parent is emitted"
},
{
"comment": "**Added** support for `@externalDocs` decorator"
},
{
"comment": "Added support for `@knownValues` decorator"
},
{
"comment": "@doc on service namespace set openapi description"
},
{
"comment": "Uptake change to intrinsic types"
},
{
"comment": "Fix issue where a model name the same as TypeSpec Intrinsic type would be treated the same."
}
],
"patch": [
{
"comment": "Fix duplicate parameter type definitions in OpenAPI 3 output"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.28.0` to `~0.29.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.11.0` to `~0.12.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.6.1` to `~0.7.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.3.1` to `~0.3.2`"
},
{
"comment": "Updating dependency \"@typespec/eslint-config-typespec\" from `~0.1.0` to `~0.2.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.3.1` to `~0.3.2`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.28.0` to `~0.29.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.11.0` to `~0.12.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.6.1` to `~0.7.0`"
}
]
}
},
{
"version": "0.8.0",
"tag": "@typespec/openapi3_v0.8.0",
"date": "Tue, 15 Feb 2022 22:35:02 GMT",
"comments": {
"patch": [
{
"comment": "Add support for separate `@summary` from `@doc`"
}
],
"minor": [
{
"comment": "Add validation to oneOf decorator"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.27.0` to `~0.28.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.10.0` to `~0.11.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.6.0` to `~0.6.1`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.3.0` to `~0.3.1`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.3.0` to `~0.3.1`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.27.0` to `~0.28.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.10.0` to `~0.11.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.6.0` to `~0.6.1`"
}
]
}
},
{
"version": "0.7.0",
"tag": "@typespec/openapi3_v0.7.0",
"date": "Mon, 14 Feb 2022 03:01:07 GMT",
"comments": {
"minor": [
{
"comment": "refactor status code handling to http library"
},
{
"comment": "Take change in openapi upstream library"
},
{
"comment": "Update decorators to take in api change"
}
],
"patch": [
{
"comment": "Bump dependency versions"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.26.0` to `~0.27.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.9.0` to `~0.10.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.5.1` to `~0.6.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.2.0` to `~0.3.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `~0.2.0` to `~0.3.0`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.26.0` to `~0.27.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.9.0` to `~0.10.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.5.1` to `~0.6.0`"
}
]
}
},
{
"version": "0.6.0",
"tag": "@typespec/openapi3_v0.6.0",
"date": "Fri, 04 Feb 2022 18:00:18 GMT",
"comments": {
"minor": [
{
"comment": "Support union values for status-code and content-type in responses"
},
{
"comment": "Openapi3 support for discriminated unions"
},
{
"comment": "openapi3 emitter support for @error decorator"
},
{
"comment": "Configure for new emitter syntax"
},
{
"comment": "Internals: switch to internal path manipulation"
},
{
"comment": "Extracted decorators into own library `@typespec/openapi`"
},
{
"comment": "Uptake changes in @typespec/rest library improving operation parameter handling"
},
{
"comment": "Update typespec dependencies to peerDependencies"
},
{
"comment": "Add support for versioned services"
},
{
"comment": "Add statusCode decorator for http status code"
}
],
"patch": [
{
"comment": "Adding @format decorator support for openapi3 to emit \"format\" for string types"
},
{
"comment": "**Fix** Added support for nullable array `xzy[] | null`"
},
{
"comment": "**Fix** issue with @body body: bytes producing `type: string, format: bytes` instead of `type: string, format: binary` for requests and responses"
},
{
"comment": "Use assigned @friendlyName on model types when emitting schema definitions and refs"
},
{
"comment": "Refactor and improve openapi3 return type tests"
},
{
"comment": "Fix status code validation and other minor cleanup"
},
{
"comment": "Support nullable in openapi3 emitter"
},
{
"comment": "Renaming @format decorator to @pattern."
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.25.0` to `~0.26.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.8.0` to `~0.9.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.5.0` to `~0.5.1`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `0.1.0` to `0.2.0`"
},
{
"comment": "Updating dependency \"@typespec/versioning\" from `0.1.0` to `0.2.0`"
},
{
"comment": "Updating dependency \"@typespec/compiler\" from `~0.25.0` to `~0.26.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `~0.8.0` to `~0.9.0`"
},
{
"comment": "Updating dependency \"@typespec/openapi\" from `~0.5.0` to `~0.5.1`"
}
]
}
},
{
"version": "0.5.0",
"tag": "@typespec/openapi3_v0.5.0",
"date": "Thu, 16 Dec 2021 08:02:20 GMT",
"comments": {
"patch": [
{
"comment": "Update openapi3 emitter to consume new TypeSpec.Rest route generation API"
}
],
"minor": [
{
"comment": "Generate anyOf or oneOf schemas for TypeSpec unions in openapi3"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `0.24.1` to `0.25.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `0.7.1` to `0.8.0`"
}
]
}
},
{
"version": "0.4.2",
"tag": "@typespec/openapi3_v0.4.2",
"date": "Wed, 01 Dec 2021 22:56:11 GMT",
"comments": {
"patch": [
{
"comment": "Add support for extension decorator on parameters and tests"
},
{
"comment": "Add openapi3 support for TypeSpec safeint"
},
{
"comment": "Add README"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `0.24.0` to `0.24.1`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `0.7.0` to `0.7.1`"
}
]
}
},
{
"version": "0.4.1",
"tag": "@typespec/openapi3_v0.4.1",
"date": "Thu, 18 Nov 2021 13:58:15 GMT",
"comments": {
"patch": [
{
"comment": "Enable operation generation from interfaces"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `0.23.0` to `0.24.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `0.6.4` to `0.7.0`"
}
]
}
},
{
"version": "0.4.0",
"tag": "@typespec/openapi3_v0.4.0",
"date": "Thu, 11 Nov 2021 21:46:21 GMT",
"comments": {
"minor": [
{
"comment": "**Added** Support for duration type"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/compiler\" from `0.22.0` to `0.23.0`"
},
{
"comment": "Updating dependency \"@typespec/rest\" from `0.6.3` to `0.6.4`"
}
]
}
},
{
"version": "0.3.1",
"tag": "@typespec/openapi3_v0.3.1",
"date": "Thu, 28 Oct 2021 21:17:50 GMT",
"comments": {
"patch": [
{
"comment": "Use strict diagnostics"
},
{
"comment": "Fix crash on empty enum in openapi3 emitter"
},
{
"comment": "Set shared param definitions in components.parameters"
},
{
"comment": "Fix param default to be in schema"
},
{
"comment": "Fix handling of decorators on parameters in openapi3"
},
{
"comment": "Fix generation of openapi3 response headers"
},
{
"comment": "Define response body for primitive response type"
},
{
"comment": "Remove management.azure.com service host default"
}
],
"dependency": [
{