packages feed

influxdb 1.9.2 → 1.9.2.1

raw patch · 3 files changed

+6/−3 lines, 3 filesdep ~aesonPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: aeson

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,8 @@ # Revision history for influxdb +## v1.9.2.1 - 2021-10-20++* Add support for aeson 2.0 ([#89](https://github.com/maoe/influxdb-haskell/pull/89)) ## v1.9.2 - 2021-09-08  * Derive Show for Line ([#87](https://github.com/maoe/influxdb-haskell/pull/87))
influxdb.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.24 name: influxdb-version: 1.9.2+version: 1.9.2.1 synopsis: InfluxDB client library for Haskell description:   @influxdb@ is an InfluxDB client library for Haskell.@@ -75,7 +75,7 @@   ghc-options: -Wall   build-depends:       base >= 4.11 && < 4.16-    , aeson >= 0.7 && < 1.6+    , aeson >= 0.7 && < 2.1     , attoparsec < 0.15     , bytestring >= 0.10 && < 0.12     , clock >= 0.7 && < 0.9
src/Database/InfluxDB/Manage.hs view
@@ -39,7 +39,7 @@ import Control.Monad  import Control.Lens-import Data.Aeson+import Data.Aeson (Value(..), eitherDecode', encode, parseJSON) import Data.Scientific (toBoundedInteger) import Data.Text (Text) import Data.Time.Clock