-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCHANGES.txt
79 lines (54 loc) · 1.54 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
1.0.0 (2022-09-16)
==================
Breaking changes
----------------
- Pyramid OAuthLib now requires Python 3.7+.
- Pyramid OAuthLib now requires OAuthLib 3+.
0.4.2 (2020-09-07)
==================
Bug Fixes
---------
- Add missing parameters from OAuthLib.
0.4.1 (2019-06-28)
==================
Bug Fixes
---------
- Fix `duplicate_params` request property.
- Fix version specifier to indicate that OAuthLib 3 is not yet supported.
0.4.0 (2018-11-16)
==================
Breaking Changes
----------------
- Drop support for Pyramid 1.3 and below.
Features
--------
- Pyramid 1.10 support.
0.3.0 (2018-03-10)
==================
Features
--------
- Python 3 support.
- Support for password credential flow parameters.
0.2.0 (2014-11-21)
==================
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.
0.1.1 (2014-08-04)
==================
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.