oauth 0.5.14 → 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 +663 -239
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +79 -29
- data/CONTRIBUTING.md +264 -15
- data/FUNDING.md +74 -0
- data/LICENSE.md +71 -0
- data/README.md +642 -297
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +11 -12
- data/certs/pboling.pem +27 -0
- data/lib/oauth/auth_sanitizer.rb +36 -0
- data/lib/oauth/client/action_controller_request.rb +24 -12
- data/lib/oauth/client/em_http.rb +107 -100
- data/lib/oauth/client/helper.rb +80 -72
- data/lib/oauth/client/net_http.rb +139 -106
- data/lib/oauth/client.rb +2 -0
- data/lib/oauth/consumer.rb +250 -118
- data/lib/oauth/errors/error.rb +2 -0
- data/lib/oauth/errors/problem.rb +4 -1
- data/lib/oauth/errors/unauthorized.rb +4 -0
- data/lib/oauth/errors.rb +2 -0
- data/lib/oauth/helper.rb +34 -8
- data/lib/oauth/oauth.rb +32 -8
- data/lib/oauth/oauth_test_helper.rb +2 -0
- data/lib/oauth/optional.rb +20 -0
- data/lib/oauth/request_proxy/action_controller_request.rb +14 -31
- data/lib/oauth/request_proxy/action_dispatch_request.rb +34 -0
- data/lib/oauth/request_proxy/base.rb +42 -31
- 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/mock_request.rb +1 -1
- data/lib/oauth/request_proxy/net_http.rb +6 -8
- data/lib/oauth/request_proxy/rack_request.rb +0 -4
- data/lib/oauth/request_proxy/rest_client_request.rb +6 -4
- data/lib/oauth/request_proxy.rb +20 -13
- data/lib/oauth/server.rb +14 -6
- data/lib/oauth/signature/base.rb +82 -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 +53 -38
- data/lib/oauth/signature.rb +40 -33
- data/lib/oauth/token.rb +2 -0
- data/lib/oauth/tokens/access_token.rb +3 -1
- data/lib/oauth/tokens/consumer_token.rb +10 -6
- data/lib/oauth/tokens/request_token.rb +12 -4
- data/lib/oauth/tokens/server_token.rb +2 -0
- data/lib/oauth/tokens/token.rb +15 -1
- data/lib/oauth/version.rb +6 -1
- data/lib/oauth.rb +11 -2
- 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 +349 -90
- metadata.gz.sig +0 -0
- data/LICENSE +0 -21
- data/TODO +0 -32
- data/bin/oauth +0 -11
- data/lib/oauth/cli/authorize_command.rb +0 -69
- data/lib/oauth/cli/base_command.rb +0 -210
- data/lib/oauth/cli/help_command.rb +0 -22
- data/lib/oauth/cli/query_command.rb +0 -25
- data/lib/oauth/cli/sign_command.rb +0 -78
- data/lib/oauth/cli/version_command.rb +0 -7
- data/lib/oauth/cli.rb +0 -56
data/CHANGELOG.md
CHANGED
|
@@ -1,448 +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
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
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
|
+
|
|
66
|
+
### Fixed
|
|
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
|
+
|
|
8
77
|
### Added
|
|
9
78
|
|
|
79
|
+
- Add `auth-sanitizer` integration for inspect-time secret redaction in core OAuth objects.
|
|
80
|
+
- Traditional OAuth::VERSION constant
|
|
81
|
+
|
|
10
82
|
### Changed
|
|
11
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
|
+
|
|
12
97
|
### Fixed
|
|
13
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
|
+
|
|
135
|
+
### Removed
|
|
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
|
+
|
|
140
|
+
## [1.1.0] 2022-08-29
|
|
141
|
+
|
|
142
|
+
- TAG: [v1.1.0][1.1.0t]
|
|
143
|
+
|
|
144
|
+
### Changed
|
|
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
|
|
152
|
+
|
|
153
|
+
## [1.0.1] 2022-08-29
|
|
154
|
+
|
|
155
|
+
- TAG: [v1.0.1][1.0.1t]
|
|
156
|
+
|
|
157
|
+
### Changed
|
|
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
|
|
161
|
+
|
|
162
|
+
## [1.0.0] 2022-08-23
|
|
163
|
+
|
|
164
|
+
- TAG: [v1.0.0][1.0.0t]
|
|
165
|
+
|
|
166
|
+
### Changed
|
|
167
|
+
|
|
168
|
+
- Dropped support for Ruby < 2.7
|
|
169
|
+
- Dropped support for Rails < 6
|
|
170
|
+
|
|
171
|
+
### Added
|
|
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
|
|
175
|
+
|
|
176
|
+
## [0.6.2] 2022-08-29
|
|
177
|
+
|
|
178
|
+
- TAG: [v0.6.2][0.6.2t]
|
|
179
|
+
|
|
180
|
+
### Changed
|
|
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
|
|
184
|
+
|
|
185
|
+
## [0.6.1] 2022-08-23
|
|
186
|
+
|
|
187
|
+
- TAG: [v0.6.1][0.6.1t]
|
|
188
|
+
|
|
189
|
+
### Changed
|
|
190
|
+
|
|
191
|
+
- Fixed documentation in SECURITY.md
|
|
192
|
+
- Change references to master => main
|
|
193
|
+
|
|
194
|
+
### Added
|
|
195
|
+
|
|
196
|
+
- Post install note about v0.6.x EOL approaching in April, 2024
|
|
197
|
+
|
|
198
|
+
## [0.6.0] 2022-08-23
|
|
199
|
+
|
|
200
|
+
- TAG: [v0.6.0][0.6.0t]
|
|
201
|
+
|
|
202
|
+
### Added
|
|
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
|
|
207
|
+
|
|
208
|
+
### Changed
|
|
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`
|
|
213
|
+
|
|
14
214
|
### Removed
|
|
15
215
|
|
|
216
|
+
- Ruby 2.0, 2.1, 2.2, and 2.3 are no longer valid install targets
|
|
217
|
+
|
|
16
218
|
## [0.5.14] 2022-08-29
|
|
219
|
+
|
|
220
|
+
- TAG: [v0.5.14][0.5.14t]
|
|
221
|
+
|
|
17
222
|
The "hopeful last 0.5.x" Release
|
|
18
223
|
|
|
19
224
|
### Fixed
|
|
20
|
-
|
|
225
|
+
|
|
226
|
+
- More typos fixed
|
|
21
227
|
|
|
22
228
|
## [0.5.13] 2022-08-23
|
|
229
|
+
|
|
230
|
+
- TAG: [v0.5.13][0.5.13t]
|
|
231
|
+
|
|
23
232
|
The "I think I caught 'em all!" Release
|
|
24
233
|
|
|
25
234
|
### Fixed
|
|
26
|
-
|
|
235
|
+
|
|
236
|
+
- Typo oauth2 => oauth as gem name in one more place.
|
|
27
237
|
|
|
28
238
|
## [0.5.12] 2022-08-23
|
|
239
|
+
|
|
240
|
+
- TAG: [v0.5.12][0.5.12t]
|
|
241
|
+
|
|
29
242
|
The "Typoes are just the worst!" Release
|
|
30
243
|
|
|
31
244
|
### Fixed
|
|
32
|
-
|
|
245
|
+
|
|
246
|
+
- Typo oauth2 => oauth as gem name in a couple places.
|
|
33
247
|
|
|
34
248
|
## [0.5.11] 2022-08-23
|
|
249
|
+
|
|
250
|
+
- TAG: [v0.5.11][0.5.11t]
|
|
251
|
+
|
|
35
252
|
The "Is this the last release with a silly name?" Release
|
|
36
253
|
|
|
37
254
|
### Added
|
|
38
|
-
|
|
255
|
+
|
|
256
|
+
- Post install note about v0.5.x EOL approaching in April, 2023
|
|
39
257
|
|
|
40
258
|
### Changed
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
259
|
+
|
|
260
|
+
- Improved documentation
|
|
261
|
+
- Switched branch references from master to main
|
|
262
|
+
- CI builds are now all green!
|
|
44
263
|
|
|
45
264
|
## [0.5.10] 2022-05-04
|
|
265
|
+
|
|
266
|
+
- TAG: [v0.5.10][0.5.10t]
|
|
267
|
+
|
|
46
268
|
The "Can it be the end of the line for 0.5.x?" Release
|
|
47
269
|
|
|
48
270
|
### Added
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
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
|
|
53
276
|
- diffend
|
|
54
277
|
|
|
55
278
|
## [0.5.9] 2022-05-03
|
|
279
|
+
|
|
280
|
+
- TAG: [v0.5.9][0.5.9t]
|
|
281
|
+
|
|
56
282
|
### Added
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
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
|
|
64
291
|
- rubocop-ruby2_0
|
|
65
292
|
- overcommit
|
|
66
293
|
|
|
67
294
|
## [0.5.8] 2021-11-10
|
|
295
|
+
|
|
296
|
+
- TAG: [v0.5.8][0.5.8t]
|
|
297
|
+
|
|
68
298
|
### Added
|
|
69
|
-
|
|
299
|
+
|
|
300
|
+
- Added more documentation files to packaged gem, e.g. SECURITY.md, CODE_OF_CONDUCT.md
|
|
70
301
|
|
|
71
302
|
### Fixed
|
|
72
|
-
|
|
303
|
+
|
|
304
|
+
- Removed reference to RUBY_VERSION from gemspec, as it depends on rake release, which is problematic on some ruby engines. (by @pboling)
|
|
73
305
|
|
|
74
306
|
## [0.5.7] 2021-11-02
|
|
307
|
+
|
|
308
|
+
- TAG: [v0.5.7][0.5.7t]
|
|
309
|
+
|
|
75
310
|
### Added
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
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)
|
|
81
317
|
|
|
82
318
|
### Changed
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
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)
|
|
100
338
|
|
|
101
339
|
### Removed
|
|
102
|
-
|
|
340
|
+
|
|
341
|
+
- Remove direct development dependency on nokogiri (#299 by @pboling)
|
|
103
342
|
|
|
104
343
|
## [0.5.6] 2021-04-02
|
|
344
|
+
|
|
345
|
+
- TAG: [v0.5.6][0.5.6t]
|
|
346
|
+
|
|
105
347
|
### Added
|
|
106
|
-
|
|
107
|
-
|
|
348
|
+
|
|
349
|
+
- Add metadata to Gemspec file
|
|
350
|
+
- Add support for PUT requests with Action Controller (#181)
|
|
108
351
|
|
|
109
352
|
### Changed
|
|
110
|
-
|
|
353
|
+
|
|
354
|
+
- Change default timeout to be the same as Net::HTTP default, 60 seconds instead of 30 seconds.
|
|
111
355
|
|
|
112
356
|
## [0.5.5] 2020-01-19
|
|
357
|
+
|
|
358
|
+
- TAG: [v0.5.5][0.5.5t]
|
|
359
|
+
|
|
113
360
|
### Added
|
|
114
|
-
|
|
361
|
+
|
|
362
|
+
- Add :allow_empty_params option (#155)
|
|
115
363
|
|
|
116
364
|
### Changed
|
|
117
|
-
|
|
118
|
-
|
|
365
|
+
|
|
366
|
+
- Allow redirect to different host but same path
|
|
367
|
+
- Various cleanups
|
|
119
368
|
|
|
120
369
|
### Fixed
|
|
121
|
-
|
|
122
|
-
|
|
370
|
+
|
|
371
|
+
- Fixes ssl-noverify
|
|
372
|
+
- Fixed README example (#158, #159, by @pboling)
|
|
123
373
|
|
|
124
374
|
## [0.5.4] 2017-12-08
|
|
375
|
+
|
|
376
|
+
- TAG: [v0.5.4][0.5.4t]
|
|
377
|
+
|
|
125
378
|
### Changed
|
|
126
|
-
|
|
379
|
+
|
|
380
|
+
- Various cleanups (charliesome)
|
|
127
381
|
|
|
128
382
|
### Fixed
|
|
129
|
-
|
|
383
|
+
|
|
384
|
+
- Fixes UnknownRequestType on Rails 5.1 for ActionDispatch::Request (xprazak2)
|
|
130
385
|
|
|
131
386
|
## [0.5.3] 2017-05-24
|
|
387
|
+
|
|
388
|
+
- TAG: [v0.5.3][0.5.3t]
|
|
389
|
+
|
|
132
390
|
### Fixed
|
|
133
|
-
|
|
391
|
+
|
|
392
|
+
- Fix #145 - broken CLI required loading active_support (James Pinto)
|
|
134
393
|
|
|
135
394
|
### Changed
|
|
136
|
-
|
|
395
|
+
|
|
396
|
+
- Removing legacy scripts (James Pinto)
|
|
137
397
|
|
|
138
398
|
## [0.5.2] 2017-05-17
|
|
399
|
+
|
|
400
|
+
- TAG: [v0.5.2][0.5.2t]
|
|
401
|
+
|
|
139
402
|
### Added
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
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)
|
|
143
407
|
|
|
144
408
|
### Changed
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
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)
|
|
166
432
|
|
|
167
433
|
## [0.5.1] 2016-02-29
|
|
434
|
+
|
|
435
|
+
- TAG: [v0.5.1][0.5.1t]
|
|
436
|
+
|
|
168
437
|
### Added
|
|
169
|
-
|
|
438
|
+
|
|
439
|
+
- Add license info to the gemspec (Robert Reiz)
|
|
170
440
|
|
|
171
441
|
### Fixed
|
|
172
|
-
|
|
442
|
+
|
|
443
|
+
- Proper handling for empty query string in RequestToken#build_authorize_url (midchildan,
|
|
173
444
|
Harald Sitter)
|
|
174
|
-
|
|
445
|
+
- Replace calls to String#blank? with its implementation (Sergio Gil Pérez de la Manga)
|
|
175
446
|
|
|
176
447
|
### Changed
|
|
177
|
-
|
|
178
|
-
|
|
448
|
+
|
|
449
|
+
- Loosen some development dependencies. Add libcurl-dev to travis
|
|
450
|
+
- Fixes to travis config. Switch to rubygems for installation and loading
|
|
179
451
|
|
|
180
452
|
### Removed
|
|
181
|
-
|
|
182
|
-
|
|
453
|
+
|
|
454
|
+
- Remove obsolete comment (Arthur Nogueira Neves)
|
|
455
|
+
- Remove jeweler from gemspec
|
|
183
456
|
|
|
184
457
|
## [0.5.0] 2016-02-20
|
|
458
|
+
|
|
459
|
+
- TAG: [v0.5.0][0.5.0t]
|
|
460
|
+
|
|
185
461
|
### Added
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
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)
|
|
191
468
|
|
|
192
469
|
### Changed
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
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)
|
|
211
490
|
|
|
212
491
|
## [0.4.7] 2012-09-03
|
|
492
|
+
|
|
493
|
+
- TAG: [v0.4.7][0.4.7t]
|
|
494
|
+
|
|
213
495
|
### Added
|
|
214
|
-
|
|
496
|
+
|
|
497
|
+
- Set a configurable timeout for all requests (Rick Olson)
|
|
215
498
|
|
|
216
499
|
### Fixed
|
|
217
|
-
|
|
218
|
-
|
|
500
|
+
|
|
501
|
+
- Fix merging paths if the path is not empty
|
|
502
|
+
- Fix nested hash params in Consumer#request (Ernie Miller)
|
|
219
503
|
|
|
220
504
|
## [0.4.6] 2012-04-21
|
|
505
|
+
|
|
506
|
+
- TAG: [v0.4.6][0.4.6t]
|
|
507
|
+
|
|
221
508
|
### Changed
|
|
222
|
-
|
|
509
|
+
|
|
510
|
+
- Make use the path component of the :site parameter (Jonathon M. Abbott)
|
|
223
511
|
|
|
224
512
|
### Fixed
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
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)
|
|
228
517
|
|
|
229
518
|
## [0.4.5] 2011-06-25
|
|
519
|
+
|
|
520
|
+
- TAG: [v0.4.5][0.4.5t]
|
|
521
|
+
|
|
230
522
|
### Added
|
|
231
|
-
|
|
232
|
-
|
|
523
|
+
|
|
524
|
+
- Add explicit require for rsa/sha1 (Juris Galang)
|
|
525
|
+
- Add gemtest support (Adrian Feldman)
|
|
233
526
|
|
|
234
527
|
### Changed
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
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)
|
|
238
532
|
|
|
239
533
|
### Fixed
|
|
240
|
-
|
|
241
|
-
|
|
534
|
+
|
|
535
|
+
- Fix POST Requests with Typhoeus proxy (niedhui)
|
|
536
|
+
- Fix incorrect hardcoded port (Ian Taylor)
|
|
242
537
|
|
|
243
538
|
## [0.4.4] 2010-10-31
|
|
539
|
+
|
|
540
|
+
- TAG: [v0.4.4][0.4.4t]
|
|
541
|
+
|
|
244
542
|
### Added
|
|
245
|
-
|
|
543
|
+
|
|
544
|
+
- Added support for Rails 3 in client/action_controller_request (Pelle)
|
|
246
545
|
|
|
247
546
|
### Fixed
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
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)
|
|
252
552
|
|
|
253
553
|
## [0.4.3] 2010-09-01
|
|
554
|
+
|
|
555
|
+
- TAG: [v0.4.3][0.4.3t]
|
|
556
|
+
|
|
254
557
|
### Fixed
|
|
255
|
-
|
|
558
|
+
|
|
559
|
+
- Fix for em-http proxy (ichverstehe)
|
|
256
560
|
|
|
257
561
|
## [0.4.2] 2010-08-13
|
|
562
|
+
|
|
563
|
+
- TAG: [v0.4.2][0.4.2t]
|
|
564
|
+
|
|
258
565
|
### Added
|
|
259
|
-
|
|
566
|
+
|
|
567
|
+
- Added Bundler (rc) Gemfile for easier dev/testing
|
|
260
568
|
|
|
261
569
|
### Fixed
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
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)
|
|
265
574
|
|
|
266
575
|
## [0.4.1] 2010-06-16
|
|
576
|
+
|
|
577
|
+
- TAG: [v0.4.1][0.4.1t]
|
|
578
|
+
|
|
267
579
|
### Added
|
|
268
|
-
|
|
580
|
+
|
|
581
|
+
- Added support for using OAuth with proxies (Marsh Gardiner)
|
|
269
582
|
|
|
270
583
|
### Fixed
|
|
271
|
-
|
|
272
|
-
|
|
584
|
+
|
|
585
|
+
- Rails 3 Compatibility fixes (Pelle Braendgaard)
|
|
586
|
+
- Fixed load errors on tests for missing (non-required) libraries
|
|
273
587
|
|
|
274
588
|
## [0.4.0] 2010-04-22
|
|
589
|
+
|
|
590
|
+
- TAG: [v0.4.0][0.4.0t]
|
|
591
|
+
|
|
275
592
|
### Added
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
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)
|
|
285
603
|
|
|
286
604
|
### Changed
|
|
287
|
-
|
|
288
|
-
|
|
605
|
+
|
|
606
|
+
- Better marshalling implementation (Yoan Blanc)
|
|
607
|
+
- Replaced hoe with Jeweler (Aaron Quint)
|
|
289
608
|
|
|
290
609
|
### Fixed
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
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 (成田 一生)
|
|
295
615
|
|
|
296
616
|
## [0.3.6] 2009-09-14
|
|
617
|
+
|
|
618
|
+
- TAG: [v0.3.6][0.3.6t]
|
|
619
|
+
|
|
297
620
|
### Added
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
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)
|
|
301
625
|
|
|
302
626
|
### Changed
|
|
303
|
-
|
|
627
|
+
|
|
628
|
+
- Test clean-up (Xavier Shay, Hannes Tydén)
|
|
304
629
|
|
|
305
630
|
### Fixed
|
|
306
|
-
|
|
631
|
+
|
|
632
|
+
- Respect `--method` in `authorize` CLI command (Seth)
|
|
307
633
|
|
|
308
634
|
## [0.3.5] 2009-06-03
|
|
635
|
+
|
|
636
|
+
- TAG: [v0.3.5][0.3.5t]
|
|
637
|
+
|
|
309
638
|
### Added
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
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)
|
|
317
647
|
|
|
318
648
|
## [0.3.4] 2009-05-06
|
|
649
|
+
|
|
650
|
+
- TAG: [v0.3.4][0.3.4t]
|
|
651
|
+
|
|
319
652
|
### Changed
|
|
320
|
-
|
|
653
|
+
|
|
654
|
+
- OAuth::Client::Helper uses OAuth::Version::VERSION (chadisfaction)
|
|
321
655
|
|
|
322
656
|
### Fixed
|
|
323
|
-
|
|
657
|
+
|
|
658
|
+
- Fix OAuth::RequestProxy::ActionControllerRequest's handling of params (Tristan Groléat)
|
|
324
659
|
|
|
325
660
|
## [0.3.3] 2009-05-04
|
|
661
|
+
|
|
662
|
+
- TAG: [v0.3.3][0.3.3t]
|
|
663
|
+
|
|
326
664
|
### Added
|
|
327
|
-
|
|
328
|
-
|
|
665
|
+
|
|
666
|
+
- Support for arguments in OAuth::Consumer#get_access_token (Matt Sanford)
|
|
667
|
+
- Add gem version to user-agent header (Matt Sanford)
|
|
329
668
|
|
|
330
669
|
### Changed
|
|
331
|
-
|
|
332
|
-
|
|
670
|
+
|
|
671
|
+
- Improved error handling for invalid Authorization headers (Matt Sanford)
|
|
672
|
+
- Handle input from aggressive form encoding libraries (Matt Wood)
|
|
333
673
|
|
|
334
674
|
### Fixed
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
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)
|
|
338
679
|
|
|
339
680
|
## [0.3.2] 2009-03-23
|
|
681
|
+
|
|
682
|
+
- TAG: [v0.3.2][0.3.2t]
|
|
683
|
+
|
|
340
684
|
### Added
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
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)
|
|
346
691
|
|
|
347
692
|
### Fixed
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
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)
|
|
352
698
|
|
|
353
699
|
## [0.3.1] 2009-01-26
|
|
700
|
+
|
|
701
|
+
- TAG: [v0.3.1][0.3.1t]
|
|
702
|
+
|
|
354
703
|
### Fixed
|
|
355
|
-
|
|
704
|
+
|
|
705
|
+
- Fixed a problem with relative and absolute token request paths. (Michael Wood)
|
|
356
706
|
|
|
357
707
|
## [0.3.0] 2009-01-25
|
|
708
|
+
|
|
709
|
+
- TAG: [v0.3.0][0.3.0t]
|
|
710
|
+
|
|
358
711
|
### Added
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
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)
|
|
362
716
|
|
|
363
717
|
### Changed
|
|
364
|
-
|
|
365
|
-
|
|
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)
|
|
366
721
|
|
|
367
722
|
### Fixed
|
|
368
|
-
|
|
369
|
-
|
|
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)
|
|
370
726
|
|
|
371
727
|
## 0.2.7 2008-09-10
|
|
728
|
+
|
|
372
729
|
The lets fix the last release release
|
|
373
730
|
|
|
374
731
|
### Fixed
|
|
375
|
-
|
|
376
|
-
|
|
732
|
+
|
|
733
|
+
- Fixed plain text signatures (Andrew Arrow)
|
|
734
|
+
- Fixed RSA requests using OAuthTokens. (Philip Lipu Tsai)
|
|
377
735
|
|
|
378
736
|
## 0.2.6 2008-09-09
|
|
737
|
+
|
|
379
738
|
The lets RSA release
|
|
380
739
|
|
|
381
740
|
### Added
|
|
382
|
-
|
|
383
|
-
|
|
741
|
+
|
|
742
|
+
- Improved support for Ruby 1.8.7 (Bill Kocik)
|
|
743
|
+
- Added support for 'private_key_file' option for RSA signatures (Chris Mear)
|
|
384
744
|
|
|
385
745
|
### Changed
|
|
386
|
-
|
|
387
|
-
|
|
746
|
+
|
|
747
|
+
- Improved RSA testing
|
|
748
|
+
- Omit token when signing with RSA
|
|
388
749
|
|
|
389
750
|
### Fixed
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
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)
|
|
393
755
|
|
|
394
756
|
## 0.2.2 2008-02-22
|
|
757
|
+
|
|
395
758
|
Lets actually support SSL release
|
|
396
759
|
|
|
397
760
|
### Fixed
|
|
398
|
-
|
|
761
|
+
|
|
762
|
+
- Use HTTPS when required.
|
|
399
763
|
|
|
400
764
|
## 0.2 2008-1-19
|
|
765
|
+
|
|
401
766
|
All together now release
|
|
402
767
|
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
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.
|
|
406
773
|
|
|
407
774
|
## 0.1.2 2007-12-1
|
|
775
|
+
|
|
408
776
|
### Fixed
|
|
409
|
-
|
|
410
|
-
|
|
777
|
+
|
|
778
|
+
- Fixed checks for missing OAuth params to improve performance
|
|
779
|
+
- Includes Pat's fix for getting the realm out.
|
|
411
780
|
|
|
412
781
|
## 0.1.1 2007-11-26
|
|
782
|
+
|
|
413
783
|
### Added
|
|
414
|
-
|
|
415
|
-
|
|
784
|
+
|
|
785
|
+
- First release as a GEM
|
|
786
|
+
- Moved all non-Rails functionality from the Rails plugin:
|
|
416
787
|
http://code.google.com/p/oauth-plugin/
|
|
417
788
|
|
|
418
|
-
[Unreleased]: https://github.com/oauth
|
|
419
|
-
[
|
|
420
|
-
[
|
|
421
|
-
[
|
|
422
|
-
[
|
|
423
|
-
[
|
|
424
|
-
[
|
|
425
|
-
[
|
|
426
|
-
[
|
|
427
|
-
[
|
|
428
|
-
[
|
|
429
|
-
[
|
|
430
|
-
[
|
|
431
|
-
[
|
|
432
|
-
[
|
|
433
|
-
[0.
|
|
434
|
-
[0.
|
|
435
|
-
[0.
|
|
436
|
-
[0.
|
|
437
|
-
[0.
|
|
438
|
-
[0.
|
|
439
|
-
[0.
|
|
440
|
-
[0.
|
|
441
|
-
[0.
|
|
442
|
-
[0.
|
|
443
|
-
[0.
|
|
444
|
-
[0.
|
|
445
|
-
[0.
|
|
446
|
-
[0.
|
|
447
|
-
[0.
|
|
448
|
-
[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
|