From 9dee0136f17ad9e9a8cf4549dcacceb2f06f9e3d Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Wed, 5 Oct 2022 17:09:57 +0300 Subject: [PATCH 1/3] Allow http-api-data 0.5 Builds fine and all tests pass. --- servant-server/servant-server.cabal | 2 +- servant/servant.cabal | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/servant-server/servant-server.cabal b/servant-server/servant-server.cabal index f354a1e8..6467717e 100644 --- a/servant-server/servant-server.cabal +++ b/servant-server/servant-server.cabal @@ -73,7 +73,7 @@ library -- strict dependency as we re-export 'servant' things. build-depends: servant >= 0.19 && < 0.20 - , http-api-data >= 0.4.1 && < 0.4.4 + , http-api-data >= 0.4.1 && < 0.5.1 -- Other dependencies: Lower bound around what is in the latest Stackage LTS. -- Here can be exceptions if we really need features from the newer versions. diff --git a/servant/servant.cabal b/servant/servant.cabal index 32b63feb..948eb4da 100644 --- a/servant/servant.cabal +++ b/servant/servant.cabal @@ -92,7 +92,7 @@ library -- We depend (heavily) on the API of these packages: -- i.e. re-export, or allow using without direct dependency build-depends: - http-api-data >= 0.4.1 && < 0.4.4 + http-api-data >= 0.4.1 && < 0.5.1 , singleton-bool >= 0.1.4 && < 0.1.7 -- Other dependencies: Lower bound around what is in the latest Stackage LTS. From 66e8360cb325f5e27b94c397b8e88269500d86d6 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Fri, 21 Oct 2022 10:56:18 +0300 Subject: [PATCH 2/3] Relax to 0.6 Co-authored-by: endgame --- servant/servant.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servant/servant.cabal b/servant/servant.cabal index 948eb4da..eb7f937e 100644 --- a/servant/servant.cabal +++ b/servant/servant.cabal @@ -92,7 +92,7 @@ library -- We depend (heavily) on the API of these packages: -- i.e. re-export, or allow using without direct dependency build-depends: - http-api-data >= 0.4.1 && < 0.5.1 + http-api-data >= 0.4.1 && < 0.6 , singleton-bool >= 0.1.4 && < 0.1.7 -- Other dependencies: Lower bound around what is in the latest Stackage LTS. From fd867613cede33f0962967a369c8980ca0f2069f Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Thu, 3 Nov 2022 01:27:14 +0200 Subject: [PATCH 3/3] Relax servant-server to 0.6 as well --- servant-server/servant-server.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servant-server/servant-server.cabal b/servant-server/servant-server.cabal index 6467717e..ef908290 100644 --- a/servant-server/servant-server.cabal +++ b/servant-server/servant-server.cabal @@ -73,7 +73,7 @@ library -- strict dependency as we re-export 'servant' things. build-depends: servant >= 0.19 && < 0.20 - , http-api-data >= 0.4.1 && < 0.5.1 + , http-api-data >= 0.4.1 && < 0.6 -- Other dependencies: Lower bound around what is in the latest Stackage LTS. -- Here can be exceptions if we really need features from the newer versions.