-
-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow GHC 9.10 #1765
Allow GHC 9.10 #1765
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,3 +69,29 @@ if(impl(ghc >= 9.6.1)) | |
|
||
package servant-server | ||
ghc-options: -fprint-redundant-promotion-ticks | ||
|
||
allow-newer: postgresql-simple:base | ||
allow-newer: postgresql-simple:template-haskell | ||
allow-newer: postgresql-simple:containers | ||
allow-newer: postgresql-libpq:base | ||
allow-newer: servant-swagger-ui:base | ||
allow-newer: servant-swagger-ui-core:base | ||
allow-newer: file-embed-lzma:base | ||
allow-newer: file-embed-lzma:template-haskell | ||
allow-newer: file-embed-lzma:filepath | ||
allow-newer: lzma:base | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one was already bumped on hackage: https://hackage.haskell.org/package/lzma |
||
allow-newer: servant-openapi3:base | ||
allow-newer: insert-ordered-containers:base | ||
allow-newer: insert-ordered-containers:lens | ||
Comment on lines
+84
to
+85
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
allow-newer: openapi3:base | ||
allow-newer: openapi3:template-haskell | ||
allow-newer: swagger2:base | ||
allow-newer: swagger2:template-haskell | ||
allow-newer: swagger2:lens | ||
allow-newer: swagger2:containers | ||
Comment on lines
+89
to
+91
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
allow-newer: pipes-safe:base | ||
allow-newer: servant-js:base | ||
allow-newer: servant-js:lens | ||
allow-newer: lucid:base | ||
allow-newer: stringsearch:containers | ||
allow-newer: Cabal |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ maintainer: [email protected] | |
copyright: (c) Julian K. Arni | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4, GHC ==9.10.1 | ||
build-type: Simple | ||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -31,9 +31,9 @@ library | |
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators | ||
ghc-options: -Wall | ||
build-depends: | ||
base >= 4.10 && < 4.20 | ||
base >= 4.10 && < 4.21 | ||
, bytestring >= 0.10.6.0 && < 0.13 | ||
, containers >= 0.5.6.2 && < 0.7 | ||
, containers >= 0.5.6.2 && < 0.8 | ||
, servant-auth == 0.4.* | ||
, servant >= 0.13 && < 0.21 | ||
, servant-client-core >= 0.13 && < 0.21 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,14 +16,14 @@ maintainer: [email protected] | |
copyright: (c) Julian K. Arni | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4, GHC ==9.10.1 | ||
build-type: Custom | ||
extra-source-files: | ||
CHANGELOG.md | ||
|
||
custom-setup | ||
setup-depends: | ||
base < 4.20, Cabal < 4, cabal-doctest >=1.0.6 && <1.1 | ||
base < 4.21, Cabal < 4, cabal-doctest >=1.0.6 && <1.1 | ||
|
||
source-repository head | ||
type: git | ||
|
@@ -35,7 +35,7 @@ library | |
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators | ||
ghc-options: -Wall | ||
build-depends: | ||
base >= 4.10 && < 4.20 | ||
base >= 4.10 && < 4.21 | ||
, servant-docs >= 0.13 && < 0.14 | ||
, servant >= 0.13 && < 0.21 | ||
, servant-auth == 0.4.* | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ maintainer: [email protected] | |
copyright: (c) Julian K. Arni | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4, GHC ==9.10.1 | ||
build-type: Simple | ||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -31,7 +31,7 @@ library | |
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators | ||
ghc-options: -Wall | ||
build-depends: | ||
base >= 4.10 && < 4.20 | ||
base >= 4.10 && < 4.21 | ||
, aeson >= 1.0.0.1 && < 3 | ||
, base64-bytestring >= 1.0.0.1 && < 2 | ||
, blaze-builder >= 0.4.1.0 && < 0.5 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ maintainer: [email protected] | |
copyright: (c) Julian K. Arni | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4, GHC ==9.10.1 | ||
build-type: Simple | ||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -31,7 +31,7 @@ library | |
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators | ||
ghc-options: -Wall | ||
build-depends: | ||
base >= 4.10 && < 4.20 | ||
base >= 4.10 && < 4.21 | ||
, text >= 1.2.3.0 && < 2.2 | ||
, servant-swagger >= 1.1.5 && < 2 | ||
, swagger2 >= 2.2.2 && < 3 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ maintainer: [email protected] | |
copyright: (c) Julian K. Arni | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 | ||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4, GHC ==9.10.1 | ||
build-type: Simple | ||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -33,8 +33,8 @@ library | |
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators | ||
ghc-options: -Wall | ||
build-depends: | ||
base >= 4.10 && < 4.20 | ||
, containers >= 0.6 && < 0.7 | ||
base >= 4.10 && < 4.21 | ||
, containers >= 0.6 && < 0.8 | ||
, aeson >= 2.0 && < 3 | ||
, jose >= 0.10 && < 0.12 | ||
, lens >= 4.16.1 && < 5.4 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ author: Servant Contributors | |
maintainer: [email protected] | ||
copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors | ||
build-type: Simple | ||
tested-with: GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.8, GHC ==9.4.8, GHC ==9.6.4, GHC ==9.8.2 | ||
tested-with: GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.8, GHC ==9.4.8, GHC ==9.6.4, GHC ==9.8.2, GHC ==9.10.1 | ||
|
||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -41,7 +41,7 @@ library | |
-- | ||
-- note: mtl lower bound is so low because of GHC-7.8 | ||
build-depends: | ||
base >= 4.9 && < 4.20 | ||
base >= 4.9 && < 4.21 | ||
, bytestring >= 0.10.8.1 && < 0.13 | ||
, text >= 1.2.3.0 && < 2.2 | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ author: Servant Contributors | |
maintainer: [email protected] | ||
copyright: 2015-2019 Servant Contributors | ||
build-type: Simple | ||
tested-with: GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.8, GHC ==9.4.8, GHC ==9.6.4, GHC ==9.8.2 | ||
tested-with: GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.8, GHC ==9.4.8, GHC ==9.6.4, GHC ==9.8.2, GHC ==9.10.1 | ||
|
||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -41,7 +41,7 @@ library | |
-- | ||
-- note: mtl lower bound is so low because of GHC-7.8 | ||
build-depends: | ||
base >= 4.9 && < 4.20 | ||
base >= 4.9 && < 4.21 | ||
, text >= 1.2.3.0 && < 2.2 | ||
|
||
-- Servant dependencies | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ author: Servant Contributors | |
maintainer: [email protected] | ||
copyright: 2019 Servant Contributors | ||
build-type: Simple | ||
tested-with: GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.8, GHC ==9.4.8, GHC ==9.6.4, GHC ==9.8.2 | ||
tested-with: GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.8, GHC ==9.4.8, GHC ==9.6.4, GHC ==9.8.2, GHC ==9.10.1 | ||
|
||
extra-source-files: | ||
CHANGELOG.md | ||
|
@@ -38,9 +38,9 @@ library | |
-- Bundled with GHC: Lower bound to not force re-installs | ||
-- text and mtl are bundled starting with GHC-8.4 | ||
build-depends: | ||
base >= 4.9 && < 4.20 | ||
base >= 4.9 && < 4.21 | ||
, bytestring >= 0.10.8.1 && < 0.13 | ||
, containers >= 0.5.7.1 && < 0.7 | ||
, containers >= 0.5.7.1 && < 0.8 | ||
, deepseq >= 1.4.2.0 && < 1.6 | ||
, mtl ^>= 2.2.2 || ^>= 2.3.1 | ||
, text >= 1.2.3.0 && < 2.2 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ maintainer: [email protected] | |
category: Web | ||
build-type: Simple | ||
extra-source-files: CHANGELOG.yaml | ||
tested-with: GHC ==9.2.8 || ==9.4.8 || ==9.6.4 || ==9.8.1 | ||
tested-with: GHC ==9.2.8 || ==9.4.8 || ==9.6.4 || ==9.8.1 || ==9.10.1 | ||
|
||
source-repository head | ||
type: git | ||
|
@@ -36,7 +36,7 @@ library | |
ghc-options: -Wall -Wcompat | ||
build-depends: | ||
aeson >=0.8 && <2.3 | ||
, base >=4.9 && <4.20 | ||
, base >=4.9 && <4.21 | ||
, base-compat-batteries >=0.10.1 && <0.15 | ||
, bytestring >=0.10 && <0.13 | ||
, case-insensitive >=1.2 && <1.3 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
blocked on