This commit is contained in:
Michael Snoyman 2020-11-06 06:24:17 +02:00
commit 504b3c74cf
No known key found for this signature in database
GPG Key ID: 907EAE2F42B52046
5 changed files with 15 additions and 5 deletions

View File

@ -1,5 +1,9 @@
# ChangeLog for yesod-auth # ChangeLog for yesod-auth
## 1.6.10.1
* Add support for Persistent 2.11 [#1701](https://github.com/yesodweb/yesod/pull/1701)
## 1.6.10 ## 1.6.10
* Updated `AuthMessage` data type in `Yesod.Auth.Message` to accommodate registration flow where password is supplied initially: deprecated `AddressVerified` and split into `EmailVerifiedChangePass` and `EmailVerified` * Updated `AuthMessage` data type in `Yesod.Auth.Message` to accommodate registration flow where password is supplied initially: deprecated `AddressVerified` and split into `EmailVerifiedChangePass` and `EmailVerified`

View File

@ -1,5 +1,5 @@
name: yesod-auth name: yesod-auth
version: 1.6.10 version: 1.6.10.1
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman, Patrick Brisbin author: Michael Snoyman, Patrick Brisbin
@ -43,7 +43,7 @@ library
, http-types , http-types
, memory , memory
, nonce >= 1.0.2 && < 1.1 , nonce >= 1.0.2 && < 1.1
, persistent >= 2.8 && < 2.11 , persistent >= 2.8 && < 2.12
, random >= 1.0.0.2 , random >= 1.0.0.2
, safe , safe
, shakespeare , shakespeare

View File

@ -1,5 +1,9 @@
# ChangeLog for yesod-persistent # ChangeLog for yesod-persistent
## 1.6.0.5
* Add support for Persistent 2.11 [#1701](https://github.com/yesodweb/yesod/pull/1701)
## 1.6.0.4 ## 1.6.0.4
* Fix test suite to be compatible with latest `persistent-template` * Fix test suite to be compatible with latest `persistent-template`

View File

@ -1,3 +1,5 @@
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE OverloadedStrings, TemplateHaskell, QuasiQuotes, TypeFamilies #-} {-# LANGUAGE OverloadedStrings, TemplateHaskell, QuasiQuotes, TypeFamilies #-}
{-# LANGUAGE EmptyDataDecls, FlexibleContexts, GADTs #-} {-# LANGUAGE EmptyDataDecls, FlexibleContexts, GADTs #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-}

View File

@ -1,5 +1,5 @@
name: yesod-persistent name: yesod-persistent
version: 1.6.0.4 version: 1.6.0.5
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com> author: Michael Snoyman <michael@snoyman.com>
@ -16,8 +16,8 @@ extra-source-files: README.md ChangeLog.md
library library
build-depends: base >= 4.10 && < 5 build-depends: base >= 4.10 && < 5
, yesod-core >= 1.6 && < 1.7 , yesod-core >= 1.6 && < 1.7
, persistent >= 2.8 && < 2.11 , persistent >= 2.8 && < 2.12
, persistent-template >= 2.1 && < 2.9 , persistent-template >= 2.1 && < 2.10
, transformers >= 0.2.2 , transformers >= 0.2.2
, blaze-builder , blaze-builder
, conduit , conduit