Flush changelog-d
This commit is contained in:
parent
b519014f96
commit
b318e69bff
18 changed files with 0 additions and 177 deletions
|
@ -1,18 +0,0 @@
|
||||||
synopsis: Add NoContentVerb
|
|
||||||
prs: #1228 #1219
|
|
||||||
issues: #1028
|
|
||||||
significance: significant
|
|
||||||
|
|
||||||
description: {
|
|
||||||
|
|
||||||
The `NoContent` API endpoints should now use `NoContentVerb` combinator.
|
|
||||||
The API type changes are usually of the kind
|
|
||||||
|
|
||||||
```diff
|
|
||||||
- :<|> PostNoContent '[JSON] NoContent
|
|
||||||
+ :<|> PostNoContent
|
|
||||||
```
|
|
||||||
|
|
||||||
i.e. one doesn't need to specify the content-type anymore. There is no content.
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,12 +0,0 @@
|
||||||
synopsis: Fix Verb with headers checking content type differently
|
|
||||||
packages: servant-client-core servant-client
|
|
||||||
prs: #1204
|
|
||||||
issues: #1200
|
|
||||||
packages: servant-client servant-client-core servant-http-streams
|
|
||||||
|
|
||||||
description: {
|
|
||||||
|
|
||||||
For `Verb`s with response `Headers`, the implementation didn't check
|
|
||||||
for the content-type of the response. Now it does.
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
synopsis: Merge documentation from duplicate routes
|
|
||||||
packages: servant-docs
|
|
||||||
prs: #1241
|
|
||||||
issues: #1240
|
|
||||||
|
|
||||||
description: {
|
|
||||||
|
|
||||||
Servant supports defining the same route multiple times with different
|
|
||||||
content-types and result-types, but servant-docs was only documenting
|
|
||||||
the first of copy of such duplicated routes. It now combines the
|
|
||||||
documentation from all the copies.
|
|
||||||
|
|
||||||
Unfortunately, it is not yet possible for the documentation to specify
|
|
||||||
multiple status codes.
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
synopsis: Progress on servant-jsaddle
|
|
||||||
packages: servant-jsaddle
|
|
||||||
prs: #1216
|
|
|
@ -1,17 +0,0 @@
|
||||||
synopsis: `Capture` can be `Lenient`
|
|
||||||
issues: #1155
|
|
||||||
prs: #1156
|
|
||||||
significance: significant
|
|
||||||
description: {
|
|
||||||
|
|
||||||
You can specify a lenient capture as
|
|
||||||
|
|
||||||
```haskell
|
|
||||||
:<|> "capture-lenient" :> Capture' '[Lenient] "foo" Int :> GET
|
|
||||||
```
|
|
||||||
|
|
||||||
which will make the capture always succeed. Handlers will be of the
|
|
||||||
type `Either String CapturedType`, where `Left err` represents
|
|
||||||
the possible parse failure.
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
synopsis: Add sponsorship button
|
|
||||||
prs: #1190
|
|
||||||
description: {
|
|
||||||
|
|
||||||
[Well-Typed](https://www.well-typed.com/)
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
synopsis: Prevent race-conditions in testing
|
|
||||||
packages: servant-docs
|
|
||||||
prs: #1194
|
|
|
@ -1,4 +0,0 @@
|
||||||
synopsis: `HasClient` instance for `Stream` with `Headers`
|
|
||||||
packages: servant-client servant-client servant-http-streams
|
|
||||||
prs: #1197
|
|
||||||
issues: #1170
|
|
|
@ -1,3 +0,0 @@
|
||||||
synopsis: Remove unused extensions from cabal file
|
|
||||||
packages: servant
|
|
||||||
prs: #1201
|
|
|
@ -1,12 +0,0 @@
|
||||||
synopsis: Added a function to create Client.Request in ClientEnv
|
|
||||||
packages: servant-client
|
|
||||||
significance: significant
|
|
||||||
prs: #1213 #1255
|
|
||||||
description: {
|
|
||||||
|
|
||||||
The new member `makeClientRequest` of `ClientEnv` is used to create
|
|
||||||
`http-client` `Request` from `servant-client-core` `Request`.
|
|
||||||
This functionality can be used for example to set
|
|
||||||
dynamic timeouts for each request.
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
synopsis: Redact the authorization header in Show and exceptions
|
|
||||||
packages: servant-client
|
|
||||||
prs: #1238
|
|
|
@ -1,15 +0,0 @@
|
||||||
synopsis: use queryString to parse QueryParam, QueryParams and QueryFlag
|
|
||||||
packages: servant-server
|
|
||||||
prs: #1249 #1262
|
|
||||||
significance: significant
|
|
||||||
description: {
|
|
||||||
|
|
||||||
Some APIs need query parameters rewriting, e.g. in order to support
|
|
||||||
for multiple casing (camel, snake, etc) or something to that effect.
|
|
||||||
|
|
||||||
This could be easily achieved by using WAI Middleware and modyfing
|
|
||||||
request's `Query`. But QueryParam, QueryParams and QueryFlag use
|
|
||||||
`rawQueryString`. By using `queryString` rather then `rawQueryString`
|
|
||||||
we can enable such rewritings.
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
synopsis: Make packages `build-type: Simple`
|
|
||||||
packages: servant servant-server
|
|
||||||
prs: #1263
|
|
||||||
significance: significant
|
|
||||||
description: {
|
|
||||||
|
|
||||||
We used `build-type: Custom`, but it's problematic e.g.
|
|
||||||
for cross-compiling. The benefit is small, as the doctests
|
|
||||||
can be run other ways too (though not so conviniently).
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
synopsis: Try changelog-d for changelog management
|
|
||||||
prs: #1230
|
|
||||||
|
|
||||||
description: {
|
|
||||||
|
|
||||||
Check the [CONTRIBUTING.md](https://github.com/haskell-servant/servant/blob/master/CONTRIBUTING.md) for details
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,19 +0,0 @@
|
||||||
synopsis: CI and testing tweaks.
|
|
||||||
prs:
|
|
||||||
#1154
|
|
||||||
#1157
|
|
||||||
#1182
|
|
||||||
#1214
|
|
||||||
#1229
|
|
||||||
#1233
|
|
||||||
#1242
|
|
||||||
#1247
|
|
||||||
#1250
|
|
||||||
#1258
|
|
||||||
|
|
||||||
description: {
|
|
||||||
|
|
||||||
We are experiencing some bitrotting of cookbook recipe dependencies,
|
|
||||||
therefore some of them aren't build as part of our CI anymore.
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
synopsis: New cookbook recipes
|
|
||||||
prs: #1171 #1088 #1198
|
|
||||||
|
|
||||||
description: {
|
|
||||||
|
|
||||||
- [OIDC Recipe](#TODO)
|
|
||||||
- [MySQL Recipe](#TODO)
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
synopsis: Dependency upgrades
|
|
||||||
prs:
|
|
||||||
#1173
|
|
||||||
#1181
|
|
||||||
#1183
|
|
||||||
#1188
|
|
||||||
#1224
|
|
||||||
#1245
|
|
||||||
#1257
|
|
|
@ -1,8 +0,0 @@
|
||||||
synopsis: Documentation updates
|
|
||||||
prs:
|
|
||||||
#1162
|
|
||||||
#1174
|
|
||||||
#1175
|
|
||||||
#1234
|
|
||||||
#1244
|
|
||||||
#1247
|
|
Loading…
Reference in a new issue