Skip to content

Commit 7d29970

Browse files
committed
Merge master and fix conflicts
2 parents 6801446 + cc1e921 commit 7d29970

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+612
-1106
lines changed

.travis.yml

+69-68
Large diffs are not rendered by default.

CONTRIBUTING.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,34 @@ Some things we like:
3535
Though we aren't sticklers for style, the `.stylish-haskell.yaml` and `HLint.hs`
3636
files in the repository provide a good baseline for consistency.
3737

38-
**Important**: please do not modify the changelog files nor the versions of the servant packages you are sending patches for. We take care of this before every release and do it uniformly for all the servant packages, so there's no need to worry about this for your pull requests.
38+
**Important**: please do not modify the versions of the servant packages you are sending patches for.
39+
40+
## Changelog entries
41+
42+
We experiment with using [changelog-d tool](https://github.com/phadej/changelog-d) to assemble changelogs.
43+
You are not required to install it.
44+
45+
In each PR please add a file to `changelog.d` directory named after issue you are solving or the pull request itself (in a separate commit after you know the pull request number). For example
46+
47+
```cabal
48+
synopsis: One sentence summary of the change.
49+
prs: #1219
50+
issues: #1028
51+
52+
description: {
53+
54+
A longer description. Small changes don't need this.
55+
Bigger ones definitely do, for example we try to include migration hints
56+
for breaking changes.
57+
58+
However if you don't know what to write, that's ok too.
59+
60+
By the way, the braces around are omitted when the file is parsed.
61+
They can be used so the field doesn't need to be indented, which is handy
62+
for prose.
63+
64+
}
65+
```
3966

4067
## PR process
4168

Makefile

+10
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,13 @@ build-ghcjs :
2020

2121
packdeps :
2222
packdeps */*.cabal
23+
24+
doctest : doctest-servant doctest-servant-server
25+
perl -i -e 'while (<ARGV>) { print unless /package-id\s+base-compat-\d+(\.\d+)*/; }' .ghc.environment.*
26+
27+
doctest-servant :
28+
(cd servant && doctest src)
29+
(cd servant && doctest test/Servant/LinksSpec.hs)
30+
31+
doctest-servant-server :
32+
(cd servant-server && doctest src)

cabal.haskell-ci

+4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1+
distribution: bionic
12
folds: all-but-test
23
branches: master
34
jobs-selection: any
45
google-chrome: True
56
ghcjs-tests: True
7+
doctest: True
8+
doctest-filter-packages: base-compat-batteries
9+
doctest-skip: tutorial
610

711
-- https://github.com/haskell/cabal/issues/6176
812
ghcjs-tools: hspec-discover

cabal.project

+7-4
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ packages:
1515
servant-pipes/
1616

1717
-- servant GHCJS
18-
packages:
19-
servant-jsaddle/
18+
-- packages:
19+
-- servant-jsaddle/
2020

2121
-- Cookbooks
2222
packages:
@@ -38,8 +38,6 @@ packages:
3838
doc/cookbook/using-free-client
3939
-- doc/cookbook/open-id-connect
4040

41-
42-
4341
tests: True
4442
optimization: False
4543
-- reorder-goals: True
@@ -62,3 +60,8 @@ allow-newer: openssl-streams-1.2.2.0:network
6260
-- MonadFail
6361
-- https://github.com/nurpax/sqlite-simple/issues/74
6462
constraints: sqlite-simple < 0
63+
64+
constraints: base-compat ^>=0.11
65+
66+
-- needed for doctests
67+
write-ghc-environment-files: always

changelog.d/config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
organization: haskell-servant
2+
repository: servant

