This repository has been archived by the owner on Aug 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
/
CHANGELOG
279 lines (144 loc) · 7.32 KB
/
CHANGELOG
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
2013-09-30 Version 2.8.1
Includes a content-type for unauthorized requests (johnallen3d)
Prevents stack level too deep error (johnallen3d)
Allow token use in MongoDB cappedCollections (cstuss)
2012-07-16 Version 2.8.0
Support for assertion type callbacks (Paul Covell)
2012-07-10 Version 2.7.0
Support for expiring tokens (Fabrizio Regini & Daniel Vartanov)
2012-06-18 Version 2.6.1
Added missing require "json" statement (Gaku Ueda)
2012-03-27 Version 2.6.0
Adding support for JWT tokens in the "assertion" grant type (Brian Ploetz)
2012-03-26 Version 2.5.1
Issue #13: Fix bug in oauth2-server introduced by pull request #9 (Rafael Chacon)
2012-03-23 Version 2.5.0
Issue #12: Changed two-legged OAuth flow back to always returning a new access token
for a given client_id/client_secret pair (Brian Ploetz)
2012-03-15 Version 2.4.2
Fixed Server::Admin.mount ignoring path (ABrukish).
Fixed a few issues with documentation (Jesse Miller).
Fixed issue with Rack::Lint in development mode using rackup (Jared Allen)
2011-08-01 Version 2.4.1
Fixes error in oauth2-server command line (Michael Saffitz)
2011-07-28 Version 2.4.0
Added fourth argument to Server.token_for that allows setting token expiration,
and Server option expires_in that does that same thing for all tokens.
Set to number of seconds token should be accepted. If nil or zero, access token
never expires. For example:
config.oauth.expires_in = 1.day
2011-07-18 Version 2.3.0
Setting oauth.database = <db> in configuration block now works as you would
expect it to. As a side note, this is now a global setting (i.e. shared by all
handlers).
2011-07-13 Version 2.2.2
Fix for unknown [] for NilClass when database not setup (epinault-ttc)
Warn people when they forgot to set Server.database or set it to
Mongo::Connection instead of Mongo::DB.
Fixes the strict url scheme issue (Martin Wawrusch).
2011-04-11 version 2.2.1
Content type header on redirects (Marc Schwieterman)
2011-02-02 version 2.2.0
Don't require client_secret when requesting authorization (George Ogata).
Don't check the redirect_uri if the client does not have one set (George Ogata).
Look for post params if request is a POST (George Ogata).
2010-12-22 version 2.1.0
Added support for two-legged OAuth flow (Brian Ploetz)
Fixed query parameter authorization and allowed access_token to be defined
(Ari)
2010-11-30 version 2.0.1
Change: username/password authentication with no scope results in access token
with default scope. Makes like easier for everyone.
2010-11-23 version 2.0.0
MAJOR CHANGE:
Keeping with OAuth 2.0 spec terminology, we'll call it scope all around. Some
places in the API that previously used "scopes" have been changed to "scope".
OTOH, the scope is not consistently stored and returned as array of names,
previous was stored as comma-separated string, and often returned as such.
Whatever you have stored with pre 2.0 will probably not work with 2.0 and
forward.
Clients now store their scope, and only those names are allowed in access
tokens. The global setting oauth.scope is no longer in use. Forget about it.
To migrate from 1.4.x to 2.0:
oauth2-server migrate --db <db name>
Application client registrations will change from having no scope to having an
empty scope, so you would want to update their registration, either using the
Web console, or from your code:
Client.all.each { |client| client.update(:scope=>%w{read write}) }
Use Rack::OAuth2::Server token_for and access_grant to generate access tokens
and access grants, respectively. These are mighty useful if you're using the
OAuth 2.0 infrastructure, but have different ways for authorizing, e.g. using
access tokens instead of cookies.
Rack::OAuth2::Server method register to register new client applications and
update existing records. This method is idempotent, so you can use it in rake
db:seed, deploy scripts, migrations, etc.
If your authenticator accepts four arguments, it will receive, in addition to
username and password, also the client identifier and requested scopes.
Web console now allows you to set/unset individual scopes for each client
application, and store a note on each client.
Added Sammy.js OAuth 2.0 plugin.
2010-11-12 version 1.4.6
Added Railtie support for Rails 3.x and now running tests against both Rails
2.x and 3.x.
2010-11-11 version 1.4.5
Cosmetic changes to UI. Added throbber and error messages when AJAX requests go
foul. Header on the left, sign-out on the right, as most people expect it.
Client name is no longer a link to the site, site link shown separately.
2010-11-10 version 1.4.4
Added a practice server. You can use it to test your OAuth 2.0 client library.
To fire up the practice server: oauth2-server practice
Bumped up dependencies on Rack 1.1 or later, Sinatra 1.1 or later.
2010-11-09 version 1.4.3
Renamed Rack::OAuth2::Server::Admin to just Rack::OAuth2::Admin.
Checked in config.ru, I use this for testing the Web console.
2010-11-09 version 1.4.2
Fix to commend line tool to properly do authentication.
Added Sinatra as dependency.
2010-11-09 version 1.4.1
Fix to command line tool when accessing MongoDB with username/password.
2010-11-09 version 1.4.0
If authorization handle is passed as request parameter (the recommended way),
then you can call oauth.grant! with a single argument and oauth.deny! with no
arguments.
You can now call oauth.deny! at any point during the authorization flow, e.g.
automatically deny all requests based on scope and client.
To deny access, return status code 403 (was, incorrectly 401). Or just use
oauth.deny!.
Web console gets template_url setting you can use to map access token identity
into a URL in your application. The substitution variable is "{id}".
Added error page when authorization attempt fails (instead of endless
redirect).
Fixed mounting of Web console on Rails. If it failed you before, try again.
Fixed documentation for configuration under Rails, clarify that all the
interesting stuff happens in after_initialize.
Fixed error responses for response_type=token to use fragment identifier.
2010-11-08 version 1.3.1
Added command line tool, helps you get started and setup:
$ oauth2-server setup --db my_db
Added a touch of color to the UI and ability to delete a client.
You can not sign out of the Web console.
2010-11-07 version 1.3.0
Added OAuth authorization console.
Added param_authentication option: turn this on if you need to support
oauth_token query parameter or form field. Disabled by default.
Added host option: only check requests sent to that host (e.g. only check
requests to api.example.com).
Added path option: only check requests under this path (e.g. only check
requests for /api/...).
2010-11-03 version 1.2.2
Store ObjectId references in database.
2010-11-03 version 1.2.1
Make sure order of scope no longer important for access token lookup.
2010-11-02 version 1.2.0
You can now redirect to /oauth/authorize with authorization query parameter and
it will do the right thing.
2010-11-02 version 1.1.1
Fixed missing rails/init.rb.
2010-11-02 version 1.1.0
Renamed oauth.resource as oauth.identity to remove confusion, besides, it's
more often identity than anything else.
Added automagic loading under Rails, no need to require special path.
Added Rack::OAuth2::Server::Options class, easier to user than Hash.
Added indexes for speedier queries.
2010-11-02 version 1.0.0
World premiere.