mirror of
https://github.com/freckle/yesod-auth-oauth2.git
synced 2026-08-31 17:03:51 +02:00
Version bump
Relax dependencies bounds - https://github.com/commercialhaskell/stackage/issues/6006 - https://github.com/commercialhaskell/stackage/issues/6007
This commit is contained in:
parent
e71027270f
commit
192c7c9b4a
@ -1,7 +1,11 @@
|
|||||||
## [_Unreleased_](https://github.com/thoughtbot/yesod-auth-oauth2/compare/v0.6.3.0...main)
|
## [_Unreleased_](https://github.com/thoughtbot/yesod-auth-oauth2/compare/v0.6.3.1...main)
|
||||||
|
|
||||||
None
|
None
|
||||||
|
|
||||||
|
## [v0.6.3.1](https://github.com/thoughtbot/yesod-auth-oauth2/compare/v0.6.3.0...v0.6.3.1)
|
||||||
|
|
||||||
|
- Relax dependencies bounds
|
||||||
|
|
||||||
## [v0.6.3.0](https://github.com/thoughtbot/yesod-auth-oauth2/compare/v0.6.2.3...v0.6.3.0)
|
## [v0.6.3.0](https://github.com/thoughtbot/yesod-auth-oauth2/compare/v0.6.2.3...v0.6.3.0)
|
||||||
|
|
||||||
- Expose `onDispatchError` and generic `OtherDispatchError` for passthrough log
|
- Expose `onDispatchError` and generic `OtherDispatchError` for passthrough log
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
name: yesod-auth-oauth2
|
name: yesod-auth-oauth2
|
||||||
version: "0.6.3.0" # N.B. PVP-compliant Semver: 0.MAJOR.MINOR.PATCH
|
version: 0.6.3.1 # N.B. PVP-compliant Semver: 0.MAJOR.MINOR.PATCH
|
||||||
synopsis: OAuth 2.0 authentication plugins
|
synopsis: OAuth 2.0 authentication plugins
|
||||||
description: Library to authenticate with OAuth 2.0 for Yesod web applications.
|
description: Library to authenticate with OAuth 2.0 for Yesod web applications.
|
||||||
category: Web
|
category: Web
|
||||||
@ -27,13 +27,13 @@ library:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- aeson >=0.6 && <1.6
|
- aeson >=0.6 && <1.6
|
||||||
- bytestring >=0.9.1.4 && < 0.12
|
- bytestring >=0.9.1.4 && < 0.12
|
||||||
- cryptonite >=0.25 && <0.29
|
- cryptonite >=0.25 && <0.30
|
||||||
- errors
|
- errors
|
||||||
- hoauth2 >=1.11.0 && <1.17
|
- hoauth2 >=1.11.0 && <1.17
|
||||||
- http-client >=0.4.0 && <0.8
|
- http-client >=0.4.0 && <0.8
|
||||||
- http-conduit >=2.0 && <3.0
|
- http-conduit >=2.0 && <3.0
|
||||||
- http-types >=0.8 && <0.13
|
- http-types >=0.8 && <0.13
|
||||||
- memory
|
- memory < 0.17
|
||||||
- microlens
|
- microlens
|
||||||
- mtl
|
- mtl
|
||||||
- safe-exceptions
|
- safe-exceptions
|
||||||
|
|||||||
@ -4,10 +4,10 @@ cabal-version: 1.12
|
|||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: 592172a7a9d6b7a1d7cbfec745434a8309d833b955b68639e2dcccc8a6e87945
|
-- hash: 6a490bb862e9336f14b079e2d9d0dee02bbf978e4cfb3e1c0c2d0daac3bd68a3
|
||||||
|
|
||||||
name: yesod-auth-oauth2
|
name: yesod-auth-oauth2
|
||||||
version: 0.6.3.0
|
version: 0.6.3.1
|
||||||
synopsis: OAuth 2.0 authentication plugins
|
synopsis: OAuth 2.0 authentication plugins
|
||||||
description: Library to authenticate with OAuth 2.0 for Yesod web applications.
|
description: Library to authenticate with OAuth 2.0 for Yesod web applications.
|
||||||
category: Web
|
category: Web
|
||||||
@ -67,13 +67,13 @@ library
|
|||||||
aeson >=0.6 && <1.6
|
aeson >=0.6 && <1.6
|
||||||
, base >=4.9.0.0 && <5
|
, base >=4.9.0.0 && <5
|
||||||
, bytestring >=0.9.1.4 && <0.12
|
, bytestring >=0.9.1.4 && <0.12
|
||||||
, cryptonite >=0.25 && <0.29
|
, cryptonite >=0.25 && <0.30
|
||||||
, errors
|
, errors
|
||||||
, hoauth2 >=1.11.0 && <1.17
|
, hoauth2 >=1.11.0 && <1.17
|
||||||
, http-client >=0.4.0 && <0.8
|
, http-client >=0.4.0 && <0.8
|
||||||
, http-conduit >=2.0 && <3.0
|
, http-conduit >=2.0 && <3.0
|
||||||
, http-types >=0.8 && <0.13
|
, http-types >=0.8 && <0.13
|
||||||
, memory
|
, memory <0.17
|
||||||
, microlens
|
, microlens
|
||||||
, mtl
|
, mtl
|
||||||
, safe-exceptions
|
, safe-exceptions
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user