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