yesod-auth-oauth 1.6.0.3 → 1.6.1
raw patch · 3 files changed
+8/−10 lines, 3 filesdep ~authenticate-oauthPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: authenticate-oauth
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- Yesod/Auth/OAuth.hs +2/−8
- yesod-auth-oauth.cabal +2/−2
ChangeLog.md view
@@ -1,5 +1,9 @@ # ChangeLog for yesod-auth-oauth +## 1.6.1++* Allow newer GHC+ ## 1.6.0.3 * Allow yesod-form 1.7
Yesod/Auth/OAuth.hs view
@@ -18,7 +18,6 @@ import Control.Arrow ((***)) import UnliftIO.Exception import Control.Monad.IO.Class-import UnliftIO (MonadUnliftIO) import Data.ByteString (ByteString) import Data.Maybe import Data.Text (Text)@@ -53,14 +52,9 @@ oauthSessionName = "__oauth_token_secret" dispatch- :: ( MonadHandler m- , master ~ HandlerSite m- , Auth ~ SubHandlerSite m- , MonadUnliftIO m- )- => Text+ :: Text -> [Text]- -> m TypedContent+ -> AuthHandler master TypedContent dispatch "GET" ["forward"] = do render <- getUrlRender tm <- getRouteToParent
yesod-auth-oauth.cabal view
@@ -1,6 +1,6 @@ cabal-version: >= 1.10 name: yesod-auth-oauth-version: 1.6.0.3+version: 1.6.1 license: BSD3 license-file: LICENSE author: Hiromi Ishii@@ -15,7 +15,7 @@ library default-language: Haskell2010- build-depends: authenticate-oauth >= 1.5 && < 1.7+ build-depends: authenticate-oauth >= 1.5 && < 1.8 , base >= 4.10 && < 5 , bytestring >= 0.9.1.4 , text >= 0.7