-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathCHANGELOG.json
231 lines (231 loc) · 6.76 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
{
"name": "@typespec/http",
"entries": [
{
"version": "0.52.0",
"tag": "@typespec/http_v0.52.0",
"date": "Wed, 24 Jan 2024 05:46:53 GMT",
"comments": {
"none": [
{
"comment": "Fix: `@path` custom name not respected"
},
{
"comment": "Fix: Wrong route generated when path parameter is not alpha numeric(Either with a different name provided in `@path` or if the property name is not an identifier)"
},
{
"comment": "Migrate to new Internal/Public library definition"
},
{
"comment": "Rename template parameters in preparation for named template argument instantiation."
},
{
"comment": "Update dependencies"
}
]
}
},
{
"version": "0.51.0",
"tag": "@typespec/http_v0.51.0",
"date": "Wed, 06 Dec 2023 19:40:58 GMT",
"comments": {
"none": [
{
"comment": "Add diagnostic when a namespace exists with routes, but no namespace is marked with `@service`."
}
]
}
},
{
"version": "0.50.0",
"tag": "@typespec/http_v0.50.0",
"date": "Wed, 08 Nov 2023 00:07:17 GMT",
"comments": {
"none": [
{
"comment": "`TypeScript` use `types` entry under `exports` of `package.json` instead of legacy `typesVersions` to provide the definition files"
},
{
"comment": "**BREAKING CHANGE** Dropped support for node 16, minimum node version is now 18"
}
]
}
},
{
"version": "0.49.0",
"tag": "@typespec/http_v0.49.0",
"date": "Wed, 11 Oct 2023 23:31:35 GMT",
"comments": {
"none": [
{
"comment": "Add support for `@returns` and `@errors` doc comment tags."
},
{
"comment": "Add support for status code ranges for http responses. **Change to API** Http responses can now also return a `HttpStatusCodeRange` object for their status codes"
},
{
"comment": "Emit error when multiple properties on a response model have the `@statusCode` decorator."
},
{
"comment": "Update dependencies"
}
]
}
},
{
"version": "0.48.0",
"tag": "@typespec/http_v0.48.0",
"date": "Tue, 12 Sep 2023 21:47:11 GMT",
"comments": {
"none": [
{
"comment": "Deprecated `getRequestVisibility`. Added methods `getDefaultVisibilityForVerb` and `resolveRequestVisibility`. Use either depending on the situation."
},
{
"comment": "Add validation step to check whether any operation references another operation with a route prefix defined on a parent container. This helps avoid unexpected route changes when using operation references."
},
{
"comment": "Avoid runtime errors when `OAuth2Auth` is given invalid `OAuth2Flow` arguments"
}
]
}
},
{
"version": "0.47.0",
"tag": "@typespec/http_v0.47.0",
"date": "Tue, 08 Aug 2023 22:32:10 GMT",
"comments": {
"none": [
{
"comment": "Update doc for openapi developers"
},
{
"comment": "Add collection format support: simple, form, ssv, tsv, pipes"
}
]
}
},
{
"version": "0.46.0",
"tag": "@typespec/http_v0.46.0",
"date": "Tue, 11 Jul 2023 22:06:00 GMT",
"comments": {
"none": [
{
"comment": "Add documentation on `@header` auto header name resolution from property name."
},
{
"comment": "Support nested `@body`"
},
{
"comment": "Update dependencies"
}
]
}
},
{
"version": "0.45.0",
"tag": "@typespec/http_v0.45.0",
"date": "Tue, 06 Jun 2023 22:44:16 GMT",
"comments": {
"none": [
{
"comment": "Uptake doc comment changes"
},
{
"comment": "Update decorators to use `valueof`"
},
{
"comment": "Update decorators signature to use `{}` instead of `object`"
},
{
"comment": "Add signature for missing decorators"
}
]
}
},
{
"version": "0.44.0",
"tag": "@typespec/http_v0.44.0",
"date": "Wed, 10 May 2023 21:24:00 GMT",
"comments": {
"none": [
{
"comment": "Cleanup deprecated use"
},
{
"comment": "No longer issues an error for multiple different responses for the same status code."
},
{
"comment": "Add `@sharedRoute` decorator for marking operations as sharing a route with other operations"
},
{
"comment": "Deprecate the `shared` option in the `@route` decorator. `@sharedRoute` is the new way to accomplish the same behavior."
},
{
"comment": "Update dependencies"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/eslint-config-typespec\" from `~0.6.0` to `~0.7.0`"
}
]
}
},
{
"version": "0.43.1",
"tag": "@typespec/http_v0.43.1",
"date": "Fri, 14 Apr 2023 15:09:01 GMT",
"comments": {
"patch": [
{
"comment": "**Fix** query format not accepting anything other than `csv` and `multi`"
}
]
}
},
{
"version": "0.43.0",
"tag": "@typespec/http_v0.43.0",
"date": "Tue, 11 Apr 2023 18:49:17 GMT",
"comments": {
"none": [
{
"comment": "**Breaking change** `@header` and `@query` no longer default the `format` to `csv` and `multi` respectively. A value must now be provided when the type is an array."
}
]
}
},
{
"version": "0.42.0",
"tag": "@typespec/http_v0.42.0",
"date": "Mon, 13 Mar 2023 21:30:44 GMT",
"comments": {
"none": [
{
"comment": "Make canonical visibility configurable and default to none."
}
]
}
},
{
"version": "0.41.0",
"tag": "@typespec/http_v0.41.0",
"date": "Fri, 03 Mar 2023 19:59:17 GMT",
"comments": {
"none": [
{
"comment": "Move core HTTP functionality from `@typespec/rest` into a new `@typespec/http` library"
}
],
"dependency": [
{
"comment": "Updating dependency \"@typespec/eslint-config-typespec\" from `~0.5.0` to `~0.6.0`"
}
]
}
}
]
}