diff --git a/changelog.d/issue1028 b/changelog.d/issue1028 deleted file mode 100644 index 73cede30..00000000 --- a/changelog.d/issue1028 +++ /dev/null @@ -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. - -} diff --git a/changelog.d/issue1200 b/changelog.d/issue1200 deleted file mode 100644 index 885a2571..00000000 --- a/changelog.d/issue1200 +++ /dev/null @@ -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. - -} diff --git a/changelog.d/issue1240 b/changelog.d/issue1240 deleted file mode 100644 index dce11a69..00000000 --- a/changelog.d/issue1240 +++ /dev/null @@ -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. - -} diff --git a/changelog.d/jsaddle b/changelog.d/jsaddle deleted file mode 100644 index 02dcf5b4..00000000 --- a/changelog.d/jsaddle +++ /dev/null @@ -1,3 +0,0 @@ -synopsis: Progress on servant-jsaddle -packages: servant-jsaddle -prs: #1216 diff --git a/changelog.d/pr1156 b/changelog.d/pr1156 deleted file mode 100644 index 91726ae9..00000000 --- a/changelog.d/pr1156 +++ /dev/null @@ -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. - -} diff --git a/changelog.d/pr1190 b/changelog.d/pr1190 deleted file mode 100644 index e6a308c4..00000000 --- a/changelog.d/pr1190 +++ /dev/null @@ -1,7 +0,0 @@ -synopsis: Add sponsorship button -prs: #1190 -description: { - -[Well-Typed](https://www.well-typed.com/) - -} diff --git a/changelog.d/pr1194 b/changelog.d/pr1194 deleted file mode 100644 index 53136662..00000000 --- a/changelog.d/pr1194 +++ /dev/null @@ -1,3 +0,0 @@ -synopsis: Prevent race-conditions in testing -packages: servant-docs -prs: #1194 diff --git a/changelog.d/pr1197 b/changelog.d/pr1197 deleted file mode 100644 index bc041c62..00000000 --- a/changelog.d/pr1197 +++ /dev/null @@ -1,4 +0,0 @@ -synopsis: `HasClient` instance for `Stream` with `Headers` -packages: servant-client servant-client servant-http-streams -prs: #1197 -issues: #1170 diff --git a/changelog.d/pr1201 b/changelog.d/pr1201 deleted file mode 100644 index 0724fc38..00000000 --- a/changelog.d/pr1201 +++ /dev/null @@ -1,3 +0,0 @@ -synopsis: Remove unused extensions from cabal file -packages: servant -prs: #1201 diff --git a/changelog.d/pr1213 b/changelog.d/pr1213 deleted file mode 100644 index 3cb5f15b..00000000 --- a/changelog.d/pr1213 +++ /dev/null @@ -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. - -} diff --git a/changelog.d/pr1238 b/changelog.d/pr1238 deleted file mode 100644 index 5b0d838c..00000000 --- a/changelog.d/pr1238 +++ /dev/null @@ -1,3 +0,0 @@ -synopsis: Redact the authorization header in Show and exceptions -packages: servant-client -prs: #1238 diff --git a/changelog.d/pr1249 b/changelog.d/pr1249 deleted file mode 100644 index 3a5c772a..00000000 --- a/changelog.d/pr1249 +++ /dev/null @@ -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. - -} diff --git a/changelog.d/pr1263 b/changelog.d/pr1263 deleted file mode 100644 index 593bcd1b..00000000 --- a/changelog.d/pr1263 +++ /dev/null @@ -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). - -} diff --git a/changelog.d/z-changelog-d b/changelog.d/z-changelog-d deleted file mode 100644 index c7e027ff..00000000 --- a/changelog.d/z-changelog-d +++ /dev/null @@ -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 - -} diff --git a/changelog.d/z-ci-tweaks b/changelog.d/z-ci-tweaks deleted file mode 100644 index 331e5679..00000000 --- a/changelog.d/z-ci-tweaks +++ /dev/null @@ -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. - -} diff --git a/changelog.d/z-cookbook b/changelog.d/z-cookbook deleted file mode 100644 index 71dca975..00000000 --- a/changelog.d/z-cookbook +++ /dev/null @@ -1,9 +0,0 @@ -synopsis: New cookbook recipes -prs: #1171 #1088 #1198 - -description: { - -- [OIDC Recipe](#TODO) -- [MySQL Recipe](#TODO) - -} diff --git a/changelog.d/z-dependency-upgrades b/changelog.d/z-dependency-upgrades deleted file mode 100644 index 43d72ef0..00000000 --- a/changelog.d/z-dependency-upgrades +++ /dev/null @@ -1,9 +0,0 @@ -synopsis: Dependency upgrades -prs: - #1173 - #1181 - #1183 - #1188 - #1224 - #1245 - #1257 diff --git a/changelog.d/z-documentation-updates b/changelog.d/z-documentation-updates deleted file mode 100644 index 3d8b2215..00000000 --- a/changelog.d/z-documentation-updates +++ /dev/null @@ -1,8 +0,0 @@ -synopsis: Documentation updates -prs: - #1162 - #1174 - #1175 - #1234 - #1244 - #1247