packages feed

servant-auth-client 0.4.1.1 → 0.4.2.0

raw patch · 3 files changed

+22/−17 lines, 3 filesdep ~QuickCheckdep ~basedep ~containersnew-uploader

Dependency ranges changed: QuickCheck, base, containers, servant, servant-auth, servant-client-core, servant-server, time

Files

CHANGELOG.md view
@@ -7,6 +7,11 @@  ## [Unreleased] +## [0.4.2.0] - 2024-08-28++- Allow newer versions of dependencies (QuickCheck, jose, warp, bytestring, etc.) and compiler.+- Use `aroundAll` instead of `around`. [#1694](https://github.com/haskell-servant/servant/pull/1694)+ ## [0.4.1.0] - 2020-10-06  - Support generic Bearer token auth 
servant-auth-client.cabal view
@@ -1,6 +1,6 @@ cabal-version:  2.2 name:           servant-auth-client-version:        0.4.1.1+version:        0.4.2.0 synopsis:       servant-client/servant-auth compatibility description:    This package provides instances that allow generating clients from                 <https://hackage.haskell.org/package/servant servant>@@ -16,7 +16,7 @@ copyright:      (c) Julian K. Arni license:        BSD-3-Clause license-file:   LICENSE-tested-with:    GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4+tested-with:    GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4, GHC ==9.10.1 build-type:     Simple extra-source-files:     CHANGELOG.md@@ -31,12 +31,12 @@   default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators   ghc-options: -Wall   build-depends:-      base                >= 4.10     && < 4.19-    , bytestring          >= 0.10.6.0 && < 0.12-    , containers          >= 0.5.6.2  && < 0.7-    , servant-auth        == 0.4.*-    , servant             >= 0.13     && < 0.21-    , servant-client-core >= 0.13     && < 0.21+      base                >= 4.14     && < 4.21+    , bytestring          >= 0.10.6.0 && < 0.13+    , containers          >= 0.5.6.2  && < 0.8+    , servant-auth        >= 0.4.2.0  && < 0.5+    , servant             >= 0.20.2   && < 0.21+    , servant-client-core >= 0.20.2   && < 0.21    exposed-modules:       Servant.Auth.Client@@ -50,7 +50,7 @@       test   default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators   ghc-options: -Wall-  build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.11+  build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.12    -- dependencies with bounds inherited from the library stanza   build-depends:@@ -59,22 +59,22 @@     , servant-auth     , servant     , servant-auth-client- +   -- test dependencies   build-depends:-      hspec                >= 2.5.5    && < 2.11-    , QuickCheck           >= 2.11.3   && < 2.15+      hspec                >= 2.5.5    && < 2.12+    , QuickCheck           >= 2.11.3   && < 2.16     , aeson                >= 1.3.1.1  && < 3-    , bytestring           >= 0.10.6.0 && < 0.12+    , bytestring           >= 0.10.6.0 && < 0.13     , http-client          >= 0.5.13.1 && < 0.8     , http-types           >= 0.12.2   && < 0.13     , servant-auth-server  >= 0.4.2.0  && < 0.5-    , servant-server       >= 0.13     && < 0.21+    , servant-server       >= 0.20.2   && < 0.21     , time                 >= 1.5.0.1  && < 1.13     , transformers         >= 0.4.2.0  && < 0.7     , wai                  >= 3.2.1.2  && < 3.3-    , warp                 >= 3.2.25   && < 3.4-    , jose                 >= 0.10     && < 0.11+    , warp                 >= 3.2.25   && < 3.5+    , jose                 >= 0.10     && < 0.12   other-modules:       Servant.Auth.ClientSpec   default-language: Haskell2010
test/Servant/Auth/ClientSpec.hs view
@@ -53,7 +53,7 @@ -- * HasClient {{{  hasClientSpec :: Spec-hasClientSpec = describe "HasClient" $ around (testWithApplication $ return app) $ do+hasClientSpec = describe "HasClient" $ aroundAll (testWithApplication $ return app) $ do    let mkTok :: User -> Maybe UTCTime -> IO Token       mkTok user mexp = do