packages feed

launchdarkly-server-sdk 2.0.0 → 2.0.1

raw patch · 3 files changed

+20/−15 lines, 3 filesdep ~aesondep ~extradep ~generic-lensPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: aeson, extra, generic-lens, http-client, random, time

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -2,6 +2,11 @@  All notable changes to the LaunchDarkly Haskell Server-side SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [2.0.1] - 2020-08-28+### Fixed:+- Expanded dependency supported version range. Thanks @dbaynard!++ ## [2.0.0] - 2020-04-21 ### Changed: - The function `userSetKey` is now takes `Text` instead of `Maybe Text` for the key. This originally existed for compatibility with an internal test suite.
launchdarkly-server-sdk.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 19d9bbded7c024d267d0d6dc115cbc0e8fd60ae0e82b84bb73b68c68f60e3d73+-- hash: 2a9a17d37dc0fc309820ae312205bfb71551b9a28e073adaa56cfc892fccb91d  name:           launchdarkly-server-sdk-version:        2.0.0+version:        2.0.1 synopsis:       Server-side SDK for integrating with LaunchDarkly description:    Please see the README on GitHub at <https://github.com/launchdarkly/haskell-server-sdk#readme> category:       Web@@ -55,7 +55,7 @@   default-extensions: AllowAmbiguousTypes DataKinds DeriveAnyClass DeriveGeneric DerivingStrategies DuplicateRecordFields FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving LambdaCase MonoLocalBinds MultiParamTypeClasses MultiWayIf NoMonomorphismRestriction OverloadedStrings RankNTypes RecordWildCards ScopedTypeVariables TemplateHaskell TupleSections TypeApplications TypeOperators   ghc-options: -fwarn-unused-imports -Wall -Wno-name-shadowing   build-depends:-      aeson >=1.4.4.0 && <1.5+      aeson >=1.4.4.0 && <1.6     , attoparsec >=0.13.2.2 && <0.14     , base >=4.7 && <5     , base16-bytestring >=0.1.1.6 && <0.2@@ -65,11 +65,11 @@     , containers >=0.6.0.1 && <0.7     , cryptohash >=0.11.9 && <0.12     , exceptions >=0.10.2 && <0.11-    , extra >=1.6.17 && <1.7-    , generic-lens >=1.1.0.0 && <1.2+    , extra >=1.6.17 && <1.8+    , generic-lens >=1.1.0.0 && <2.1     , hashtables >=1.2.3.4 && <1.3     , hedis >=0.12.7 && <0.13-    , http-client >=0.6.4 && <0.7+    , http-client >=0.6.4 && <0.8     , http-client-tls >=0.3.5.3 && <0.4     , http-types >=0.12.3 && <0.13     , iso8601-time >=0.1.5 && <0.2@@ -78,12 +78,12 @@     , monad-logger >=0.3.30 && <0.4     , mtl >=2.2.2 && <2.3     , pcre-light >=0.4.0.4 && <0.5-    , random ==1.1.*+    , random >=1.1 && <1.3     , retry >=0.8.0.1 && <0.9     , scientific >=0.3.6.2 && <0.4     , semver >=0.3.4 && <0.4     , text >=1.2.3.1 && <1.3-    , time >=1.8.0.2 && <1.10+    , time >=1.8.0.2 && <1.11     , unordered-containers >=0.2.10.0 && <0.3     , uuid >=1.3.13 && <1.4     , vector >=0.12.0.3 && <0.13@@ -132,7 +132,7 @@   ghc-options: -rtsopts -threaded -with-rtsopts=-N -Wno-name-shadowing   build-depends:       HUnit-    , aeson >=1.4.4.0 && <1.5+    , aeson >=1.4.4.0 && <1.6     , attoparsec >=0.13.2.2 && <0.14     , base >=4.7 && <5     , base16-bytestring >=0.1.1.6 && <0.2@@ -142,11 +142,11 @@     , containers >=0.6.0.1 && <0.7     , cryptohash >=0.11.9 && <0.12     , exceptions >=0.10.2 && <0.11-    , extra >=1.6.17 && <1.7-    , generic-lens >=1.1.0.0 && <1.2+    , extra >=1.6.17 && <1.8+    , generic-lens >=1.1.0.0 && <2.1     , hashtables >=1.2.3.4 && <1.3     , hedis >=0.12.7 && <0.13-    , http-client >=0.6.4 && <0.7+    , http-client >=0.6.4 && <0.8     , http-client-tls >=0.3.5.3 && <0.4     , http-types >=0.12.3 && <0.13     , iso8601-time >=0.1.5 && <0.2@@ -155,12 +155,12 @@     , monad-logger >=0.3.30 && <0.4     , mtl >=2.2.2 && <2.3     , pcre-light >=0.4.0.4 && <0.5-    , random ==1.1.*+    , random >=1.1 && <1.3     , retry >=0.8.0.1 && <0.9     , scientific >=0.3.6.2 && <0.4     , semver >=0.3.4 && <0.4     , text >=1.2.3.1 && <1.3-    , time >=1.8.0.2 && <1.10+    , time >=1.8.0.2 && <1.11     , unordered-containers >=0.2.10.0 && <0.3     , uuid >=1.3.13 && <1.4     , vector >=0.12.0.3 && <0.13
src/LaunchDarkly/Server/Client/Internal.hs view
@@ -25,7 +25,7 @@  -- | The version string for this library. clientVersion :: Text-clientVersion = "2.0.0"+clientVersion = "2.0.1"  -- | The status of the client initialization. data Status