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