servant-auth 0.3.1.0 → 0.3.2.0
raw patch · 3 files changed
+20/−4 lines, 3 filesdep ~basenew-uploaderPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +14/−0
- servant-auth.cabal +5/−3
- src/Servant/Auth.hs +1/−1
+ CHANGELOG.md view
@@ -0,0 +1,14 @@+# Changelog++All notable changes to this project will be documented in this file.++The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)+and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).++## [Unreleased]++## [0.3.2.0] - 2018-06-18++### Added+- Support for GHC 8.4 by @phadej+- Changelog by @domenkozar
servant-auth.cabal view
@@ -1,5 +1,5 @@ name: servant-auth-version: 0.3.1.0+version: 0.3.2.0 synopsis: Authentication combinators for servant description: This package provides an @Auth@ combinator for 'servant'. This combinator allows using different authentication schemes in a straightforward way,@@ -17,9 +17,11 @@ copyright: (c) Julian K. Arni license: BSD3 license-file: LICENSE-tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2+tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC==8.4.3 build-type: Simple cabal-version: >= 1.10+extra-source-files:+ CHANGELOG.md source-repository head type: git@@ -31,7 +33,7 @@ default-extensions: AutoDeriveTypeable 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.8 && < 4.11+ base >= 4.8 && < 4.12 exposed-modules: Servant.Auth default-language: Haskell2010
src/Servant/Auth.hs view
@@ -21,7 +21,7 @@ -- | A cookie. The content cookie itself is a JWT. Another cookie is also used, -- the contents of which are expected to be send back to the server in a--- header, for CSRF protection.+-- header, for XSRF protection. data Cookie