influxdb 1.9.3 → 1.9.3.1
raw patch · 2 files changed
+20/−13 lines, 2 filesdep +attoparsec-aesondep ~aesondep ~basedep ~bytestringPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependencies added: attoparsec-aeson
Dependency ranges changed: aeson, base, bytestring, containers, doctest, tasty, template-haskell, text, time
API changes (from Hackage documentation)
- Database.InfluxDB.Query: instance Database.InfluxDB.Query.QueryResults Data.Void.Void
+ Database.InfluxDB.Query: instance Database.InfluxDB.Query.QueryResults GHC.Base.Void
- Database.InfluxDB: newtype Tagged (s :: k) b
+ Database.InfluxDB: newtype () => Tagged (s :: k) b
- Database.InfluxDB.Query: newtype Tagged (s :: k) b
+ Database.InfluxDB.Query: newtype () => Tagged (s :: k) b
Files
- CHANGELOG.md +5/−0
- influxdb.cabal +15/−13
CHANGELOG.md view
@@ -1,5 +1,10 @@ # Revision history for influxdb +## v1.9.3.1 - 2024-03-15++* Support GHC 9.8 ([#98](https://github.com/maoe/influxdb-haskell/pull/98))+* Allow latest time package ([#99](https://github.com/maoe/influxdb-haskell/pull/99))+ ## v1.9.3 - 2023-06-29 * Mitigate InfluxDB compatibility problems ([#94](https://github.com/maoe/influxdb-haskell/pull/94))
influxdb.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.24 name: influxdb-version: 1.9.3+version: 1.9.3.1 synopsis: InfluxDB client library for Haskell description: @influxdb@ is an InfluxDB client library for Haskell.@@ -11,7 +11,7 @@ license-file: LICENSE author: Mitsutoshi Aoe maintainer: Mitsutoshi Aoe <me@maoe.name>-copyright: Copyright (C) 2014-2023 Mitsutoshi Aoe+copyright: Copyright (C) 2014-2024 Mitsutoshi Aoe category: Database build-type: Custom tested-with:@@ -21,8 +21,9 @@ GHC == 8.10.7 GHC == 9.0.2 GHC == 9.2.8- GHC == 9.4.5- GHC == 9.6.2+ GHC == 9.4.7+ GHC == 9.6.3+ GHC == 9.8.1 extra-source-files: README.md@@ -79,12 +80,13 @@ ViewPatterns ghc-options: -Wall build-depends:- base >= 4.11 && < 4.19- , aeson >= 0.7 && < 2.2+ base >= 4.11 && < 4.20+ , aeson >= 0.7 && < 2.3 , attoparsec < 0.15- , bytestring >= 0.10 && < 0.12+ , attoparsec-aeson >= 2.1 && < 2.3+ , bytestring >= 0.10 && < 0.13 , clock >= 0.7 && < 0.9- , containers >= 0.5 && < 0.7+ , containers >= 0.5 && < 0.8 , foldl < 1.5 , http-client >= 0.5 && < 0.8 , http-types >= 0.8.6 && < 0.13@@ -93,8 +95,8 @@ , optional-args >= 1.0 && < 1.1 , scientific >= 0.3.3 && < 0.4 , tagged >= 0.1 && < 0.9- , text < 2.1- , time >= 1.5 && < 1.14+ , text < 2.2+ , time >= 1.5 && < 1.15 , unordered-containers < 0.3 , vector >= 0.10 && < 0.14 hs-source-dirs: src@@ -105,9 +107,9 @@ main-is: doctests.hs build-depends: base- , doctest >= 0.11.3 && < 0.22+ , doctest >= 0.11.3 && < 0.23 , influxdb- , template-haskell < 2.21+ , template-haskell < 2.22 ghc-options: -Wall -threaded hs-source-dirs: tests default-language: Haskell2010@@ -120,7 +122,7 @@ , containers , influxdb , lens- , tasty < 1.5+ , tasty < 1.6 , tasty-hunit < 1.11 , time , raw-strings-qq >= 1.1 && < 1.2