From ae7b625c0b61bb82c9e070236eb0405aa5ac4a06 Mon Sep 17 00:00:00 2001 From: Dan Palmer Date: Mon, 22 May 2017 23:08:54 +0100 Subject: [PATCH 1/2] Fix code example in Readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fba6f58..fb8e5c2 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ instance YesodAuth App where authPlugins _ = [oauth2SlackScoped clientId clientSecret slackScopes] where - slackScopes = [SlackEmailScope, SlackAvatarScope, ScopeSlackTeamScope] + slackScopes = [SlackEmailScope, SlackAvatarScope, SlackTeamScope] clientId :: Text clientId = "..." From d9ce2d334c01c82c9ab363e72222f0d3e8718f0b Mon Sep 17 00:00:00 2001 From: Paul Rouse Date: Sat, 12 Nov 2016 20:04:11 +0000 Subject: [PATCH 2/2] Relax upper bounds on aeson and http-client --- yesod-auth-oauth2.cabal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yesod-auth-oauth2.cabal b/yesod-auth-oauth2.cabal index 43b921f..677aae9 100644 --- a/yesod-auth-oauth2.cabal +++ b/yesod-auth-oauth2.cabal @@ -1,5 +1,5 @@ name: yesod-auth-oauth2 -version: 0.2.2 +version: 0.2.3 license: BSD3 license-file: LICENSE author: Tom Streller @@ -28,10 +28,10 @@ library build-depends: base >= 4.5 && < 5 , bytestring >= 0.9.1.4 - , http-client >= 0.4.0 && < 0.5 + , http-client >= 0.4.0 && < 0.6 , http-conduit >= 2.0 && < 3.0 , http-types >= 0.8 && < 0.10 - , aeson >= 0.6 && < 0.12 + , aeson >= 0.6 && < 1.1 , yesod-core >= 1.2 && < 1.5 , authenticate >= 1.3.2.7 && < 1.4 , random