changelog.d/issue1028

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
synopsis: Add NoContentVerb
2+
prs: #1228 #1219
3+
issues: #1028
4+
significance: significant
5+
6+
description: {
7+
8+
The `NoContent` API endpoints should now use `NoContentVerb` combinator.
9+
The API type changes are usually of the kind
10+
11+
```diff
12+
- :<|> PostNoContent '[JSON] NoContent
13+
+ :<|> PostNoContent
14+
```
15+
16+
i.e. one doesn't need to specify the content-type anymore. There is no content.
17+
18+
}

changelog.d/issue1200

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
synopsis: Fix Verb with headers checking content type differently
2+
packages: servant-client-core servant-client
3+
prs: #1204
4+
issues: #1200
5+
packages: servant-client servant-client-core servant-http-streams
6+
7+
description: {
8+
9+
For `Verb`s with response `Headers`, the implementation didn't check
10+
for the content-type of the response. Now it does.
11+
12+
}

changelog.d/issue1240

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
synopsis: Merge documentation from duplicate routes
2+
packages: servant-docs
3+
prs: #1241
4+
issues: #1240
5+
6+
description: {
7+
8+
Servant supports defining the same route multiple times with different
9+
content-types and result-types, but servant-docs was only documenting
10+
the first of copy of such duplicated routes. It now combines the
11+
documentation from all the copies.
12+
13+
Unfortunately, it is not yet possible for the documentation to specify
14+
multiple status codes.
15+
16+
}

changelog.d/jsaddle

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
synopsis: Progress on servant-jsaddle
2+
packages: servant-jsaddle
3+
prs: #1216

changelog.d/pr1156

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
synopsis: `Capture` can be `Lenient`
2+
issues: #1155
3+
prs: #1156
4+
significance: significant
5+
description: {
6+
7+
You can specify a lenient capture as
8+
9+
```haskell
10+
:<|> "capture-lenient" :> Capture' '[Lenient] "foo" Int :> GET
11+
```
12+
13+
which will make the capture always succeed. Handlers will be of the
14+
type `Either String CapturedType`, where `Left err` represents
15+
the possible parse failure.
16+
17+
}

