packages feed

influxdb 1.7.1.3 → 1.7.1.4

raw patch · 3 files changed

+10/−5 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,10 @@ # Revision history for influxdb +## v1.7.1.4 - 2020-05-27++* Relax upper version bound for aeson+* Fix a GHC warning+ ## v1.7.1.3 - 2020-04-03  * Relax upper version bound for base to support GHC 8.10.1
influxdb.cabal view
@@ -1,5 +1,5 @@ name: influxdb-version: 1.7.1.3+version: 1.7.1.4 synopsis: Haskell client library for InfluxDB description:   @influxdb@ is an InfluxDB client library for Haskell.@@ -76,7 +76,7 @@   ghc-options: -Wall   build-depends:       base >= 4.9 && < 4.15-    , aeson >= 0.7 && < 1.5+    , aeson >= 0.7 && < 1.6     , attoparsec < 0.14     , bytestring >= 0.10 && < 0.11     , clock >= 0.7 && < 0.9
src/Database/InfluxDB/Manage.hs view
@@ -95,9 +95,9 @@  manageRequest :: QueryParams -> HC.Request manageRequest params = HC.defaultRequest-  { HC.host = TE.encodeUtf8 $ params^.server.host-  , HC.port = fromIntegral $ params^.server.port-  , HC.secure = params^.server.ssl+  { HC.host = TE.encodeUtf8 _host+  , HC.port = fromIntegral _port+  , HC.secure = _ssl   , HC.method = "POST"   , HC.path = "/query"   }