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