http-api-data 0.6 → 0.6.1
raw patch · 2 files changed
+28/−21 lines, 2 filesdep ~QuickCheckdep ~basedep ~containers
Dependency ranges changed: QuickCheck, base, containers, cookie, hashable, http-types, tagged, text-iso8601, text-show, transformers, unordered-containers, uuid-types
Files
- CHANGELOG.md +7/−0
- http-api-data.cabal +21/−21
CHANGELOG.md view
@@ -1,3 +1,10 @@+0.6.1++* Require at least GHC-8.6+* Support `cookie-0.5.0`, see [#137](https://github.com/fizruk/http-api-data/pull/137).++ Note that `cookie-0.5.0`'s parser now removes double quotes around cookie values.+ 0.6 ---
http-api-data.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.12 name: http-api-data-version: 0.6+version: 0.6.1 synopsis: Converting to/from HTTP API data like URL pieces, headers and query parameters. category: Web@@ -23,15 +23,15 @@ README.md tested-with:- GHC==8.2.2,- GHC==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.7, GHC==9.0.2, GHC==9.2.8,- GHC==9.4.5,- GHC==9.6.2+ GHC==9.4.8,+ GHC==9.6.5,+ GHC==9.8.2,+ GHC==9.10.1 flag use-text-show description: Use text-show library for efficient ToHttpApiData implementations.@@ -42,26 +42,26 @@ hs-source-dirs: src/ -- GHC bundled- build-depends: base >= 4.10.1.0 && < 4.19- , bytestring >= 0.10.8.2 && < 0.12- , containers >= 0.5.10.2 && < 0.7- , text >= 1.2.3.0 && < 1.3 || >=2.0 && <2.1- , transformers >= 0.5.2.0 && < 0.7+ build-depends: base >= 4.12.0.0 && < 4.21+ , bytestring >= 0.10.8.2 && < 0.13+ , containers >= 0.6.0.1 && < 0.8+ , text >= 1.2.3.0 && < 1.3 || >=2.0 && <2.2+ , transformers >= 0.5.6.2 && < 0.7 -- other-dependencies build-depends:- cookie >= 0.4.3 && < 0.5- , hashable >= 1.2.7.0 && < 1.5- , http-types >= 0.12.3 && < 0.13- , text-iso8601 >= 0.1 && < 0.2- , tagged >= 0.8.5 && < 0.9+ cookie >= 0.4.3 && < 0.6+ , hashable >= 1.4.4.0 && < 1.5+ , http-types >= 0.12.4 && < 0.13+ , text-iso8601 >= 0.1.1 && < 0.2+ , tagged >= 0.8.8 && < 0.9 , time-compat >= 1.9.5 && < 1.10- , unordered-containers >= 0.2.10.0 && < 0.3- , uuid-types >= 1.0.3 && < 1.1+ , unordered-containers >= 0.2.20 && < 0.3+ , uuid-types >= 1.0.6 && < 1.1 if flag(use-text-show) cpp-options: -DUSE_TEXT_SHOW- build-depends: text-show >= 3.8.2 && <3.11+ build-depends: text-show >= 3.10.5 && <3.11 exposed-modules: Web.HttpApiData@@ -81,7 +81,7 @@ hs-source-dirs: test ghc-options: -Wall default-language: Haskell2010- build-tool-depends: hspec-discover:hspec-discover >= 2.7.1 && <2.11+ build-tool-depends: hspec-discover:hspec-discover >= 2.7.1 && <2.12 -- inherited depndencies build-depends: base@@ -94,8 +94,8 @@ , uuid-types build-depends: HUnit >= 1.6.0.0 && <1.7- , hspec >= 2.7.1 && <2.11- , QuickCheck >= 2.13.1 && <2.15+ , hspec >= 2.7.1 && <2.12+ , QuickCheck >= 2.13.1 && <2.16 , quickcheck-instances >= 0.3.25.2 && <0.4 source-repository head