Update ChangeLog and Hackage comments

This commit is contained in:
James Haver II 2017-05-12 01:04:13 +08:00
parent 56b09eef93
commit 5ee51262de
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,7 @@
## 1.4.34
* Add `WaiSubsiteWithAuth`. [#1394](https://github.com/yesodweb/yesod/pull/1394)
## 1.4.33
* Adds curly brackets to route parser. [#1363](https://github.com/yesodweb/yesod/pull/1363)

View File

@ -175,9 +175,12 @@ type BottomOfHeadAsync master
type Texts = [Text]
-- | Wrap up a normal WAI application as a Yesod subsite.
-- | Wrap up a normal WAI application as a Yesod subsite. Ignore parent site's middleware and isAuthorized.
newtype WaiSubsite = WaiSubsite { runWaiSubsite :: W.Application }
-- | Like 'WaiSubsite', but applies parent site's middleware and isAuthorized.
--
-- @since 1.4.34
newtype WaiSubsiteWithAuth = WaiSubsiteWithAuth { runWaiSubsiteWithAuth :: W.Application }
data RunHandlerEnv site = RunHandlerEnv

View File

@ -1,5 +1,5 @@
name: yesod-core
version: 1.4.33
version: 1.4.34
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>