servant-hmac-auth 0.1.8 → 0.1.9
raw patch · 2 files changed
+12/−8 lines, 2 filesdep ~basedep ~base64-bytestringdep ~containersPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, base64-bytestring, containers, crypton
API changes (from Hackage documentation)
- Servant.Auth.Hmac.Client: hmacClient :: forall api. HasClient HmacClientM api => Client HmacClientM api
+ Servant.Auth.Hmac.Client: hmacClient :: HasClient HmacClientM api => Client HmacClientM api
- Servant.Auth.Hmac.Crypto: sign :: forall algo. HashAlgorithm algo => SecretKey -> ByteString -> Signature
+ Servant.Auth.Hmac.Crypto: sign :: HashAlgorithm algo => SecretKey -> ByteString -> Signature
Files
- CHANGELOG.md +3/−0
- servant-hmac-auth.cabal +9/−8
CHANGELOG.md view
@@ -3,6 +3,9 @@ `servant-hmac-auth` uses [PVP Versioning][1]. The change log is available [on GitHub][2]. +## 0.1.9 - Dec 2, 2025+* Version bumps to allow building with GHC `9.12`+ ## 0.1.8 - Nov 8, 2024 * Switch from cryptonite (deprecated) to crypton.
servant-hmac-auth.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: servant-hmac-auth-version: 0.1.8+version: 0.1.9 synopsis: Servant authentication with HMAC description: Servant authentication with HMAC. See README.md for usage example. homepage: https://github.com/holmusk/servant-hmac-auth@@ -17,16 +17,17 @@ tested-with: GHC == 9.0.2 GHC == 9.2.8 GHC == 9.4.8- GHC == 9.6.6- GHC == 9.8.2- GHC == 9.10.1+ GHC == 9.6.7+ GHC == 9.8.4+ GHC == 9.10.3+ GHC == 9.12.2 source-repository head type: git location: https://github.com/holmusk/servant-hmac-auth.git common common-options- build-depends: base >= 4.11.1.0 && < 4.21+ build-depends: base >= 4.11.1.0 && < 4.22 ghc-options: -Wall -Wincomplete-uni-patterns@@ -68,11 +69,11 @@ Servant.Auth.Hmac.Client Servant.Auth.Hmac.Server - build-depends: base64-bytestring >= 1.0 && <= 2+ build-depends: base64-bytestring >= 1.0 && < 2 , bytestring ^>= 0.10 || ^>= 0.11 || ^>= 0.12 , case-insensitive ^>= 1.2- , containers >= 0.5.7 && < 0.8- , crypton >= 0.31 && < 2.0+ , containers >= 0.5.7 && < 0.9+ , crypton >= 0.31 && < 2 , http-types ^>= 0.12 , http-client >= 0.6.4 && < 0.8 , memory >= 0.15 && < 0.19