oauth 1.1.0 → 1.1.6
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
- checksums.yaml.gz.sig +1 -0
- data/CHANGELOG.md +637 -269
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +79 -29
- data/CONTRIBUTING.md +256 -24
- data/FUNDING.md +74 -0
- data/LICENSE.md +71 -0
- data/README.md +615 -287
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +11 -16
- data/certs/pboling.pem +27 -0
- data/lib/oauth/auth_sanitizer.rb +36 -0
- data/lib/oauth/client/action_controller_request.rb +22 -13
- data/lib/oauth/client/em_http.rb +106 -99
- data/lib/oauth/client/helper.rb +15 -11
- data/lib/oauth/client/net_http.rb +39 -13
- data/lib/oauth/consumer.rb +194 -75
- data/lib/oauth/errors/problem.rb +1 -1
- data/lib/oauth/helper.rb +25 -3
- data/lib/oauth/oauth.rb +28 -6
- data/lib/oauth/optional.rb +20 -0
- data/lib/oauth/request_proxy/action_controller_request.rb +11 -7
- data/lib/oauth/request_proxy/action_dispatch_request.rb +34 -0
- data/lib/oauth/request_proxy/base.rb +38 -27
- data/lib/oauth/request_proxy/em_http_request.rb +53 -52
- data/lib/oauth/request_proxy/jabber_request.rb +9 -2
- data/lib/oauth/request_proxy/net_http.rb +1 -1
- data/lib/oauth/request_proxy/rack_request.rb +0 -4
- data/lib/oauth/request_proxy/rest_client_request.rb +4 -3
- data/lib/oauth/request_proxy.rb +17 -13
- data/lib/oauth/server.rb +12 -8
- data/lib/oauth/signature/base.rb +15 -5
- data/lib/oauth/signature/rsa/sha1.rb +11 -4
- data/lib/oauth/signature.rb +43 -39
- data/lib/oauth/tokens/access_token.rb +1 -1
- data/lib/oauth/tokens/consumer_token.rb +8 -6
- data/lib/oauth/tokens/request_token.rb +9 -4
- data/lib/oauth/tokens/token.rb +13 -1
- data/lib/oauth/version.rb +2 -1
- data/lib/oauth.rb +2 -0
- data/sig/oauth/consumer.rbs +9 -0
- data/sig/oauth/signature/base.rbs +12 -0
- data/sig/oauth/tokens/token.rbs +8 -0
- data/sig/oauth/version.rbs +6 -0
- data.tar.gz.sig +0 -0
- metadata +316 -79
- metadata.gz.sig +0 -0
- data/LICENSE +0 -22
- data/TODO +0 -32
data/CHANGELOG.md
CHANGED
|
@@ -1,504 +1,872 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
|
|
3
|
+
[![SemVer 2.0.0][📌semver-img]][📌semver] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog]
|
|
4
|
+
|
|
2
5
|
All notable changes to this project will be documented in this file.
|
|
3
6
|
|
|
4
|
-
The format is based on [Keep a Changelog]
|
|
5
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
|
|
7
|
+
The format is based on [Keep a Changelog][📗keep-changelog],
|
|
8
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|
9
|
+
and [yes][📌major-versions-not-sacred], platform and engine support are part of the [public API][📌semver-breaking].
|
|
10
|
+
Please file a bug if you notice a violation of semantic versioning.
|
|
11
|
+
|
|
12
|
+
[📌semver]: https://semver.org/spec/v2.0.0.html
|
|
13
|
+
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-FFDD67.svg?style=flat
|
|
14
|
+
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
|
15
|
+
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
|
16
|
+
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
|
17
|
+
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
|
6
18
|
|
|
7
19
|
## [Unreleased]
|
|
20
|
+
|
|
8
21
|
### Added
|
|
9
22
|
|
|
10
23
|
### Changed
|
|
11
24
|
|
|
25
|
+
### Deprecated
|
|
26
|
+
|
|
27
|
+
### Removed
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
### Security
|
|
32
|
+
|
|
33
|
+
## [1.1.6] - 2026-06-07
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.1.6][1.1.6t]
|
|
36
|
+
- COVERAGE: 89.05% -- 838/941 lines in 33 files
|
|
37
|
+
- BRANCH COVERAGE: 60.46% -- 159/263 branches in 33 files
|
|
38
|
+
- 40.38% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- Retemplated project workflows, appraisals, and development tooling with the
|
|
43
|
+
current `kettle-jem` template.
|
|
44
|
+
- Documented current `OAuth::Consumer` configuration options, including token
|
|
45
|
+
request redirect safety settings, and corrected the OAuth 1.0a usage example.
|
|
46
|
+
- Raised the runtime dependency floor for `auth-sanitizer` to `>= 0.2.1`.
|
|
47
|
+
- Raised the runtime dependency floor for `snaky_hash` to `>= 2.0.5`.
|
|
48
|
+
|
|
49
|
+
### Security
|
|
50
|
+
|
|
51
|
+
- Hardened OAuth token endpoint redirect handling after the GHSA-pp92-crg2-gfv9
|
|
52
|
+
review: token redirects are now bounded, resolved explicitly, and rejected
|
|
53
|
+
when they cross origins unless explicitly enabled.
|
|
54
|
+
|
|
55
|
+
## [1.1.5] - 2026-05-20
|
|
56
|
+
|
|
57
|
+
- TAG: [v1.1.5][1.1.5t]
|
|
58
|
+
- COVERAGE: 84.79% -- 864/1019 lines in 37 files
|
|
59
|
+
- BRANCH COVERAGE: 54.91% -- 151/275 branches in 37 files
|
|
60
|
+
- 40.86% documented
|
|
61
|
+
|
|
62
|
+
### Changed
|
|
63
|
+
|
|
64
|
+
- auth-sanitizer v0.1.3
|
|
65
|
+
|
|
12
66
|
### Fixed
|
|
13
67
|
|
|
68
|
+
- Load `auth-sanitizer` through an internal isolated loader so requiring `oauth` does not add top-level `Auth` or `AuthSanitizer` constants that may collide with downstream applications.
|
|
69
|
+
|
|
70
|
+
## [1.1.4] - 2026-05-16
|
|
71
|
+
|
|
72
|
+
- TAG: [v1.1.4][1.1.4t]
|
|
73
|
+
- COVERAGE: 84.64% -- 854/1009 lines in 36 files
|
|
74
|
+
- BRANCH COVERAGE: 54.91% -- 151/275 branches in 36 files
|
|
75
|
+
- 40.78% documented
|
|
76
|
+
|
|
77
|
+
### Added
|
|
78
|
+
|
|
79
|
+
- Add `auth-sanitizer` integration for inspect-time secret redaction in core OAuth objects.
|
|
80
|
+
- Traditional OAuth::VERSION constant
|
|
81
|
+
|
|
82
|
+
### Changed
|
|
83
|
+
|
|
84
|
+
- Redact sensitive values from `#inspect` in `OAuth::Consumer`, `OAuth::Token`, and `OAuth::Signature::Base`.
|
|
85
|
+
|
|
86
|
+
## [1.1.3] - 2025-11-06
|
|
87
|
+
|
|
88
|
+
- TAG: [v1.1.3][1.1.3t]
|
|
89
|
+
- COVERAGE: 81.70% -- 817/1000 lines in 36 files
|
|
90
|
+
- BRANCH COVERAGE: 50.54% -- 140/277 branches in 36 files
|
|
91
|
+
- 40.71% documented
|
|
92
|
+
|
|
93
|
+
### Added
|
|
94
|
+
|
|
95
|
+
- base64 dependency, fixes Ruby 3.4 and 3.5 HEAD compatibility
|
|
96
|
+
|
|
97
|
+
### Fixed
|
|
98
|
+
|
|
99
|
+
- Fix ActionController request proxy NoMethodError when building signatures
|
|
100
|
+
- define `wrap_values` on `OAuth::RequestProxy::Base`
|
|
101
|
+
- remove duplicate from `ActionDispatchRequest`
|
|
102
|
+
- add specs
|
|
103
|
+
|
|
104
|
+
## [1.1.2] - 2025-09-21
|
|
105
|
+
|
|
106
|
+
- TAG: [v1.1.2][1.1.2t]
|
|
107
|
+
- COVERAGE: 81.78% -- 817/999 lines in 36 files
|
|
108
|
+
- BRANCH COVERAGE: 50.54% -- 140/277 branches in 36 files
|
|
109
|
+
- 40.71% documented
|
|
110
|
+
|
|
111
|
+
### Added
|
|
112
|
+
|
|
113
|
+
- Corrected SHA-256 & SHA-512 checksums for release 1.1.1
|
|
114
|
+
|
|
115
|
+
## [1.1.1] - 2025-09-21
|
|
116
|
+
|
|
117
|
+
- TAG: [v1.1.1][1.1.1t]
|
|
118
|
+
- COVERAGE: 81.70% -- 817/1000 lines in 36 files
|
|
119
|
+
- BRANCH COVERAGE: 50.54% -- 140/277 branches in 36 files
|
|
120
|
+
- 40.71% documented
|
|
121
|
+
|
|
122
|
+
### Added
|
|
123
|
+
|
|
124
|
+
- kettle-dev v1.1.18
|
|
125
|
+
- Internal escape & unescape methods
|
|
126
|
+
- Stop relying on URI / CGI for escaping and unescaping
|
|
127
|
+
- They are both unstable across supported versions of Ruby (including 3.5 HEAD)
|
|
128
|
+
- Tests against Rails-specific code are now run in CI
|
|
129
|
+
- Documented OAuth 1.0, 1.0a differences
|
|
130
|
+
|
|
131
|
+
### Changed
|
|
132
|
+
|
|
133
|
+
- converted minitest => rspec
|
|
134
|
+
|
|
14
135
|
### Removed
|
|
15
136
|
|
|
137
|
+
- dependency on em-http-request
|
|
138
|
+
- now lazy Loaded so it can be optional, since some systems fail to install it, and it doesn't seem maintained
|
|
139
|
+
|
|
16
140
|
## [1.1.0] 2022-08-29
|
|
141
|
+
|
|
142
|
+
- TAG: [v1.1.0][1.1.0t]
|
|
143
|
+
|
|
17
144
|
### Changed
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
145
|
+
|
|
146
|
+
- `OAuth::CLI` has been extracted to a new gem, `oauth-tty`, hosted on [Gitlab](https://gitlab.com/ruby-oauth/oauth-tty)
|
|
147
|
+
- The public API of `oauth-tty` is backwards compatible (meaning `OAuth::CLI`)
|
|
148
|
+
- The change within the `oauth` gem is backwards compatible as `oauth-tty` has been added as a dependency
|
|
149
|
+
- Minor version bump is cautionary, as many lines of code have changed.
|
|
150
|
+
- `OAuth::Comsumer#options` hash is now handled by `snaky_hash`, which was extracted from `oauth2`
|
|
151
|
+
- symbolized keys, dot-access and snake-case are now normalized
|
|
24
152
|
|
|
25
153
|
## [1.0.1] 2022-08-29
|
|
154
|
+
|
|
155
|
+
- TAG: [v1.0.1][1.0.1t]
|
|
156
|
+
|
|
26
157
|
### Changed
|
|
27
|
-
|
|
28
|
-
|
|
158
|
+
|
|
159
|
+
- `OAuth::Comsumer#options` hash is now handled by `snaky_hash`, which was extracted from `oauth2`
|
|
160
|
+
- symbolized keys, dot-access and snake-case are now normalized
|
|
29
161
|
|
|
30
162
|
## [1.0.0] 2022-08-23
|
|
163
|
+
|
|
164
|
+
- TAG: [v1.0.0][1.0.0t]
|
|
165
|
+
|
|
31
166
|
### Changed
|
|
32
|
-
|
|
33
|
-
|
|
167
|
+
|
|
168
|
+
- Dropped support for Ruby < 2.7
|
|
169
|
+
- Dropped support for Rails < 6
|
|
34
170
|
|
|
35
171
|
### Added
|
|
36
|
-
|
|
37
|
-
|
|
172
|
+
|
|
173
|
+
- New EOL Policy
|
|
174
|
+
- Non-commercial support for the oldest version of Ruby (which itself is going EOL) will be dropped each year in April
|
|
38
175
|
|
|
39
176
|
## [0.6.2] 2022-08-29
|
|
177
|
+
|
|
178
|
+
- TAG: [v0.6.2][0.6.2t]
|
|
179
|
+
|
|
40
180
|
### Changed
|
|
41
|
-
|
|
42
|
-
|
|
181
|
+
|
|
182
|
+
- `OAuth::Comsumer#options` hash is now handled by `snaky_hash`, which was extracted from `oauth2`
|
|
183
|
+
- symbolized keys, dot-access and snake-case are now normalized
|
|
43
184
|
|
|
44
185
|
## [0.6.1] 2022-08-23
|
|
186
|
+
|
|
187
|
+
- TAG: [v0.6.1][0.6.1t]
|
|
188
|
+
|
|
45
189
|
### Changed
|
|
46
|
-
|
|
47
|
-
|
|
190
|
+
|
|
191
|
+
- Fixed documentation in SECURITY.md
|
|
192
|
+
- Change references to master => main
|
|
48
193
|
|
|
49
194
|
### Added
|
|
50
|
-
|
|
195
|
+
|
|
196
|
+
- Post install note about v0.6.x EOL approaching in April, 2024
|
|
51
197
|
|
|
52
198
|
## [0.6.0] 2022-08-23
|
|
199
|
+
|
|
200
|
+
- TAG: [v0.6.0][0.6.0t]
|
|
201
|
+
|
|
53
202
|
### Added
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
203
|
+
|
|
204
|
+
- 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.
|
|
205
|
+
- Improved documentation of support policy via Tidelift
|
|
206
|
+
- Stop testing against active_support v2
|
|
57
207
|
|
|
58
208
|
### Changed
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
209
|
+
|
|
210
|
+
- Utilize version_gem extracted from oauth2 gem for VERSION
|
|
211
|
+
- Added new `OAuth::Version` namespace
|
|
212
|
+
- VERSION constant now at `OAuth::Version::VERSION`
|
|
62
213
|
|
|
63
214
|
### Removed
|
|
64
|
-
|
|
215
|
+
|
|
216
|
+
- Ruby 2.0, 2.1, 2.2, and 2.3 are no longer valid install targets
|
|
65
217
|
|
|
66
218
|
## [0.5.14] 2022-08-29
|
|
219
|
+
|
|
220
|
+
- TAG: [v0.5.14][0.5.14t]
|
|
221
|
+
|
|
67
222
|
The "hopeful last 0.5.x" Release
|
|
68
223
|
|
|
69
224
|
### Fixed
|
|
70
|
-
|
|
225
|
+
|
|
226
|
+
- More typos fixed
|
|
71
227
|
|
|
72
228
|
## [0.5.13] 2022-08-23
|
|
229
|
+
|
|
230
|
+
- TAG: [v0.5.13][0.5.13t]
|
|
231
|
+
|
|
73
232
|
The "I think I caught 'em all!" Release
|
|
74
233
|
|
|
75
234
|
### Fixed
|
|
76
|
-
|
|
235
|
+
|
|
236
|
+
- Typo oauth2 => oauth as gem name in one more place.
|
|
77
237
|
|
|
78
238
|
## [0.5.12] 2022-08-23
|
|
239
|
+
|
|
240
|
+
- TAG: [v0.5.12][0.5.12t]
|
|
241
|
+
|
|
79
242
|
The "Typoes are just the worst!" Release
|
|
80
243
|
|
|
81
244
|
### Fixed
|
|
82
|
-
|
|
245
|
+
|
|
246
|
+
- Typo oauth2 => oauth as gem name in a couple places.
|
|
83
247
|
|
|
84
248
|
## [0.5.11] 2022-08-23
|
|
249
|
+
|
|
250
|
+
- TAG: [v0.5.11][0.5.11t]
|
|
251
|
+
|
|
85
252
|
The "Is this the last release with a silly name?" Release
|
|
86
253
|
|
|
87
254
|
### Added
|
|
88
|
-
|
|
255
|
+
|
|
256
|
+
- Post install note about v0.5.x EOL approaching in April, 2023
|
|
89
257
|
|
|
90
258
|
### Changed
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
259
|
+
|
|
260
|
+
- Improved documentation
|
|
261
|
+
- Switched branch references from master to main
|
|
262
|
+
- CI builds are now all green!
|
|
94
263
|
|
|
95
264
|
## [0.5.10] 2022-05-04
|
|
265
|
+
|
|
266
|
+
- TAG: [v0.5.10][0.5.10t]
|
|
267
|
+
|
|
96
268
|
The "Can it be the end of the line for 0.5.x?" Release
|
|
97
269
|
|
|
98
270
|
### Added
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
271
|
+
|
|
272
|
+
- Major updates to Documentation
|
|
273
|
+
- More CI Hardening
|
|
274
|
+
- Align CI builds with official Ruby Compatibility Matrix
|
|
275
|
+
- Project tooling in preparation for final release of 0.5.x series
|
|
103
276
|
- diffend
|
|
104
277
|
|
|
105
278
|
## [0.5.9] 2022-05-03
|
|
279
|
+
|
|
280
|
+
- TAG: [v0.5.9][0.5.9t]
|
|
281
|
+
|
|
106
282
|
### Added
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
283
|
+
|
|
284
|
+
- Documentation related to Ruby compatibility
|
|
285
|
+
- Updated CHANGELOG.md formatting
|
|
286
|
+
- Corrected CHANGELOG.md typos
|
|
287
|
+
- Hardened the CI build for the next few years(?!)
|
|
288
|
+
- Require MFA to push new version to Rubygems
|
|
289
|
+
- Replace Hash Rocket syntax with JSON-style symbols where possible
|
|
290
|
+
- Project tooling in preparation for final release of 0.5.x series
|
|
114
291
|
- rubocop-ruby2_0
|
|
115
292
|
- overcommit
|
|
116
293
|
|
|
117
294
|
## [0.5.8] 2021-11-10
|
|
295
|
+
|
|
296
|
+
- TAG: [v0.5.8][0.5.8t]
|
|
297
|
+
|
|
118
298
|
### Added
|
|
119
|
-
|
|
299
|
+
|
|
300
|
+
- Added more documentation files to packaged gem, e.g. SECURITY.md, CODE_OF_CONDUCT.md
|
|
120
301
|
|
|
121
302
|
### Fixed
|
|
122
|
-
|
|
303
|
+
|
|
304
|
+
- Removed reference to RUBY_VERSION from gemspec, as it depends on rake release, which is problematic on some ruby engines. (by @pboling)
|
|
123
305
|
|
|
124
306
|
## [0.5.7] 2021-11-02
|
|
307
|
+
|
|
308
|
+
- TAG: [v0.5.7][0.5.7t]
|
|
309
|
+
|
|
125
310
|
### Added
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
311
|
+
|
|
312
|
+
- Setup Rubocop (#205, #208 by @pboling)
|
|
313
|
+
- Added CODE_OF_CONDUCT.md (#217, #218 by @pboling)
|
|
314
|
+
- Added FUNDING.yml (#217, #218 by @pboling)
|
|
315
|
+
- Added Client Certificate Options: :ssl_client_cert and :ssl_client_key (#136, #220 by @pboling)
|
|
316
|
+
- Handle a nested array of hashes in OAuth::Helper.normalize (#80, #221 by @pboling)
|
|
131
317
|
|
|
132
318
|
### Changed
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
319
|
+
|
|
320
|
+
- Switch from TravisCI to Github Actions (#202, #207, #176 by @pboling)
|
|
321
|
+
- Upgrade webmock to v3.14.0 (#196 by @pboling)
|
|
322
|
+
- Upgrade em-http-request to v1.1.7 (#173 by @pboling)
|
|
323
|
+
- Upgrade mocha to v1.13.0 (#193 by @pboling)
|
|
324
|
+
- HISTORY renamed to CHANGELOG.md, and follows Keep a Changelog (#214, #215 by @pboling)
|
|
325
|
+
- CHANGELOG, LICENSE, and README now ship with packaged gem (#214, #215 by @pboling)
|
|
326
|
+
- README.rdoc renamed to README.md (#217, #218 by @pboling)
|
|
327
|
+
- Require plaintext signature method by default (#135 by @confiks & @pboling)
|
|
328
|
+
|
|
329
|
+
### Fixed
|
|
330
|
+
|
|
331
|
+
- Fixed Infinite Redirect in v0.5.5, v0.5.6 (#186, #210 by @pboling)
|
|
332
|
+
- Fixed NoMethodError on missing leading slash in path (#194, #211 by @pboling)
|
|
333
|
+
- Fixed NoMethodError on nil request object (#165, #212 by @pboling)
|
|
334
|
+
- Fixed Unsafe String Comparison (#156, #209 by @pboling and @drosseau)
|
|
335
|
+
- Fixed typos in Gemspec (#204, #203, #208 by @pboling)
|
|
336
|
+
- Copyright Notice in LICENSE - added correct years (#217, #218 by @pboling)
|
|
337
|
+
- Fixed request proxy Class constant reference scopes - was missing `::` in many places (#225, #226 by @pboling)
|
|
150
338
|
|
|
151
339
|
### Removed
|
|
152
|
-
|
|
340
|
+
|
|
341
|
+
- Remove direct development dependency on nokogiri (#299 by @pboling)
|
|
153
342
|
|
|
154
343
|
## [0.5.6] 2021-04-02
|
|
344
|
+
|
|
345
|
+
- TAG: [v0.5.6][0.5.6t]
|
|
346
|
+
|
|
155
347
|
### Added
|
|
156
|
-
|
|
157
|
-
|
|
348
|
+
|
|
349
|
+
- Add metadata to Gemspec file
|
|
350
|
+
- Add support for PUT requests with Action Controller (#181)
|
|
158
351
|
|
|
159
352
|
### Changed
|
|
160
|
-
|
|
353
|
+
|
|
354
|
+
- Change default timeout to be the same as Net::HTTP default, 60 seconds instead of 30 seconds.
|
|
161
355
|
|
|
162
356
|
## [0.5.5] 2020-01-19
|
|
357
|
+
|
|
358
|
+
- TAG: [v0.5.5][0.5.5t]
|
|
359
|
+
|
|
163
360
|
### Added
|
|
164
|
-
|
|
361
|
+
|
|
362
|
+
- Add :allow_empty_params option (#155)
|
|
165
363
|
|
|
166
364
|
### Changed
|
|
167
|
-
|
|
168
|
-
|
|
365
|
+
|
|
366
|
+
- Allow redirect to different host but same path
|
|
367
|
+
- Various cleanups
|
|
169
368
|
|
|
170
369
|
### Fixed
|
|
171
|
-
|
|
172
|
-
|
|
370
|
+
|
|
371
|
+
- Fixes ssl-noverify
|
|
372
|
+
- Fixed README example (#158, #159, by @pboling)
|
|
173
373
|
|
|
174
374
|
## [0.5.4] 2017-12-08
|
|
375
|
+
|
|
376
|
+
- TAG: [v0.5.4][0.5.4t]
|
|
377
|
+
|
|
175
378
|
### Changed
|
|
176
|
-
|
|
379
|
+
|
|
380
|
+
- Various cleanups (charliesome)
|
|
177
381
|
|
|
178
382
|
### Fixed
|
|
179
|
-
|
|
383
|
+
|
|
384
|
+
- Fixes UnknownRequestType on Rails 5.1 for ActionDispatch::Request (xprazak2)
|
|
180
385
|
|
|
181
386
|
## [0.5.3] 2017-05-24
|
|
387
|
+
|
|
388
|
+
- TAG: [v0.5.3][0.5.3t]
|
|
389
|
+
|
|
182
390
|
### Fixed
|
|
183
|
-
|
|
391
|
+
|
|
392
|
+
- Fix #145 - broken CLI required loading active_support (James Pinto)
|
|
184
393
|
|
|
185
394
|
### Changed
|
|
186
|
-
|
|
395
|
+
|
|
396
|
+
- Removing legacy scripts (James Pinto)
|
|
187
397
|
|
|
188
398
|
## [0.5.2] 2017-05-17
|
|
399
|
+
|
|
400
|
+
- TAG: [v0.5.2][0.5.2t]
|
|
401
|
+
|
|
189
402
|
### Added
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
403
|
+
|
|
404
|
+
- Adding a development dependency that had not been mentioned (James Pinto)
|
|
405
|
+
- Adding CodeClimate (James Pinto)
|
|
406
|
+
- Adding support to Ruby 2.4 and head (James Pinto)
|
|
193
407
|
|
|
194
408
|
### Changed
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
409
|
+
|
|
410
|
+
- Use assert_nil so as to silence a Minitest 6 deprecation warning (James Pinto)
|
|
411
|
+
- Stop bundling tests files in the gem (Michal Papis)
|
|
412
|
+
- Minor cleanup on tests (James Pinto)
|
|
413
|
+
- TravisCI no longer needs libcurl-dev (James Pinto)
|
|
414
|
+
- Nokogiri 1.7 does not accept Ruby 2.0 (James Pinto)
|
|
415
|
+
- Upgrading to CodeClimate 1.0 (James Pinto)
|
|
416
|
+
- Locking gemspec to Rails 4 so as to allow our next version for Rails 5 (James Pinto)
|
|
417
|
+
- moving development dependency to gemspec (James Pinto)
|
|
418
|
+
- Silencing 'Net::HTTPResponse#header is obsolete' (James Pinto)
|
|
419
|
+
- Silencing some test warnings (James Pinto)
|
|
420
|
+
- Silencing 'loading in progress, circular require considered harmful' (James Pinto)
|
|
421
|
+
- Silence 'URI.escape obsolete' (James Pinto)
|
|
422
|
+
- Refactored CLI (James Pinto)
|
|
423
|
+
- Moving test files into test/units/ (James Pinto)
|
|
424
|
+
- Reimplementing #82 - Debug Output Option (James Pinto)
|
|
425
|
+
|
|
426
|
+
### Fixed
|
|
427
|
+
|
|
428
|
+
- Fix #113 adding paths when a full URL has been specified (James Pinto)
|
|
429
|
+
- Bug Fix, webmock 2.0 has introduced a new bug (James Pinto)
|
|
430
|
+
- Making a test/support dir (James Pinto)
|
|
431
|
+
- Fix #177 - Adjusting to webmock latest recommended implementation for minitest (James Pinto)
|
|
216
432
|
|
|
217
433
|
## [0.5.1] 2016-02-29
|
|
434
|
+
|
|
435
|
+
- TAG: [v0.5.1][0.5.1t]
|
|
436
|
+
|
|
218
437
|
### Added
|
|
219
|
-
|
|
438
|
+
|
|
439
|
+
- Add license info to the gemspec (Robert Reiz)
|
|
220
440
|
|
|
221
441
|
### Fixed
|
|
222
|
-
|
|
442
|
+
|
|
443
|
+
- Proper handling for empty query string in RequestToken#build_authorize_url (midchildan,
|
|
223
444
|
Harald Sitter)
|
|
224
|
-
|
|
445
|
+
- Replace calls to String#blank? with its implementation (Sergio Gil Pérez de la Manga)
|
|
225
446
|
|
|
226
447
|
### Changed
|
|
227
|
-
|
|
228
|
-
|
|
448
|
+
|
|
449
|
+
- Loosen some development dependencies. Add libcurl-dev to travis
|
|
450
|
+
- Fixes to travis config. Switch to rubygems for installation and loading
|
|
229
451
|
|
|
230
452
|
### Removed
|
|
231
|
-
|
|
232
|
-
|
|
453
|
+
|
|
454
|
+
- Remove obsolete comment (Arthur Nogueira Neves)
|
|
455
|
+
- Remove jeweler from gemspec
|
|
233
456
|
|
|
234
457
|
## [0.5.0] 2016-02-20
|
|
458
|
+
|
|
459
|
+
- TAG: [v0.5.0][0.5.0t]
|
|
460
|
+
|
|
235
461
|
### Added
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
462
|
+
|
|
463
|
+
- Add support for HTTP PATCH method (Richard Huang)
|
|
464
|
+
- Allow reading private key from a string (Khaja Minhajuddin)
|
|
465
|
+
- Add rest-client proxy (Khem Veasna)
|
|
466
|
+
- Add byebug. (Kevin Hughes)
|
|
467
|
+
- Allow reading certificate file path from environment variable. Add CentOS cert file path (Danil Vlasov)
|
|
241
468
|
|
|
242
469
|
### Changed
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
470
|
+
|
|
471
|
+
- Replace jeweler with real spec and bundler tasks
|
|
472
|
+
- Extract version to separate file
|
|
473
|
+
- Use OpenSSL for all digest and hashing. Remove signature methods not defined by OAuth spec. (Kevin Hughes)
|
|
474
|
+
- Change token requests to exclude `oauth_body_hash`. Update doc links in comments. (John Remmen)
|
|
475
|
+
|
|
476
|
+
### Fixed
|
|
477
|
+
|
|
478
|
+
- Fix ability to pass in an authorize url with a query string (Roger Smith)
|
|
479
|
+
- Fix bug in signature verification (r-stu31)
|
|
480
|
+
- Use standard key name (`oauth_token_secret`) in Token#to_query (Craig Walker)
|
|
481
|
+
- Fix error in CLI when using `query` without supplying a method (grafikchaos)
|
|
482
|
+
- Compatibility fix for Typhoeus >= 0.5.0 (Chad Feller)
|
|
483
|
+
- Rails 3+ / ActiveSupport::SafeBuffer patch (Clif Reeder)
|
|
484
|
+
- Handle `nil` token gracefully for RequestToken#authorize_url (Brian John)
|
|
485
|
+
- Fix typhoeus compatibility (Vladimir Mikhailov)
|
|
486
|
+
- Fix oauth cli option parser on Ruby 2.2 (Felix Bünemann)
|
|
487
|
+
- Update gemspec for security fixes. Convert to Minitest. Add .travis.yml. (Kevin Hughes)
|
|
488
|
+
- Fix some warnings (amatsuda)
|
|
489
|
+
- Various fixes/updates to README (Evan Arnold, Jonathan Camenisch, Brian John, Ankur Sethi)
|
|
261
490
|
|
|
262
491
|
## [0.4.7] 2012-09-03
|
|
492
|
+
|
|
493
|
+
- TAG: [v0.4.7][0.4.7t]
|
|
494
|
+
|
|
263
495
|
### Added
|
|
264
|
-
|
|
496
|
+
|
|
497
|
+
- Set a configurable timeout for all requests (Rick Olson)
|
|
265
498
|
|
|
266
499
|
### Fixed
|
|
267
|
-
|
|
268
|
-
|
|
500
|
+
|
|
501
|
+
- Fix merging paths if the path is not empty
|
|
502
|
+
- Fix nested hash params in Consumer#request (Ernie Miller)
|
|
269
503
|
|
|
270
504
|
## [0.4.6] 2012-04-21
|
|
505
|
+
|
|
506
|
+
- TAG: [v0.4.6][0.4.6t]
|
|
507
|
+
|
|
271
508
|
### Changed
|
|
272
|
-
|
|
509
|
+
|
|
510
|
+
- Make use the path component of the :site parameter (Jonathon M. Abbott)
|
|
273
511
|
|
|
274
512
|
### Fixed
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
513
|
+
|
|
514
|
+
- Fixed nested attributes in #normalize (Shaliko Usubov)
|
|
515
|
+
- Fixed post body's being dropped in 1.9 (Steven Hammond)
|
|
516
|
+
- Fixed PUT request handling (Anton Panasenko)
|
|
278
517
|
|
|
279
518
|
## [0.4.5] 2011-06-25
|
|
519
|
+
|
|
520
|
+
- TAG: [v0.4.5][0.4.5t]
|
|
521
|
+
|
|
280
522
|
### Added
|
|
281
|
-
|
|
282
|
-
|
|
523
|
+
|
|
524
|
+
- Add explicit require for rsa/sha1 (Juris Galang)
|
|
525
|
+
- Add gemtest support (Adrian Feldman)
|
|
283
526
|
|
|
284
527
|
### Changed
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
528
|
+
|
|
529
|
+
- Use webmock to mock all http-requests in tests (Adrian Feldman)
|
|
530
|
+
- Mention Typhoeus require in the README (Kim Ahlström)
|
|
531
|
+
- Use Net::HTTPGenericRequest (Jakub Kuźma)
|
|
288
532
|
|
|
289
533
|
### Fixed
|
|
290
|
-
|
|
291
|
-
|
|
534
|
+
|
|
535
|
+
- Fix POST Requests with Typhoeus proxy (niedhui)
|
|
536
|
+
- Fix incorrect hardcoded port (Ian Taylor)
|
|
292
537
|
|
|
293
538
|
## [0.4.4] 2010-10-31
|
|
539
|
+
|
|
540
|
+
- TAG: [v0.4.4][0.4.4t]
|
|
541
|
+
|
|
294
542
|
### Added
|
|
295
|
-
|
|
543
|
+
|
|
544
|
+
- Added support for Rails 3 in client/action_controller_request (Pelle)
|
|
296
545
|
|
|
297
546
|
### Fixed
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
547
|
+
|
|
548
|
+
- Fix LoadError rescue in tests: return can't be used in this context (Hans de Graaff)
|
|
549
|
+
- HTTP headers should be strings. (seancribbs)
|
|
550
|
+
- ensure consumer uri gets set back to original config even if an error occurs (Brian Finney)
|
|
551
|
+
- Yahoo uses & to split records in OAuth headers (Brian Finney)
|
|
302
552
|
|
|
303
553
|
## [0.4.3] 2010-09-01
|
|
554
|
+
|
|
555
|
+
- TAG: [v0.4.3][0.4.3t]
|
|
556
|
+
|
|
304
557
|
### Fixed
|
|
305
|
-
|
|
558
|
+
|
|
559
|
+
- Fix for em-http proxy (ichverstehe)
|
|
306
560
|
|
|
307
561
|
## [0.4.2] 2010-08-13
|
|
562
|
+
|
|
563
|
+
- TAG: [v0.4.2][0.4.2t]
|
|
564
|
+
|
|
308
565
|
### Added
|
|
309
|
-
|
|
566
|
+
|
|
567
|
+
- Added Bundler (rc) Gemfile for easier dev/testing
|
|
310
568
|
|
|
311
569
|
### Fixed
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
570
|
+
|
|
571
|
+
- Fixed compatibility with Ruby 1.9.2 (ecavazos)
|
|
572
|
+
- Fixed the em-http request proxy (Joshua Hull)
|
|
573
|
+
- Fix for oauth proxy string manipulation (Jakub Suder)
|
|
315
574
|
|
|
316
575
|
## [0.4.1] 2010-06-16
|
|
576
|
+
|
|
577
|
+
- TAG: [v0.4.1][0.4.1t]
|
|
578
|
+
|
|
317
579
|
### Added
|
|
318
|
-
|
|
580
|
+
|
|
581
|
+
- Added support for using OAuth with proxies (Marsh Gardiner)
|
|
319
582
|
|
|
320
583
|
### Fixed
|
|
321
|
-
|
|
322
|
-
|
|
584
|
+
|
|
585
|
+
- Rails 3 Compatibility fixes (Pelle Braendgaard)
|
|
586
|
+
- Fixed load errors on tests for missing (non-required) libraries
|
|
323
587
|
|
|
324
588
|
## [0.4.0] 2010-04-22
|
|
589
|
+
|
|
590
|
+
- TAG: [v0.4.0][0.4.0t]
|
|
591
|
+
|
|
325
592
|
### Added
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
593
|
+
|
|
594
|
+
- Added computation of oauth_body_hash as per OAuth Request Body Hash 1.0 Draft 4 (Michael Reinsch)
|
|
595
|
+
- Added the optional `oauth_session_handle` parameter for the Yahoo implementation (Will Bailey)
|
|
596
|
+
- Added optional block to OAuth::Consumer.get\_\*\_token (Neill Pearman)
|
|
597
|
+
- Exclude `oauth_callback` with :exclude_callback (Neill Pearman)
|
|
598
|
+
- Support for Ruby 1.9 (Aaron Quint, Corey Donahoe, et al)
|
|
599
|
+
- Support for Typhoeus (Bill Kocik)
|
|
600
|
+
- Support for em-http (EventMachine) (Darcy Laycock)
|
|
601
|
+
- Support for curb (André Luis Leal Cardoso Junior)
|
|
602
|
+
- New website (Aaron Quint)
|
|
335
603
|
|
|
336
604
|
### Changed
|
|
337
|
-
|
|
338
|
-
|
|
605
|
+
|
|
606
|
+
- Better marshalling implementation (Yoan Blanc)
|
|
607
|
+
- Replaced hoe with Jeweler (Aaron Quint)
|
|
339
608
|
|
|
340
609
|
### Fixed
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
610
|
+
|
|
611
|
+
- Strip extraneous spaces and line breaks from access_token responses (observed in the wild with Yahoo!'s OAuth+OpenID hybrid) (Eric Hartmann)
|
|
612
|
+
- Stop double-escaping PLAINTEXT signatures (Jimmy Zimmerman)
|
|
613
|
+
- OAuth::Client::Helper won't override the specified `oauth_version` (Philip Kromer)
|
|
614
|
+
- Fixed an encoding / multibyte issue (成田 一生)
|
|
345
615
|
|
|
346
616
|
## [0.3.6] 2009-09-14
|
|
617
|
+
|
|
618
|
+
- TAG: [v0.3.6][0.3.6t]
|
|
619
|
+
|
|
347
620
|
### Added
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
621
|
+
|
|
622
|
+
- Added -B CLI option to use the :body authentication scheme (Seth)
|
|
623
|
+
- Support POST and PUT with raw bodies (Yu-Shan Fung et al)
|
|
624
|
+
- Added :ca_file consumer option to allow consumer specific certificate override. (Pelle)
|
|
351
625
|
|
|
352
626
|
### Changed
|
|
353
|
-
|
|
627
|
+
|
|
628
|
+
- Test clean-up (Xavier Shay, Hannes Tydén)
|
|
354
629
|
|
|
355
630
|
### Fixed
|
|
356
|
-
|
|
631
|
+
|
|
632
|
+
- Respect `--method` in `authorize` CLI command (Seth)
|
|
357
633
|
|
|
358
634
|
## [0.3.5] 2009-06-03
|
|
635
|
+
|
|
636
|
+
- TAG: [v0.3.5][0.3.5t]
|
|
637
|
+
|
|
359
638
|
### Added
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
639
|
+
|
|
640
|
+
- `query` CLI command to access protected resources (Seth)
|
|
641
|
+
- Added -H, -Q CLI options for specifying the authentication scheme (Seth)
|
|
642
|
+
- Added -O CLI option for specifying a file containing options (Seth)
|
|
643
|
+
- Support streamable body contents for large request bodies (Seth Cousins)
|
|
644
|
+
- Support for OAuth 1.0a (Seth)
|
|
645
|
+
- Added proxy support to OAuth::Consumer (Marshall Huss)
|
|
646
|
+
- Added --scope CLI option for Google's 'scope' parameter (Seth)
|
|
367
647
|
|
|
368
648
|
## [0.3.4] 2009-05-06
|
|
649
|
+
|
|
650
|
+
- TAG: [v0.3.4][0.3.4t]
|
|
651
|
+
|
|
369
652
|
### Changed
|
|
370
|
-
|
|
653
|
+
|
|
654
|
+
- OAuth::Client::Helper uses OAuth::Version::VERSION (chadisfaction)
|
|
371
655
|
|
|
372
656
|
### Fixed
|
|
373
|
-
|
|
657
|
+
|
|
658
|
+
- Fix OAuth::RequestProxy::ActionControllerRequest's handling of params (Tristan Groléat)
|
|
374
659
|
|
|
375
660
|
## [0.3.3] 2009-05-04
|
|
661
|
+
|
|
662
|
+
- TAG: [v0.3.3][0.3.3t]
|
|
663
|
+
|
|
376
664
|
### Added
|
|
377
|
-
|
|
378
|
-
|
|
665
|
+
|
|
666
|
+
- Support for arguments in OAuth::Consumer#get_access_token (Matt Sanford)
|
|
667
|
+
- Add gem version to user-agent header (Matt Sanford)
|
|
379
668
|
|
|
380
669
|
### Changed
|
|
381
|
-
|
|
382
|
-
|
|
670
|
+
|
|
671
|
+
- Improved error handling for invalid Authorization headers (Matt Sanford)
|
|
672
|
+
- Handle input from aggressive form encoding libraries (Matt Wood)
|
|
383
673
|
|
|
384
674
|
### Fixed
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
675
|
+
|
|
676
|
+
- Corrected OAuth XMPP namespace (Seth)
|
|
677
|
+
- Fixed signatures for non-ASCII under $KCODE other than 'u' (Matt Sanford)
|
|
678
|
+
- Fixed edge cases in ActionControllerRequestProxy where params were being incorrectly signed (Marcos Wright Kuhns)
|
|
388
679
|
|
|
389
680
|
## [0.3.2] 2009-03-23
|
|
681
|
+
|
|
682
|
+
- TAG: [v0.3.2][0.3.2t]
|
|
683
|
+
|
|
390
684
|
### Added
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
685
|
+
|
|
686
|
+
- Support applications using the MethodOverride Rack middleware (László Bácsi)
|
|
687
|
+
- `authorize` command for `oauth` CLI (Seth)
|
|
688
|
+
- Initial support for Problem Reporting extension (Seth)
|
|
689
|
+
- Verify SSL certificates if CA certificates are available (Seth)
|
|
690
|
+
- Added help to the 'oauth' CLI (Seth)
|
|
396
691
|
|
|
397
692
|
### Fixed
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
693
|
+
|
|
694
|
+
- 2xx statuses should be treated as success (Anders Conbere)
|
|
695
|
+
- Fixed ActionController parameter escaping behavior (Thiago Arrais, László Bácsi, Brett Gibson, et al)
|
|
696
|
+
- Fixed signature calculation when both options and a block were provided to OAuth::Signature::Base#initialize (Seth)
|
|
697
|
+
- Fixed a problem when attempting to normalize MockRequest URIs (Seth)
|
|
402
698
|
|
|
403
699
|
## [0.3.1] 2009-01-26
|
|
700
|
+
|
|
701
|
+
- TAG: [v0.3.1][0.3.1t]
|
|
702
|
+
|
|
404
703
|
### Fixed
|
|
405
|
-
|
|
704
|
+
|
|
705
|
+
- Fixed a problem with relative and absolute token request paths. (Michael Wood)
|
|
406
706
|
|
|
407
707
|
## [0.3.0] 2009-01-25
|
|
708
|
+
|
|
709
|
+
- TAG: [v0.3.0][0.3.0t]
|
|
710
|
+
|
|
408
711
|
### Added
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
712
|
+
|
|
713
|
+
- Support ActionController::Request from Edge Rails (László Bácsi)
|
|
714
|
+
- Added #normalized_parameters to OAuth::RequestProxy::Base (Pelle)
|
|
715
|
+
- Command-line app for generating signatures. (Seth)
|
|
412
716
|
|
|
413
717
|
### Changed
|
|
414
|
-
|
|
415
|
-
|
|
718
|
+
|
|
719
|
+
- OAuth::Signature.sign and friends now yield the RequestProxy instead of the token when the passed block's arity is 1. (Seth)
|
|
720
|
+
- Improved test-cases and compatibility for encoding issues. (Pelle)
|
|
416
721
|
|
|
417
722
|
### Fixed
|
|
418
|
-
|
|
419
|
-
|
|
723
|
+
|
|
724
|
+
- Correctly handle multi-valued parameters (Seth)
|
|
725
|
+
- Token requests are made to the configured URL rather than generating a potentially incorrect one. (Kellan Elliott-McCrea)
|
|
420
726
|
|
|
421
727
|
## 0.2.7 2008-09-10
|
|
728
|
+
|
|
422
729
|
The lets fix the last release release
|
|
423
730
|
|
|
424
731
|
### Fixed
|
|
425
|
-
|
|
426
|
-
|
|
732
|
+
|
|
733
|
+
- Fixed plain text signatures (Andrew Arrow)
|
|
734
|
+
- Fixed RSA requests using OAuthTokens. (Philip Lipu Tsai)
|
|
427
735
|
|
|
428
736
|
## 0.2.6 2008-09-09
|
|
737
|
+
|
|
429
738
|
The lets RSA release
|
|
430
739
|
|
|
431
740
|
### Added
|
|
432
|
-
|
|
433
|
-
|
|
741
|
+
|
|
742
|
+
- Improved support for Ruby 1.8.7 (Bill Kocik)
|
|
743
|
+
- Added support for 'private_key_file' option for RSA signatures (Chris Mear)
|
|
434
744
|
|
|
435
745
|
### Changed
|
|
436
|
-
|
|
437
|
-
|
|
746
|
+
|
|
747
|
+
- Improved RSA testing
|
|
748
|
+
- Omit token when signing with RSA
|
|
438
749
|
|
|
439
750
|
### Fixed
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
751
|
+
|
|
752
|
+
- Fixed RSA verification to support RSA providers now using Ruby and RSA
|
|
753
|
+
- Fixed several edge cases where params were being incorrectly signed (Scott Hill)
|
|
754
|
+
- Fixed RSA signing (choonkeat)
|
|
443
755
|
|
|
444
756
|
## 0.2.2 2008-02-22
|
|
757
|
+
|
|
445
758
|
Lets actually support SSL release
|
|
446
759
|
|
|
447
760
|
### Fixed
|
|
448
|
-
|
|
761
|
+
|
|
762
|
+
- Use HTTPS when required.
|
|
449
763
|
|
|
450
764
|
## 0.2 2008-1-19
|
|
765
|
+
|
|
451
766
|
All together now release
|
|
452
767
|
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
768
|
+
### Changed
|
|
769
|
+
|
|
770
|
+
- This is a big release, where we have merged the efforts of various parties into one common library.
|
|
771
|
+
This means there are definitely some API changes you should be aware of. They should be minimal
|
|
772
|
+
but please have a look at the unit tests.
|
|
456
773
|
|
|
457
774
|
## 0.1.2 2007-12-1
|
|
775
|
+
|
|
458
776
|
### Fixed
|
|
459
|
-
|
|
460
|
-
|
|
777
|
+
|
|
778
|
+
- Fixed checks for missing OAuth params to improve performance
|
|
779
|
+
- Includes Pat's fix for getting the realm out.
|
|
461
780
|
|
|
462
781
|
## 0.1.1 2007-11-26
|
|
782
|
+
|
|
463
783
|
### Added
|
|
464
|
-
|
|
465
|
-
|
|
784
|
+
|
|
785
|
+
- First release as a GEM
|
|
786
|
+
- Moved all non-Rails functionality from the Rails plugin:
|
|
466
787
|
http://code.google.com/p/oauth-plugin/
|
|
467
788
|
|
|
468
|
-
[Unreleased]: https://github.com/oauth
|
|
469
|
-
[1.1.
|
|
470
|
-
[1.
|
|
471
|
-
[1.
|
|
472
|
-
[
|
|
473
|
-
[
|
|
474
|
-
[
|
|
475
|
-
[
|
|
476
|
-
[
|
|
477
|
-
[
|
|
478
|
-
[
|
|
479
|
-
[
|
|
480
|
-
[
|
|
481
|
-
[
|
|
482
|
-
[
|
|
483
|
-
[0.
|
|
484
|
-
[0.
|
|
485
|
-
[0.
|
|
486
|
-
[0.
|
|
487
|
-
[0.
|
|
488
|
-
[0.
|
|
489
|
-
[0.
|
|
490
|
-
[0.
|
|
491
|
-
[0.
|
|
492
|
-
[0.
|
|
493
|
-
[0.
|
|
494
|
-
[0.
|
|
495
|
-
[0.
|
|
496
|
-
[0.
|
|
497
|
-
[0.
|
|
498
|
-
[0.
|
|
499
|
-
[0.
|
|
500
|
-
[0.
|
|
501
|
-
[0.
|
|
502
|
-
[0.
|
|
503
|
-
[0.
|
|
504
|
-
[0.
|
|
789
|
+
[Unreleased]: https://github.com/ruby-oauth/oauth/compare/v1.1.6...HEAD
|
|
790
|
+
[1.1.6]: https://github.com/ruby-oauth/oauth/compare/v1.1.5...v1.1.6
|
|
791
|
+
[1.1.6t]: https://github.com/ruby-oauth/oauth/releases/tag/v1.1.6
|
|
792
|
+
[1.1.5]: https://github.com/ruby-oauth/oauth/compare/v1.1.4...v1.1.5
|
|
793
|
+
[1.1.5t]: https://github.com/ruby-oauth/oauth/releases/tag/v1.1.5
|
|
794
|
+
[1.1.4]: https://github.com/ruby-oauth/oauth/compare/v1.1.3...v1.1.4
|
|
795
|
+
[1.1.4t]: https://github.com/ruby-oauth/oauth/releases/tag/v1.1.4
|
|
796
|
+
[1.1.3]: https://github.com/ruby-oauth/oauth/compare/v1.1.2...v1.1.3
|
|
797
|
+
[1.1.3t]: https://github.com/ruby-oauth/oauth/releases/tag/v1.1.3
|
|
798
|
+
[1.1.2]: https://github.com/ruby-oauth/oauth/compare/v1.1.1...v1.1.2
|
|
799
|
+
[1.1.2t]: https://github.com/ruby-oauth/oauth/releases/tag/v1.1.2
|
|
800
|
+
[1.1.1]: https://github.com/ruby-oauth/oauth/compare/v1.1.0...v1.1.1
|
|
801
|
+
[1.1.1t]: https://github.com/ruby-oauth/oauth/releases/tag/v1.1.1
|
|
802
|
+
[1.1.0]: https://gitlab.com/ruby-oauth/oauth/-/compare/v1.0.1...v1.1.0
|
|
803
|
+
[1.1.0t]: https://github.com/ruby-oauth/oauth/releases/tag/v1.1.0
|
|
804
|
+
[1.0.1]: https://gitlab.com/ruby-oauth/oauth/-/compare/v1.0.0...v1.0.1
|
|
805
|
+
[1.0.1t]: https://github.com/ruby-oauth/oauth/releases/tag/v1.0.1
|
|
806
|
+
[1.0.0]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.6.2...v1.0.0
|
|
807
|
+
[1.0.0t]: https://github.com/ruby-oauth/oauth/releases/tag/v1.0.0
|
|
808
|
+
[0.6.2]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.6.1...v0.6.2
|
|
809
|
+
[0.6.2t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.6.2
|
|
810
|
+
[0.6.1]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.6.0...v0.6.1
|
|
811
|
+
[0.6.1t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.6.1
|
|
812
|
+
[0.6.0]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.14...v0.6.0
|
|
813
|
+
[0.6.0t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.6.0
|
|
814
|
+
[0.5.14]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.13...v0.5.14
|
|
815
|
+
[0.5.14t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.14
|
|
816
|
+
[0.5.13]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.12...v0.5.13
|
|
817
|
+
[0.5.13t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.13
|
|
818
|
+
[0.5.12]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.11...v0.5.12
|
|
819
|
+
[0.5.12t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.12
|
|
820
|
+
[0.5.11]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.10...v0.5.11
|
|
821
|
+
[0.5.11t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.11
|
|
822
|
+
[0.5.10t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.10
|
|
823
|
+
[0.5.9]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.8...v0.5.9
|
|
824
|
+
[0.5.9t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.9
|
|
825
|
+
[0.5.8]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.7...v0.5.8
|
|
826
|
+
[0.5.8t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.8
|
|
827
|
+
[0.5.7]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.6...v0.5.7
|
|
828
|
+
[0.5.7t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.7
|
|
829
|
+
[0.5.6]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.5...v0.5.6
|
|
830
|
+
[0.5.6t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.6
|
|
831
|
+
[0.5.5]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.4...v0.5.5
|
|
832
|
+
[0.5.5t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.5
|
|
833
|
+
[0.5.4]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.3...v0.5.4
|
|
834
|
+
[0.5.4t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.4
|
|
835
|
+
[0.5.3]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.2...v0.5.3
|
|
836
|
+
[0.5.3t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.3
|
|
837
|
+
[0.5.2]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.1...v0.5.2
|
|
838
|
+
[0.5.2t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.2
|
|
839
|
+
[0.5.1]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.5.0...v0.5.1
|
|
840
|
+
[0.5.1t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.1
|
|
841
|
+
[0.5.0]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.4.7...v0.5.0
|
|
842
|
+
[0.5.0t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.5.0
|
|
843
|
+
[0.4.7]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.4.6...v0.4.7
|
|
844
|
+
[0.4.7t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.4.7
|
|
845
|
+
[0.4.6]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.4.5...v0.4.6
|
|
846
|
+
[0.4.6t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.4.6
|
|
847
|
+
[0.4.5]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.4.4...v0.4.5
|
|
848
|
+
[0.4.5t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.4.5
|
|
849
|
+
[0.4.4]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.4.3...v0.4.4
|
|
850
|
+
[0.4.4t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.4.4
|
|
851
|
+
[0.4.3]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.4.2...v0.4.3
|
|
852
|
+
[0.4.3t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.4.3
|
|
853
|
+
[0.4.2]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.4.1...v0.4.2
|
|
854
|
+
[0.4.2t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.4.2
|
|
855
|
+
[0.4.1]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.4.0...v0.4.1
|
|
856
|
+
[0.4.1t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.4.1
|
|
857
|
+
[0.4.0]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.3.6...v0.4.0
|
|
858
|
+
[0.4.0t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.4.0
|
|
859
|
+
[0.3.6]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.3.5...v0.3.6
|
|
860
|
+
[0.3.6t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.3.6
|
|
861
|
+
[0.3.5]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.3.4...v0.3.5
|
|
862
|
+
[0.3.5t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.3.5
|
|
863
|
+
[0.3.4]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.3.3...v0.3.4
|
|
864
|
+
[0.3.4t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.3.4
|
|
865
|
+
[0.3.3]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.3.2...v0.3.3
|
|
866
|
+
[0.3.3t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.3.3
|
|
867
|
+
[0.3.2]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.3.1...v0.3.2
|
|
868
|
+
[0.3.2t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.3.2
|
|
869
|
+
[0.3.1]: https://gitlab.com/ruby-oauth/oauth/-/compare/v0.3.0...v0.3.1
|
|
870
|
+
[0.3.1t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.3.1
|
|
871
|
+
[0.3.0]: https://github.com/ruby-oauth/oauth/releases/tag/v0.3.0
|
|
872
|
+
[0.3.0t]: https://github.com/ruby-oauth/oauth/releases/tag/v0.3.0
|