oauth2 2.0.13 → 2.0.15
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 +190 -256
- data/CONTRIBUTING.md +36 -4
- data/FUNDING.md +2 -2
- data/OIDC.md +158 -0
- data/README.md +457 -100
- data/SECURITY.md +3 -17
- data/lib/oauth2/access_token.rb +10 -6
- data/lib/oauth2/client.rb +4 -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.tar.gz.sig +0 -0
- metadata +171 -18
- 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,28 +24,82 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
12
24
|
### Fixed
|
13
25
|
### Security
|
14
26
|
|
27
|
+
## [2.0.15] - 2025-09-08
|
28
|
+
- TAG: [v2.0.15][2.0.15t]
|
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
|
+
- [gh!671][gh!671] - Complete documentation example for Instagram by @pboling
|
34
|
+
- .env.local.example for contributor happiness
|
35
|
+
- note lack of builds for JRuby 9.2, 9.3 & Truffleruby 22.3, 23.0
|
36
|
+
- [actions/runner - issues/2347][GHA-continue-on-error-ui]
|
37
|
+
- [community/discussions/15452][GHA-allow-failure]
|
38
|
+
- [gh!670][gh!670] - AccessToken: verb-dependent token transmission mode by @mrj
|
39
|
+
- e.g., Instagram GET=:query, POST/DELETE=:header
|
40
|
+
### Changed
|
41
|
+
- [gh!669][gh!669] - Upgrade to kettle-dev v1.1.9 by @pboling
|
42
|
+
### Fixed
|
43
|
+
- Remove accidentally duplicated lines, and fix typos in CHANGELOG.md
|
44
|
+
- point badge to the correct workflow for Ruby 2.3 (caboose.yml)
|
45
|
+
### Security
|
46
|
+
|
47
|
+
[gh!669]: https://github.com/ruby-oauth/oauth2/pull/669
|
48
|
+
[gh!670]: https://github.com/ruby-oauth/oauth2/pull/670
|
49
|
+
[gh!671]: https://github.com/ruby-oauth/oauth2/pull/671
|
50
|
+
[GHA-continue-on-error-ui]: https://github.com/actions/runner/issues/2347
|
51
|
+
[GHA-allow-failure]: https://github.com/orgs/community/discussions/15452
|
52
|
+
|
53
|
+
## [2.0.14] - 2025-08-31
|
54
|
+
- TAG: [v2.0.14][2.0.14t]
|
55
|
+
- COVERAGE: 100.00% -- 519/519 lines in 14 files
|
56
|
+
- BRANCH COVERAGE: 100.00% -- 174/174 branches in 14 files
|
57
|
+
- 90.48% documented
|
58
|
+
### Added
|
59
|
+
- improved documentation by @pboling
|
60
|
+
- [gh!665][gh!665] - Document Mutual TLS (mTLS) usage with example in README (connection_opts.ssl client_cert/client_key and auth_scheme: :tls_client_auth) by @pboling
|
61
|
+
- [gh!666][gh!666] - Document usage of flat query params using Faraday::FlatParamsEncoder, with example URI, in README by @pboling
|
62
|
+
- Spec: verify flat params are preserved with Faraday::FlatParamsEncoder (skips on Faraday without FlatParamsEncoder)
|
63
|
+
- [gh!662][gh!662] - documentation notes in code comments and README highlighting OAuth 2.1 differences, with references, by @pboling
|
64
|
+
- PKCE required for auth code,
|
65
|
+
- exact redirect URI match,
|
66
|
+
- implicit/password grants omitted,
|
67
|
+
- avoid bearer tokens in query,
|
68
|
+
- refresh token guidance for public clients,
|
69
|
+
- simplified client definitions
|
70
|
+
- [gh!663][gh!663] - document how to implement an OIDC client with this gem in OIDC.md by @pboling
|
71
|
+
- also, list libraries built on top of the oauth2 gem that implement OIDC
|
72
|
+
- [gh!664][gh!664] - README: Add example for JHipster UAA (Spring Cloud) password grant, converted from Postman/Net::HTTP by @pboling
|
73
|
+
|
74
|
+
[gh!662]: https://github.com/ruby-oauth/oauth2/pull/662
|
75
|
+
[gh!663]: https://github.com/ruby-oauth/oauth2/pull/663
|
76
|
+
[gh!664]: https://github.com/ruby-oauth/oauth2/pull/664
|
77
|
+
[gh!665]: https://github.com/ruby-oauth/oauth2/pull/665
|
78
|
+
[gh!666]: https://github.com/ruby-oauth/oauth2/pull/666
|
79
|
+
|
15
80
|
## [2.0.13] - 2025-08-30
|
16
81
|
- TAG: [v2.0.13][2.0.13t]
|
17
82
|
- COVERAGE: 100.00% -- 519/519 lines in 14 files
|
18
83
|
- BRANCH COVERAGE: 100.00% -- 174/174 branches in 14 files
|
19
84
|
- 90.48% documented
|
20
85
|
### Added
|
21
|
-
- [
|
22
|
-
- [
|
23
|
-
- [
|
24
|
-
- [
|
25
|
-
- [
|
86
|
+
- [gh!656][gh!656] - Support revocation with URL-encoded parameters
|
87
|
+
- [gh!660][gh!660] - Inline yard documentation by @pboling
|
88
|
+
- [gh!660][gh!660] - Complete RBS types documentation by @pboling
|
89
|
+
- [gh!660][gh!660]- (more) Comprehensive documentation / examples by @pboling
|
90
|
+
- [gh!657][gh!657] - Updated documentation for org-rename by @pboling
|
26
91
|
- More funding links by @Aboling0
|
92
|
+
- Documentation: Added docs/OIDC.md with OIDC 1.0 overview, example, and references
|
27
93
|
### Changed
|
28
94
|
- Upgrade Code of Conduct to Contributor Covenant 2.1 by @pboling
|
29
|
-
- [
|
95
|
+
- [gh!660][gh!660] - Shrink post-install message by 4 lines by @pboling
|
30
96
|
### Fixed
|
31
|
-
- [
|
97
|
+
- [gh!660][gh!660] - Links in README (including link to HEAD documentation) by @pboling
|
32
98
|
### Security
|
33
99
|
|
34
|
-
[
|
35
|
-
[
|
36
|
-
[
|
100
|
+
[gh!660]: https://github.com/ruby-oauth/oauth2/pull/660
|
101
|
+
[gh!657]: https://github.com/ruby-oauth/oauth2/pull/657
|
102
|
+
[gh!656]: https://github.com/ruby-oauth/oauth2/pull/656
|
37
103
|
|
38
104
|
## [2.0.12] - 2025-05-31
|
39
105
|
- TAG: [v2.0.12][2.0.12t]
|
@@ -41,7 +107,7 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
41
107
|
- Branch Coverage: 100.0% (174 / 174)
|
42
108
|
- 80.00% documented
|
43
109
|
### Added
|
44
|
-
- [
|
110
|
+
- [gh!652][gh!652] - Support IETF rfc7515 JSON Web Signature - JWS by @mridang
|
45
111
|
- Support JWT `kid` for key discovery and management
|
46
112
|
- More Documentation by @pboling
|
47
113
|
- Documented Serialization Extensions
|
@@ -49,14 +115,11 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
49
115
|
- Documentation site @ https://oauth2.galtzo.com now complete
|
50
116
|
### Changed
|
51
117
|
- Updates to gemspec (email, funding url, post install message)
|
52
|
-
### Deprecated
|
53
|
-
### Removed
|
54
118
|
### Fixed
|
55
119
|
- Documentation Typos by @pboling
|
56
|
-
### Security
|
57
120
|
|
58
|
-
|
59
|
-
[
|
121
|
+
|
122
|
+
[gh!652]: https://github.com/ruby-oauth/oauth2/pull/652
|
60
123
|
|
61
124
|
## [2.0.11] - 2025-05-23
|
62
125
|
- TAG: [v2.0.11][2.0.11t]
|
@@ -64,11 +127,9 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
64
127
|
- BRANCH COVERAGE: 100.00% -- 172/172 branches in 14 files
|
65
128
|
- 80.00% documented
|
66
129
|
### Added
|
67
|
-
- [
|
68
|
-
- [gh651](https://github.com/ruby-oauth/oauth2/pull/651) - `:snaky_hash_klass` option (@pboling)
|
130
|
+
- [gh!651](https://github.com/ruby-oauth/oauth2/pull/651) - `:snaky_hash_klass` option (@pboling)
|
69
131
|
- More documentation
|
70
132
|
- Codeberg as ethical mirror (@pboling)
|
71
|
-
- https://codeberg.org/oauth-xx/oauth2
|
72
133
|
- https://codeberg.org/ruby-oauth/oauth2
|
73
134
|
- Don't check for cert if SKIP_GEM_SIGNING is set (@pboling)
|
74
135
|
- All runtime deps, including oauth-xx sibling gems, are now tested against HEAD (@pboling)
|
@@ -76,19 +137,15 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
76
137
|
- YARD config, GFM compatible with relative file links (@pboling)
|
77
138
|
- Documentation site on GitHub Pages (@pboling)
|
78
139
|
- [oauth2.galtzo.com](https://oauth2.galtzo.com)
|
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)
|
80
|
-
- [gh651](https://github.com/oauth-xx/oauth2/pull/651) - Mock OAuth2 server for testing (@pboling)
|
81
140
|
- [!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
|
-
- [
|
141
|
+
- [gh!651](https://github.com/ruby-oauth/oauth2/pull/651) - Mock OAuth2 server for testing (@pboling)
|
83
142
|
- https://github.com/navikt/mock-oauth2-server
|
84
143
|
### Changed
|
85
|
-
- [
|
86
|
-
- [gh651](https://github.com/ruby-oauth/oauth2/pull/651) - Upgraded to snaky_hash v2.0.3 (@pboling)
|
144
|
+
- [gh!651](https://github.com/ruby-oauth/oauth2/pull/651) - Upgraded to snaky_hash v2.0.3 (@pboling)
|
87
145
|
- Provides solution for serialization issues
|
88
146
|
- Updated `spec.homepage_uri` in gemspec to GitHub Pages YARD documentation site (@pboling)
|
89
147
|
### Fixed
|
90
|
-
- [
|
91
|
-
- [gh650](https://github.com/ruby-oauth/oauth2/pull/650) - Regression in return type of `OAuth2::Response#parsed` (@pboling)
|
148
|
+
- [gh!650](https://github.com/ruby-oauth/oauth2/pull/650) - Regression in return type of `OAuth2::Response#parsed` (@pboling)
|
92
149
|
- Incorrect documentation related to silencing warnings (@pboling)
|
93
150
|
|
94
151
|
## [2.0.10] - 2025-05-17
|
@@ -97,10 +154,6 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
97
154
|
- BRANCH COVERAGE: 100.00% -- 170/170 branches in 14 files
|
98
155
|
- 79.05% documented
|
99
156
|
### Added
|
100
|
-
- [gh!632](https://github.com/oauth-xx/oauth2/pull/632) - Added `funding.yml` (@Aboling0)
|
101
|
-
- [!635](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/635) - Added `.gitlab-ci.yml` (@jessieay)
|
102
|
-
- [#638](https://gitlab.com/oauth-xx/oauth2/-/issues/638) - Documentation of support for **ILO Fundamental Principles of Rights at Work** (@pboling)
|
103
|
-
- [!642](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/642) - 20-year certificate for signing gem releases, expires 2045-04-29 (@pboling)
|
104
157
|
- [gh!632](https://github.com/ruby-oauth/oauth2/pull/632) - Added `funding.yml` (@Aboling0)
|
105
158
|
- [!635](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/635) - Added `.gitlab-ci.yml` (@jessieay)
|
106
159
|
- [#638](https://gitlab.com/ruby-oauth/oauth2/-/issues/638) - Documentation of support for **ILO Fundamental Principles of Rights at Work** (@pboling)
|
@@ -110,47 +163,26 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
110
163
|
- news_uri
|
111
164
|
- mailing_list_uri
|
112
165
|
- SHA256 and SHA512 Checksums for release
|
113
|
-
- [!643](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/643) - Add `token_name` option (@pboling)
|
114
166
|
- [!643](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/643) - Add `token_name` option (@pboling)
|
115
167
|
- Specify the parameter name that identifies the access token
|
116
|
-
- [!645](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/645) - Add `OAuth2::OAUTH_DEBUG` constant, based on `ENV["OAUTH_DEBUG"] (@pboling)
|
117
|
-
- [!646](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/646) - Add `OAuth2.config.silence_extra_tokens_warning`, default: false (@pboling)
|
118
|
-
- [!647](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/647) - Add IETF RFC 7009 Token Revocation compliant (@pboling)
|
119
168
|
- [!645](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/645) - Add `OAuth2::OAUTH_DEBUG` constant, based on `ENV["OAUTH_DEBUG"] (@pboling)
|
120
169
|
- [!646](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/646) - Add `OAuth2.config.silence_extra_tokens_warning`, default: false (@pboling)
|
121
170
|
- [!647](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647) - Add IETF RFC 7009 Token Revocation compliant (@pboling)
|
122
171
|
- `OAuth2::Client#revoke_token`
|
123
172
|
- `OAuth2::AccessToken#revoke`
|
124
173
|
- See: https://datatracker.ietf.org/doc/html/rfc7009
|
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)
|
126
|
-
- [!648](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/648) - Improved documentation (@pboling)
|
127
174
|
- [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
175
|
- [!648](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/648) - Improved documentation (@pboling)
|
129
176
|
### Changed
|
130
177
|
- Default value of `OAuth2.config.silence_extra_tokens_warning` was `false`, now `true` (@pboling)
|
131
178
|
- Gem releases are now cryptographically signed, with a 20-year cert (@pboling)
|
132
179
|
- Allow linux distros to build release without signing, as their package managers sign independently
|
133
|
-
- [!647](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/647) - `OAuth2::AccessToken#refresh` now supports block param pass through (@pboling)
|
134
|
-
- [!647](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/647) - `OAuth2.config` is no longer writable (@pboling)
|
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
180
|
- [!647](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647) - `OAuth2::AccessToken#refresh` now supports block param pass through (@pboling)
|
137
181
|
- [!647](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647) - `OAuth2.config` is no longer writable (@pboling)
|
138
182
|
- [!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)
|
139
183
|
### Fixed
|
140
|
-
- [#95](https://gitlab.com/oauth-xx/oauth2/-/issues/95) - restoring an access token via `AccessToken#from_hash` (@pboling)
|
141
184
|
- [#95](https://gitlab.com/ruby-oauth/oauth2/-/issues/95) - restoring an access token via `AccessToken#from_hash` (@pboling)
|
142
185
|
- This was a 13 year old bug report. 😘
|
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)
|
144
|
-
- [!633](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/633) - Spaces will now be encoded as `%20` instead of `+` (@nov.matake)
|
145
|
-
- [!634](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/634) - `CHANGELOG.md` documentation fix (@skuwa229)
|
146
|
-
- [!638](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/638) - fix `expired?` when `expires_in` is `0` (@disep)
|
147
|
-
- [!639](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/639) - Only instantiate `OAuth2::Error` if `raise_errors` option is `true` (@glytch2)
|
148
|
-
- [#639](https://gitlab.com/oauth-xx/oauth2/-/issues/639) - `AccessToken#to_hash` is now serializable, just a regular Hash (@pboling)
|
149
|
-
- [!640](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/640) - `README.md` documentation fix (@martinezcoder)
|
150
|
-
- [!641](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/641) - Do not include sensitive information in the `inspect` (@manuelvanrijn)
|
151
|
-
- [#641](https://gitlab.com/oauth-xx/oauth2/-/issues/641) - Made default JSON response parser more resilient (@pboling)
|
152
|
-
- [#645](https://gitlab.com/oauth-xx/oauth2/-/issues/645) - Response no longer becomes a snaky hash (@pboling)
|
153
|
-
- [gh!646](https://github.com/oauth-xx/oauth2/pull/646) - Change `require` to `require_relative` (improve performance) (@Aboling0)
|
154
186
|
- [#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
187
|
- [!633](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/633) - Spaces will now be encoded as `%20` instead of `+` (@nov.matake)
|
156
188
|
- [!634](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/634) - `CHANGELOG.md` documentation fix (@skuwa229)
|
@@ -174,35 +206,27 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
174
206
|
## [2.0.8] - 2022-09-01
|
175
207
|
- TAG: [v2.0.8][2.0.8t]
|
176
208
|
### Changed
|
177
|
-
- [!630](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/630) - Extract snaky_hash to external dependency (@pboling)
|
178
209
|
- [!630](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/630) - Extract snaky_hash to external dependency (@pboling)
|
179
210
|
### Added
|
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
211
|
- [!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)
|
182
212
|
|
183
213
|
## [2.0.7] - 2022-08-22
|
184
214
|
- TAG: [v2.0.7][2.0.7t]
|
185
215
|
### Added
|
186
|
-
- [!629](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/629) - Allow POST of JSON to get token (@pboling, @terracatta)
|
187
216
|
- [!629](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/629) - Allow POST of JSON to get token (@pboling, @terracatta)
|
188
217
|
### Fixed
|
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)
|
190
218
|
- [!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
219
|
- Note: This fixes compatibility with `omniauth-oauth2` and AWS
|
192
|
-
- [!625](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/625) - Fixes the printed version in the post install message (@hasghari)
|
193
220
|
- [!625](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/625) - Fixes the printed version in the post install message (@hasghari)
|
194
221
|
|
195
222
|
## [2.0.6] - 2022-07-13
|
196
223
|
- TAG: [v2.0.6][2.0.6t]
|
197
224
|
### Fixed
|
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
225
|
- [!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)
|
200
226
|
|
201
227
|
## [2.0.5] - 2022-07-07
|
202
228
|
- TAG: [v2.0.5][2.0.5t]
|
203
229
|
### Fixed
|
204
|
-
- [!620](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/620) - Documentation improvements, to help with upgrading (@swanson)
|
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)
|
206
230
|
- [!620](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/620) - Documentation improvements, to help with upgrading (@swanson)
|
207
231
|
- [!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
232
|
- All data in responses is now returned, with the access token removed and set as `token`
|
@@ -214,28 +238,20 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
214
238
|
## [2.0.4] - 2022-07-01
|
215
239
|
- TAG: [v2.0.4][2.0.4t]
|
216
240
|
### Fixed
|
217
|
-
- [!618](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/618) - In some scenarios the `snaky` option default value was not applied (@pboling)
|
218
241
|
- [!618](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/618) - In some scenarios the `snaky` option default value was not applied (@pboling)
|
219
242
|
|
220
243
|
## [2.0.3] - 2022-06-28
|
221
244
|
- TAG: [v2.0.3][2.0.3t]
|
222
245
|
### Added
|
223
|
-
- [!611](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/611) - Proper deprecation warnings for `extract_access_token` argument (@pboling)
|
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
246
|
- [!611](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/611) - Proper deprecation warnings for `extract_access_token` argument (@pboling)
|
226
247
|
- [!612](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/612) - Add `snaky: false` option to skip conversion to `OAuth2::SnakyHash` (default: true) (@pboling)
|
227
248
|
### Fixed
|
228
|
-
- [!608](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/608) - Wrap `Faraday::TimeoutError` in `OAuth2::TimeoutError` (@nbibler)
|
229
|
-
- [!615](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/615) - Fix support for requests with blocks, see `Faraday::Connection#run_request` (@pboling)
|
230
249
|
- [!608](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/608) - Wrap `Faraday::TimeoutError` in `OAuth2::TimeoutError` (@nbibler)
|
231
250
|
- [!615](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/615) - Fix support for requests with blocks, see `Faraday::Connection#run_request` (@pboling)
|
232
251
|
|
233
252
|
## [2.0.2] - 2022-06-24
|
234
253
|
- TAG: [v2.0.2][2.0.2t]
|
235
254
|
### Fixed
|
236
|
-
- [!604](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/604) - Wrap `Faraday::TimeoutError` in `OAuth2::TimeoutError` (@stanhu)
|
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)
|
238
|
-
- [!607](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/607) - CHANGELOG correction, reference to `OAuth2::ConnectionError` (@zavan)
|
239
255
|
- [!604](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/604) - Wrap `Faraday::TimeoutError` in `OAuth2::TimeoutError` (@stanhu)
|
240
256
|
- [!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
257
|
- [!607](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/607) - CHANGELOG correction, reference to `OAuth2::ConnectionError` (@zavan)
|
@@ -249,32 +265,6 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
249
265
|
## [2.0.0] - 2022-06-21
|
250
266
|
- TAG: [v2.0.0][2.0.0t]
|
251
267
|
### Added
|
252
|
-
- [!158](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/158), [!344](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/344) - Optionally pass raw response to parsers (@niels)
|
253
|
-
- [!190](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/190), [!332](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/332), [!334](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/334), [!335](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/335), [!360](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/360), [!426](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/426), [!427](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/427), [!461](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/461) - Documentation (@josephpage, @pboling, @meganemura, @joshRpowell, @elliotcm)
|
254
|
-
- [!220](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/220) - Support IETF rfc7523 JWT Bearer Tokens Draft 04+ (@jhmoore)
|
255
|
-
- [!298](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/298) - Set the response object on the access token on Client#get_token for debugging (@cpetschnig)
|
256
|
-
- [!305](https://gitlab.com/oauth-xx/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)
|
257
|
-
- [!346](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/571) - Modern gem structure (@pboling)
|
258
|
-
- [!351](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/351) - Support Jruby 9k (@pboling)
|
259
|
-
- [!362](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/362) - Support SemVer release version scheme (@pboling)
|
260
|
-
- [!363](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/363) - New method `OAuth2::AccessToken#refresh!` same as old `refresh`, with backwards compatibility alias (@pboling)
|
261
|
-
- [!364](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/364) - Support `application/hal+json` format (@pboling)
|
262
|
-
- [!365](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/365) - Support `application/vnd.collection+json` format (@pboling)
|
263
|
-
- [!376](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/376) - _Documentation_: Example / Test for Google 2-legged JWT (@jhmoore)
|
264
|
-
- [!381](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/381) - Spec for extra header params on client credentials (@nikz)
|
265
|
-
- [!394](https://gitlab.com/oauth-xx/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)
|
266
|
-
- [!412](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/412) - Support `application/vdn.api+json` format (from jsonapi.org) (@david-christensen)
|
267
|
-
- [!413](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/413) - _Documentation_: License scan and report (@meganemura)
|
268
|
-
- [!442](https://gitlab.com/oauth-xx/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)
|
269
|
-
- [!494](https://gitlab.com/oauth-xx/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)
|
270
|
-
- [!549](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/549) - Wrap `Faraday::ConnectionFailed` in `OAuth2::ConnectionError` (@nikkypx)
|
271
|
-
- [!550](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/550) - Raise error if location header not present when redirecting (@stanhu)
|
272
|
-
- [!552](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/552) - Add missing `version.rb` require (@ahorek)
|
273
|
-
- [!553](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/553) - Support `application/problem+json` format (@janz93)
|
274
|
-
- [!560](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/560) - Support IETF rfc6749, section 2.3.1 - don't set auth params when `nil` (@bouk)
|
275
|
-
- [!571](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/571) - Support Ruby 3.1 (@pboling)
|
276
|
-
- [!575](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/575) - Support IETF rfc7231, section 7.1.2 - relative location in redirect (@pboling)
|
277
|
-
- [!581](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/581) - _Documentation_: of breaking changes (@pboling)
|
278
268
|
- [!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
269
|
- [!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
270
|
- [!220](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/220) - Support IETF rfc7523 JWT Bearer Tokens Draft 04+ (@jhmoore)
|
@@ -302,16 +292,6 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
302
292
|
- [!575](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/575) - Support IETF rfc7231, section 7.1.2 - relative location in redirect (@pboling)
|
303
293
|
- [!581](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/581) - _Documentation_: of breaking changes (@pboling)
|
304
294
|
### Changed
|
305
|
-
- [!191](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/191) - **BREAKING**: Token is expired if `expired_at` time is `now` (@davestevens)
|
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)
|
307
|
-
- [!317](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/317) - _Dependency_: Upgrade `jwt` to 2.x.x (@travisofthenorth)
|
308
|
-
- [!338](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/338) - _Dependency_: Switch from `Rack::Utils.escape` to `CGI.escape` (@josephpage)
|
309
|
-
- [!339](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/339), [!368](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/368), [!424](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/424), [!479](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/479), [!493](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/493), [!539](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/539), [!542](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/542), [!553](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/553) - CI Updates, code coverage, linting, spelling, type fixes, New VERSION constant (@pboling, @josephpage, @ahorek)
|
310
|
-
- [!410](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/410) - **BREAKING**: Removed the ability to call .error from an OAuth2::Response object (@jhmoore)
|
311
|
-
- [!414](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/414) - Use Base64.strict_encode64 instead of custom internal logic (@meganemura)
|
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)
|
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)
|
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)
|
315
295
|
- [!191](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/191) - **BREAKING**: Token is expired if `expired_at` time is `now` (@davestevens)
|
316
296
|
- [!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
297
|
- [!317](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/317) - _Dependency_: Upgrade `jwt` to 2.x.x (@travisofthenorth)
|
@@ -325,29 +305,9 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
325
305
|
- Original keys will still work as previously, in most scenarios, thanks to `rash_alt` gem.
|
326
306
|
- 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
307
|
- As of version 2.0.4 you can turn key transformation off with the `snaky: false` option.
|
328
|
-
- [!576](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/576) - **BREAKING**: Stop rescuing parsing errors (@pboling)
|
329
|
-
- [!591](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/576) - _DEPRECATION_: `OAuth2::Client` - `:extract_access_token` option is deprecated
|
330
308
|
- [!576](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/576) - **BREAKING**: Stop rescuing parsing errors (@pboling)
|
331
309
|
- [!591](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/576) - _DEPRECATION_: `OAuth2::Client` - `:extract_access_token` option is deprecated
|
332
310
|
### Fixed
|
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)
|
334
|
-
- [!294](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/294) - Fix: "Unexpected middleware set" issue with Faraday when `OAUTH_DEBUG=true` (@spectator, @gafrom)
|
335
|
-
- [!300](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/300) - _Documentation_: `Oauth2::Error` - Error codes are strings, not symbols (@NobodysNightmare)
|
336
|
-
- [!318](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/318), [!326](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/326), [!343](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/343), [!347](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/347), [!397](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/397), [!464](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/464), [!561](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/561), [!565](https://gitlab.com/oauth-xx/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)
|
337
|
-
- [!322](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/322), [!331](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/331), [!337](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/337), [!361](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/361), [!371](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/371), [!377](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/377), [!383](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/383), [!392](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/392), [!395](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/395), [!400](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/400), [!401](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/401), [!403](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/403), [!415](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/415), [!567](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/567) - Updated Rubocop, Rubocop plugins and improved code style (@pboling, @bquorning, @lautis, @spectator)
|
338
|
-
- [!328](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/328) - _Documentation_: Homepage URL is SSL (@amatsuda)
|
339
|
-
- [!339](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/339), [!479](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/479) - Update testing infrastructure for all supported Rubies (@pboling and @josephpage)
|
340
|
-
- [!366](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/366) - **Security**: Fix logging to `$stdout` of request and response bodies via Faraday's logger and `ENV["OAUTH_DEBUG"] == 'true'` (@pboling)
|
341
|
-
- [!380](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/380) - Fix: Stop attempting to encode non-encodable objects in `Oauth2::Error` (@jhmoore)
|
342
|
-
- [!399](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/399) - Fix: Stop duplicating `redirect_uri` in `get_token` (@markus)
|
343
|
-
- [!410](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/410) - Fix: `SystemStackError` caused by circular reference between Error and Response classes (@jhmoore)
|
344
|
-
- [!460](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/460) - Fix: Stop throwing errors when `raise_errors` is set to `false`; analog of [!524](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/524) for `1-4-stable` branch (@joaolrpaulo)
|
345
|
-
- [!472](https://gitlab.com/oauth-xx/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)
|
346
|
-
- [!482](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/482) - _Documentation_: Update last of `intridea` links to `oauth-xx` (@pboling)
|
347
|
-
- [!536](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/536) - **Security**: Compatibility with more (and recent) Ruby OpenSSL versions, Github Actions, Rubocop updated, analogous to [!535](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/535) on `1-4-stable` branch (@pboling)
|
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)
|
349
|
-
- [!596](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/596) - Consistency between `AccessToken#refresh` and `Client#get_token` named arguments (@stanhu)
|
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
311
|
- [!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
312
|
- [!294](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/294) - Fix: "Unexpected middleware set" issue with Faraday when `OAUTH_DEBUG=true` (@spectator, @gafrom)
|
353
313
|
- [!300](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/300) - _Documentation_: `Oauth2::Error` - Error codes are strings, not symbols (@NobodysNightmare)
|
@@ -367,12 +327,6 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
367
327
|
- [!596](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/596) - Consistency between `AccessToken#refresh` and `Client#get_token` named arguments (@stanhu)
|
368
328
|
- [!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)
|
369
329
|
### Removed
|
370
|
-
- [!341](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/341) - Remove Rdoc & Jeweler related files (@josephpage)
|
371
|
-
- [!342](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/342) - **BREAKING**: Dropped support for Ruby 1.8 (@josephpage)
|
372
|
-
- [!539](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/539) - Remove reliance on globally included OAuth2 in tests, analog of [!538](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/538) for 1-4-stable (@anderscarling)
|
373
|
-
- [!566](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/566) - _Dependency_: Removed `wwtd` (@bquorning)
|
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)
|
375
|
-
- [!590](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/590) - _Dependency_: Removed `multi_json` (@stanhu)
|
376
330
|
- [!341](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/341) - Remove Rdoc & Jeweler related files (@josephpage)
|
377
331
|
- [!342](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/342) - **BREAKING**: Dropped support for Ruby 1.8 (@josephpage)
|
378
332
|
- [!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)
|
@@ -387,12 +341,10 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
387
341
|
|
388
342
|
## [1.4.10] - 2022-07-01
|
389
343
|
- TAG: [v1.4.10][1.4.10t]
|
390
|
-
- FIPS Compatibility [!587](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/587) (@akostadinov)
|
391
344
|
- FIPS Compatibility [!587](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/587) (@akostadinov)
|
392
345
|
|
393
346
|
## [1.4.9] - 2022-02-20
|
394
347
|
- TAG: [v1.4.9][1.4.9t]
|
395
|
-
- Fixes compatibility with Faraday v2 [572](https://gitlab.com/oauth-xx/oauth2/-/issues/572)
|
396
348
|
- Fixes compatibility with Faraday v2 [572](https://gitlab.com/ruby-oauth/oauth2/-/issues/572)
|
397
349
|
- Includes supported versions of Faraday in test matrix:
|
398
350
|
- Faraday ~> 2.2.0 with Ruby >= 2.6
|
@@ -404,34 +356,24 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
404
356
|
- TAG: [v1.4.8][1.4.8t]
|
405
357
|
- MFA is now required to push new gem versions (@pboling)
|
406
358
|
- README overhaul w/ new Ruby Version and Engine compatibility policies (@pboling)
|
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
359
|
- [!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)
|
409
360
|
- Improve Code Coverage tracking (Coveralls, CodeCov, CodeClimate), and enable branch coverage (@pboling)
|
410
361
|
- Add CodeQL, Security Policy, Funding info (@pboling)
|
411
362
|
- Added Ruby 3.1, jruby, jruby-head, truffleruby, truffleruby-head to build matrix (@pboling)
|
412
|
-
- [!543](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/543) - Support for more modern Open SSL libraries (@pboling)
|
413
363
|
- [!543](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/543) - Support for more modern Open SSL libraries (@pboling)
|
414
364
|
|
415
365
|
## [1.4.7] - 2021-03-19
|
416
366
|
- TAG: [v1.4.7][1.4.7t]
|
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
367
|
- [!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)
|
419
368
|
|
420
369
|
## [1.4.6] - 2021-03-19
|
421
370
|
- TAG: [v1.4.6][1.4.6t]
|
422
|
-
- [!540](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/540) - Add VERSION constant (@pboling)
|
423
|
-
- [!537](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/537) - Fix crash in OAuth2::Client#get_token (@anderscarling)
|
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
371
|
- [!540](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/540) - Add VERSION constant (@pboling)
|
426
372
|
- [!537](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/537) - Fix crash in OAuth2::Client#get_token (@anderscarling)
|
427
373
|
- [!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)
|
428
374
|
|
429
375
|
## [1.4.5] - 2021-03-18
|
430
376
|
- TAG: [v1.4.5][1.4.5t]
|
431
|
-
- [!535](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/535) - Compatibility with range of supported Ruby OpenSSL versions, Rubocop updates, Github Actions, analogous to [!536](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/536) on main branch (@pboling)
|
432
|
-
- [!518](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/518) - Add extract_access_token option to OAuth2::Client (@jonspalmer)
|
433
|
-
- [!507](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/507) - Fix camel case content type, response keys (@anvox)
|
434
|
-
- [!500](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/500) - Fix YARD documentation formatting (@olleolleolle)
|
435
377
|
- [!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
378
|
- [!518](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/518) - Add extract_access_token option to OAuth2::Client (@jonspalmer)
|
437
379
|
- [!507](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/507) - Fix camel case content type, response keys (@anvox)
|
@@ -439,34 +381,22 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
439
381
|
|
440
382
|
## [1.4.4] - 2020-02-12
|
441
383
|
- TAG: [v1.4.4][1.4.4t]
|
442
|
-
- [!408](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/408) - Fixed expires_at for formatted time (@Lomey)
|
443
384
|
- [!408](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/408) - Fixed expires_at for formatted time (@Lomey)
|
444
385
|
|
445
386
|
## [1.4.3] - 2020-01-29
|
446
387
|
- TAG: [v1.4.3][1.4.3t]
|
447
|
-
- [!483](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/483) - add project metadata to gemspec (@orien)
|
448
|
-
- [!495](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/495) - support additional types of access token requests (@SteveyblamFreeagent, @thomcorley, @dgholz)
|
449
388
|
- [!483](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/483) - add project metadata to gemspec (@orien)
|
450
389
|
- [!495](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/495) - support additional types of access token requests (@SteveyblamFreeagent, @thomcorley, @dgholz)
|
451
390
|
- Adds support for private_key_jwt and tls_client_auth
|
452
|
-
- [!433](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/433) - allow field names with square brackets and numbers in params (@asm256)
|
453
391
|
- [!433](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/433) - allow field names with square brackets and numbers in params (@asm256)
|
454
392
|
|
455
393
|
## [1.4.2] - 2019-10-01
|
456
394
|
- TAG: [v1.4.2][1.4.2t]
|
457
|
-
- [!478](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/478) - support latest version of faraday & fix build (@pboling)
|
458
395
|
- [!478](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/478) - support latest version of faraday & fix build (@pboling)
|
459
396
|
- Officially support Ruby 2.6 and truffleruby
|
460
397
|
|
461
398
|
## [1.4.1] - 2018-10-13
|
462
399
|
- TAG: [v1.4.1][1.4.1t]
|
463
|
-
- [!417](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/417) - update jwt dependency (@thewoolleyman)
|
464
|
-
- [!419](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/419) - remove rubocop dependency (temporary, added back in [!423](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/423)) (@pboling)
|
465
|
-
- [!418](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/418) - update faraday dependency (@pboling)
|
466
|
-
- [!420](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/420) - update [oauth2.gemspec](https://gitlab.com/oauth-xx/oauth2/-/blob/1-4-stable/oauth2.gemspec) (@pboling)
|
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)
|
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)
|
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)
|
470
400
|
- [!417](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/417) - update jwt dependency (@thewoolleyman)
|
471
401
|
- [!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
402
|
- [!418](https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/418) - update faraday dependency (@pboling)
|
@@ -600,106 +530,110 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
600
530
|
|
601
531
|
[gemfiles/readme]: gemfiles/README.md
|
602
532
|
|
603
|
-
[Unreleased]: https://
|
604
|
-
[
|
605
|
-
[
|
606
|
-
[
|
607
|
-
[
|
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
|
533
|
+
[Unreleased]: https://github.com/ruby-oauth/oauth2/compare/v2.0.15...HEAD
|
534
|
+
[2.0.15]: https://github.com/ruby-oauth/oauth2/compare/v2.0.14...v2.0.15
|
535
|
+
[2.0.15t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.15
|
536
|
+
[2.0.14]: https://github.com/ruby-oauth/oauth2/compare/v2.0.13...v2.0.14
|
537
|
+
[2.0.14t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.14
|
704
538
|
[2.0.13]: https://github.com/ruby-oauth/oauth2/compare/v2.0.12...v2.0.13
|
705
539
|
[2.0.13t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.13
|
540
|
+
[2.0.12]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.11...v2.0.12
|
541
|
+
[2.0.12t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.12
|
542
|
+
[2.0.11]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.10...v2.0.11
|
543
|
+
[2.0.11t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.11
|
544
|
+
[2.0.10]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.9...v2.0.10
|
545
|
+
[2.0.10t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.10
|
546
|
+
[2.0.9]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.8...v2.0.9
|
547
|
+
[2.0.9t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.9
|
548
|
+
[2.0.8]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.7...v2.0.8
|
549
|
+
[2.0.8t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.8
|
550
|
+
[2.0.7]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.6...v2.0.7
|
551
|
+
[2.0.7t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.7
|
552
|
+
[2.0.6]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.5...v2.0.6
|
553
|
+
[2.0.6t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.6
|
554
|
+
[2.0.5]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.4...v2.0.5
|
555
|
+
[2.0.5t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.5
|
556
|
+
[2.0.4]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.3...v2.0.4
|
557
|
+
[2.0.4t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.4
|
558
|
+
[2.0.3]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.2...v2.0.3
|
559
|
+
[2.0.3t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.3
|
560
|
+
[2.0.2]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.1...v2.0.2
|
561
|
+
[2.0.2t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.2
|
562
|
+
[2.0.1]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.0...v2.0.1
|
563
|
+
[2.0.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.1
|
564
|
+
[2.0.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.11...v2.0.0
|
565
|
+
[2.0.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.0
|
566
|
+
[1.4.11]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.10...v1.4.11
|
567
|
+
[1.4.11t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.11
|
568
|
+
[1.4.10]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.9...v1.4.10
|
569
|
+
[1.4.10t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.10
|
570
|
+
[1.4.9]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.8...v1.4.9
|
571
|
+
[1.4.9t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.9
|
572
|
+
[1.4.8]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.7...v1.4.8
|
573
|
+
[1.4.8t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.8
|
574
|
+
[1.4.7]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.6...v1.4.7
|
575
|
+
[1.4.7t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.7
|
576
|
+
[1.4.6]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.5...v1.4.6
|
577
|
+
[1.4.6t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.6
|
578
|
+
[1.4.5]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.4...v1.4.5
|
579
|
+
[1.4.5t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.5
|
580
|
+
[1.4.4]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.3...v1.4.4
|
581
|
+
[1.4.4t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.4
|
582
|
+
[1.4.3]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.2...v1.4.3
|
583
|
+
[1.4.3t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.3
|
584
|
+
[1.4.2]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.1...v1.4.2
|
585
|
+
[1.4.2t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.2
|
586
|
+
[1.4.1]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.0...v1.4.1
|
587
|
+
[1.4.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.1
|
588
|
+
[1.4.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.3.1...v1.4.0
|
589
|
+
[1.4.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.0
|
590
|
+
[1.3.1]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.3.0...v1.3.1
|
591
|
+
[1.3.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.3.1
|
592
|
+
[1.3.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.2.0...v1.3.0
|
593
|
+
[1.3.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.3.0
|
594
|
+
[1.2.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.1.0...v1.2.0
|
595
|
+
[1.2.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.2.0
|
596
|
+
[1.1.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.0.0...v1.1.0
|
597
|
+
[1.1.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.1.0
|
598
|
+
[1.0.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.9.4...v1.0.0
|
599
|
+
[1.0.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v1.0.0
|
600
|
+
[0.5.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.4.1...v0.5.0
|
601
|
+
[0.5.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.5.0
|
602
|
+
[0.4.1]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.4.0...v0.4.1
|
603
|
+
[0.4.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.4.1
|
604
|
+
[0.4.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.3.0...v0.4.0
|
605
|
+
[0.4.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.4.0
|
606
|
+
[0.3.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.2.0...v0.3.0
|
607
|
+
[0.3.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.3.0
|
608
|
+
[0.2.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.1.1...v0.2.0
|
609
|
+
[0.2.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.2.0
|
610
|
+
[0.1.1]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.1.0...v0.1.1
|
611
|
+
[0.1.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.1.1
|
612
|
+
[0.1.0]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.13...v0.1.0
|
613
|
+
[0.1.0t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.1.0
|
614
|
+
[0.0.13]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.12...v0.0.13
|
615
|
+
[0.0.13t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.13
|
616
|
+
[0.0.12]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.11...v0.0.12
|
617
|
+
[0.0.12t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.12
|
618
|
+
[0.0.11]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.10...v0.0.11
|
619
|
+
[0.0.11t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.11
|
620
|
+
[0.0.10]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.9...v0.0.10
|
621
|
+
[0.0.10t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.10
|
622
|
+
[0.0.9]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.8...v0.0.9
|
623
|
+
[0.0.9t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.9
|
624
|
+
[0.0.8]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.7...v0.0.8
|
625
|
+
[0.0.8t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.8
|
626
|
+
[0.0.7]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.6...v0.0.7
|
627
|
+
[0.0.7t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.7
|
628
|
+
[0.0.6]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.5...v0.0.6
|
629
|
+
[0.0.6t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.6
|
630
|
+
[0.0.5]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.4...v0.0.5
|
631
|
+
[0.0.5t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.5
|
632
|
+
[0.0.4]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.3...v0.0.4
|
633
|
+
[0.0.4t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.4
|
634
|
+
[0.0.3]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.2...v0.0.3
|
635
|
+
[0.0.3t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.3
|
636
|
+
[0.0.2]: https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.1...v0.0.2
|
637
|
+
[0.0.2t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.2
|
638
|
+
[0.0.1]: https://github.com/ruby-oauth/oauth2/compare/311d9f4...v0.0.1
|
639
|
+
[0.0.1t]: https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.1
|