Skip to content

Commit 164f757

Browse files
authored
Merge pull request #1224 from haskell-servant/forward-8.8
Forward 8.8
2 parents 7f10f7f + f089f8d commit 164f757

File tree

31 files changed

+126
-97
lines changed

31 files changed

+126
-97
lines changed

.travis.yml

Lines changed: 45 additions & 27 deletions
Large diffs are not rendered by default.

cabal.project

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,34 @@
11
packages:
22
servant/
33
servant-client/
4-
servant-jsaddle/
54
servant-client-core/
65
servant-http-streams/
76
servant-docs/
87
servant-foreign/
98
servant-server/
109
doc/tutorial/
1110

11+
-- servant streaming
12+
packages:
1213
servant-machines/
1314
servant-conduit/
1415
servant-pipes/
1516

16-
-- doc/cookbook/*/*.cabal
17+
-- servant GHCJS
18+
packages:
19+
servant-jsaddle/
1720

21+
-- Cookbooks
22+
packages:
1823
doc/cookbook/basic-auth
1924
doc/cookbook/curl-mock
2025
doc/cookbook/basic-streaming
2126
doc/cookbook/db-postgres-pool
22-
doc/cookbook/db-sqlite-simple
27+
-- doc/cookbook/db-sqlite-simple
2328
doc/cookbook/file-upload
2429
doc/cookbook/generic
2530
-- doc/cookbook/hoist-server-with-context
26-
doc/cookbook/https
31+
-- doc/cookbook/https
2732
-- doc/cookbook/jwt-and-basic-auth/
2833
doc/cookbook/pagination
2934
-- doc/cookbook/sentry
@@ -44,26 +49,16 @@ constraints:
4449
foundation >=0.0.14,
4550
memory <0.14.12 || >0.14.12
4651

47-
allow-newer:
48-
-- servant-pagination:servant, servant-pagination:servant-server,
49-
-- servant-multipart:servant, servant-multipart:servant-server,
50-
-- servant-auth-server:servant, servant-auth-server:servant-server,
51-
-- servant-js:servant, servant-js:servant-foreign
52-
53-
-- servant-quickcheck
54-
allow-newer:
55-
servant-quickcheck:servant, servant-quickcheck:servant-client, servant-quickcheck:servant-server,
56-
servant-quickcheck:hspec,
57-
servant-quickcheck:http-client
58-
59-
-- constraints: semigroups ^>=0.19
60-
-- constraints: hashable ^>=1.3
61-
-- constraints: network ^>=3.1
62-
-- constraints: machines ^>=0.7
52+
allow-newer: aeson-pretty-0.8.7:base-compat
6353

6454
allow-newer: vault-0.3.1.2:hashable
6555
allow-newer: psqueues-0.2.7.1:hashable
6656
allow-newer: sqlite-simple-0.4.16.0:semigroups
6757
allow-newer: direct-sqlite-2.3.24:semigroups
6858
allow-newer: io-streams-1.5.1.0:network
59+
allow-newer: io-streams-1.5.1.0:primitive
6960
allow-newer: openssl-streams-1.2.2.0:network
61+
62+
-- MonadFail
63+
-- https://github.com/nurpax/sqlite-simple/issues/74
64+
constraints: sqlite-simple < 0

doc/cookbook/basic-auth/basic-auth.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5
11+
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.1
1212

1313
executable cookbook-basic-auth
1414
main-is: BasicAuth.lhs

doc/cookbook/basic-streaming/basic-streaming.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5
11+
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.1
1212

1313
executable cookbook-basic-streaming
1414
main-is: Streaming.lhs
@@ -17,7 +17,7 @@ executable cookbook-basic-streaming
1717
ghc-options: -Wall -pgmL markdown-unlit -threaded -rtsopts
1818

1919
hs-source-dirs: .
20-
build-depends: base >= 4.8 && <4.13
20+
build-depends: base >= 4.8 && <5
2121
, aeson
2222
, bytestring
2323
, servant

doc/cookbook/curl-mock/curl-mock.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5
11+
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.1
1212

1313
executable cookbock-curl-mock
1414
main-is: CurlMock.lhs

doc/cookbook/db-postgres-pool/db-postgres-pool.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5
11+
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.1
1212

1313
executable cookbook-db-postgres-pool
1414
main-is: PostgresPool.lhs

doc/cookbook/db-sqlite-simple/db-sqlite-simple.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5
11+
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.1
1212

1313
executable cookbook-db-sqlite-simple
1414
main-is: DBConnection.lhs

doc/cookbook/file-upload/file-upload.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5
11+
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.1
1212

1313
executable cookbook-file-upload
1414
main-is: FileUpload.lhs

doc/cookbook/generic/generic.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Servant Contributors
88
maintainer: [email protected]
99
build-type: Simple
1010
cabal-version: >=1.10
11-
tested-with: GHC==8.4.4, GHC==8.6.5
11+
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.1
1212

1313
executable cookbook-using-custom-monad
1414
main-is: Generic.lhs

doc/cookbook/hoist-server-with-context/hoist-server-with-context.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ maintainer: [email protected]
1111
category: Servant
1212
build-type: Simple
1313
cabal-version: >=1.10
14-
tested-with: GHC==8.4.4, GHC==8.6.5
14+
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.1
1515

1616
executable cookbook-hoist-server-with-context
1717
main-is: HoistServerWithContext.lhs

0 commit comments

Comments
 (0)