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