packages feed

servant-auth-client 0.4.1.0 → 0.4.1.1

raw patch · 1 files changed

+25/−25 lines, 1 filesdep ~QuickCheckdep ~basedep ~bytestringnew-uploaderPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: QuickCheck, base, bytestring, hspec, jose, servant, servant-client-core, servant-server, warp

API changes (from Hackage documentation)

Files

servant-auth-client.cabal view
@@ -1,42 +1,42 @@+cabal-version:  2.2 name:           servant-auth-client-version:        0.4.1.0+version:        0.4.1.1 synopsis:       servant-client/servant-auth compatibility description:    This package provides instances that allow generating clients from                 <https://hackage.haskell.org/package/servant servant>                 APIs that use                 <https://hackage.haskell.org/package/servant-auth servant-auth's> @Auth@ combinator.                 .-                For a quick overview of the usage, see the <http://github.com/haskell-servant/servant-auth#readme README>.+                For a quick overview of the usage, see the <https://github.com/haskell-servant/servant/tree/master/servant-auth#readme README>. category:       Web, Servant, Authentication-homepage:       http://github.com/haskell-servant/servant-auth#readme-bug-reports:    https://github.com/haskell-servant/servant-auth/issues+homepage:       https://github.com/haskell-servant/servant/tree/master/servant-auth#readme+bug-reports:    https://github.com/haskell-servant/servant/issues author:         Julian K. Arni maintainer:     jkarni@gmail.com copyright:      (c) Julian K. Arni-license:        BSD3+license:        BSD-3-Clause license-file:   LICENSE-tested-with:    GHC == 8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.1, GHC==8.10.2+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 build-type:     Simple-cabal-version:  >= 1.10 extra-source-files:     CHANGELOG.md  source-repository head   type: git-  location: https://github.com/haskell-servant/servant-auth+  location: https://github.com/haskell-servant/servant  library   hs-source-dirs:       src-  default-extensions: AutoDeriveTypeable ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators+  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.15-    , bytestring          >= 0.10.6.0 && < 0.11+      base                >= 4.10     && < 4.19+    , bytestring          >= 0.10.6.0 && < 0.12     , containers          >= 0.5.6.2  && < 0.7-    , servant-auth        == 0.3.*-    , servant             >= 0.13     && < 0.19-    , servant-client-core >= 0.13     && < 0.19+    , servant-auth        == 0.4.*+    , servant             >= 0.13     && < 0.21+    , servant-client-core >= 0.13     && < 0.21    exposed-modules:       Servant.Auth.Client@@ -48,9 +48,9 @@   main-is: Spec.hs   hs-source-dirs:       test-  default-extensions: AutoDeriveTypeable ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators+  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.8+  build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.11    -- 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.8+      hspec                >= 2.5.5    && < 2.11     , QuickCheck           >= 2.11.3   && < 2.15-    , aeson                >= 1.3.1.1  && < 1.6-    , bytestring           >= 0.10.6.0 && < 0.11-    , http-client          >= 0.5.13.1 && < 0.7+    , aeson                >= 1.3.1.1  && < 3+    , bytestring           >= 0.10.6.0 && < 0.12+    , 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.19-    , time                 >= 1.5.0.1  && < 1.10-    , transformers         >= 0.4.2.0  && < 0.6+    , servant-server       >= 0.13     && < 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.7.0.0  && < 0.9+    , jose                 >= 0.10     && < 0.11   other-modules:       Servant.Auth.ClientSpec   default-language: Haskell2010