Skip to content

Releases: tilgovi/pyramid-oauthlib

v1.0.0

17 Sep 04:41
Compare
Choose a tag to compare

Breaking changes

  • Pyramid OAuthLib now requires Python 3.7+.
  • Pyramid OAuthLib now requires OAuthLib 3+.

v0.4.2

07 Sep 21:54
Compare
Choose a tag to compare

Bug Fixes

  • Add missing parameters from OAuthLib.

v0.4.1

28 Jun 16:27
Compare
Choose a tag to compare

Bug Fixes

  • Fix duplicate_params request property.
  • Fix version specifier to indicate that OAuthLib 3 is not yet supported.

v0.4.0

17 Nov 00:54
Compare
Choose a tag to compare

Breaking Changes

  • Drop support for Pyramid 1.3 and below.

Features

  • Pyramid 1.10 support.

v0.3.0

10 Mar 22:44
Compare
Choose a tag to compare

Features

  • Python 3 support.
  • Support for password credential flow parameters.

v0.2.0

21 Nov 20:03
Compare
Choose a tag to compare

Features

  • Expose add_oauth_param as a directive on Configurator instances.
    OAuthLib code typically assumes these attributes exist on the request
    instance. Exposing this directive allows custom extensions to be more
    portable to non-Pyramid code by avoiding the use of request.params
    in favor of the transparent attribute access pattern of OAuthLib
    request instances.

v0.1.1

04 Aug 22:36
Compare
Choose a tag to compare

Features

  • Request methods for easy integration of OAuth flows.
  • Request parameters to integrate with OAuthLib modules.
  • Registration of new grant, response, and token types, (optionally)
    using dotted name resolution.
  • Introspectable configuration.
  • Full unit test coverage

Missing in this release

  • Support for revocation.