Go through changelog entries so far

This commit is contained in:
Oleg Grenrus 2019-12-14 23:15:17 +02:00
parent 65c6298e89
commit 05b64ed652
17 changed files with 93 additions and 22 deletions

View File

@ -5,6 +5,14 @@ significance: significant
description: {
TBW
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.
}

View File

@ -1,10 +1,12 @@
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: {
TBW
For `Verb`s with response `Headers`, the implementation didn't check
for the content-type of the response. Now it does.
}

View File

@ -1,13 +0,0 @@
synopsis: Fix broken links in Tutorial documentation.
issues: #1206
description: {
In servant/doc/tutorial/Client.lhs, several links point to an .lhs file,
which show as broken in the live web documentation. Changing the suffix to
.html displays the correct documentation.
In servant/doc/tutorial/Authentication.lhs, a link to GHC documentation for
Type Families pointed to a 404'd page. A link to existing GHC documentation
was substituted.
}

View File

@ -1,4 +1,5 @@
synopsis: Merge documentation from duplicate routes
packages: servant-docs
prs: #1241
issues: #1240

3
changelog.d/jsaddle Normal file
View File

@ -0,0 +1,3 @@
synopsis: Progress on servant-jsaddle
packages: servant-jsaddle
prs: #1216

17
changelog.d/pr1156 Normal file
View File

@ -0,0 +1,17 @@
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.
}

7
changelog.d/pr1190 Normal file
View File

@ -0,0 +1,7 @@
synopsis: Add sponsorship button
prs: #1190
description: {
[Well-Typed](https://www.well-typed.com/)
}

3
changelog.d/pr1194 Normal file
View File

@ -0,0 +1,3 @@
synopsis: Prevent race-conditions in testing
packages: servant-docs
prs: #1194

4
changelog.d/pr1197 Normal file
View File

@ -0,0 +1,4 @@
synopsis: `HasClient` instance for `Stream` with `Headers`
packages: servant-client servant-client servant-http-streams
prs: #1197
issues: #1170

3
changelog.d/pr1201 Normal file
View File

@ -0,0 +1,3 @@
synopsis: Remove unused extensions from cabal file
packages: servant
prs: #1201

View File

@ -1,5 +1,6 @@
synopsis: Added a function to create Client.Request in ClientEnv
packages: servant-client
significance: significant
prs: #1213 #1255
description: {

View File

@ -1,2 +1,3 @@
synopsis: Redact the authorization header in Show and exceptions
packages: servant-client
prs: #1238

View File

@ -1,7 +0,0 @@
synopsis: unclassified pull requests
prs: #1229 #1224 #1226 #1216 #1214 #1194
prs: #1194 #1201 #1198 #1197 #1190 #1188
prs: #1183 #1181 #1182 #1175 #1175 #1174
prs: #1173 #1171 #1154 #1162 #1157 #1159
prs: #1156
prs: #1233

17
changelog.d/z-ci-tweaks Normal file
View File

@ -0,0 +1,17 @@
synopsis: CI and testing tweaks.
prs:
#1154
#1157
#1182
#1214
#1229
#1233
#1242
#1250
description: {
We are experiencing some bitrotting of cookbook recipe dependencies,
therefore some of them aren't build as part of our CI anymore.
}

9
changelog.d/z-cookbook Normal file
View File

@ -0,0 +1,9 @@
synopsis: New cookbook recipes
prs: #1171 #1088 #1198
description: {
- [OIDC Recipe](#TODO)
- [MySQL Recipe](#TODO)
}

View File

@ -0,0 +1,8 @@
synopsis: Dependency upgrades
prs:
#1181
#1183
#1188
#1224
#1245
#1173

View File

@ -0,0 +1,7 @@
synopsis: Documentation updates
prs:
#1174
#1175
#1234
#1244
#1162