changelog.d/pr1190

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
synopsis: Add sponsorship button
2+
prs: #1190
3+
description: {
4+
5+
[Well-Typed](https://www.well-typed.com/)
6+
7+
}

changelog.d/pr1194

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
synopsis: Prevent race-conditions in testing
2+
packages: servant-docs
3+
prs: #1194

changelog.d/pr1197

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
synopsis: `HasClient` instance for `Stream` with `Headers`
2+
packages: servant-client servant-client servant-http-streams
3+
prs: #1197
4+
issues: #1170

changelog.d/pr1201

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

changelog.d/pr1213

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
synopsis: Added a function to create Client.Request in ClientEnv
2+
packages: servant-client
3+
significance: significant
4+
prs: #1213 #1255
5+
description: {
6+
7+
The new member `makeClientRequest` of `ClientEnv` is used to create
8+
`http-client` `Request` from `servant-client-core` `Request`.
9+
This functionality can be used for example to set
10+
dynamic timeouts for each request.
11+
12+
}

changelog.d/pr1238

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
synopsis: Redact the authorization header in Show and exceptions
2+
packages: servant-client
3+
prs: #1238

changelog.d/pr1249

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
synopsis: use queryString to parse QueryParam, QueryParams and QueryFlag
2+
packages: servant-server
3+
prs: #1249 #1262
4+
significance: significant
5+
description: {
6+
7+
Some APIs need query parameters rewriting, e.g. in order to support
8+
for multiple casing (camel, snake, etc) or something to that effect.
9+
10+
This could be easily achieved by using WAI Middleware and modyfing
11+
request's `Query`. But QueryParam, QueryParams and QueryFlag use
12+
`rawQueryString`. By using `queryString` rather then `rawQueryString`
13+
we can enable such rewritings.
14+
15+
}

changelog.d/pr1263

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
synopsis: Make packages `build-type: Simple`
2+
packages: servant servant-server
3+
prs: #1263
4+
significance: significant
5+
description: {
6+
7+
We used `build-type: Custom`, but it's problematic e.g.
8+
for cross-compiling. The benefit is small, as the doctests
9+
can be run other ways too (though not so conviniently).
10+
11+
}

changelog.d/z-changelog-d

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
synopsis: Try changelog-d for changelog management
2+
prs: #1230
3+
4+
description: {
5+
6+
Check the [CONTRIBUTING.md](https://github.com/haskell-servant/servant/blob/master/CONTRIBUTING.md) for details
7+
8+
}

changelog.d/z-ci-tweaks

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
synopsis: CI and testing tweaks.
2+
prs:
3+
#1154
4+
#1157
5+
#1182
6+
#1214
7+
#1229
8+
#1233
9+
#1242
10+
#1247
11+
#1250
12+
#1258
13+
14+
description: {
15+
16+
We are experiencing some bitrotting of cookbook recipe dependencies,
17+
therefore some of them aren't build as part of our CI anymore.
18+
19+
}

changelog.d/z-cookbook

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
synopsis: New cookbook recipes
2+
prs: #1171 #1088 #1198
3+
4+
description: {
5+
6+
- [OIDC Recipe](#TODO)
7+
- [MySQL Recipe](#TODO)
8+
9+
}

changelog.d/z-dependency-upgrades

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
synopsis: Dependency upgrades
2+
prs:
3+
#1173
4+
#1181
5+
#1183
6+
#1188
7+
#1224
8+
#1245
9+
#1257

changelog.d/z-documentation-updates

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
synopsis: Documentation updates
2+
prs:
3+
#1162
4+
#1174
5+
#1175
6+
#1234
7+
#1244
8+
#1247

doc/cookbook/using-free-client/UsingFreeClient.lhs

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
or simply put: _a practical introduction to `Servant.Client.Free`_.
44

5-
Someone asked on IRC how one could access the intermediate Requests (resp. Responses)
5+
Someone asked on IRC how one could access the intermediate Requests (resp. Responses)
66
produced (resp. received) by client functions derived using servant-client.
77
My response to such inquiries is: to extend `servant-client` in an ad-hoc way (e.g for testing or debugging
88
purposes), use `Servant.Client.Free`. This recipe shows how.
@@ -119,7 +119,7 @@ Now we can use `servant-client`'s internals to convert servant's `Request`
119119
to http-client's `Request`, and we can inspect it:
120120
121121
```haskell
122-
let req' = I.requestToClientRequest burl req
122+
let req' = I.defaultMakeClientRequest burl req
123123
putStrLn $ "Making request: " ++ show req'
124124
```
125125
@@ -136,11 +136,11 @@ and calling the continuation. We should get a `Pure` value.
136136
137137
```haskell
138138
let res = I.clientResponseToResponse id res'
139-
139+
140140
case k res of
141141
Pure n ->
142142
putStrLn $ "Expected 1764, got " ++ show n
143-
_ ->
143+
_ ->
144144
putStrLn "ERROR: didn't got a response"
145145
```
146146
@@ -153,7 +153,7 @@ and responses available for us to inspect, since `RunClient` only gives us
153153
access to one `Request` or `Response` at a time.
154154
155155
On the other hand, a "batch collection" of requests and/or responses can be achieved
156-
with both free clients and a custom `RunClient` instance rather easily, for example
156+
with both free clients and a custom `RunClient` instance rather easily, for example
157157
by using a `Writer [(Request, Response)]` monad.
158158
159159
Here is an example of running our small `test` against a running server:

doc/tutorial/Authentication.lhs

+3-3
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ genAuthAPI = Proxy
318318
319319
Now we need to bring everything together for the server. We have the
320320
`AuthHandler Request Account` value and an `AuthProtected` endpoint. To bind these
321-
together, we need to provide a [Type Family](https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/type-families.html)
321+
together, we need to provide a [Type Family](https://downloads.haskell.org/~ghc/8.8.1/docs/html/users_guide/glasgow_exts.html#type-families)
322322
instance that tells the `HasServer` instance that our `Context` will supply a
323323
`Account` (via `AuthHandler Request Account`) and that downstream combinators will
324324
have access to this `Account` value (or an error will be thrown if authentication
@@ -368,10 +368,10 @@ genAuthMain = run 8080 (serveWithContext genAuthAPI genAuthServerContext genAuth
368368
$ curl -XGET localhost:8080/private
369369
Missing auth header
370370
371-
$ curl -XGET localhost:8080/private -H "servant-auth-cookie: key3"
371+
$ curl -XGET localhost:8080/private -H "Cookie: servant-auth-cookie=key3"
372372
[{"ssshhh":"this is a secret: Ghédalia Tazartès"}]
373373
374-
$ curl -XGET localhost:8080/private -H "servant-auth-cookie: bad-key"
374+
$ curl -XGET localhost:8080/private -H "Cookie: servant-auth-cookie=bad-key"
375375
Invalid Cookie
376376
377377
$ curl -XGET localhost:8080/public

doc/tutorial/Client.lhs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Querying an API
22

3-
While defining handlers that [serve an API](Server.lhs) has a lot to it, querying an API is simpler: we do not care about what happens inside the webserver, we just need to know how to talk to it and get a response back. That said, we usually have to write the querying functions by hand because the structure of the API isn't a first class citizen and can't be inspected to generate the client-side functions.
3+
While defining handlers that [serve an API](Server.html) has a lot to it, querying an API is simpler: we do not care about what happens inside the webserver, we just need to know how to talk to it and get a response back. That said, we usually have to write the querying functions by hand because the structure of the API isn't a first class citizen and can't be inspected to generate the client-side functions.
44

55
**servant** however has a way to inspect APIs, because APIs are just Haskell types and (GHC) Haskell lets us do quite a few things with types. In the same way that we look at an API type to deduce the types the handlers should have, we can inspect the structure of the API to *derive* Haskell functions that take one argument for each occurrence of `Capture`, `ReqBody`, `QueryParam`
6-
and friends (see [the tutorial introduction](ApiType.lhs) for an overview). By *derive*, we mean that there's no code generation involved - the functions are defined just by the structure of the API type.
6+
and friends (see [the tutorial introduction](ApiType.html) for an overview). By *derive*, we mean that there's no code generation involved - the functions are defined just by the structure of the API type.
77

88
The source for this tutorial section is a literate Haskell file, so first we need to have some language extensions and imports:
99

doc/tutorial/test/Spec.hs

+11-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
{-# OPTIONS_GHC -F -pgmF hspec-discover #-}
1+
module Main where
2+
3+
import qualified JavascriptSpec
4+
5+
import Test.Hspec (Spec, hspec, describe)
6+
7+
main :: IO ()
8+
main = hspec spec
9+
10+
spec :: Spec
11+
spec = describe "Javascript" JavascriptSpec.spec

doc/tutorial/tutorial.cabal

+1-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ library
6666
blaze-html >= 0.9.0.1 && < 0.10
6767
, blaze-markup >= 0.8.0.0 && < 0.9
6868
, cookie >= 0.4.3 && < 0.5
69-
, js-jquery >= 3.2.1 && < 3.3
69+
, js-jquery >= 3.3.1 && < 3.4
7070
, lucid >= 2.9.11 && < 2.10
7171
, random >= 1.1 && < 1.2
7272
, servant-js >= 0.9 && < 0.10
@@ -83,8 +83,6 @@ test-suite spec
8383
hs-source-dirs: test
8484
main-is: Spec.hs
8585
other-modules: JavascriptSpec
86-
build-tool-depends:
87-
hspec-discover:hspec-discover
8886
build-depends: base
8987
, tutorial
9088
, hspec

0 commit comments

Comments
 (0)