forked from marcusramberg/Mojolicious-Plugin-OAuth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
129 lines (100 loc) · 3.88 KB
/
Changes
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
Revision history for perl distribution Mojolicious-Plugin-OAuth2
2.02 2022-02-08T18:49:21+0900
- Add support for passing in custom "ua"
- Add support for "providers" key in plugin config
- Add support for "proxy" in plugin config
2.01 2021-10-28T18:29:45+0900
- Test suite is compatible with older versions of Mojolicious
- OpenID Connect require Mojo::JWT 0.09
2.00 2021-10-27T19:36:44+0900
- Removed $c->oauth2->get_token()
https://github.com/marcusramberg/Mojolicious-Plugin-OAuth2/blob/07e214eb556093de8691b145116b60ab64a4a21a/t/delayed.t#L23-L28
- Add support for "OpenID Connect" #65
Contributor: Roy Storey
- Add "debian_salsa" as an OAuth2 id provider #62
Contributor: Gregor Herrmann
- Moved mock code to Mojolicious::Plugin::OAuth2::Mock
- Bumped Mojolicious version to 8.25
1.59 2021-02-17T08:33:17+0900
- Fix invalid "=item" in documentation.
- Compatible with Mojolicious 9.0 #61
Contributor: Joel Berger
1.58 2019-07-03T14:22:38+0200
- Add new Oauth2 providers: instagram.com
- Add new Oauth2 providers: vk.com
1.57 2018-09-24T10:54:40+0200
- 1.56 was broken because of an error in a pre-release git ship version.
1.56 2018-09-24T00:03:28+0200
- Restore response_type to google authorize url.
1.55 2018-09-08T20:29:56+0200
- Made it possible to disable automatic redirect
1.54 2018-08-30T12:48:19+0200
- Add oauth2.get_token_p() helper
- Compatible with Mojolicious 7.90 #53
- Removed deprecated helper get_authorize_url()
- Removed deprecated helper get_token()
1.53 2015-09-08T09:27:17Z
- Removed fix_get_token hack
- Documented deprecation for get_authorize_url() and get_token()
- Fix documentation regarding return value to oauth2->get_token() #45
- Fix liftetime isn't a valid paramater in mocked response #47
- Add more data to mocked response #47
1.52 2015-04-06T22:45:17Z
- Add oauth2->get_token() works in blocking mode (Alexander Karelas)
1.51 2015-03-18T17:38:19Z
- Fix get_token() need to return the whole data structure to the callback
and not just $token.
1.5 2015-03-02T08:31:47Z
- Able to mock interface for easy testing
1.4 2015-03-01T21:03:47Z
- Fix handling of error in param, #27
- Add new helper oauth2->auth_url
- Add new helper oauth2->get_token
- Add new helper oauth2->providers
- Add eventbrite and github as providers
- Deprecate on_xxx handlers
- Started deprecation process for get_authorize_url() and get_token()
1.3 2014-10-07T08:00:00Z
- Fix param injection security issue
1.2 2014-09-06T15:48:00Z
- Tidy up the code with .perltidyrc and githook-perltidy
- Started deprecation process of on_xxx handlers
1.1 2014-03-13T05:55:00Z
- Update test suite to latest Mojo (Valcho Nedelchev)
- Bugfix: When "charset" is included in Content-Type header, token
extraction failed. (Colin Cyr)
- permit altering the host on a request by request basis (Colin Cyr)
- fix typos (David Steinbrunner)
1.0 2013-11-02T16:34:00Z
- Add state parameter
- Handle user's refusal to auth
- Doc updates
0.9 2013-05-20T07:51:00Z
- Update to use new Mojolicious UA format (jht)
- Remove deprecated render_text calls
0.8 2012-08-23T22:07:00Z
- Add get_authorize_url() helper (Batman)
- Support sync without callback.
- Better Mojo::Delay integration (Batman)
0.7 2012-05-30T12:00:00Z
- separate ua for oauth (Batman)
- support extra auth parameters (Judofyr)
- Fix broken tests (Peder Stray)
0.6 2012-03-09T00:00:00Z
- Change to use app_url
0.5 2011-10-19T13:54Z
- Add SSL dependency
0.4 2011-07-06T18:57Z
- Add support for google oauth2 provider
0.3 2011-09-04T21:39Z
- Fix tests for recent Mojolicious
0.2 2011-04-03T02:01:00Z
- Fix test suite on newer mojolicious (minimalist)
- Fix live test to check for 301 redirect.
0.1 2011-04-03T02:01:00Z
- Update to use UserAgent rather than the deprecated Client.
0.02 2011-01-09T18:58:00Z
- Fixed code example in synopsis
- Rename callback* to on_*
0.01 2011-01-08T11:55:00Z
- Initial release