jose-jwt 0.10.0 → 0.11.0
raw patch · 2 files changed
+13/−14 lines, 2 filesdep +ramdep −containersdep −memorydep −transformers-compatdep ~aesondep ~cryptondep ~mtlPVP ok
version bump matches the API change (PVP)
Dependencies added: ram
Dependencies removed: containers, memory, transformers-compat, unordered-containers
Dependency ranges changed: aeson, crypton, mtl, text
API changes (from Hackage documentation)
- Jose.Internal.Crypto: decryptPayload :: forall ba. ByteArray ba => Enc -> ScrubbedBytes -> IV -> ba -> Tag -> ba -> Maybe ba
+ Jose.Internal.Crypto: decryptPayload :: ByteArray ba => Enc -> ScrubbedBytes -> IV -> ba -> Tag -> ba -> Maybe ba
- Jose.Internal.Crypto: encryptPayload :: forall ba iv. (ByteArray ba, ByteArray iv) => Enc -> ScrubbedBytes -> iv -> ba -> ba -> Maybe (AuthTag, ba)
+ Jose.Internal.Crypto: encryptPayload :: (ByteArray ba, ByteArray iv) => Enc -> ScrubbedBytes -> iv -> ba -> ba -> Maybe (AuthTag, ba)
Files
- CHANGELOG.md +5/−0
- jose-jwt.cabal +8/−14
CHANGELOG.md view
@@ -1,3 +1,8 @@+0.11.0+------++* Update `crypton` version to >= 1.1.0 and replace the `memory` package with the `ram` package to match `crypton` changes.+ 0.10.0 ------
jose-jwt.cabal view
@@ -1,5 +1,5 @@ Name: jose-jwt-Version: 0.10.0+Version: 0.11.0 Synopsis: JSON Object Signing and Encryption Library Homepage: http://github.com/tekul/jose-jwt Bug-Reports: http://github.com/tekul/jose-jwt/issues@@ -50,19 +50,16 @@ Buildable: False else Build-depends: base >= 4.9 && < 5- , aeson >= 1.5 && < 2.3+ , aeson >= 2 && < 2.4 , attoparsec >= 0.12.0.0 , bytestring >= 0.9 , cereal >= 0.4- , containers >= 0.4- , crypton >= 0.32- , memory >= 0.10+ , crypton >= 1.1.0+ , ram >= 0.21 , mtl >= 2.1.3.1- , text >= 0.11- , time >= 1.4+ , text >= 0.11+ , time >= 1.4 , transformers >= 0.3- , transformers-compat >= 0.4- , unordered-containers >= 0.2 , vector >= 0.10 Ghc-Options: -Wall @@ -77,10 +74,7 @@ , aeson , bytestring , crypton- , memory- , mtl- , text- , unordered-containers+ , ram , vector , hspec >= 1.6 , HUnit >= 1.2@@ -98,7 +92,7 @@ if !flag(doctest) Buildable: False else- Build-depends: base >= 4.9 && < 5+ Build-depends: base >= 4.9 && < 5 , doctest >= 0.9.11 , crypton