oauth2 2.0.9 → 2.0.18
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 +0 -0
- data/CHANGELOG.md +701 -183
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +24 -23
- data/CONTRIBUTING.md +211 -34
- data/FUNDING.md +74 -0
- data/IRP.md +107 -0
- data/{LICENSE → LICENSE.txt} +2 -2
- data/OIDC.md +167 -0
- data/README.md +1285 -320
- data/REEK +0 -0
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +13 -15
- data/THREAT_MODEL.md +85 -0
- data/lib/oauth2/access_token.rb +236 -38
- data/lib/oauth2/authenticator.rb +39 -7
- data/lib/oauth2/client.rb +311 -96
- data/lib/oauth2/error.rb +35 -17
- data/lib/oauth2/filtered_attributes.rb +52 -0
- data/lib/oauth2/response.rb +78 -42
- data/lib/oauth2/strategy/assertion.rb +10 -7
- data/lib/oauth2/strategy/auth_code.rb +13 -3
- data/lib/oauth2/strategy/client_credentials.rb +2 -2
- data/lib/oauth2/strategy/implicit.rb +11 -3
- data/lib/oauth2/strategy/password.rb +14 -4
- data/lib/oauth2/version.rb +1 -1
- data/lib/oauth2.rb +59 -18
- data/sig/oauth2/access_token.rbs +25 -0
- data/sig/oauth2/authenticator.rbs +22 -0
- data/sig/oauth2/client.rbs +52 -0
- data/sig/oauth2/error.rbs +8 -0
- data/sig/oauth2/filtered_attributes.rbs +6 -0
- data/sig/oauth2/response.rbs +18 -0
- data/sig/oauth2/strategy.rbs +34 -0
- data/sig/oauth2/version.rbs +5 -0
- data/sig/oauth2.rbs +9 -0
- data.tar.gz.sig +0 -0
- metadata +252 -79
- metadata.gz.sig +0 -0
data/CHANGELOG.md
CHANGED
|
@@ -1,215 +1,597 @@
|
|
|
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
|
|
5
|
-
and this project adheres to [Semantic Versioning
|
|
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
|
|
22
|
+
|
|
9
23
|
### Changed
|
|
10
|
-
|
|
24
|
+
|
|
25
|
+
### Deprecated
|
|
26
|
+
|
|
11
27
|
### Removed
|
|
12
28
|
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
### Security
|
|
32
|
+
|
|
33
|
+
## [2.0.18] - 2025-11-08
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.0.18][2.0.18t]
|
|
36
|
+
- COVERAGE: 100.00% -- 526/526 lines in 14 files
|
|
37
|
+
- BRANCH COVERAGE: 100.00% -- 178/178 branches in 14 files
|
|
38
|
+
- 90.48% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- [gh!683][gh!683], [gh!684][gh!684] - Improve documentation by @pboling
|
|
43
|
+
- [gh!686][gh!686]- Add Incident Response Plan by @pboling
|
|
44
|
+
- [gh!687][gh!687]- Add Threat Model by @pboling
|
|
45
|
+
|
|
46
|
+
### Changed
|
|
47
|
+
|
|
48
|
+
- [gh!685][gh!685] - upgrade kettle-dev v1.1.24 by @pboling
|
|
49
|
+
- upgrade kettle-dev v1.1.52 by @pboling
|
|
50
|
+
- Add open collective donors to README
|
|
51
|
+
|
|
52
|
+
### Fixed
|
|
53
|
+
|
|
54
|
+
- [gh!690][gh!690], [gh!691][gh!691], [gh!692][gh!692] - Add yard-fence
|
|
55
|
+
- handle braces within code fences in markdown properly by @pboling
|
|
56
|
+
|
|
57
|
+
### Security
|
|
58
|
+
|
|
59
|
+
[gh!683]: https://github.com/ruby-oauth/oauth2/pull/683
|
|
60
|
+
[gh!684]: https://github.com/ruby-oauth/oauth2/pull/684
|
|
61
|
+
[gh!685]: https://github.com/ruby-oauth/oauth2/pull/685
|
|
62
|
+
[gh!686]: https://github.com/ruby-oauth/oauth2/pull/686
|
|
63
|
+
[gh!687]: https://github.com/ruby-oauth/oauth2/pull/687
|
|
64
|
+
[gh!690]: https://github.com/ruby-oauth/oauth2/pull/690
|
|
65
|
+
[gh!691]: https://github.com/ruby-oauth/oauth2/pull/691
|
|
66
|
+
[gh!692]: https://github.com/ruby-oauth/oauth2/pull/692
|
|
67
|
+
|
|
68
|
+
## [2.0.17] - 2025-09-15
|
|
69
|
+
|
|
70
|
+
- TAG: [v2.0.17][2.0.17t]
|
|
71
|
+
- COVERAGE: 100.00% -- 526/526 lines in 14 files
|
|
72
|
+
- BRANCH COVERAGE: 100.00% -- 178/178 branches in 14 files
|
|
73
|
+
- 90.48% documented
|
|
74
|
+
|
|
75
|
+
### Added
|
|
76
|
+
|
|
77
|
+
- [gh!682][gh!682] - AccessToken: support Hash-based verb-dependent token transmission mode (e.g., `{get: :query, post: :header}`)
|
|
78
|
+
|
|
79
|
+
[gh!682]: https://github.com/ruby-oauth/oauth2/pull/682
|
|
80
|
+
|
|
81
|
+
## [2.0.16] - 2025-09-14
|
|
82
|
+
|
|
83
|
+
- TAG: [v2.0.16][2.0.16t]
|
|
84
|
+
- COVERAGE: 100.00% -- 520/520 lines in 14 files
|
|
85
|
+
- BRANCH COVERAGE: 100.00% -- 176/176 branches in 14 files
|
|
86
|
+
- 90.48% documented
|
|
87
|
+
|
|
88
|
+
### Added
|
|
89
|
+
|
|
90
|
+
- [gh!680][gh!680] - E2E example using mock test server added in v2.0.11 by @pboling
|
|
91
|
+
- mock-oauth2-server upgraded to v2.3.0
|
|
92
|
+
- https://github.com/navikt/mock-oauth2-server
|
|
93
|
+
- `docker compose -f docker-compose-ssl.yml up -d --wait`
|
|
94
|
+
- `ruby examples/e2e.rb`
|
|
95
|
+
- `docker compose -f docker-compose-ssl.yml down`
|
|
96
|
+
- mock server readiness wait is 90s
|
|
97
|
+
- override via E2E_WAIT_TIMEOUT
|
|
98
|
+
- [gh!676][gh!676], [gh!679][gh!679] - Apache SkyWalking Eyes dependency license check by @pboling
|
|
99
|
+
|
|
100
|
+
### Changed
|
|
101
|
+
|
|
102
|
+
- [gh!678][gh!678] - Many improvements to make CI more resilient (past/future proof) by @pboling
|
|
103
|
+
- [gh!681][gh!681] - Upgrade to kettle-dev v1.1.19
|
|
104
|
+
|
|
105
|
+
[gh!676]: https://github.com/ruby-oauth/oauth2/pull/676
|
|
106
|
+
[gh!678]: https://github.com/ruby-oauth/oauth2/pull/678
|
|
107
|
+
[gh!679]: https://github.com/ruby-oauth/oauth2/pull/679
|
|
108
|
+
[gh!680]: https://github.com/ruby-oauth/oauth2/pull/680
|
|
109
|
+
[gh!681]: https://github.com/ruby-oauth/oauth2/pull/681
|
|
110
|
+
|
|
111
|
+
## [2.0.15] - 2025-09-08
|
|
112
|
+
|
|
113
|
+
- TAG: [v2.0.15][2.0.15t]
|
|
114
|
+
- COVERAGE: 100.00% -- 519/519 lines in 14 files
|
|
115
|
+
- BRANCH COVERAGE: 100.00% -- 174/174 branches in 14 files
|
|
116
|
+
- 90.48% documented
|
|
117
|
+
|
|
118
|
+
### Added
|
|
119
|
+
|
|
120
|
+
- [gh!671][gh!671] - Complete documentation example for Instagram by @pboling
|
|
121
|
+
- .env.local.example for contributor happiness
|
|
122
|
+
- note lack of builds for JRuby 9.2, 9.3 & Truffleruby 22.3, 23.0
|
|
123
|
+
- [actions/runner - issues/2347][GHA-continue-on-error-ui]
|
|
124
|
+
- [community/discussions/15452][GHA-allow-failure]
|
|
125
|
+
- [gh!670][gh!670] - AccessToken: verb-dependent token transmission mode by @mrj
|
|
126
|
+
- e.g., Instagram GET=:query, POST/DELETE=:header
|
|
127
|
+
|
|
128
|
+
### Changed
|
|
129
|
+
|
|
130
|
+
- [gh!669][gh!669] - Upgrade to kettle-dev v1.1.9 by @pboling
|
|
131
|
+
|
|
132
|
+
### Fixed
|
|
133
|
+
|
|
134
|
+
- Remove accidentally duplicated lines, and fix typos in CHANGELOG.md
|
|
135
|
+
- point badge to the correct workflow for Ruby 2.3 (caboose.yml)
|
|
136
|
+
|
|
137
|
+
[gh!669]: https://github.com/ruby-oauth/oauth2/pull/669
|
|
138
|
+
[gh!670]: https://github.com/ruby-oauth/oauth2/pull/670
|
|
139
|
+
[gh!671]: https://github.com/ruby-oauth/oauth2/pull/671
|
|
140
|
+
[GHA-continue-on-error-ui]: https://github.com/actions/runner/issues/2347
|
|
141
|
+
[GHA-allow-failure]: https://github.com/orgs/community/discussions/15452
|
|
142
|
+
|
|
143
|
+
## [2.0.14] - 2025-08-31
|
|
144
|
+
|
|
145
|
+
- TAG: [v2.0.14][2.0.14t]
|
|
146
|
+
- COVERAGE: 100.00% -- 519/519 lines in 14 files
|
|
147
|
+
- BRANCH COVERAGE: 100.00% -- 174/174 branches in 14 files
|
|
148
|
+
- 90.48% documented
|
|
149
|
+
|
|
150
|
+
### Added
|
|
151
|
+
|
|
152
|
+
- improved documentation by @pboling
|
|
153
|
+
- [gh!665][gh!665] - Document Mutual TLS (mTLS) usage with example in README (connection_opts.ssl client_cert/client_key and auth_scheme: :tls_client_auth) by @pboling
|
|
154
|
+
- [gh!666][gh!666] - Document usage of flat query params using Faraday::FlatParamsEncoder, with example URI, in README by @pboling
|
|
155
|
+
- Spec: verify flat params are preserved with Faraday::FlatParamsEncoder (skips on Faraday without FlatParamsEncoder)
|
|
156
|
+
- [gh!662][gh!662] - documentation notes in code comments and README highlighting OAuth 2.1 differences, with references, by @pboling
|
|
157
|
+
- PKCE required for auth code,
|
|
158
|
+
- exact redirect URI match,
|
|
159
|
+
- implicit/password grants omitted,
|
|
160
|
+
- avoid bearer tokens in query,
|
|
161
|
+
- refresh token guidance for public clients,
|
|
162
|
+
- simplified client definitions
|
|
163
|
+
- [gh!663][gh!663] - document how to implement an OIDC client with this gem in OIDC.md by @pboling
|
|
164
|
+
- also, list libraries built on top of the oauth2 gem that implement OIDC
|
|
165
|
+
- [gh!664][gh!664] - README: Add example for JHipster UAA (Spring Cloud) password grant, converted from Postman/Net::HTTP by @pboling
|
|
166
|
+
|
|
167
|
+
[gh!662]: https://github.com/ruby-oauth/oauth2/pull/662
|
|
168
|
+
[gh!663]: https://github.com/ruby-oauth/oauth2/pull/663
|
|
169
|
+
[gh!664]: https://github.com/ruby-oauth/oauth2/pull/664
|
|
170
|
+
[gh!665]: https://github.com/ruby-oauth/oauth2/pull/665
|
|
171
|
+
[gh!666]: https://github.com/ruby-oauth/oauth2/pull/666
|
|
172
|
+
|
|
173
|
+
## [2.0.13] - 2025-08-30
|
|
174
|
+
|
|
175
|
+
- TAG: [v2.0.13][2.0.13t]
|
|
176
|
+
- COVERAGE: 100.00% -- 519/519 lines in 14 files
|
|
177
|
+
- BRANCH COVERAGE: 100.00% -- 174/174 branches in 14 files
|
|
178
|
+
- 90.48% documented
|
|
179
|
+
|
|
180
|
+
### Added
|
|
181
|
+
|
|
182
|
+
- [gh!656][gh!656] - Support revocation with URL-encoded parameters
|
|
183
|
+
- [gh!660][gh!660] - Inline yard documentation by @pboling
|
|
184
|
+
- [gh!660][gh!660] - Complete RBS types documentation by @pboling
|
|
185
|
+
- [gh!660][gh!660]- (more) Comprehensive documentation / examples by @pboling
|
|
186
|
+
- [gh!657][gh!657] - Updated documentation for org-rename by @pboling
|
|
187
|
+
- More funding links by @Aboling0
|
|
188
|
+
- Documentation: Added docs/OIDC.md with OIDC 1.0 overview, example, and references
|
|
189
|
+
|
|
190
|
+
### Changed
|
|
191
|
+
|
|
192
|
+
- Upgrade Code of Conduct to Contributor Covenant 2.1 by @pboling
|
|
193
|
+
- [gh!660][gh!660] - Shrink post-install message by 4 lines by @pboling
|
|
194
|
+
|
|
195
|
+
### Fixed
|
|
196
|
+
|
|
197
|
+
- [gh!660][gh!660] - Links in README (including link to HEAD documentation) by @pboling
|
|
198
|
+
|
|
199
|
+
### Security
|
|
200
|
+
|
|
201
|
+
[gh!660]: https://github.com/ruby-oauth/oauth2/pull/660
|
|
202
|
+
[gh!657]: https://github.com/ruby-oauth/oauth2/pull/657
|
|
203
|
+
[gh!656]: https://github.com/ruby-oauth/oauth2/pull/656
|
|
204
|
+
|
|
205
|
+
## [2.0.12] - 2025-05-31
|
|
206
|
+
|
|
207
|
+
- TAG: [v2.0.12][2.0.12t]
|
|
208
|
+
- Line Coverage: 100.0% (520 / 520)
|
|
209
|
+
- Branch Coverage: 100.0% (174 / 174)
|
|
210
|
+
- 80.00% documented
|
|
211
|
+
|
|
212
|
+
### Added
|
|
213
|
+
|
|
214
|
+
- [gh!652][gh!652] - Support IETF rfc7515 JSON Web Signature - JWS by @mridang
|
|
215
|
+
- Support JWT `kid` for key discovery and management
|
|
216
|
+
- More Documentation by @pboling
|
|
217
|
+
- Documented Serialization Extensions
|
|
218
|
+
- Added Gatzo.com FLOSS logo by @Aboling0, CC BY-SA 4.0
|
|
219
|
+
- Documentation site @ https://oauth2.galtzo.com now complete
|
|
220
|
+
|
|
221
|
+
### Changed
|
|
222
|
+
|
|
223
|
+
- Updates to gemspec (email, funding url, post install message)
|
|
224
|
+
|
|
225
|
+
### Fixed
|
|
226
|
+
|
|
227
|
+
- Documentation Typos by @pboling
|
|
228
|
+
|
|
229
|
+
[gh!652]: https://github.com/ruby-oauth/oauth2/pull/652
|
|
230
|
+
|
|
231
|
+
## [2.0.11] - 2025-05-23
|
|
232
|
+
|
|
233
|
+
- TAG: [v2.0.11][2.0.11t]
|
|
234
|
+
- COVERAGE: 100.00% -- 518/518 lines in 14 files
|
|
235
|
+
- BRANCH COVERAGE: 100.00% -- 172/172 branches in 14 files
|
|
236
|
+
- 80.00% documented
|
|
237
|
+
|
|
238
|
+
### Added
|
|
239
|
+
|
|
240
|
+
- [gh!651](https://github.com/ruby-oauth/oauth2/pull/651) - `:snaky_hash_klass` option (@pboling)
|
|
241
|
+
- More documentation
|
|
242
|
+
- Codeberg as ethical mirror (@pboling)
|
|
243
|
+
- https://codeberg.org/ruby-oauth/oauth2
|
|
244
|
+
- Don't check for cert if SKIP_GEM_SIGNING is set (@pboling)
|
|
245
|
+
- All runtime deps, including oauth-xx sibling gems, are now tested against HEAD (@pboling)
|
|
246
|
+
- All runtime deps, including ruby-oauth sibling gems, are now tested against HEAD (@pboling)
|
|
247
|
+
- YARD config, GFM compatible with relative file links (@pboling)
|
|
248
|
+
- Documentation site on GitHub Pages (@pboling)
|
|
249
|
+
- [oauth2.galtzo.com](https://oauth2.galtzo.com)
|
|
250
|
+
- [!649](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/649) - Test compatibility with all key minor versions of Hashie v0, v1, v2, v3, v4, v5, HEAD (@pboling)
|
|
251
|
+
- [gh!651](https://github.com/ruby-oauth/oauth2/pull/651) - Mock OAuth2 server for testing (@pboling)
|
|
252
|
+
- https://github.com/navikt/mock-oauth2-server
|
|
253
|
+
|
|
254
|
+
### Changed
|
|
255
|
+
|
|
256
|
+
- [gh!651](https://github.com/ruby-oauth/oauth2/pull/651) - Upgraded to snaky_hash v2.0.3 (@pboling)
|
|
257
|
+
- Provides solution for serialization issues
|
|
258
|
+
- Updated `spec.homepage_uri` in gemspec to GitHub Pages YARD documentation site (@pboling)
|
|
259
|
+
|
|
260
|
+
### Fixed
|
|
261
|
+
|
|
262
|
+
- [gh!650](https://github.com/ruby-oauth/oauth2/pull/650) - Regression in return type of `OAuth2::Response#parsed` (@pboling)
|
|
263
|
+
- Incorrect documentation related to silencing warnings (@pboling)
|
|
264
|
+
|
|
265
|
+
## [2.0.10] - 2025-05-17
|
|
266
|
+
|
|
267
|
+
- TAG: [v2.0.10][2.0.10t]
|
|
268
|
+
- COVERAGE: 100.00% -- 518/518 lines in 14 files
|
|
269
|
+
- BRANCH COVERAGE: 100.00% -- 170/170 branches in 14 files
|
|
270
|
+
- 79.05% documented
|
|
271
|
+
|
|
272
|
+
### Added
|
|
273
|
+
|
|
274
|
+
- [gh!632](https://github.com/ruby-oauth/oauth2/pull/632) - Added `funding.yml` (@Aboling0)
|
|
275
|
+
- [!635](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/635) - Added `.gitlab-ci.yml` (@jessieay)
|
|
276
|
+
- [#638](https://gitlab.com/ruby-oauth/oauth2/-/issues/638) - Documentation of support for **ILO Fundamental Principles of Rights at Work** (@pboling)
|
|
277
|
+
- [!642](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/642) - 20-year certificate for signing gem releases, expires 2045-04-29 (@pboling)
|
|
278
|
+
- Gemspec metadata
|
|
279
|
+
- funding_uri
|
|
280
|
+
- news_uri
|
|
281
|
+
- mailing_list_uri
|
|
282
|
+
- SHA256 and SHA512 Checksums for release
|
|
283
|
+
- [!643](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/643) - Add `token_name` option (@pboling)
|
|
284
|
+
- Specify the parameter name that identifies the access token
|
|
285
|
+
- [!645](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/645) - Add `OAuth2::OAUTH_DEBUG` constant, based on `ENV["OAUTH_DEBUG"] (@pboling)
|
|
286
|
+
- [!646](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/646) - Add `OAuth2.config.silence_extra_tokens_warning`, default: false (@pboling)
|
|
287
|
+
- [!647](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647) - Add IETF RFC 7009 Token Revocation compliant (@pboling)
|
|
288
|
+
- `OAuth2::Client#revoke_token`
|
|
289
|
+
- `OAuth2::AccessToken#revoke`
|
|
290
|
+
- See: https://datatracker.ietf.org/doc/html/rfc7009
|
|
291
|
+
- [gh!644](https://github.com/ruby-oauth/oauth2/pull/644), [gh!645](https://github.com/ruby-oauth/oauth2/pull/645) - Added CITATION.cff (@Aboling0)
|
|
292
|
+
- [!648](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/648) - Improved documentation (@pboling)
|
|
293
|
+
|
|
294
|
+
### Changed
|
|
295
|
+
|
|
296
|
+
- Default value of `OAuth2.config.silence_extra_tokens_warning` was `false`, now `true` (@pboling)
|
|
297
|
+
- Gem releases are now cryptographically signed, with a 20-year cert (@pboling)
|
|
298
|
+
- Allow linux distros to build release without signing, as their package managers sign independently
|
|
299
|
+
- [!647](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647) - `OAuth2::AccessToken#refresh` now supports block param pass through (@pboling)
|
|
300
|
+
- [!647](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647) - `OAuth2.config` is no longer writable (@pboling)
|
|
301
|
+
- [!647](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647) - Errors raised by `OAuth2::AccessToken` are now always `OAuth2::Error` and have better metadata (@pboling)
|
|
302
|
+
|
|
303
|
+
### Fixed
|
|
304
|
+
|
|
305
|
+
- [#95](https://gitlab.com/ruby-oauth/oauth2/-/issues/95) - restoring an access token via `AccessToken#from_hash` (@pboling)
|
|
306
|
+
- This was a 13 year old bug report. 😘
|
|
307
|
+
- [#619](https://gitlab.com/ruby-oauth/oauth2/-/issues/619) - Internal options (like `snaky`, `raise_errors`, and `parse`) are no longer included in request (@pboling)
|
|
308
|
+
- [!633](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/633) - Spaces will now be encoded as `%20` instead of `+` (@nov.matake)
|
|
309
|
+
- [!634](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/634) - `CHANGELOG.md` documentation fix (@skuwa229)
|
|
310
|
+
- [!638](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/638) - fix `expired?` when `expires_in` is `0` (@disep)
|
|
311
|
+
- [!639](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/639) - Only instantiate `OAuth2::Error` if `raise_errors` option is `true` (@glytch2)
|
|
312
|
+
- [#639](https://gitlab.com/ruby-oauth/oauth2/-/issues/639) - `AccessToken#to_hash` is now serializable, just a regular Hash (@pboling)
|
|
313
|
+
- [!640](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/640) - `README.md` documentation fix (@martinezcoder)
|
|
314
|
+
- [!641](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/641) - Do not include sensitive information in the `inspect` (@manuelvanrijn)
|
|
315
|
+
- [#641](https://gitlab.com/ruby-oauth/oauth2/-/issues/641) - Made default JSON response parser more resilient (@pboling)
|
|
316
|
+
- [#645](https://gitlab.com/ruby-oauth/oauth2/-/issues/645) - Response no longer becomes a snaky hash (@pboling)
|
|
317
|
+
- [gh!646](https://github.com/ruby-oauth/oauth2/pull/646) - Change `require` to `require_relative` (improve performance) (@Aboling0)
|
|
318
|
+
|
|
13
319
|
## [2.0.9] - 2022-09-16
|
|
320
|
+
|
|
321
|
+
- TAG: [v2.0.9][2.0.9t]
|
|
322
|
+
|
|
14
323
|
### Added
|
|
324
|
+
|
|
15
325
|
- More specs (@pboling)
|
|
326
|
+
|
|
16
327
|
### Changed
|
|
328
|
+
|
|
17
329
|
- Complete migration to main branch as default (@pboling)
|
|
18
330
|
- Complete migration to Gitlab, updating all links, and references in VCS-managed files (@pboling)
|
|
19
331
|
|
|
20
332
|
## [2.0.8] - 2022-09-01
|
|
333
|
+
|
|
334
|
+
- TAG: [v2.0.8][2.0.8t]
|
|
335
|
+
|
|
21
336
|
### Changed
|
|
22
|
-
|
|
337
|
+
|
|
338
|
+
- [!630](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/630) - Extract snaky_hash to external dependency (@pboling)
|
|
339
|
+
|
|
23
340
|
### Added
|
|
24
|
-
|
|
341
|
+
|
|
342
|
+
- [!631](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/631) - New global configuration option OAuth2.config.silence_extra_tokens_warning (default: false) fixes [#628](https://gitlab.com/ruby-oauth/oauth2/-/issues/628)
|
|
25
343
|
|
|
26
344
|
## [2.0.7] - 2022-08-22
|
|
345
|
+
|
|
346
|
+
- TAG: [v2.0.7][2.0.7t]
|
|
347
|
+
|
|
27
348
|
### Added
|
|
28
|
-
|
|
349
|
+
|
|
350
|
+
- [!629](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/629) - Allow POST of JSON to get token (@pboling, @terracatta)
|
|
351
|
+
|
|
29
352
|
### Fixed
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
-
|
|
353
|
+
|
|
354
|
+
- [!626](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/626) - Fixes a regression in 2.0.6. Will now prefer the key order from the lookup, not the hash keys (@rickselby)
|
|
355
|
+
- Note: This fixes compatibility with `omniauth-oauth2` and AWS
|
|
356
|
+
- [!625](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/625) - Fixes the printed version in the post install message (@hasghari)
|
|
33
357
|
|
|
34
358
|
## [2.0.6] - 2022-07-13
|
|
359
|
+
|
|
360
|
+
- TAG: [v2.0.6][2.0.6t]
|
|
361
|
+
|
|
35
362
|
### Fixed
|
|
36
|
-
|
|
363
|
+
|
|
364
|
+
- [!624](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/624) - Fixes a [regression](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/623) in v2.0.5, where an error would be raised in refresh_token flows due to (legitimate) lack of access_token (@pboling)
|
|
37
365
|
|
|
38
366
|
## [2.0.5] - 2022-07-07
|
|
367
|
+
|
|
368
|
+
- TAG: [v2.0.5][2.0.5t]
|
|
369
|
+
|
|
39
370
|
### Fixed
|
|
40
|
-
|
|
41
|
-
- [
|
|
42
|
-
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
371
|
+
|
|
372
|
+
- [!620](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/620) - Documentation improvements, to help with upgrading (@swanson)
|
|
373
|
+
- [!621](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/621) - Fixed [#528](https://gitlab.com/ruby-oauth/oauth2/-/issues/528) and [#619](https://gitlab.com/ruby-oauth/oauth2/-/issues/619) (@pboling)
|
|
374
|
+
- All data in responses is now returned, with the access token removed and set as `token`
|
|
375
|
+
- `refresh_token` is no longer dropped
|
|
376
|
+
- **BREAKING**: Microsoft's `id_token` is no longer left as `access_token['id_token']`, but moved to the standard `access_token.token` that all other strategies use
|
|
377
|
+
- Remove `parse` and `snaky` from options so they don't get included in response
|
|
378
|
+
- There is now 100% test coverage, for lines _and_ branches, and it will stay that way.
|
|
47
379
|
|
|
48
380
|
## [2.0.4] - 2022-07-01
|
|
381
|
+
|
|
382
|
+
- TAG: [v2.0.4][2.0.4t]
|
|
383
|
+
|
|
49
384
|
### Fixed
|
|
50
|
-
|
|
385
|
+
|
|
386
|
+
- [!618](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/618) - In some scenarios the `snaky` option default value was not applied (@pboling)
|
|
51
387
|
|
|
52
388
|
## [2.0.3] - 2022-06-28
|
|
389
|
+
|
|
390
|
+
- TAG: [v2.0.3][2.0.3t]
|
|
391
|
+
|
|
53
392
|
### Added
|
|
54
|
-
|
|
55
|
-
- [
|
|
393
|
+
|
|
394
|
+
- [!611](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/611) - Proper deprecation warnings for `extract_access_token` argument (@pboling)
|
|
395
|
+
- [!612](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/612) - Add `snaky: false` option to skip conversion to `OAuth2::SnakyHash` (default: true) (@pboling)
|
|
396
|
+
|
|
56
397
|
### Fixed
|
|
57
|
-
|
|
58
|
-
- [
|
|
398
|
+
|
|
399
|
+
- [!608](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/608) - Wrap `Faraday::TimeoutError` in `OAuth2::TimeoutError` (@nbibler)
|
|
400
|
+
- [!615](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/615) - Fix support for requests with blocks, see `Faraday::Connection#run_request` (@pboling)
|
|
59
401
|
|
|
60
402
|
## [2.0.2] - 2022-06-24
|
|
403
|
+
|
|
404
|
+
- TAG: [v2.0.2][2.0.2t]
|
|
405
|
+
|
|
61
406
|
### Fixed
|
|
62
|
-
|
|
63
|
-
- [
|
|
64
|
-
- [
|
|
407
|
+
|
|
408
|
+
- [!604](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/604) - Wrap `Faraday::TimeoutError` in `OAuth2::TimeoutError` (@stanhu)
|
|
409
|
+
- [!606](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/606) - Ruby 2.7 deprecation warning fix: Move `access_token_class` parameter into `Client` constructor (@stanhu)
|
|
410
|
+
- [!607](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/607) - CHANGELOG correction, reference to `OAuth2::ConnectionError` (@zavan)
|
|
65
411
|
|
|
66
412
|
## [2.0.1] - 2022-06-22
|
|
413
|
+
|
|
414
|
+
- TAG: [v2.0.1][2.0.1t]
|
|
415
|
+
|
|
67
416
|
### Added
|
|
417
|
+
|
|
68
418
|
- Documentation improvements (@pboling)
|
|
69
419
|
- Increased test coverage to 99% (@pboling)
|
|
70
420
|
|
|
71
421
|
## [2.0.0] - 2022-06-21
|
|
422
|
+
|
|
423
|
+
- TAG: [v2.0.0][2.0.0t]
|
|
424
|
+
|
|
72
425
|
### Added
|
|
73
|
-
|
|
74
|
-
- [
|
|
75
|
-
- [
|
|
76
|
-
- [
|
|
77
|
-
- [
|
|
78
|
-
- [
|
|
79
|
-
- [
|
|
80
|
-
- [
|
|
81
|
-
- [
|
|
82
|
-
- [
|
|
83
|
-
- [
|
|
84
|
-
- [
|
|
85
|
-
- [
|
|
86
|
-
- [
|
|
87
|
-
- [
|
|
88
|
-
- [
|
|
89
|
-
- [
|
|
90
|
-
- [
|
|
91
|
-
- [
|
|
92
|
-
- [
|
|
93
|
-
- [
|
|
94
|
-
- [
|
|
95
|
-
- [
|
|
96
|
-
- [
|
|
97
|
-
- [
|
|
98
|
-
- [
|
|
426
|
+
|
|
427
|
+
- [!158](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/158), [!344](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/344) - Optionally pass raw response to parsers (@niels)
|
|
428
|
+
- [!190](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/190), [!332](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/332), [!334](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/334), [!335](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/335), [!360](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/360), [!426](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/426), [!427](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/427), [!461](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/461) - Documentation (@josephpage, @pboling, @meganemura, @joshRpowell, @elliotcm)
|
|
429
|
+
- [!220](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/220) - Support IETF rfc7523 JWT Bearer Tokens Draft 04+ (@jhmoore)
|
|
430
|
+
- [!298](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/298) - Set the response object on the access token on Client#get_token for debugging (@cpetschnig)
|
|
431
|
+
- [!305](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/305) - Option: `OAuth2::Client#get_token` - `:access_token_class` (`AccessToken`); user specified class to use for all calls to `get_token` (@styd)
|
|
432
|
+
- [!346](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/571) - Modern gem structure (@pboling)
|
|
433
|
+
- [!351](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/351) - Support Jruby 9k (@pboling)
|
|
434
|
+
- [!362](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/362) - Support SemVer release version scheme (@pboling)
|
|
435
|
+
- [!363](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/363) - New method `OAuth2::AccessToken#refresh!` same as old `refresh`, with backwards compatibility alias (@pboling)
|
|
436
|
+
- [!364](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/364) - Support `application/hal+json` format (@pboling)
|
|
437
|
+
- [!365](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/365) - Support `application/vnd.collection+json` format (@pboling)
|
|
438
|
+
- [!376](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/376) - _Documentation_: Example / Test for Google 2-legged JWT (@jhmoore)
|
|
439
|
+
- [!381](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/381) - Spec for extra header params on client credentials (@nikz)
|
|
440
|
+
- [!394](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/394) - Option: `OAuth2::AccessToken#initialize` - `:expires_latency` (`nil`); number of seconds by which AccessToken validity will be reduced to offset latency (@klippx)
|
|
441
|
+
- [!412](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/412) - Support `application/vdn.api+json` format (from jsonapi.org) (@david-christensen)
|
|
442
|
+
- [!413](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/413) - _Documentation_: License scan and report (@meganemura)
|
|
443
|
+
- [!442](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/442) - Option: `OAuth2::Client#initialize` - `:logger` (`::Logger.new($stdout)`) logger to use when OAUTH_DEBUG is enabled (for parity with `1-4-stable` branch) (@rthbound)
|
|
444
|
+
- [!494](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/494) - Support [OIDC 1.0 Private Key JWT](https://openid.net/specs/openid-connect-core-1_0.html#ClientAuthentication); based on the OAuth JWT assertion specification [(RFC 7523)](https://tools.ietf.org/html/rfc7523) (@SteveyblamWork)
|
|
445
|
+
- [!549](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/549) - Wrap `Faraday::ConnectionFailed` in `OAuth2::ConnectionError` (@nikkypx)
|
|
446
|
+
- [!550](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/550) - Raise error if location header not present when redirecting (@stanhu)
|
|
447
|
+
- [!552](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/552) - Add missing `version.rb` require (@ahorek)
|
|
448
|
+
- [!553](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/553) - Support `application/problem+json` format (@janz93)
|
|
449
|
+
- [!560](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/560) - Support IETF rfc6749, section 2.3.1 - don't set auth params when `nil` (@bouk)
|
|
450
|
+
- [!571](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/571) - Support Ruby 3.1 (@pboling)
|
|
451
|
+
- [!575](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/575) - Support IETF rfc7231, section 7.1.2 - relative location in redirect (@pboling)
|
|
452
|
+
- [!581](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/581) - _Documentation_: of breaking changes (@pboling)
|
|
453
|
+
|
|
99
454
|
### Changed
|
|
100
|
-
|
|
101
|
-
- [
|
|
102
|
-
- [
|
|
103
|
-
- [
|
|
104
|
-
- [
|
|
105
|
-
- [
|
|
106
|
-
- [
|
|
107
|
-
- [
|
|
108
|
-
- [
|
|
109
|
-
- [
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
-
|
|
114
|
-
- [
|
|
455
|
+
|
|
456
|
+
- [!191](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/191) - **BREAKING**: Token is expired if `expired_at` time is `now` (@davestevens)
|
|
457
|
+
- [!312](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/312) - **BREAKING**: Set `:basic_auth` as default for `:auth_scheme` instead of `:request_body`. This was default behavior before 1.3.0. (@tetsuya, @wy193777)
|
|
458
|
+
- [!317](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/317) - _Dependency_: Upgrade `jwt` to 2.x.x (@travisofthenorth)
|
|
459
|
+
- [!338](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/338) - _Dependency_: Switch from `Rack::Utils.escape` to `CGI.escape` (@josephpage)
|
|
460
|
+
- [!339](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/339), [!368](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/368), [!424](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/424), [!479](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/479), [!493](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/493), [!539](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/539), [!542](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/542), [!553](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/553) - CI Updates, code coverage, linting, spelling, type fixes, New VERSION constant (@pboling, @josephpage, @ahorek)
|
|
461
|
+
- [!410](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/410) - **BREAKING**: Removed the ability to call .error from an OAuth2::Response object (@jhmoore)
|
|
462
|
+
- [!414](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/414) - Use Base64.strict_encode64 instead of custom internal logic (@meganemura)
|
|
463
|
+
- [!469](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/469) - **BREAKING**: Default value for option `OAuth2::Client` - `:authorize_url` removed leading slash to work with relative paths by default (`'oauth/authorize'`) (@ghost)
|
|
464
|
+
- [!469](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/469) - **BREAKING**: Default value for option `OAuth2::Client` - `:token_url` removed leading slash to work with relative paths by default (`'oauth/token'`) (@ghost)
|
|
465
|
+
- [!507](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/507), [!575](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/575) - **BREAKING**: Transform keys to snake case, always, by default (ultimately via `rash_alt` gem)
|
|
466
|
+
- Original keys will still work as previously, in most scenarios, thanks to `rash_alt` gem.
|
|
467
|
+
- However, this is a _breaking_ change if you rely on `response.parsed.to_h`, as the keys in the result will be snake case.
|
|
468
|
+
- As of version 2.0.4 you can turn key transformation off with the `snaky: false` option.
|
|
469
|
+
- [!576](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/576) - **BREAKING**: Stop rescuing parsing errors (@pboling)
|
|
470
|
+
- [!591](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/576) - _DEPRECATION_: `OAuth2::Client` - `:extract_access_token` option is deprecated
|
|
471
|
+
|
|
115
472
|
### Fixed
|
|
116
|
-
|
|
117
|
-
- [
|
|
118
|
-
- [
|
|
119
|
-
- [
|
|
120
|
-
- [
|
|
121
|
-
- [
|
|
122
|
-
- [
|
|
123
|
-
- [
|
|
124
|
-
- [
|
|
125
|
-
- [
|
|
126
|
-
- [
|
|
127
|
-
- [
|
|
128
|
-
- [
|
|
129
|
-
- [
|
|
130
|
-
- [
|
|
131
|
-
- [
|
|
132
|
-
- [
|
|
133
|
-
- [
|
|
473
|
+
|
|
474
|
+
- [!158](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/158), [!344](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/344) - Handling of errors when using `omniauth-facebook` (@niels)
|
|
475
|
+
- [!294](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/294) - Fix: "Unexpected middleware set" issue with Faraday when `OAUTH_DEBUG=true` (@spectator, @gafrom)
|
|
476
|
+
- [!300](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/300) - _Documentation_: `Oauth2::Error` - Error codes are strings, not symbols (@NobodysNightmare)
|
|
477
|
+
- [!318](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/318), [!326](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/326), [!343](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/343), [!347](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/347), [!397](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/397), [!464](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/464), [!561](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/561), [!565](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/565) - _Dependency_: Support all versions of `faraday` (see [gemfiles/README.md][gemfiles/readme] for compatibility matrix with Ruby engines & versions) (@pboling, @raimondasv, @zacharywelch, @Fudoshiki, @ryogift, @sj26, @jdelStrother)
|
|
478
|
+
- [!322](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/322), [!331](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/331), [!337](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/337), [!361](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/361), [!371](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/371), [!377](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/377), [!383](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/383), [!392](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/392), [!395](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/395), [!400](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/400), [!401](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/401), [!403](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/403), [!415](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/415), [!567](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/567) - Updated Rubocop, Rubocop plugins and improved code style (@pboling, @bquorning, @lautis, @spectator)
|
|
479
|
+
- [!328](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/328) - _Documentation_: Homepage URL is SSL (@amatsuda)
|
|
480
|
+
- [!339](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/339), [!479](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/479) - Update testing infrastructure for all supported Rubies (@pboling and @josephpage)
|
|
481
|
+
- [!366](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/366) - **Security**: Fix logging to `$stdout` of request and response bodies via Faraday's logger and `ENV["OAUTH_DEBUG"] == 'true'` (@pboling)
|
|
482
|
+
- [!380](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/380) - Fix: Stop attempting to encode non-encodable objects in `Oauth2::Error` (@jhmoore)
|
|
483
|
+
- [!399](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/399) - Fix: Stop duplicating `redirect_uri` in `get_token` (@markus)
|
|
484
|
+
- [!410](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/410) - Fix: `SystemStackError` caused by circular reference between Error and Response classes (@jhmoore)
|
|
485
|
+
- [!460](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/460) - Fix: Stop throwing errors when `raise_errors` is set to `false`; analog of [!524](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/524) for `1-4-stable` branch (@joaolrpaulo)
|
|
486
|
+
- [!472](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/472) - **Security**: Add checks to enforce `client_secret` is *never* passed in authorize_url query params for `implicit` and `auth_code` grant types (@dfockler)
|
|
487
|
+
- [!482](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/482) - _Documentation_: Update last of `intridea` links to `ruby-oauth` (@pboling)
|
|
488
|
+
- [!536](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/536) - **Security**: Compatibility with more (and recent) Ruby OpenSSL versions, Github Actions, Rubocop updated, analogous to [!535](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/535) on `1-4-stable` branch (@pboling)
|
|
489
|
+
- [!595](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/595) - Graceful handling of empty responses from `Client#get_token`, respecting `:raise_errors` config (@stanhu)
|
|
490
|
+
- [!596](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/596) - Consistency between `AccessToken#refresh` and `Client#get_token` named arguments (@stanhu)
|
|
491
|
+
- [!598](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/598) - Fix unparseable data not raised as error in `Client#get_token`, respecting `:raise_errors` config (@stanhu)
|
|
492
|
+
|
|
134
493
|
### Removed
|
|
135
|
-
|
|
136
|
-
- [
|
|
137
|
-
- [
|
|
138
|
-
- [
|
|
139
|
-
- [
|
|
140
|
-
- [
|
|
494
|
+
|
|
495
|
+
- [!341](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/341) - Remove Rdoc & Jeweler related files (@josephpage)
|
|
496
|
+
- [!342](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/342) - **BREAKING**: Dropped support for Ruby 1.8 (@josephpage)
|
|
497
|
+
- [!539](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/539) - Remove reliance on globally included OAuth2 in tests, analog of [!538](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/538) for 1-4-stable (@anderscarling)
|
|
498
|
+
- [!566](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/566) - _Dependency_: Removed `wwtd` (@bquorning)
|
|
499
|
+
- [!589](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/589), [!593](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/593) - Remove support for expired MAC token draft spec (@stanhu)
|
|
500
|
+
- [!590](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/590) - _Dependency_: Removed `multi_json` (@stanhu)
|
|
141
501
|
|
|
142
502
|
## [1.4.11] - 2022-09-16
|
|
503
|
+
|
|
504
|
+
- TAG: [v1.4.11][1.4.11t]
|
|
143
505
|
- Complete migration to main branch as default (@pboling)
|
|
144
506
|
- Complete migration to Gitlab, updating all links, and references in VCS-managed files (@pboling)
|
|
145
507
|
|
|
146
508
|
## [1.4.10] - 2022-07-01
|
|
147
|
-
|
|
509
|
+
|
|
510
|
+
- TAG: [v1.4.10][1.4.10t]
|
|
511
|
+
- FIPS Compatibility [!587](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/587) (@akostadinov)
|
|
148
512
|
|
|
149
513
|
## [1.4.9] - 2022-02-20
|
|
150
|
-
|
|
514
|
+
|
|
515
|
+
- TAG: [v1.4.9][1.4.9t]
|
|
516
|
+
- Fixes compatibility with Faraday v2 [572](https://gitlab.com/ruby-oauth/oauth2/-/issues/572)
|
|
151
517
|
- Includes supported versions of Faraday in test matrix:
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
518
|
+
- Faraday ~> 2.2.0 with Ruby >= 2.6
|
|
519
|
+
- Faraday ~> 1.10 with Ruby >= 2.4
|
|
520
|
+
- Faraday ~> 0.17.3 with Ruby >= 1.9
|
|
155
521
|
- Add Windows and MacOS to test matrix
|
|
156
522
|
|
|
157
523
|
## [1.4.8] - 2022-02-18
|
|
524
|
+
|
|
525
|
+
- TAG: [v1.4.8][1.4.8t]
|
|
158
526
|
- MFA is now required to push new gem versions (@pboling)
|
|
159
527
|
- README overhaul w/ new Ruby Version and Engine compatibility policies (@pboling)
|
|
160
|
-
- [
|
|
528
|
+
- [!569](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/569) Backport fixes ([!561](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/561) by @ryogift), and add more fixes, to allow faraday 1.x and 2.x (@jrochkind)
|
|
161
529
|
- Improve Code Coverage tracking (Coveralls, CodeCov, CodeClimate), and enable branch coverage (@pboling)
|
|
162
530
|
- Add CodeQL, Security Policy, Funding info (@pboling)
|
|
163
531
|
- Added Ruby 3.1, jruby, jruby-head, truffleruby, truffleruby-head to build matrix (@pboling)
|
|
164
|
-
- [
|
|
532
|
+
- [!543](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/543) - Support for more modern Open SSL libraries (@pboling)
|
|
165
533
|
|
|
166
534
|
## [1.4.7] - 2021-03-19
|
|
167
|
-
|
|
535
|
+
|
|
536
|
+
- TAG: [v1.4.7][1.4.7t]
|
|
537
|
+
- [!541](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/541) - Backport fix to expires_at handling [!533](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/533) to 1-4-stable branch. (@dobon)
|
|
168
538
|
|
|
169
539
|
## [1.4.6] - 2021-03-19
|
|
170
|
-
|
|
171
|
-
- [
|
|
172
|
-
- [
|
|
540
|
+
|
|
541
|
+
- TAG: [v1.4.6][1.4.6t]
|
|
542
|
+
- [!540](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/540) - Add VERSION constant (@pboling)
|
|
543
|
+
- [!537](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/537) - Fix crash in OAuth2::Client#get_token (@anderscarling)
|
|
544
|
+
- [!538](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/538) - Remove reliance on globally included OAuth2 in tests, analogous to [!539](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/539) on main branch (@anderscarling)
|
|
173
545
|
|
|
174
546
|
## [1.4.5] - 2021-03-18
|
|
175
|
-
|
|
176
|
-
- [
|
|
177
|
-
- [
|
|
178
|
-
- [
|
|
547
|
+
|
|
548
|
+
- TAG: [v1.4.5][1.4.5t]
|
|
549
|
+
- [!535](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/535) - Compatibility with range of supported Ruby OpenSSL versions, Rubocop updates, Github Actions, analogous to [!536](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/536) on main branch (@pboling)
|
|
550
|
+
- [!518](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/518) - Add extract_access_token option to OAuth2::Client (@jonspalmer)
|
|
551
|
+
- [!507](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/507) - Fix camel case content type, response keys (@anvox)
|
|
552
|
+
- [!500](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/500) - Fix YARD documentation formatting (@olleolleolle)
|
|
179
553
|
|
|
180
554
|
## [1.4.4] - 2020-02-12
|
|
181
|
-
|
|
555
|
+
|
|
556
|
+
- TAG: [v1.4.4][1.4.4t]
|
|
557
|
+
- [!408](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/408) - Fixed expires_at for formatted time (@Lomey)
|
|
182
558
|
|
|
183
559
|
## [1.4.3] - 2020-01-29
|
|
184
|
-
|
|
185
|
-
- [
|
|
186
|
-
|
|
187
|
-
- [
|
|
560
|
+
|
|
561
|
+
- TAG: [v1.4.3][1.4.3t]
|
|
562
|
+
- [!483](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/483) - add project metadata to gemspec (@orien)
|
|
563
|
+
- [!495](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/495) - support additional types of access token requests (@SteveyblamFreeagent, @thomcorley, @dgholz)
|
|
564
|
+
- Adds support for private_key_jwt and tls_client_auth
|
|
565
|
+
- [!433](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/433) - allow field names with square brackets and numbers in params (@asm256)
|
|
188
566
|
|
|
189
567
|
## [1.4.2] - 2019-10-01
|
|
190
|
-
|
|
191
|
-
|
|
568
|
+
|
|
569
|
+
- TAG: [v1.4.2][1.4.2t]
|
|
570
|
+
- [!478](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/478) - support latest version of faraday & fix build (@pboling)
|
|
571
|
+
- Officially support Ruby 2.6 and truffleruby
|
|
192
572
|
|
|
193
573
|
## [1.4.1] - 2018-10-13
|
|
194
|
-
|
|
195
|
-
- [
|
|
196
|
-
- [
|
|
197
|
-
- [
|
|
198
|
-
- [
|
|
199
|
-
- [
|
|
200
|
-
- [
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
574
|
+
|
|
575
|
+
- TAG: [v1.4.1][1.4.1t]
|
|
576
|
+
- [!417](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/417) - update jwt dependency (@thewoolleyman)
|
|
577
|
+
- [!419](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/419) - remove rubocop dependency (temporary, added back in [!423](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/423)) (@pboling)
|
|
578
|
+
- [!418](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/418) - update faraday dependency (@pboling)
|
|
579
|
+
- [!420](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/420) - update [oauth2.gemspec](https://gitlab.com/ruby-oauth/oauth2/-/blob/1-4-stable/oauth2.gemspec) (@pboling)
|
|
580
|
+
- [!421](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/421) - fix [CHANGELOG.md](https://gitlab.com/ruby-oauth/oauth2/-/blob/1-4-stable/CHANGELOG.md) for previous releases (@pboling)
|
|
581
|
+
- [!422](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/422) - update [LICENSE](https://gitlab.com/ruby-oauth/oauth2/-/blob/1-4-stable/LICENSE) and [README.md](https://gitlab.com/ruby-oauth/oauth2/-/blob/1-4-stable/README.md) (@pboling)
|
|
582
|
+
- [!423](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/423) - update [builds](https://travis-ci.org/ruby-oauth/oauth2/builds), [Rakefile](https://gitlab.com/ruby-oauth/oauth2/-/blob/1-4-stable/Rakefile) (@pboling)
|
|
583
|
+
- officially document supported Rubies
|
|
584
|
+
* Ruby 1.9.3
|
|
585
|
+
* Ruby 2.0.0
|
|
586
|
+
* Ruby 2.1
|
|
587
|
+
* Ruby 2.2
|
|
588
|
+
* [JRuby 1.7][jruby-1.7] (targets MRI v1.9)
|
|
589
|
+
* [JRuby 9.0][jruby-9.0] (targets MRI v2.0)
|
|
590
|
+
* Ruby 2.3
|
|
591
|
+
* Ruby 2.4
|
|
592
|
+
* Ruby 2.5
|
|
593
|
+
* [JRuby 9.1][jruby-9.1] (targets MRI v2.3)
|
|
594
|
+
* [JRuby 9.2][jruby-9.2] (targets MRI v2.5)
|
|
213
595
|
|
|
214
596
|
[jruby-1.7]: https://www.jruby.org/2017/05/11/jruby-1-7-27.html
|
|
215
597
|
[jruby-9.0]: https://www.jruby.org/2016/01/26/jruby-9-0-5-0.html
|
|
@@ -217,16 +599,22 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
|
217
599
|
[jruby-9.2]: https://www.jruby.org/2018/05/24/jruby-9-2-0-0.html
|
|
218
600
|
|
|
219
601
|
## [1.4.0] - 2017-06-09
|
|
602
|
+
|
|
603
|
+
- TAG: [v1.4.0][1.4.0t]
|
|
220
604
|
- Drop Ruby 1.8.7 support (@sferik)
|
|
221
605
|
- Fix some RuboCop offenses (@sferik)
|
|
222
606
|
- _Dependency_: Remove Yardstick (@sferik)
|
|
223
607
|
- _Dependency_: Upgrade Faraday to 0.12 (@sferik)
|
|
224
608
|
|
|
225
609
|
## [1.3.1] - 2017-03-03
|
|
610
|
+
|
|
611
|
+
- TAG: [v1.3.1][1.3.1t]
|
|
226
612
|
- Add support for Ruby 2.4.0 (@pschambacher)
|
|
227
613
|
- _Dependency_: Upgrade Faraday to Faraday 0.11 (@mcfiredrill, @rhymes, @pschambacher)
|
|
228
614
|
|
|
229
615
|
## [1.3.0] - 2016-12-28
|
|
616
|
+
|
|
617
|
+
- TAG: [v1.3.0][1.3.0t]
|
|
230
618
|
- Add support for header-based authentication to the `Client` so it can be used across the library (@bjeanes)
|
|
231
619
|
- Default to header-based authentication when getting a token from an authorisation code (@maletor)
|
|
232
620
|
- **Breaking**: Allow an `auth_scheme` (`:basic_auth` or `:request_body`) to be set on the client, defaulting to `:request_body` to maintain backwards compatibility (@maletor, @bjeanes)
|
|
@@ -236,22 +624,36 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
|
236
624
|
- Add support for Faraday 0.10 (@rhymes)
|
|
237
625
|
|
|
238
626
|
## [1.2.0] - 2016-07-01
|
|
627
|
+
|
|
628
|
+
- TAG: [v1.2.0][1.2.0t]
|
|
239
629
|
- Properly handle encoding of error responses (so we don't blow up, for example, when Google's response includes a ∞) (@Motoshi-Nishihira)
|
|
240
630
|
- Make a copy of the options hash in `AccessToken#from_hash` to avoid accidental mutations (@Linuus)
|
|
241
631
|
- Use `raise` rather than `fail` to throw exceptions (@sferik)
|
|
242
632
|
|
|
243
633
|
## [1.1.0] - 2016-01-30
|
|
634
|
+
|
|
635
|
+
- TAG: [v1.1.0][1.1.0t]
|
|
244
636
|
- Various refactors (eliminating `Hash#merge!` usage in `AccessToken#refresh!`, use `yield` instead of `#call`, freezing mutable objects in constants, replacing constants with class variables) (@sferik)
|
|
245
637
|
- Add support for Rack 2, and bump various other dependencies (@sferik)
|
|
246
638
|
|
|
247
639
|
## [1.0.0] - 2014-07-09
|
|
640
|
+
|
|
641
|
+
- TAG: [v1.0.0][1.0.0t]
|
|
642
|
+
|
|
248
643
|
### Added
|
|
644
|
+
|
|
249
645
|
- Add an implementation of the MAC token spec.
|
|
646
|
+
|
|
250
647
|
### Fixed
|
|
648
|
+
|
|
251
649
|
- Fix Base64.strict_encode64 incompatibility with Ruby 1.8.7.
|
|
252
650
|
|
|
253
651
|
## [0.5.0] - 2011-07-29
|
|
652
|
+
|
|
653
|
+
- TAG: [v0.5.0][0.5.0t]
|
|
654
|
+
|
|
254
655
|
### Changed
|
|
656
|
+
|
|
255
657
|
- *breaking* `oauth_token` renamed to `oauth_bearer`.
|
|
256
658
|
- *breaking* `authorize_path` Client option renamed to `authorize_url`.
|
|
257
659
|
- *breaking* `access_token_path` Client option renamed to `token_url`.
|
|
@@ -260,76 +662,192 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
|
260
662
|
|
|
261
663
|
## [0.4.1] - 2011-04-20
|
|
262
664
|
|
|
665
|
+
- TAG: [v0.4.1][0.4.1t]
|
|
666
|
+
|
|
263
667
|
## [0.4.0] - 2011-04-20
|
|
264
668
|
|
|
669
|
+
- TAG: [v0.4.0][0.4.0t]
|
|
670
|
+
|
|
265
671
|
## [0.3.0] - 2011-04-08
|
|
266
672
|
|
|
673
|
+
- TAG: [v0.3.0][0.3.0t]
|
|
674
|
+
|
|
267
675
|
## [0.2.0] - 2011-04-01
|
|
268
676
|
|
|
677
|
+
- TAG: [v0.2.0][0.2.0t]
|
|
678
|
+
|
|
269
679
|
## [0.1.1] - 2011-01-12
|
|
270
680
|
|
|
681
|
+
- TAG: [v0.1.1][0.1.1t]
|
|
682
|
+
|
|
271
683
|
## [0.1.0] - 2010-10-13
|
|
272
684
|
|
|
273
|
-
|
|
685
|
+
- TAG: [v0.1.0][0.1.0t]
|
|
686
|
+
|
|
687
|
+
## [0.0.13] - 2010-08-17
|
|
688
|
+
|
|
689
|
+
- TAG: [v0.0.13][0.0.13t]
|
|
690
|
+
|
|
691
|
+
## [0.0.12] - 2010-08-17
|
|
692
|
+
|
|
693
|
+
- TAG: [v0.0.12][0.0.12t]
|
|
694
|
+
|
|
695
|
+
## [0.0.11] - 2010-08-17
|
|
696
|
+
|
|
697
|
+
- TAG: [v0.0.11][0.0.11t]
|
|
274
698
|
|
|
275
699
|
## [0.0.10] - 2010-06-19
|
|
276
700
|
|
|
701
|
+
- TAG: [v0.0.10][0.0.10t]
|
|
702
|
+
|
|
277
703
|
## [0.0.9] - 2010-06-18
|
|
278
704
|
|
|
279
|
-
|
|
705
|
+
- TAG: [v0.0.9][0.0.9t]
|
|
706
|
+
|
|
707
|
+
## [0.0.8] - 2010-04-27
|
|
708
|
+
|
|
709
|
+
- TAG: [v0.0.8][0.0.8t]
|
|
710
|
+
|
|
711
|
+
## [0.0.7] - 2010-04-27
|
|
712
|
+
|
|
713
|
+
- TAG: [v0.0.7][0.0.7t]
|
|
280
714
|
|
|
281
715
|
## [0.0.6] - 2010-04-25
|
|
282
716
|
|
|
717
|
+
- TAG: [v0.0.6][0.0.6t]
|
|
718
|
+
|
|
283
719
|
## [0.0.5] - 2010-04-23
|
|
284
720
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
[0.0.
|
|
288
|
-
|
|
289
|
-
[
|
|
290
|
-
|
|
291
|
-
[0.0.
|
|
292
|
-
|
|
293
|
-
[
|
|
294
|
-
|
|
295
|
-
[0.0.
|
|
296
|
-
|
|
297
|
-
[
|
|
298
|
-
|
|
299
|
-
[0.0.
|
|
300
|
-
|
|
301
|
-
[0.1
|
|
302
|
-
|
|
303
|
-
[0.3.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.2.0...v0.3.0
|
|
304
|
-
[0.4.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.3.0...v0.4.0
|
|
305
|
-
[0.4.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.4.0...v0.4.1
|
|
306
|
-
[0.5.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.4.1...v0.5.0
|
|
307
|
-
[1.0.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.9.4...v1.0.0
|
|
308
|
-
[1.1.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.0.0...v1.1.0
|
|
309
|
-
[1.2.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.1.0...v1.2.0
|
|
310
|
-
[1.3.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.2.0...v1.3.0
|
|
311
|
-
[1.3.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.3.0...v1.3.1
|
|
312
|
-
[1.4.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.3.1...v1.4.0
|
|
313
|
-
[1.4.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.0...v1.4.1
|
|
314
|
-
[1.4.2]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.1...v1.4.2
|
|
315
|
-
[1.4.3]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.2...v1.4.3
|
|
316
|
-
[1.4.4]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.3...v1.4.4
|
|
317
|
-
[1.4.5]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.4...v1.4.5
|
|
318
|
-
[1.4.6]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.5...v1.4.6
|
|
319
|
-
[1.4.7]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.6...v1.4.7
|
|
320
|
-
[1.4.8]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.7...v1.4.8
|
|
321
|
-
[1.4.9]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.8...v1.4.9
|
|
322
|
-
[1.4.10]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.9...v1.4.10
|
|
323
|
-
[1.4.11]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.10...v1.4.11
|
|
324
|
-
[2.0.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.11...v2.0.0
|
|
325
|
-
[2.0.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.0...v2.0.1
|
|
326
|
-
[2.0.2]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.1...v2.0.2
|
|
327
|
-
[2.0.3]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.2...v2.0.3
|
|
328
|
-
[2.0.4]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.3...v2.0.4
|
|
329
|
-
[2.0.5]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.4...v2.0.5
|
|
330
|
-
[2.0.6]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.5...v2.0.6
|
|
331
|
-
[2.0.7]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.6...v2.0.7
|
|
332
|
-
[2.0.8]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.7...v2.0.8
|
|
333
|
-
[2.0.9]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.8...v2.0.9
|
|
334
|
-
[Unreleased]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.9...HEAD
|
|
721
|
+
- TAG: [v0.0.5][0.0.5t]
|
|
722
|
+
|
|
723
|
+
## [0.0.4] - 2010-04-22
|
|
724
|
+
|
|
725
|
+
- TAG: [v0.0.4][0.0.4t]
|
|
726
|
+
|
|
727
|
+
## [0.0.3] - 2010-04-22
|
|
728
|
+
|
|
729
|
+
- TAG: [v0.0.3][0.0.3t]
|
|
730
|
+
|
|
731
|
+
## [0.0.2] - 2010-04-22
|
|
732
|
+
|
|
733
|
+
- TAG: [v0.0.2][0.0.2t]
|
|
734
|
+
|
|
735
|
+
## [0.0.1] - 2010-04-22
|
|
736
|
+
|
|
737
|
+
- TAG: [v0.0.1][0.0.1t]
|
|
738
|
+
|
|
335
739
|
[gemfiles/readme]: gemfiles/README.md
|
|
740
|
+
|
|
741
|
+
[Unreleased]: https://github.com/ruby-oauth/oauth2/compare/v2.0.18...HEAD
|
|
742
|
+
[2.0.18]: https://github.com/ruby-oauth/oauth2/compare/v2.0.17...v2.0.18
|
|
743
|
+
[2.0.18t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.18
|
|
744
|
+
[2.0.17]: https://github.com/ruby-oauth/oauth2/compare/v2.0.16...v2.0.17
|
|
745
|
+
[2.0.17t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.17
|
|
746
|
+
[2.0.16]: https://github.com/ruby-oauth/oauth2/compare/v2.0.15...v2.0.16
|
|
747
|
+
[2.0.16t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.16
|
|
748
|
+
[2.0.15]: https://github.com/ruby-oauth/oauth2/compare/v2.0.14...v2.0.15
|
|
749
|
+
[2.0.15t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.15
|
|
750
|
+
[2.0.14]: https://github.com/ruby-oauth/oauth2/compare/v2.0.13...v2.0.14
|
|
751
|
+
[2.0.14t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.14
|
|
752
|
+
[2.0.13]: https://github.com/ruby-oauth/oauth2/compare/v2.0.12...v2.0.13
|
|
753
|
+
[2.0.13t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.13
|
|
754
|
+
[2.0.12]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.11...v2.0.12
|
|
755
|
+
[2.0.12t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.12
|
|
756
|
+
[2.0.11]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.10...v2.0.11
|
|
757
|
+
[2.0.11t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.11
|
|
758
|
+
[2.0.10]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.9...v2.0.10
|
|
759
|
+
[2.0.10t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.10
|
|
760
|
+
[2.0.9]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.8...v2.0.9
|
|
761
|
+
[2.0.9t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.9
|
|
762
|
+
[2.0.8]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.7...v2.0.8
|
|
763
|
+
[2.0.8t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.8
|
|
764
|
+
[2.0.7]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.6...v2.0.7
|
|
765
|
+
[2.0.7t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.7
|
|
766
|
+
[2.0.6]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.5...v2.0.6
|
|
767
|
+
[2.0.6t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.6
|
|
768
|
+
[2.0.5]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.4...v2.0.5
|
|
769
|
+
[2.0.5t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.5
|
|
770
|
+
[2.0.4]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.3...v2.0.4
|
|
771
|
+
[2.0.4t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.4
|
|
772
|
+
[2.0.3]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.2...v2.0.3
|
|
773
|
+
[2.0.3t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.3
|
|
774
|
+
[2.0.2]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.1...v2.0.2
|
|
775
|
+
[2.0.2t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.2
|
|
776
|
+
[2.0.1]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.0...v2.0.1
|
|
777
|
+
[2.0.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.1
|
|
778
|
+
[2.0.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.11...v2.0.0
|
|
779
|
+
[2.0.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.0
|
|
780
|
+
[1.4.11]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.10...v1.4.11
|
|
781
|
+
[1.4.11t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.11
|
|
782
|
+
[1.4.10]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.9...v1.4.10
|
|
783
|
+
[1.4.10t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.10
|
|
784
|
+
[1.4.9]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.8...v1.4.9
|
|
785
|
+
[1.4.9t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.9
|
|
786
|
+
[1.4.8]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.7...v1.4.8
|
|
787
|
+
[1.4.8t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.8
|
|
788
|
+
[1.4.7]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.6...v1.4.7
|
|
789
|
+
[1.4.7t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.7
|
|
790
|
+
[1.4.6]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.5...v1.4.6
|
|
791
|
+
[1.4.6t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.6
|
|
792
|
+
[1.4.5]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.4...v1.4.5
|
|
793
|
+
[1.4.5t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.5
|
|
794
|
+
[1.4.4]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.3...v1.4.4
|
|
795
|
+
[1.4.4t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.4
|
|
796
|
+
[1.4.3]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.2...v1.4.3
|
|
797
|
+
[1.4.3t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.3
|
|
798
|
+
[1.4.2]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.1...v1.4.2
|
|
799
|
+
[1.4.2t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.2
|
|
800
|
+
[1.4.1]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.0...v1.4.1
|
|
801
|
+
[1.4.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.1
|
|
802
|
+
[1.4.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.3.1...v1.4.0
|
|
803
|
+
[1.4.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.0
|
|
804
|
+
[1.3.1]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.3.0...v1.3.1
|
|
805
|
+
[1.3.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.3.1
|
|
806
|
+
[1.3.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.2.0...v1.3.0
|
|
807
|
+
[1.3.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.3.0
|
|
808
|
+
[1.2.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.1.0...v1.2.0
|
|
809
|
+
[1.2.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.2.0
|
|
810
|
+
[1.1.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.0.0...v1.1.0
|
|
811
|
+
[1.1.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.1.0
|
|
812
|
+
[1.0.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.9.4...v1.0.0
|
|
813
|
+
[1.0.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.0.0
|
|
814
|
+
[0.5.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.4.1...v0.5.0
|
|
815
|
+
[0.5.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.5.0
|
|
816
|
+
[0.4.1]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.4.0...v0.4.1
|
|
817
|
+
[0.4.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.4.1
|
|
818
|
+
[0.4.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.3.0...v0.4.0
|
|
819
|
+
[0.4.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.4.0
|
|
820
|
+
[0.3.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.2.0...v0.3.0
|
|
821
|
+
[0.3.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.3.0
|
|
822
|
+
[0.2.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.1.1...v0.2.0
|
|
823
|
+
[0.2.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.2.0
|
|
824
|
+
[0.1.1]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.1.0...v0.1.1
|
|
825
|
+
[0.1.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.1.1
|
|
826
|
+
[0.1.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.13...v0.1.0
|
|
827
|
+
[0.1.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.1.0
|
|
828
|
+
[0.0.13]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.12...v0.0.13
|
|
829
|
+
[0.0.13t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.13
|
|
830
|
+
[0.0.12]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.11...v0.0.12
|
|
831
|
+
[0.0.12t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.12
|
|
832
|
+
[0.0.11]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.10...v0.0.11
|
|
833
|
+
[0.0.11t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.11
|
|
834
|
+
[0.0.10]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.9...v0.0.10
|
|
835
|
+
[0.0.10t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.10
|
|
836
|
+
[0.0.9]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.8...v0.0.9
|
|
837
|
+
[0.0.9t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.9
|
|
838
|
+
[0.0.8]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.7...v0.0.8
|
|
839
|
+
[0.0.8t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.8
|
|
840
|
+
[0.0.7]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.6...v0.0.7
|
|
841
|
+
[0.0.7t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.7
|
|
842
|
+
[0.0.6]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.5...v0.0.6
|
|
843
|
+
[0.0.6t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.6
|
|
844
|
+
[0.0.5]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.4...v0.0.5
|
|
845
|
+
[0.0.5t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.5
|
|
846
|
+
[0.0.4]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.3...v0.0.4
|
|
847
|
+
[0.0.4t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.4
|
|
848
|
+
[0.0.3]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.2...v0.0.3
|
|
849
|
+
[0.0.3t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.3
|
|
850
|
+
[0.0.2]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.1...v0.0.2
|
|
851
|
+
[0.0.2t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.2
|
|
852
|
+
[0.0.1]: https://github.com/ruby-oauth/oauth2/compare/311d9f4...v0.0.1
|
|
853
|
+
[0.0.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.1
|