oauth 0.5.8 → 0.5.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +60 -116
- data/CODE_OF_CONDUCT.md +0 -0
- data/CONTRIBUTING.md +2 -2
- data/LICENSE +0 -0
- data/README.md +229 -46
- data/SECURITY.md +10 -4
- data/TODO +0 -0
- data/lib/oauth/cli/authorize_command.rb +8 -10
- data/lib/oauth/cli/base_command.rb +8 -6
- data/lib/oauth/cli/help_command.rb +0 -0
- data/lib/oauth/cli/query_command.rb +3 -3
- data/lib/oauth/cli/sign_command.rb +12 -15
- data/lib/oauth/cli/version_command.rb +0 -0
- data/lib/oauth/cli.rb +2 -2
- data/lib/oauth/client/action_controller_request.rb +14 -15
- data/lib/oauth/client/em_http.rb +28 -28
- data/lib/oauth/client/helper.rb +14 -17
- data/lib/oauth/client/net_http.rb +27 -27
- data/lib/oauth/client.rb +0 -0
- data/lib/oauth/consumer.rb +52 -62
- data/lib/oauth/errors/error.rb +0 -0
- data/lib/oauth/errors/problem.rb +0 -0
- data/lib/oauth/errors/unauthorized.rb +0 -0
- data/lib/oauth/errors.rb +0 -0
- data/lib/oauth/helper.rb +7 -7
- data/lib/oauth/oauth.rb +4 -4
- data/lib/oauth/oauth_test_helper.rb +0 -0
- data/lib/oauth/request_proxy/action_controller_request.rb +0 -0
- data/lib/oauth/request_proxy/action_dispatch_request.rb +0 -0
- data/lib/oauth/request_proxy/base.rb +3 -3
- data/lib/oauth/request_proxy/curb_request.rb +0 -0
- data/lib/oauth/request_proxy/em_http_request.rb +0 -0
- data/lib/oauth/request_proxy/jabber_request.rb +0 -0
- data/lib/oauth/request_proxy/mock_request.rb +0 -0
- data/lib/oauth/request_proxy/net_http.rb +2 -2
- data/lib/oauth/request_proxy/rack_request.rb +0 -0
- data/lib/oauth/request_proxy/rest_client_request.rb +2 -2
- data/lib/oauth/request_proxy/typhoeus_request.rb +0 -0
- data/lib/oauth/request_proxy.rb +3 -3
- data/lib/oauth/server.rb +8 -10
- data/lib/oauth/signature/base.rb +3 -4
- data/lib/oauth/signature/hmac/sha1.rb +1 -1
- data/lib/oauth/signature/hmac/sha256.rb +1 -1
- data/lib/oauth/signature/plaintext.rb +0 -0
- data/lib/oauth/signature/rsa/sha1.rb +3 -3
- data/lib/oauth/signature.rb +5 -5
- data/lib/oauth/token.rb +0 -0
- data/lib/oauth/tokens/access_token.rb +0 -0
- data/lib/oauth/tokens/consumer_token.rb +2 -2
- data/lib/oauth/tokens/request_token.rb +7 -8
- data/lib/oauth/tokens/server_token.rb +0 -1
- data/lib/oauth/tokens/token.rb +0 -0
- data/lib/oauth/version.rb +1 -1
- data/lib/oauth.rb +0 -0
- metadata +63 -34
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbfed92ea8f4e013c44cc92ceb0ad914b32e63fefad93110700426eb6564f278
|
4
|
+
data.tar.gz: 147f12285f78ad61da74e7281f1549e5990ec13a7af8bf0f79127560631a0b57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9427b262be734c813b0fab2bcdf56d3dad1aeb7e5f4e8e2fcccb3c355147086a8901a9ee2bd2291b2d6d7c30f3945e30a7d7f07e67f97efffd75feb50b419e0
|
7
|
+
data.tar.gz: 394efa8e1b61711e07c4dee79971d7e8e6d9f55a3f6db558efe3ea60a8e18dd808c176885bc53f32002bfda4bda429186a1b68c1e85e327cf7bb251c70b38fd5
|
data/CHANGELOG.md
CHANGED
@@ -7,28 +7,54 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
## [Unreleased]
|
8
8
|
### Added
|
9
9
|
|
10
|
-
|
11
10
|
### Changed
|
12
11
|
|
13
|
-
|
14
12
|
### Fixed
|
15
13
|
|
16
|
-
|
17
14
|
### Removed
|
18
15
|
|
16
|
+
## [0.5.11] 2022-08-23
|
17
|
+
The "Is this the last release with a silly name?" Release
|
18
|
+
|
19
|
+
### Added
|
20
|
+
* Post install note about EOL approaching in April, 2023
|
21
|
+
|
22
|
+
### Changed
|
23
|
+
* Improved documentation
|
24
|
+
* Switched branch references from master to main
|
25
|
+
* CI builds are now all green!
|
26
|
+
|
27
|
+
## [0.5.10] 2022-05-04
|
28
|
+
The "Can it be the end of the line for 0.5.x?" Release
|
19
29
|
|
20
|
-
## [0.5.8] 2021-11-10
|
21
30
|
### Added
|
31
|
+
* Major updates to Documentation
|
32
|
+
* More CI Hardening
|
33
|
+
* Align CI builds with official Ruby Compatibility Matrix
|
34
|
+
* Project tooling in preparation for final release of 0.5.x series
|
35
|
+
- diffend
|
22
36
|
|
37
|
+
## [0.5.9] 2022-05-03
|
38
|
+
### Added
|
39
|
+
* Documentation related to Ruby compatibility
|
40
|
+
* Updated CHANGELOG.md formatting
|
41
|
+
* Corrected CHANGELOG.md typos
|
42
|
+
* Hardened the CI build for the next few years(?!)
|
43
|
+
* Require MFA to push new version to Rubygems
|
44
|
+
* Replace Hash Rocket syntax with JSON-style symbols where possible
|
45
|
+
* Project tooling in preparation for final release of 0.5.x series
|
46
|
+
- rubocop-ruby2_0
|
47
|
+
- overcommit
|
48
|
+
|
49
|
+
## [0.5.8] 2021-11-10
|
50
|
+
### Added
|
23
51
|
* Added more documentation files to packaged gem, e.g. SECURITY.md, CODE_OF_CONDUCT.md
|
24
52
|
|
25
53
|
### Fixed
|
26
|
-
|
27
54
|
* Removed reference to RUBY_VERSION from gemspec, as it depends on rake release, which is problematic on some ruby engines. (by @pboling)
|
28
55
|
|
29
56
|
## [0.5.7] 2021-11-02
|
30
57
|
### Added
|
31
|
-
|
32
58
|
* Setup Rubocop (#205, #208 by @pboling)
|
33
59
|
* Added CODE_OF_CONDUCT.md (#217, #218 by @pboling)
|
34
60
|
* Added FUNDING.yml (#217, #218 by @pboling)
|
@@ -36,7 +62,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
36
62
|
* Handle a nested array of hashes in OAuth::Helper.normalize (#80, #221 by @pboling)
|
37
63
|
|
38
64
|
### Changed
|
39
|
-
|
40
65
|
* Switch from TravisCI to Github Actions (#202, #207, #176 by @pboling)
|
41
66
|
* Upgrade webmock to v3.14.0 (#196 by @pboling)
|
42
67
|
* Upgrade em-http-request to v1.1.7 (#173 by @pboling)
|
@@ -47,7 +72,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
47
72
|
* Require plaintext signature method by default (#135 by @confiks & @pboling)
|
48
73
|
|
49
74
|
### Fixed
|
50
|
-
|
51
75
|
* Fixed Infinite Redirect in v0.5.5, v0.5.6 (#186, #210 by @pboling)
|
52
76
|
* Fixed NoMethodError on missing leading slash in path (#194, #211 by @pboling)
|
53
77
|
* Fixed NoMethodError on nil request object (#165, #212 by @pboling)
|
@@ -57,61 +81,49 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
57
81
|
* Fixed request proxy Class constant reference scopes - was missing `::` in many places (#225, #226 by @pboling)
|
58
82
|
|
59
83
|
### Removed
|
60
|
-
|
61
84
|
* Remove direct development dependency on nokogiri (#299 by @pboling)
|
62
85
|
|
63
86
|
## [0.5.6] 2021-04-02
|
64
87
|
### Added
|
65
|
-
|
66
88
|
* Add metadata to Gemspec file
|
67
89
|
* Add support for PUT requests with Action Controller (#181)
|
68
90
|
|
69
91
|
### Changed
|
70
|
-
|
71
92
|
* Change default timeout to be the same as Net::HTTP default, 60 seconds instead of 30 seconds.
|
72
93
|
|
73
94
|
## [0.5.5] 2020-01-19
|
74
95
|
### Added
|
75
|
-
|
76
96
|
* Add :allow_empty_params option (#155)
|
77
97
|
|
78
98
|
### Changed
|
79
|
-
|
80
99
|
* Allow redirect to different host but same path
|
81
100
|
* Various cleanups
|
82
101
|
|
83
102
|
### Fixed
|
84
|
-
|
85
103
|
* Fixes ssl-noverify
|
86
104
|
* Fixed README example (#158, #159, by @pboling)
|
87
105
|
|
88
106
|
## [0.5.4] 2017-12-08
|
89
107
|
### Changed
|
90
|
-
|
91
108
|
* Various cleanups (charliesome)
|
92
109
|
|
93
110
|
### Fixed
|
94
|
-
|
95
111
|
* Fixes UnknownRequestType on Rails 5.1 for ActionDispatch::Request (xprazak2)
|
96
112
|
|
97
113
|
## [0.5.3] 2017-05-24
|
98
114
|
### Fixed
|
99
|
-
|
100
115
|
* Fix #145 - broken CLI required loading active_support (James Pinto)
|
101
116
|
|
102
117
|
### Changed
|
103
|
-
|
104
118
|
* Removing legacy scripts (James Pinto)
|
105
119
|
|
106
120
|
## [0.5.2] 2017-05-17
|
107
121
|
### Added
|
108
|
-
|
109
122
|
* Adding a development dependency that had not been mentioned (James Pinto)
|
110
123
|
* Adding CodeClimate (James Pinto)
|
111
124
|
* Adding support to Ruby 2.4 and head (James Pinto)
|
112
125
|
|
113
126
|
### Changed
|
114
|
-
|
115
127
|
* Use assert_nil so as to silence a Minitest 6 deprecation warning (James Pinto)
|
116
128
|
* Stop bundling tests files in the gem (Michal Papis)
|
117
129
|
* Minor cleanup on tests (James Pinto)
|
@@ -129,7 +141,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
129
141
|
* Reimplementing #82 - Debug Output Option (James Pinto)
|
130
142
|
|
131
143
|
### Fixed
|
132
|
-
|
133
144
|
* Fix #113 adding paths when a full URL has been specified (James Pinto)
|
134
145
|
* Bug Fix, webmock 2.0 has introduced a new bug (James Pinto)
|
135
146
|
* Making a test/support dir (James Pinto)
|
@@ -137,28 +148,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
137
148
|
|
138
149
|
## [0.5.1] 2016-02-29
|
139
150
|
### Added
|
140
|
-
|
141
151
|
* Add license info to the gemspec (Robert Reiz)
|
142
152
|
|
143
153
|
### Fixed
|
144
|
-
|
145
154
|
* Proper handling for empty query string in RequestToken#build_authorize_url (midchildan,
|
146
155
|
Harald Sitter)
|
147
156
|
* Replace calls to String#blank? with its implementation (Sergio Gil Pérez de la Manga)
|
148
157
|
|
149
158
|
### Changed
|
150
|
-
|
151
159
|
* Loosen some development dependencies. Add libcurl-dev to travis
|
152
160
|
* Fixes to travis config. Switch to rubygems for installation and loading
|
153
161
|
|
154
162
|
### Removed
|
155
|
-
|
156
163
|
* Remove obsolete comment (Arthur Nogueira Neves)
|
157
164
|
* Remove jeweler from gemspec
|
158
165
|
|
159
166
|
## [0.5.0] 2016-02-20
|
160
167
|
### Added
|
161
|
-
|
162
168
|
* Add support for HTTP PATCH method (Richard Huang)
|
163
169
|
* Allow reading private key from a string (Khaja Minhajuddin)
|
164
170
|
* Add rest-client proxy (Khem Veasna)
|
@@ -166,14 +172,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
166
172
|
* Allow reading certificate file path from environment variable. Add CentOS cert file path (Danil Vlasov)
|
167
173
|
|
168
174
|
### Changed
|
169
|
-
|
170
175
|
* Replace jeweler with real spec and bundler tasks
|
171
176
|
* Extract version to separate file
|
172
177
|
* Use OpenSSL for all digest and hashing. Remove signature methods not defined by OAuth spec. (Kevin Hughes)
|
173
178
|
* Change token requests to exclude `oauth_body_hash`. Update doc links in comments. (John Remmen)
|
174
179
|
|
175
180
|
### Fixed
|
176
|
-
|
177
181
|
* Fix ability to pass in an authorize url with a query string (Roger Smith)
|
178
182
|
* Fix bug in signature verification (r-stu31)
|
179
183
|
* Use standard key name (`oauth_token_secret`) in Token#to_query (Craig Walker)
|
@@ -189,28 +193,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
189
193
|
|
190
194
|
## [0.4.7] 2012-09-03
|
191
195
|
### Added
|
192
|
-
|
193
196
|
* Set a configurable timeout for all requests (Rick Olson)
|
194
197
|
|
195
198
|
### Fixed
|
196
|
-
|
197
199
|
* Fix merging paths if the path is not empty
|
198
200
|
* Fix nested hash params in Consumer#request (Ernie Miller)
|
199
201
|
|
200
202
|
## [0.4.6] 2012-04-21
|
201
203
|
### Changed
|
202
|
-
|
203
204
|
* Make use the path component of the :site parameter (Jonathon M. Abbott)
|
204
205
|
|
205
206
|
### Fixed
|
206
|
-
|
207
207
|
* Fixed nested attributes in #normalize (Shaliko Usubov)
|
208
208
|
* Fixed post body's being dropped in 1.9 (Steven Hammond)
|
209
209
|
* Fixed PUT request handling (Anton Panasenko)
|
210
210
|
|
211
211
|
## [0.4.5] 2011-06-25
|
212
212
|
### Added
|
213
|
-
|
214
213
|
* Add explicit require for rsa/sha1 (Juris Galang)
|
215
214
|
* Add gemtest support (Adrian Feldman)
|
216
215
|
|
@@ -220,17 +219,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
220
219
|
* Use Net::HTTPGenericRequest (Jakub Kuźma)
|
221
220
|
|
222
221
|
### Fixed
|
223
|
-
|
224
222
|
* Fix POST Requests with Typhoeus proxy (niedhui)
|
225
223
|
* Fix incorrect hardcoded port (Ian Taylor)
|
226
224
|
|
227
225
|
## [0.4.4] 2010-10-31
|
228
226
|
### Added
|
229
|
-
|
230
227
|
* Added support for Rails 3 in client/action_controller_request (Pelle)
|
231
228
|
|
232
229
|
### Fixed
|
233
|
-
|
234
230
|
* Fix LoadError rescue in tests: return can't be used in this context (Hans de Graaff)
|
235
231
|
* HTTP headers should be strings. (seancribbs)
|
236
232
|
* ensure consumer uri gets set back to original config even if an error occurs (Brian Finney)
|
@@ -238,33 +234,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
238
234
|
|
239
235
|
## [0.4.3] 2010-09-01
|
240
236
|
### Fixed
|
241
|
-
|
242
237
|
* Fix for em-http proxy (ichverstehe)
|
243
238
|
|
244
239
|
## [0.4.2] 2010-08-13
|
245
240
|
### Added
|
246
|
-
|
247
241
|
* Added Bundler (rc) Gemfile for easier dev/testing
|
248
242
|
|
249
243
|
### Fixed
|
250
|
-
|
251
244
|
* Fixed compatibility with Ruby 1.9.2 (ecavazos)
|
252
245
|
* Fixed the em-http request proxy (Joshua Hull)
|
253
246
|
* Fix for oauth proxy string manipulation (Jakub Suder)
|
254
247
|
|
255
248
|
## [0.4.1] 2010-06-16
|
256
249
|
### Added
|
257
|
-
|
258
250
|
* Added support for using OAuth with proxies (Marsh Gardiner)
|
259
251
|
|
260
252
|
### Fixed
|
261
|
-
|
262
253
|
* Rails 3 Compatibility fixes (Pelle Braendgaard)
|
263
254
|
* Fixed load errors on tests for missing (non-required) libraries
|
264
255
|
|
265
256
|
## [0.4.0] 2010-04-22
|
266
257
|
### Added
|
267
|
-
|
268
258
|
* Added computation of oauth_body_hash as per OAuth Request Body Hash 1.0 Draft 4 (Michael Reinsch)
|
269
259
|
* Added the optional `oauth_session_handle` parameter for the Yahoo implementation (Will Bailey)
|
270
260
|
* Added optional block to OAuth::Consumer.get_*_token (Neill Pearman)
|
@@ -276,12 +266,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
276
266
|
* New website (Aaron Quint)
|
277
267
|
|
278
268
|
### Changed
|
279
|
-
|
280
269
|
* Better marshalling implementation (Yoan Blanc)
|
281
270
|
* Replaced hoe with Jeweler (Aaron Quint)
|
282
271
|
|
283
272
|
### Fixed
|
284
|
-
|
285
273
|
* Strip extraneous spaces and line breaks from access_token responses (observed in the wild with Yahoo!'s OAuth+OpenID hybrid) (Eric Hartmann)
|
286
274
|
* Stop double-escaping PLAINTEXT signatures (Jimmy Zimmerman)
|
287
275
|
* OAuth::Client::Helper won't override the specified `oauth_version` (Philip Kromer)
|
@@ -289,22 +277,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
289
277
|
|
290
278
|
## [0.3.6] 2009-09-14
|
291
279
|
### Added
|
292
|
-
|
293
280
|
* Added -B CLI option to use the :body authentication scheme (Seth)
|
294
281
|
* Support POST and PUT with raw bodies (Yu-Shan Fung et al)
|
295
282
|
* Added :ca_file consumer option to allow consumer specific certificate override. (Pelle)
|
296
283
|
|
297
284
|
### Changed
|
298
|
-
|
299
285
|
* Test clean-up (Xavier Shay, Hannes Tydén)
|
300
286
|
|
301
287
|
### Fixed
|
302
|
-
|
303
288
|
* Respect `--method` in `authorize` CLI command (Seth)
|
304
289
|
|
305
290
|
## [0.3.5] 2009-06-03
|
306
291
|
### Added
|
307
|
-
|
308
292
|
* `query` CLI command to access protected resources (Seth)
|
309
293
|
* Added -H, -Q CLI options for specifying the authentication scheme (Seth)
|
310
294
|
* Added -O CLI option for specifying a file containing options (Seth)
|
@@ -315,33 +299,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
315
299
|
|
316
300
|
## [0.3.4] 2009-05-06
|
317
301
|
### Changed
|
318
|
-
|
319
302
|
* OAuth::Client::Helper uses OAuth::VERSION (chadisfaction)
|
320
303
|
|
321
304
|
### Fixed
|
322
|
-
|
323
305
|
* Fix OAuth::RequestProxy::ActionControllerRequest's handling of params (Tristan Groléat)
|
324
306
|
|
325
307
|
## [0.3.3] 2009-05-04
|
326
308
|
### Added
|
327
|
-
|
328
309
|
* Support for arguments in OAuth::Consumer#get_access_token (Matt Sanford)
|
329
310
|
* Add gem version to user-agent header (Matt Sanford)
|
330
311
|
|
331
312
|
### Changed
|
332
|
-
|
333
313
|
* Improved error handling for invalid Authorization headers (Matt Sanford)
|
334
314
|
* Handle input from aggressive form encoding libraries (Matt Wood)
|
335
315
|
|
336
316
|
### Fixed
|
337
|
-
|
338
317
|
* Corrected OAuth XMPP namespace (Seth)
|
339
318
|
* Fixed signatures for non-ASCII under $KCODE other than 'u' (Matt Sanford)
|
340
319
|
* Fixed edge cases in ActionControllerRequestProxy where params were being incorrectly signed (Marcos Wright Kuhns)
|
341
320
|
|
342
321
|
## [0.3.2] 2009-03-23
|
343
322
|
### Added
|
344
|
-
|
345
323
|
* Support applications using the MethodOverride Rack middleware (László Bácsi)
|
346
324
|
* `authorize` command for `oauth` CLI (Seth)
|
347
325
|
* Initial support for Problem Reporting extension (Seth)
|
@@ -349,7 +327,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
349
327
|
* Added help to the 'oauth' CLI (Seth)
|
350
328
|
|
351
329
|
### Fixed
|
352
|
-
|
353
330
|
* 2xx statuses should be treated as success (Anders Conbere)
|
354
331
|
* Fixed ActionController parameter escaping behavior (Thiago Arrais, László Bácsi, Brett Gibson, et al)
|
355
332
|
* Fixed signature calculation when both options and a block were provided to OAuth::Signature::Base#initialize (Seth)
|
@@ -357,24 +334,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
357
334
|
|
358
335
|
## [0.3.1] 2009-01-26
|
359
336
|
### Fixed
|
360
|
-
|
361
|
-
* Fixed a problem with relative and absolute token request paths. (Michael
|
362
|
-
Wood)
|
337
|
+
* Fixed a problem with relative and absolute token request paths. (Michael Wood)
|
363
338
|
|
364
339
|
## [0.3.0] 2009-01-25
|
365
340
|
### Added
|
366
|
-
|
367
341
|
* Support ActionController::Request from Edge Rails (László Bácsi)
|
368
342
|
* Added #normalized_parameters to OAuth::RequestProxy::Base (Pelle)
|
369
343
|
* Command-line app for generating signatures. (Seth)
|
370
344
|
|
371
345
|
### Changed
|
372
|
-
|
373
346
|
* OAuth::Signature.sign and friends now yield the RequestProxy instead of the token when the passed block's arity is 1. (Seth)
|
374
347
|
* Improved test-cases and compatibility for encoding issues. (Pelle)
|
375
348
|
|
376
349
|
### Fixed
|
377
|
-
|
378
350
|
* Correctly handle multi-valued parameters (Seth)
|
379
351
|
* Token requests are made to the configured URL rather than generating a potentially incorrect one. (Kellan Elliott-McCrea)
|
380
352
|
|
@@ -382,7 +354,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
382
354
|
The lets fix the last release release
|
383
355
|
|
384
356
|
### Fixed
|
385
|
-
|
386
357
|
* Fixed plain text signatures (Andrew Arrow)
|
387
358
|
* Fixed RSA requests using OAuthTokens. (Philip Lipu Tsai)
|
388
359
|
|
@@ -390,17 +361,14 @@ The lets fix the last release release
|
|
390
361
|
The lets RSA release
|
391
362
|
|
392
363
|
### Added
|
393
|
-
|
394
364
|
* Improved support for Ruby 1.8.7 (Bill Kocik)
|
395
365
|
* Added support for 'private_key_file' option for RSA signatures (Chris Mear)
|
396
366
|
|
397
367
|
### Changed
|
398
|
-
|
399
368
|
* Improved RSA testing
|
400
369
|
* Omit token when signing with RSA
|
401
370
|
|
402
371
|
### Fixed
|
403
|
-
|
404
372
|
* Fixed RSA verification to support RSA providers now using Ruby and RSA
|
405
373
|
* Fixed several edge cases where params were being incorrectly signed (Scott Hill)
|
406
374
|
* Fixed RSA signing (choonkeat)
|
@@ -409,7 +377,6 @@ The lets RSA release
|
|
409
377
|
Lets actually support SSL release
|
410
378
|
|
411
379
|
### Fixed
|
412
|
-
|
413
380
|
* Use HTTPS when required.
|
414
381
|
|
415
382
|
## 0.2 2008-1-19
|
@@ -421,63 +388,40 @@ but please have a look at the unit tests.
|
|
421
388
|
|
422
389
|
## 0.1.2 2007-12-1
|
423
390
|
### Fixed
|
424
|
-
|
425
391
|
* Fixed checks for missing OAuth params to improve performance
|
426
392
|
* Includes Pat's fix for getting the realm out.
|
427
393
|
|
428
394
|
## 0.1.1 2007-11-26
|
429
395
|
### Added
|
430
|
-
|
431
396
|
* First release as a GEM
|
432
397
|
* Moved all non-Rails functionality from the Rails plugin:
|
433
398
|
http://code.google.com/p/oauth-plugin/
|
434
399
|
|
435
|
-
[Unreleased]: https://github.com/oauth-xx/oauth-ruby/compare/v0.5.
|
436
|
-
|
437
|
-
[0.
|
438
|
-
|
439
|
-
[0.3.1]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.1
|
440
|
-
|
441
|
-
[0.3.2]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.2
|
442
|
-
|
443
|
-
[0.3.3]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.3
|
444
|
-
|
445
|
-
[0.3.4]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.4
|
446
|
-
|
447
|
-
[0.3.5]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.5
|
448
|
-
|
449
|
-
[0.3.6]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.6
|
450
|
-
|
451
|
-
[0.4.0]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.0
|
452
|
-
|
453
|
-
[0.4.1]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.1
|
454
|
-
|
455
|
-
[0.4.2]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.2
|
456
|
-
|
457
|
-
[0.4.3]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.3
|
458
|
-
|
459
|
-
[0.4.4]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.4
|
460
|
-
|
461
|
-
[0.4.5]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.5
|
462
|
-
|
463
|
-
[0.4.6]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.6
|
464
|
-
|
465
|
-
[0.4.7]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.7
|
466
|
-
|
467
|
-
[0.5.0]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.0
|
468
|
-
|
469
|
-
[0.5.1]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.1
|
470
|
-
|
471
|
-
[0.5.2]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.2
|
472
|
-
|
473
|
-
[0.5.3]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.3
|
474
|
-
|
475
|
-
[0.5.4]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.4
|
476
|
-
|
477
|
-
[0.5.5]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.5
|
478
|
-
|
479
|
-
[0.5.6]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.6
|
480
|
-
|
481
|
-
[0.5.7]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.7
|
482
|
-
|
400
|
+
[Unreleased]: https://github.com/oauth-xx/oauth-ruby/compare/v0.5.11...v0.5-maintenance
|
401
|
+
[0.5.11]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.11
|
402
|
+
[0.5.10]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.10
|
403
|
+
[0.5.9]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.9
|
483
404
|
[0.5.8]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.8
|
405
|
+
[0.5.7]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.7
|
406
|
+
[0.5.6]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.6
|
407
|
+
[0.5.5]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.5
|
408
|
+
[0.5.4]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.4
|
409
|
+
[0.5.3]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.3
|
410
|
+
[0.5.2]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.2
|
411
|
+
[0.5.1]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.1
|
412
|
+
[0.5.0]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.5.0
|
413
|
+
[0.4.7]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.7
|
414
|
+
[0.4.6]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.6
|
415
|
+
[0.4.5]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.5
|
416
|
+
[0.4.4]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.4
|
417
|
+
[0.4.3]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.3
|
418
|
+
[0.4.2]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.2
|
419
|
+
[0.4.1]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.1
|
420
|
+
[0.4.0]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.4.0
|
421
|
+
[0.3.6]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.6
|
422
|
+
[0.3.5]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.5
|
423
|
+
[0.3.4]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.4
|
424
|
+
[0.3.3]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.3
|
425
|
+
[0.3.2]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.2
|
426
|
+
[0.3.1]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.1
|
427
|
+
[0.3.0]: https://github.com/oauth-xx/oauth-ruby/releases/tag/v0.3.0
|
data/CODE_OF_CONDUCT.md
CHANGED
File without changes
|
data/CONTRIBUTING.md
CHANGED
@@ -16,8 +16,8 @@ Made with [contributors-img][contrib-rocks].
|
|
16
16
|
|
17
17
|
[comment]: <> (Following links are used by README, CONTRIBUTING, Homepage)
|
18
18
|
|
19
|
-
[conduct]: https://github.com/oauth-xx/oauth-ruby/blob/
|
20
|
-
[contributing]: https://github.com/oauth-xx/oauth-ruby/blob/
|
19
|
+
[conduct]: https://github.com/oauth-xx/oauth-ruby/blob/main/CODE_OF_CONDUCT.md
|
20
|
+
[contributing]: https://github.com/oauth-xx/oauth-ruby/blob/main/CONTRIBUTING.md
|
21
21
|
[contributors]: https://github.com/oauth-xx/oauth-ruby/graphs/contributors
|
22
22
|
[mailinglist]: http://groups.google.com/group/oauth-ruby
|
23
23
|
[source]: https://github.com/oauth-xx/oauth-ruby/
|
data/LICENSE
CHANGED
File without changes
|