Merge pull request #1183 from haskell-servant/allow-newer-stuff
Allow newer network, semigroups, hashable, machines
This commit is contained in:
commit
4bd2aa10cd
7 changed files with 29 additions and 5 deletions
12
.travis.yml
12
.travis.yml
|
@ -131,6 +131,12 @@ install:
|
||||||
echo "allow-newer: servant-quickcheck:servant-server" >> cabal.project
|
echo "allow-newer: servant-quickcheck:servant-server" >> cabal.project
|
||||||
echo "allow-newer: servant-quickcheck:hspec" >> cabal.project
|
echo "allow-newer: servant-quickcheck:hspec" >> cabal.project
|
||||||
echo "allow-newer: servant-quickcheck:http-client" >> cabal.project
|
echo "allow-newer: servant-quickcheck:http-client" >> cabal.project
|
||||||
|
echo "allow-newer: vault-0.3.1.2:hashable" >> cabal.project
|
||||||
|
echo "allow-newer: psqueues-0.2.7.1:hashable" >> cabal.project
|
||||||
|
echo "allow-newer: sqlite-simple-0.4.16.0:semigroups" >> cabal.project
|
||||||
|
echo "allow-newer: direct-sqlite-2.3.24:semigroups" >> cabal.project
|
||||||
|
echo "allow-newer: io-streams-1.5.1.0:network" >> cabal.project
|
||||||
|
echo "allow-newer: openssl-streams-1.2.2.0:network" >> cabal.project
|
||||||
echo "optimization: False" >> cabal.project
|
echo "optimization: False" >> cabal.project
|
||||||
echo "write-ghc-environment-files: always" >> cabal.project
|
echo "write-ghc-environment-files: always" >> cabal.project
|
||||||
- "for pkg in $($HCPKG list --simple-output); do echo $pkg | sed 's/-[^-]*$//' | (grep -vE -- '^(cookbook-basic-auth|cookbook-basic-streaming|cookbook-curl-mock|cookbook-db-postgres-pool|cookbook-db-sqlite-simple|cookbook-file-upload|cookbook-generic|cookbook-https|cookbook-pagination|cookbook-structuring-apis|cookbook-testing|cookbook-using-custom-monad|cookbook-using-free-client|servant|servant-client|servant-client-core|servant-conduit|servant-docs|servant-foreign|servant-http-streams|servant-machines|servant-pipes|servant-server|tutorial)$' || true) | sed 's/^/constraints: /' | sed 's/$/ installed/' >> cabal.project.local; done"
|
- "for pkg in $($HCPKG list --simple-output); do echo $pkg | sed 's/-[^-]*$//' | (grep -vE -- '^(cookbook-basic-auth|cookbook-basic-streaming|cookbook-curl-mock|cookbook-db-postgres-pool|cookbook-db-sqlite-simple|cookbook-file-upload|cookbook-generic|cookbook-https|cookbook-pagination|cookbook-structuring-apis|cookbook-testing|cookbook-using-custom-monad|cookbook-using-free-client|servant|servant-client|servant-client-core|servant-conduit|servant-docs|servant-foreign|servant-http-streams|servant-machines|servant-pipes|servant-server|tutorial)$' || true) | sed 's/^/constraints: /' | sed 's/$/ installed/' >> cabal.project.local; done"
|
||||||
|
@ -210,6 +216,12 @@ script:
|
||||||
echo "allow-newer: servant-quickcheck:servant-server" >> cabal.project
|
echo "allow-newer: servant-quickcheck:servant-server" >> cabal.project
|
||||||
echo "allow-newer: servant-quickcheck:hspec" >> cabal.project
|
echo "allow-newer: servant-quickcheck:hspec" >> cabal.project
|
||||||
echo "allow-newer: servant-quickcheck:http-client" >> cabal.project
|
echo "allow-newer: servant-quickcheck:http-client" >> cabal.project
|
||||||
|
echo "allow-newer: vault-0.3.1.2:hashable" >> cabal.project
|
||||||
|
echo "allow-newer: psqueues-0.2.7.1:hashable" >> cabal.project
|
||||||
|
echo "allow-newer: sqlite-simple-0.4.16.0:semigroups" >> cabal.project
|
||||||
|
echo "allow-newer: direct-sqlite-2.3.24:semigroups" >> cabal.project
|
||||||
|
echo "allow-newer: io-streams-1.5.1.0:network" >> cabal.project
|
||||||
|
echo "allow-newer: openssl-streams-1.2.2.0:network" >> cabal.project
|
||||||
echo "optimization: False" >> cabal.project
|
echo "optimization: False" >> cabal.project
|
||||||
echo "write-ghc-environment-files: always" >> cabal.project
|
echo "write-ghc-environment-files: always" >> cabal.project
|
||||||
- "for pkg in $($HCPKG list --simple-output); do echo $pkg | sed 's/-[^-]*$//' | (grep -vE -- '^(cookbook-basic-auth|cookbook-basic-streaming|cookbook-curl-mock|cookbook-db-postgres-pool|cookbook-db-sqlite-simple|cookbook-file-upload|cookbook-generic|cookbook-https|cookbook-pagination|cookbook-structuring-apis|cookbook-testing|cookbook-using-custom-monad|cookbook-using-free-client|servant|servant-client|servant-client-core|servant-conduit|servant-docs|servant-foreign|servant-http-streams|servant-machines|servant-pipes|servant-server|tutorial)$' || true) | sed 's/^/constraints: /' | sed 's/$/ installed/' >> cabal.project.local; done"
|
- "for pkg in $($HCPKG list --simple-output); do echo $pkg | sed 's/-[^-]*$//' | (grep -vE -- '^(cookbook-basic-auth|cookbook-basic-streaming|cookbook-curl-mock|cookbook-db-postgres-pool|cookbook-db-sqlite-simple|cookbook-file-upload|cookbook-generic|cookbook-https|cookbook-pagination|cookbook-structuring-apis|cookbook-testing|cookbook-using-custom-monad|cookbook-using-free-client|servant|servant-client|servant-client-core|servant-conduit|servant-docs|servant-foreign|servant-http-streams|servant-machines|servant-pipes|servant-server|tutorial)$' || true) | sed 's/^/constraints: /' | sed 's/$/ installed/' >> cabal.project.local; done"
|
||||||
|
|
|
@ -52,3 +52,15 @@ allow-newer:
|
||||||
servant-quickcheck:servant, servant-quickcheck:servant-client, servant-quickcheck:servant-server,
|
servant-quickcheck:servant, servant-quickcheck:servant-client, servant-quickcheck:servant-server,
|
||||||
servant-quickcheck:hspec,
|
servant-quickcheck:hspec,
|
||||||
servant-quickcheck:http-client
|
servant-quickcheck:http-client
|
||||||
|
|
||||||
|
-- constraints: semigroups ^>=0.19
|
||||||
|
-- constraints: hashable ^>=1.3
|
||||||
|
-- constraints: network ^>=3.1
|
||||||
|
-- constraints: machines ^>=0.7
|
||||||
|
|
||||||
|
allow-newer: vault-0.3.1.2:hashable
|
||||||
|
allow-newer: psqueues-0.2.7.1:hashable
|
||||||
|
allow-newer: sqlite-simple-0.4.16.0:semigroups
|
||||||
|
allow-newer: direct-sqlite-2.3.24:semigroups
|
||||||
|
allow-newer: io-streams-1.5.1.0:network
|
||||||
|
allow-newer: openssl-streams-1.2.2.0:network
|
||||||
|
|
|
@ -124,7 +124,7 @@ test-suite spec
|
||||||
entropy >= 0.4.1.3 && < 0.5
|
entropy >= 0.4.1.3 && < 0.5
|
||||||
, hspec >= 2.6.0 && < 2.8
|
, hspec >= 2.6.0 && < 2.8
|
||||||
, HUnit >= 1.6.0.0 && < 1.7
|
, HUnit >= 1.6.0.0 && < 1.7
|
||||||
, network >= 2.8.0.0 && < 3.1
|
, network >= 2.8.0.0 && < 3.2
|
||||||
, QuickCheck >= 2.12.6.1 && < 2.14
|
, QuickCheck >= 2.12.6.1 && < 2.14
|
||||||
, servant == 0.16.*
|
, servant == 0.16.*
|
||||||
, servant-server == 0.16.*
|
, servant-server == 0.16.*
|
||||||
|
|
|
@ -62,7 +62,7 @@ library
|
||||||
, base-compat >= 0.10.5 && < 0.11
|
, base-compat >= 0.10.5 && < 0.11
|
||||||
, case-insensitive >= 1.2.0.11 && < 1.3
|
, case-insensitive >= 1.2.0.11 && < 1.3
|
||||||
, control-monad-omega >= 0.3.1 && < 0.4
|
, control-monad-omega >= 0.3.1 && < 0.4
|
||||||
, hashable >= 1.2.7.0 && < 1.3
|
, hashable >= 1.2.7.0 && < 1.4
|
||||||
, http-media >= 0.7.1.3 && < 0.9
|
, http-media >= 0.7.1.3 && < 0.9
|
||||||
, http-types >= 0.12.2 && < 0.13
|
, http-types >= 0.12.2 && < 0.13
|
||||||
, lens >= 4.17 && < 4.18
|
, lens >= 4.17 && < 4.18
|
||||||
|
|
|
@ -118,7 +118,7 @@ test-suite spec
|
||||||
entropy >= 0.4.1.3 && < 0.5
|
entropy >= 0.4.1.3 && < 0.5
|
||||||
, hspec >= 2.6.0 && < 2.8
|
, hspec >= 2.6.0 && < 2.8
|
||||||
, HUnit >= 1.6.0.0 && < 1.7
|
, HUnit >= 1.6.0.0 && < 1.7
|
||||||
, network >= 2.8.0.0 && < 3.1
|
, network >= 2.8.0.0 && < 3.2
|
||||||
, QuickCheck >= 2.12.6.1 && < 2.14
|
, QuickCheck >= 2.12.6.1 && < 2.14
|
||||||
, servant == 0.16.*
|
, servant == 0.16.*
|
||||||
, servant-server == 0.16.*
|
, servant-server == 0.16.*
|
||||||
|
|
|
@ -35,7 +35,7 @@ library
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.9 && <5
|
base >=4.9 && <5
|
||||||
, bytestring >=0.10.8.1 && <0.11
|
, bytestring >=0.10.8.1 && <0.11
|
||||||
, machines >=0.6.4 && <0.7
|
, machines >=0.6.4 && <0.8
|
||||||
, mtl >=2.2.2 && <2.3
|
, mtl >=2.2.2 && <2.3
|
||||||
, servant >=0.15 && <0.17
|
, servant >=0.15 && <0.17
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
|
|
|
@ -92,7 +92,7 @@ library
|
||||||
, http-types >= 0.12.2 && < 0.13
|
, http-types >= 0.12.2 && < 0.13
|
||||||
, network-uri >= 2.6.1.0 && < 2.8
|
, network-uri >= 2.6.1.0 && < 2.8
|
||||||
, monad-control >= 1.0.2.3 && < 1.1
|
, monad-control >= 1.0.2.3 && < 1.1
|
||||||
, network >= 2.8 && < 3.1
|
, network >= 2.8 && < 3.2
|
||||||
, string-conversions >= 0.4.0.1 && < 0.5
|
, string-conversions >= 0.4.0.1 && < 0.5
|
||||||
, resourcet >= 1.2.2 && < 1.3
|
, resourcet >= 1.2.2 && < 1.3
|
||||||
, tagged >= 0.8.6 && < 0.9
|
, tagged >= 0.8.6 && < 0.9
|
||||||
|
|
Loading…
Reference in a new issue