oauth2 2.0.9 → 2.0.10
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 +301 -168
- data/CODE_OF_CONDUCT.md +0 -0
- data/CONTRIBUTING.md +126 -31
- data/{LICENSE → LICENSE.txt} +1 -1
- data/README.md +619 -245
- data/SECURITY.md +2 -2
- data/lib/oauth2/access_token.rb +186 -32
- data/lib/oauth2/authenticator.rb +9 -6
- data/lib/oauth2/client.rb +291 -96
- data/lib/oauth2/error.rb +14 -14
- data/lib/oauth2/filtered_attributes.rb +31 -0
- data/lib/oauth2/response.rb +17 -13
- data/lib/oauth2/strategy/assertion.rb +4 -4
- data/lib/oauth2/strategy/auth_code.rb +3 -3
- data/lib/oauth2/strategy/base.rb +0 -0
- data/lib/oauth2/strategy/client_credentials.rb +2 -2
- data/lib/oauth2/strategy/implicit.rb +3 -3
- data/lib/oauth2/strategy/password.rb +6 -4
- data/lib/oauth2/version.rb +1 -1
- data/lib/oauth2.rb +23 -18
- data.tar.gz.sig +0 -0
- metadata +188 -67
- metadata.gz.sig +0 -0
data/CHANGELOG.md
CHANGED
@@ -7,10 +7,60 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
7
7
|
## [Unreleased]
|
8
8
|
### Added
|
9
9
|
### Changed
|
10
|
-
###
|
10
|
+
### Deprecated
|
11
11
|
### Removed
|
12
|
+
### Fixed
|
13
|
+
### Security
|
14
|
+
|
15
|
+
## [2.0.10] - 2025-05-16
|
16
|
+
- TAG: [v2.0.10][2.0.10t]
|
17
|
+
- COVERAGE: 100.00% -- 518/518 lines in 14 files
|
18
|
+
- BRANCH COVERAGE: 100.00% -- 170/170 branches in 14 files
|
19
|
+
- 79.05% documented
|
20
|
+
### Added
|
21
|
+
- [gh!632](https://github.com/oauth-xx/oauth2/pull/632) - Added `funding.yml` (@Aboling0)
|
22
|
+
- [!635](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/635) - Added `.gitlab-ci.yml` (@jessieay)
|
23
|
+
- [#638](https://gitlab.com/oauth-xx/oauth2/-/issues/638) - Documentation of support for **ILO Fundamental Principles of Rights at Work** (@pboling)
|
24
|
+
- [!642](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/642) - 20-year certificate for signing gem releases, expires 2045-04-29 (@pboling)
|
25
|
+
- Gemspec metadata
|
26
|
+
- funding_uri
|
27
|
+
- news_uri
|
28
|
+
- mailing_list_uri
|
29
|
+
- SHA256 and SHA512 Checksums for release
|
30
|
+
- [!643](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/643) - Add `token_name` option (@pboling)
|
31
|
+
- Specify the parameter name that identifies the access token
|
32
|
+
- [!645](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/645) - Add `OAuth2::OAUTH_DEBUG` constant, based on `ENV["OAUTH_DEBUG"] (@pboling)
|
33
|
+
- [!646](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/646) - Add `OAuth2.config.silence_extra_tokens_warning`, default: false (@pboling)
|
34
|
+
- [!647](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/647) - Add IETF RFC 7009 Token Revocation compliant (@pboling)
|
35
|
+
- `OAuth2::Client#revoke_token`
|
36
|
+
- `OAuth2::AccessToken#revoke`
|
37
|
+
- See: https://datatracker.ietf.org/doc/html/rfc7009
|
38
|
+
- [gh!644](https://github.com/oauth-xx/oauth2/pull/644), [gh!645](https://github.com/oauth-xx/oauth2/pull/645) - Added CITATION.cff (@Aboling0)
|
39
|
+
- [!648](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/648) - Improved documentation (@pboling)
|
40
|
+
### Changed
|
41
|
+
- Default value of `OAuth2.config.silence_extra_tokens_warning` was `false`, now `true` (@pboling)
|
42
|
+
- Gem releases are now cryptographically signed, with a 20-year cert (@pboling)
|
43
|
+
- Allow linux distros to build release without signing, as their package managers sign independently
|
44
|
+
- [!647](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/647) - `OAuth2::AccessToken#refresh` now supports block param pass through (@pboling)
|
45
|
+
- [!647](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/647) - `OAuth2.config` is no longer writable (@pboling)
|
46
|
+
- [!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)
|
47
|
+
### Fixed
|
48
|
+
- [#95](https://gitlab.com/oauth-xx/oauth2/-/issues/95) - restoring an access token via `AccessToken#from_hash` (@pboling)
|
49
|
+
- This was a 13 year old bug report. 😘
|
50
|
+
- [#619](https://gitlab.com/oauth-xx/oauth2/-/issues/619) - Internal options (like `snaky`, `raise_errors`, and `parse`) are no longer included in request (@pboling)
|
51
|
+
- [!633](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/633) - Spaces will now be encoded as `%20` instead of `+` (@nov.matake)
|
52
|
+
- [!634](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/634) - `CHANGELOG.md` documentation fix (@skuwa229)
|
53
|
+
- [!638](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/638) - fix `expired?` when `expires_in` is `0` (@disep)
|
54
|
+
- [!639](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/639) - Only instantiate `OAuth2::Error` if `raise_errors` option is `true` (@glytch2)
|
55
|
+
- [#639](https://gitlab.com/oauth-xx/oauth2/-/issues/639) - `AccessToken#to_hash` is now serializable, just a regular Hash (@pboling)
|
56
|
+
- [!640](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/640) - `README.md` documentation fix (@martinezcoder)
|
57
|
+
- [!641](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/641) - Do not include sensitive information in the `inspect` (@manuelvanrijn)
|
58
|
+
- [#641](https://gitlab.com/oauth-xx/oauth2/-/issues/641) - Made default JSON response parser more resilient (@pboling)
|
59
|
+
- [#645](https://gitlab.com/oauth-xx/oauth2/-/issues/645) - Response no longer becomes a snaky hash (@pboling)
|
60
|
+
- [gh!646](https://github.com/oauth-xx/oauth2/pull/646) - Change `require` to `require_relative` (improve performance) (@Aboling0)
|
12
61
|
|
13
62
|
## [2.0.9] - 2022-09-16
|
63
|
+
- TAG: [v2.0.9][2.0.9t]
|
14
64
|
### Added
|
15
65
|
- More specs (@pboling)
|
16
66
|
### Changed
|
@@ -18,27 +68,31 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
18
68
|
- Complete migration to Gitlab, updating all links, and references in VCS-managed files (@pboling)
|
19
69
|
|
20
70
|
## [2.0.8] - 2022-09-01
|
71
|
+
- TAG: [v2.0.8][2.0.8t]
|
21
72
|
### Changed
|
22
73
|
- [!630](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/630) - Extract snaky_hash to external dependency (@pboling)
|
23
74
|
### Added
|
24
75
|
- [!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)
|
25
76
|
|
26
77
|
## [2.0.7] - 2022-08-22
|
78
|
+
- TAG: [v2.0.7][2.0.7t]
|
27
79
|
### Added
|
28
|
-
- [
|
80
|
+
- [!629](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/629) - Allow POST of JSON to get token (@pboling, @terracatta)
|
29
81
|
### Fixed
|
30
|
-
- [
|
82
|
+
- [!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)
|
31
83
|
- Note: This fixes compatibility with `omniauth-oauth2` and AWS
|
32
|
-
- [
|
84
|
+
- [!625](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/625) - Fixes the printed version in the post install message (@hasghari)
|
33
85
|
|
34
86
|
## [2.0.6] - 2022-07-13
|
87
|
+
- TAG: [v2.0.6][2.0.6t]
|
35
88
|
### Fixed
|
36
|
-
- [
|
89
|
+
- [!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)
|
37
90
|
|
38
91
|
## [2.0.5] - 2022-07-07
|
92
|
+
- TAG: [v2.0.5][2.0.5t]
|
39
93
|
### Fixed
|
40
|
-
- [
|
41
|
-
- [
|
94
|
+
- [!620](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/620) - Documentation improvements, to help with upgrading (@swanson)
|
95
|
+
- [!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)
|
42
96
|
- All data in responses is now returned, with the access token removed and set as `token`
|
43
97
|
- `refresh_token` is no longer dropped
|
44
98
|
- **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
|
@@ -46,107 +100,115 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
46
100
|
- There is now 100% test coverage, for lines _and_ branches, and it will stay that way.
|
47
101
|
|
48
102
|
## [2.0.4] - 2022-07-01
|
103
|
+
- TAG: [v2.0.4][2.0.4t]
|
49
104
|
### Fixed
|
50
|
-
- [
|
105
|
+
- [!618](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/618) - In some scenarios the `snaky` option default value was not applied (@pboling)
|
51
106
|
|
52
107
|
## [2.0.3] - 2022-06-28
|
108
|
+
- TAG: [v2.0.3][2.0.3t]
|
53
109
|
### Added
|
54
|
-
- [
|
55
|
-
- [
|
110
|
+
- [!611](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/611) - Proper deprecation warnings for `extract_access_token` argument (@pboling)
|
111
|
+
- [!612](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/612) - Add `snaky: false` option to skip conversion to `OAuth2::SnakyHash` (default: true) (@pboling)
|
56
112
|
### Fixed
|
57
|
-
- [
|
58
|
-
- [
|
113
|
+
- [!608](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/608) - Wrap `Faraday::TimeoutError` in `OAuth2::TimeoutError` (@nbibler)
|
114
|
+
- [!615](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/615) - Fix support for requests with blocks, see `Faraday::Connection#run_request` (@pboling)
|
59
115
|
|
60
116
|
## [2.0.2] - 2022-06-24
|
117
|
+
- TAG: [v2.0.2][2.0.2t]
|
61
118
|
### Fixed
|
62
|
-
- [
|
63
|
-
- [
|
64
|
-
- [
|
119
|
+
- [!604](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/604) - Wrap `Faraday::TimeoutError` in `OAuth2::TimeoutError` (@stanhu)
|
120
|
+
- [!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)
|
121
|
+
- [!607](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/607) - CHANGELOG correction, reference to `OAuth2::ConnectionError` (@zavan)
|
65
122
|
|
66
123
|
## [2.0.1] - 2022-06-22
|
124
|
+
- TAG: [v2.0.1][2.0.1t]
|
67
125
|
### Added
|
68
126
|
- Documentation improvements (@pboling)
|
69
127
|
- Increased test coverage to 99% (@pboling)
|
70
128
|
|
71
129
|
## [2.0.0] - 2022-06-21
|
130
|
+
- TAG: [v2.0.0][2.0.0t]
|
72
131
|
### Added
|
73
|
-
- [
|
74
|
-
- [
|
75
|
-
- [
|
76
|
-
- [
|
77
|
-
- [
|
78
|
-
- [
|
79
|
-
- [
|
80
|
-
- [
|
81
|
-
- [
|
82
|
-
- [
|
83
|
-
- [
|
84
|
-
- [
|
85
|
-
- [
|
86
|
-
- [
|
87
|
-
- [
|
88
|
-
- [
|
89
|
-
- [
|
90
|
-
- [
|
91
|
-
- [
|
92
|
-
- [
|
93
|
-
- [
|
94
|
-
- [
|
95
|
-
- [
|
96
|
-
- [
|
97
|
-
- [
|
98
|
-
- [
|
132
|
+
- [!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)
|
133
|
+
- [!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)
|
134
|
+
- [!220](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/220) - Support IETF rfc7523 JWT Bearer Tokens Draft 04+ (@jhmoore)
|
135
|
+
- [!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)
|
136
|
+
- [!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)
|
137
|
+
- [!346](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/571) - Modern gem structure (@pboling)
|
138
|
+
- [!351](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/351) - Support Jruby 9k (@pboling)
|
139
|
+
- [!362](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/362) - Support SemVer release version scheme (@pboling)
|
140
|
+
- [!363](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/363) - New method `OAuth2::AccessToken#refresh!` same as old `refresh`, with backwards compatibility alias (@pboling)
|
141
|
+
- [!364](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/364) - Support `application/hal+json` format (@pboling)
|
142
|
+
- [!365](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/365) - Support `application/vnd.collection+json` format (@pboling)
|
143
|
+
- [!376](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/376) - _Documentation_: Example / Test for Google 2-legged JWT (@jhmoore)
|
144
|
+
- [!381](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/381) - Spec for extra header params on client credentials (@nikz)
|
145
|
+
- [!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)
|
146
|
+
- [!412](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/412) - Support `application/vdn.api+json` format (from jsonapi.org) (@david-christensen)
|
147
|
+
- [!413](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/413) - _Documentation_: License scan and report (@meganemura)
|
148
|
+
- [!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)
|
149
|
+
- [!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)
|
150
|
+
- [!549](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/549) - Wrap `Faraday::ConnectionFailed` in `OAuth2::ConnectionError` (@nikkypx)
|
151
|
+
- [!550](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/550) - Raise error if location header not present when redirecting (@stanhu)
|
152
|
+
- [!552](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/552) - Add missing `version.rb` require (@ahorek)
|
153
|
+
- [!553](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/553) - Support `application/problem+json` format (@janz93)
|
154
|
+
- [!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)
|
155
|
+
- [!571](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/571) - Support Ruby 3.1 (@pboling)
|
156
|
+
- [!575](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/575) - Support IETF rfc7231, section 7.1.2 - relative location in redirect (@pboling)
|
157
|
+
- [!581](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/581) - _Documentation_: of breaking changes (@pboling)
|
99
158
|
### Changed
|
100
|
-
- [
|
101
|
-
- [
|
102
|
-
- [
|
103
|
-
- [
|
104
|
-
- [
|
105
|
-
- [
|
106
|
-
- [
|
107
|
-
- [
|
108
|
-
- [
|
109
|
-
- [
|
159
|
+
- [!191](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/191) - **BREAKING**: Token is expired if `expired_at` time is `now` (@davestevens)
|
160
|
+
- [!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)
|
161
|
+
- [!317](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/317) - _Dependency_: Upgrade `jwt` to 2.x.x (@travisofthenorth)
|
162
|
+
- [!338](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/338) - _Dependency_: Switch from `Rack::Utils.escape` to `CGI.escape` (@josephpage)
|
163
|
+
- [!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)
|
164
|
+
- [!410](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/410) - **BREAKING**: Removed the ability to call .error from an OAuth2::Response object (@jhmoore)
|
165
|
+
- [!414](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/414) - Use Base64.strict_encode64 instead of custom internal logic (@meganemura)
|
166
|
+
- [!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)
|
167
|
+
- [!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)
|
168
|
+
- [!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)
|
110
169
|
- Original keys will still work as previously, in most scenarios, thanks to `rash_alt` gem.
|
111
|
-
- However, this is a _breaking_ change if you rely on `response.parsed.to_h`, as the keys in the result will be
|
170
|
+
- However, this is a _breaking_ change if you rely on `response.parsed.to_h`, as the keys in the result will be snake case.
|
112
171
|
- As of version 2.0.4 you can turn key transformation off with the `snaky: false` option.
|
113
|
-
- [
|
114
|
-
- [
|
172
|
+
- [!576](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/576) - **BREAKING**: Stop rescuing parsing errors (@pboling)
|
173
|
+
- [!591](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/576) - _DEPRECATION_: `OAuth2::Client` - `:extract_access_token` option is deprecated
|
115
174
|
### Fixed
|
116
|
-
- [
|
117
|
-
- [
|
118
|
-
- [
|
119
|
-
- [
|
120
|
-
- [
|
121
|
-
- [
|
122
|
-
- [
|
123
|
-
- [
|
124
|
-
- [
|
125
|
-
- [
|
126
|
-
- [
|
127
|
-
- [
|
128
|
-
- [
|
129
|
-
- [
|
130
|
-
- [
|
131
|
-
- [
|
132
|
-
- [
|
133
|
-
- [
|
175
|
+
- [!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)
|
176
|
+
- [!294](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/294) - Fix: "Unexpected middleware set" issue with Faraday when `OAUTH_DEBUG=true` (@spectator, @gafrom)
|
177
|
+
- [!300](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/300) - _Documentation_: `Oauth2::Error` - Error codes are strings, not symbols (@NobodysNightmare)
|
178
|
+
- [!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)
|
179
|
+
- [!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)
|
180
|
+
- [!328](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/328) - _Documentation_: Homepage URL is SSL (@amatsuda)
|
181
|
+
- [!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)
|
182
|
+
- [!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)
|
183
|
+
- [!380](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/380) - Fix: Stop attempting to encode non-encodable objects in `Oauth2::Error` (@jhmoore)
|
184
|
+
- [!399](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/399) - Fix: Stop duplicating `redirect_uri` in `get_token` (@markus)
|
185
|
+
- [!410](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/410) - Fix: `SystemStackError` caused by circular reference between Error and Response classes (@jhmoore)
|
186
|
+
- [!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)
|
187
|
+
- [!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)
|
188
|
+
- [!482](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/482) - _Documentation_: Update last of `intridea` links to `oauth-xx` (@pboling)
|
189
|
+
- [!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)
|
190
|
+
- [!595](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/595) - Graceful handling of empty responses from `Client#get_token`, respecting `:raise_errors` config (@stanhu)
|
191
|
+
- [!596](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/596) - Consistency between `AccessToken#refresh` and `Client#get_token` named arguments (@stanhu)
|
192
|
+
- [!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)
|
134
193
|
### Removed
|
135
|
-
- [
|
136
|
-
- [
|
137
|
-
- [
|
138
|
-
- [
|
139
|
-
- [
|
140
|
-
- [
|
194
|
+
- [!341](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/341) - Remove Rdoc & Jeweler related files (@josephpage)
|
195
|
+
- [!342](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/342) - **BREAKING**: Dropped support for Ruby 1.8 (@josephpage)
|
196
|
+
- [!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)
|
197
|
+
- [!566](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/566) - _Dependency_: Removed `wwtd` (@bquorning)
|
198
|
+
- [!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)
|
199
|
+
- [!590](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/590) - _Dependency_: Removed `multi_json` (@stanhu)
|
141
200
|
|
142
201
|
## [1.4.11] - 2022-09-16
|
202
|
+
- TAG: [v1.4.11][1.4.11t]
|
143
203
|
- Complete migration to main branch as default (@pboling)
|
144
204
|
- Complete migration to Gitlab, updating all links, and references in VCS-managed files (@pboling)
|
145
205
|
|
146
206
|
## [1.4.10] - 2022-07-01
|
147
|
-
-
|
207
|
+
- TAG: [v1.4.10][1.4.10t]
|
208
|
+
- FIPS Compatibility [!587](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/587) (@akostadinov)
|
148
209
|
|
149
210
|
## [1.4.9] - 2022-02-20
|
211
|
+
- TAG: [v1.4.9][1.4.9t]
|
150
212
|
- Fixes compatibility with Faraday v2 [572](https://gitlab.com/oauth-xx/oauth2/-/issues/572)
|
151
213
|
- Includes supported versions of Faraday in test matrix:
|
152
214
|
- Faraday ~> 2.2.0 with Ruby >= 2.6
|
@@ -155,49 +217,57 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
155
217
|
- Add Windows and MacOS to test matrix
|
156
218
|
|
157
219
|
## [1.4.8] - 2022-02-18
|
220
|
+
- TAG: [v1.4.8][1.4.8t]
|
158
221
|
- MFA is now required to push new gem versions (@pboling)
|
159
222
|
- README overhaul w/ new Ruby Version and Engine compatibility policies (@pboling)
|
160
|
-
- [
|
223
|
+
- [!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)
|
161
224
|
- Improve Code Coverage tracking (Coveralls, CodeCov, CodeClimate), and enable branch coverage (@pboling)
|
162
225
|
- Add CodeQL, Security Policy, Funding info (@pboling)
|
163
226
|
- Added Ruby 3.1, jruby, jruby-head, truffleruby, truffleruby-head to build matrix (@pboling)
|
164
|
-
- [
|
227
|
+
- [!543](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/543) - Support for more modern Open SSL libraries (@pboling)
|
165
228
|
|
166
229
|
## [1.4.7] - 2021-03-19
|
167
|
-
- [
|
230
|
+
- TAG: [v1.4.7][1.4.7t]
|
231
|
+
- [!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)
|
168
232
|
|
169
233
|
## [1.4.6] - 2021-03-19
|
170
|
-
- [
|
171
|
-
- [
|
172
|
-
- [
|
234
|
+
- TAG: [v1.4.6][1.4.6t]
|
235
|
+
- [!540](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/540) - Add VERSION constant (@pboling)
|
236
|
+
- [!537](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/537) - Fix crash in OAuth2::Client#get_token (@anderscarling)
|
237
|
+
- [!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)
|
173
238
|
|
174
239
|
## [1.4.5] - 2021-03-18
|
175
|
-
- [
|
176
|
-
- [
|
177
|
-
- [
|
178
|
-
- [
|
240
|
+
- TAG: [v1.4.5][1.4.5t]
|
241
|
+
- [!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)
|
242
|
+
- [!518](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/518) - Add extract_access_token option to OAuth2::Client (@jonspalmer)
|
243
|
+
- [!507](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/507) - Fix camel case content type, response keys (@anvox)
|
244
|
+
- [!500](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/500) - Fix YARD documentation formatting (@olleolleolle)
|
179
245
|
|
180
246
|
## [1.4.4] - 2020-02-12
|
181
|
-
- [
|
247
|
+
- TAG: [v1.4.4][1.4.4t]
|
248
|
+
- [!408](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/408) - Fixed expires_at for formatted time (@Lomey)
|
182
249
|
|
183
250
|
## [1.4.3] - 2020-01-29
|
184
|
-
- [
|
185
|
-
- [
|
251
|
+
- TAG: [v1.4.3][1.4.3t]
|
252
|
+
- [!483](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/483) - add project metadata to gemspec (@orien)
|
253
|
+
- [!495](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/495) - support additional types of access token requests (@SteveyblamFreeagent, @thomcorley, @dgholz)
|
186
254
|
- Adds support for private_key_jwt and tls_client_auth
|
187
|
-
- [
|
255
|
+
- [!433](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/433) - allow field names with square brackets and numbers in params (@asm256)
|
188
256
|
|
189
257
|
## [1.4.2] - 2019-10-01
|
190
|
-
- [
|
258
|
+
- TAG: [v1.4.2][1.4.2t]
|
259
|
+
- [!478](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/478) - support latest version of faraday & fix build (@pboling)
|
191
260
|
- Officially support Ruby 2.6 and truffleruby
|
192
261
|
|
193
262
|
## [1.4.1] - 2018-10-13
|
194
|
-
- [
|
195
|
-
- [
|
196
|
-
- [
|
197
|
-
- [
|
198
|
-
- [
|
199
|
-
- [
|
200
|
-
- [
|
263
|
+
- TAG: [v1.4.1][1.4.1t]
|
264
|
+
- [!417](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/417) - update jwt dependency (@thewoolleyman)
|
265
|
+
- [!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)
|
266
|
+
- [!418](https://gitlab.com/oauth-xx/oauth2/-/merge_requests/418) - update faraday dependency (@pboling)
|
267
|
+
- [!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)
|
268
|
+
- [!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)
|
269
|
+
- [!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)
|
270
|
+
- [!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)
|
201
271
|
- officially document supported Rubies
|
202
272
|
* Ruby 1.9.3
|
203
273
|
* Ruby 2.0.0
|
@@ -217,16 +287,17 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
217
287
|
[jruby-9.2]: https://www.jruby.org/2018/05/24/jruby-9-2-0-0.html
|
218
288
|
|
219
289
|
## [1.4.0] - 2017-06-09
|
290
|
+
- TAG: [v1.4.0][1.4.0t]
|
220
291
|
- Drop Ruby 1.8.7 support (@sferik)
|
221
292
|
- Fix some RuboCop offenses (@sferik)
|
222
293
|
- _Dependency_: Remove Yardstick (@sferik)
|
223
294
|
- _Dependency_: Upgrade Faraday to 0.12 (@sferik)
|
224
295
|
|
225
|
-
## [1.3.1] - 2017-03-03
|
296
|
+
## [1.3.1] - 2017-03-03 ([tag][1.3.1t])
|
226
297
|
- Add support for Ruby 2.4.0 (@pschambacher)
|
227
298
|
- _Dependency_: Upgrade Faraday to Faraday 0.11 (@mcfiredrill, @rhymes, @pschambacher)
|
228
299
|
|
229
|
-
## [1.3.0] - 2016-12-28
|
300
|
+
## [1.3.0] - 2016-12-28 ([tag][1.3.0t])
|
230
301
|
- Add support for header-based authentication to the `Client` so it can be used across the library (@bjeanes)
|
231
302
|
- Default to header-based authentication when getting a token from an authorisation code (@maletor)
|
232
303
|
- **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)
|
@@ -235,22 +306,22 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
235
306
|
- Avoid instantiating an `Error` if there is no error to raise (@urkle)
|
236
307
|
- Add support for Faraday 0.10 (@rhymes)
|
237
308
|
|
238
|
-
## [1.2.0] - 2016-07-01
|
309
|
+
## [1.2.0] - 2016-07-01 ([tag][1.2.0t])
|
239
310
|
- Properly handle encoding of error responses (so we don't blow up, for example, when Google's response includes a ∞) (@Motoshi-Nishihira)
|
240
311
|
- Make a copy of the options hash in `AccessToken#from_hash` to avoid accidental mutations (@Linuus)
|
241
312
|
- Use `raise` rather than `fail` to throw exceptions (@sferik)
|
242
313
|
|
243
|
-
## [1.1.0] - 2016-01-30
|
314
|
+
## [1.1.0] - 2016-01-30 ([tag][1.1.0t])
|
244
315
|
- Various refactors (eliminating `Hash#merge!` usage in `AccessToken#refresh!`, use `yield` instead of `#call`, freezing mutable objects in constants, replacing constants with class variables) (@sferik)
|
245
316
|
- Add support for Rack 2, and bump various other dependencies (@sferik)
|
246
317
|
|
247
|
-
## [1.0.0] - 2014-07-09
|
318
|
+
## [1.0.0] - 2014-07-09 ([tag][1.0.0t])
|
248
319
|
### Added
|
249
320
|
- Add an implementation of the MAC token spec.
|
250
321
|
### Fixed
|
251
322
|
- Fix Base64.strict_encode64 incompatibility with Ruby 1.8.7.
|
252
323
|
|
253
|
-
## [0.5.0] - 2011-07-29
|
324
|
+
## [0.5.0] - 2011-07-29 ([tag][0.5.0t])
|
254
325
|
### Changed
|
255
326
|
- *breaking* `oauth_token` renamed to `oauth_bearer`.
|
256
327
|
- *breaking* `authorize_path` Client option renamed to `authorize_url`.
|
@@ -258,78 +329,140 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
258
329
|
- *breaking* `access_token_method` Client option renamed to `token_method`.
|
259
330
|
- *breaking* `web_server` renamed to `auth_code`.
|
260
331
|
|
261
|
-
## [0.4.1] - 2011-04-20
|
332
|
+
## [0.4.1] - 2011-04-20 ([tag][0.4.1t])
|
262
333
|
|
263
|
-
## [0.4.0] - 2011-04-20
|
334
|
+
## [0.4.0] - 2011-04-20 ([tag][0.4.0t])
|
264
335
|
|
265
|
-
## [0.3.0] - 2011-04-08
|
336
|
+
## [0.3.0] - 2011-04-08 ([tag][0.3.0t])
|
266
337
|
|
267
|
-
## [0.2.0] - 2011-04-01
|
338
|
+
## [0.2.0] - 2011-04-01 ([tag][0.2.0t])
|
268
339
|
|
269
|
-
## [0.1.1] - 2011-01-12
|
340
|
+
## [0.1.1] - 2011-01-12 ([tag][0.1.1t])
|
270
341
|
|
271
|
-
## [0.1.0] - 2010-10-13
|
342
|
+
## [0.1.0] - 2010-10-13 ([tag][0.1.0t])
|
272
343
|
|
273
|
-
## [0.0.13]
|
344
|
+
## [0.0.13] - 2010-08-17 ([tag][0.0.13t])
|
274
345
|
|
275
|
-
## [0.0.
|
346
|
+
## [0.0.12] - 2010-08-17 ([tag][0.0.12t])
|
276
347
|
|
277
|
-
## [0.0.
|
348
|
+
## [0.0.11] - 2010-08-17 ([tag][0.0.11t])
|
278
349
|
|
279
|
-
## [0.0.
|
350
|
+
## [0.0.10] - 2010-06-19 ([tag][0.0.10t])
|
280
351
|
|
281
|
-
## [0.0.
|
352
|
+
## [0.0.9] - 2010-06-18 ([tag][0.0.9t])
|
282
353
|
|
283
|
-
## [0.0.
|
354
|
+
## [0.0.8] - 2010-04-27 ([tag][0.0.8t])
|
284
355
|
|
285
|
-
## [0.0.
|
356
|
+
## [0.0.7] - 2010-04-27 ([tag][0.0.7t])
|
357
|
+
|
358
|
+
## [0.0.6] - 2010-04-25 ([tag][0.0.6t])
|
359
|
+
|
360
|
+
## [0.0.5] - 2010-04-23 ([tag][0.0.5t])
|
361
|
+
|
362
|
+
## [0.0.4] - 2010-04-22 ([tag][0.0.4t])
|
363
|
+
|
364
|
+
## [0.0.3] - 2010-04-22 ([tag][0.0.3t])
|
365
|
+
|
366
|
+
## [0.0.2] - 2010-04-22 ([tag][0.0.2t])
|
367
|
+
|
368
|
+
## [0.0.1] - 2010-04-22 ([tag][0.0.1t])
|
286
369
|
|
287
|
-
[0.0.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/311d9f4...v0.0.1
|
288
|
-
[0.0.2]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.1...v0.0.2
|
289
|
-
[0.0.3]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.2...v0.0.3
|
290
|
-
[0.0.4]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.3...v0.0.4
|
291
|
-
[0.0.5]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.4...v0.0.5
|
292
|
-
[0.0.6]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.5...v0.0.6
|
293
|
-
[0.0.7]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.6...v0.0.7
|
294
|
-
[0.0.8]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.7...v0.0.8
|
295
|
-
[0.0.9]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.8...v0.0.9
|
296
|
-
[0.0.10]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.9...v0.0.10
|
297
|
-
[0.0.11]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.10...v0.0.11
|
298
|
-
[0.0.12]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.11...v0.0.12
|
299
|
-
[0.0.13]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.12...v0.0.13
|
300
|
-
[0.1.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.13...v0.1.0
|
301
|
-
[0.1.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.1.0...v0.1.1
|
302
|
-
[0.2.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.1.1...v0.2.0
|
303
|
-
[0.3.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.2.0...v0.3.0
|
304
|
-
[0.4.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.3.0...v0.4.0
|
305
|
-
[0.4.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.4.0...v0.4.1
|
306
|
-
[0.5.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.4.1...v0.5.0
|
307
|
-
[1.0.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.9.4...v1.0.0
|
308
|
-
[1.1.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.0.0...v1.1.0
|
309
|
-
[1.2.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.1.0...v1.2.0
|
310
|
-
[1.3.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.2.0...v1.3.0
|
311
|
-
[1.3.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.3.0...v1.3.1
|
312
|
-
[1.4.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.3.1...v1.4.0
|
313
|
-
[1.4.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.0...v1.4.1
|
314
|
-
[1.4.2]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.1...v1.4.2
|
315
|
-
[1.4.3]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.2...v1.4.3
|
316
|
-
[1.4.4]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.3...v1.4.4
|
317
|
-
[1.4.5]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.4...v1.4.5
|
318
|
-
[1.4.6]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.5...v1.4.6
|
319
|
-
[1.4.7]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.6...v1.4.7
|
320
|
-
[1.4.8]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.7...v1.4.8
|
321
|
-
[1.4.9]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.8...v1.4.9
|
322
|
-
[1.4.10]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.9...v1.4.10
|
323
|
-
[1.4.11]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.10...v1.4.11
|
324
|
-
[2.0.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.11...v2.0.0
|
325
|
-
[2.0.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.0...v2.0.1
|
326
|
-
[2.0.2]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.1...v2.0.2
|
327
|
-
[2.0.3]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.2...v2.0.3
|
328
|
-
[2.0.4]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.3...v2.0.4
|
329
|
-
[2.0.5]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.4...v2.0.5
|
330
|
-
[2.0.6]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.5...v2.0.6
|
331
|
-
[2.0.7]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.6...v2.0.7
|
332
|
-
[2.0.8]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.7...v2.0.8
|
333
|
-
[2.0.9]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.8...v2.0.9
|
334
|
-
[Unreleased]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.9...HEAD
|
335
370
|
[gemfiles/readme]: gemfiles/README.md
|
371
|
+
|
372
|
+
[Unreleased]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.10...HEAD
|
373
|
+
[2.0.10]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.09....v2.0.10
|
374
|
+
[2.0.10t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.10
|
375
|
+
[2.0.9]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.8...v2.0.9
|
376
|
+
[2.0.9t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.9
|
377
|
+
[2.0.8]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.7...v2.0.8
|
378
|
+
[2.0.8t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.8
|
379
|
+
[2.0.7]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.6...v2.0.7
|
380
|
+
[2.0.7t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.7
|
381
|
+
[2.0.6]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.5...v2.0.6
|
382
|
+
[2.0.6t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.6
|
383
|
+
[2.0.5]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.4...v2.0.5
|
384
|
+
[2.0.5t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.5
|
385
|
+
[2.0.4]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.3...v2.0.4
|
386
|
+
[2.0.4t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.4
|
387
|
+
[2.0.3]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.2...v2.0.3
|
388
|
+
[2.0.3t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.3
|
389
|
+
[2.0.2]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.1...v2.0.2
|
390
|
+
[2.0.2t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.2
|
391
|
+
[2.0.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v2.0.0...v2.0.1
|
392
|
+
[2.0.1t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.1
|
393
|
+
[2.0.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.11...v2.0.0
|
394
|
+
[2.0.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v2.0.0
|
395
|
+
[1.4.11]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.10...v1.4.11
|
396
|
+
[1.4.11t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.11
|
397
|
+
[1.4.10]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.9...v1.4.10
|
398
|
+
[1.4.10t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.10
|
399
|
+
[1.4.9]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.8...v1.4.9
|
400
|
+
[1.4.9t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.9
|
401
|
+
[1.4.8]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.7...v1.4.8
|
402
|
+
[1.4.8t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.8
|
403
|
+
[1.4.7]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.6...v1.4.7
|
404
|
+
[1.4.7t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.7
|
405
|
+
[1.4.6]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.5...v1.4.6
|
406
|
+
[1.4.6t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.6
|
407
|
+
[1.4.5]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.4...v1.4.5
|
408
|
+
[1.4.5t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.5
|
409
|
+
[1.4.4]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.3...v1.4.4
|
410
|
+
[1.4.4t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.4
|
411
|
+
[1.4.3]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.2...v1.4.3
|
412
|
+
[1.4.3t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.3
|
413
|
+
[1.4.2]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.1...v1.4.2
|
414
|
+
[1.4.2t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.2
|
415
|
+
[1.4.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.4.0...v1.4.1
|
416
|
+
[1.4.1t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.1
|
417
|
+
[1.4.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.3.1...v1.4.0
|
418
|
+
[1.4.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.4.0
|
419
|
+
[1.3.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.3.0...v1.3.1
|
420
|
+
[1.3.1t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.3.1
|
421
|
+
[1.3.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.2.0...v1.3.0
|
422
|
+
[1.3.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.3.0
|
423
|
+
[1.2.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.1.0...v1.2.0
|
424
|
+
[1.2.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.2.0
|
425
|
+
[1.1.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v1.0.0...v1.1.0
|
426
|
+
[1.1.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.1.0
|
427
|
+
[1.0.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.9.4...v1.0.0
|
428
|
+
[1.0.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.0.0
|
429
|
+
[0.5.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.4.1...v0.5.0
|
430
|
+
[0.5.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.5.0
|
431
|
+
[0.4.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.4.0...v0.4.1
|
432
|
+
[0.4.1t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.4.1
|
433
|
+
[0.4.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.3.0...v0.4.0
|
434
|
+
[0.4.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.4.0
|
435
|
+
[0.3.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.2.0...v0.3.0
|
436
|
+
[0.3.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.3.0
|
437
|
+
[0.2.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.1.1...v0.2.0
|
438
|
+
[0.2.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.2.0
|
439
|
+
[0.1.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.1.0...v0.1.1
|
440
|
+
[0.1.1t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.1.1
|
441
|
+
[0.1.0]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.13...v0.1.0
|
442
|
+
[0.1.0t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.1.0
|
443
|
+
[0.0.13]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.12...v0.0.13
|
444
|
+
[0.0.13t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.13
|
445
|
+
[0.0.12]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.11...v0.0.12
|
446
|
+
[0.0.12t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.12
|
447
|
+
[0.0.11]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.10...v0.0.11
|
448
|
+
[0.0.11t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.11
|
449
|
+
[0.0.10]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.9...v0.0.10
|
450
|
+
[0.0.10t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.10
|
451
|
+
[0.0.9]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.8...v0.0.9
|
452
|
+
[0.0.9t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.9
|
453
|
+
[0.0.8]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.7...v0.0.8
|
454
|
+
[0.0.8t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.8
|
455
|
+
[0.0.7]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.6...v0.0.7
|
456
|
+
[0.0.7t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.7
|
457
|
+
[0.0.6]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.5...v0.0.6
|
458
|
+
[0.0.6t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.6
|
459
|
+
[0.0.5]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.4...v0.0.5
|
460
|
+
[0.0.5t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.5
|
461
|
+
[0.0.4]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.3...v0.0.4
|
462
|
+
[0.0.4t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.4
|
463
|
+
[0.0.3]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.2...v0.0.3
|
464
|
+
[0.0.3t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.3
|
465
|
+
[0.0.2]: https://gitlab.com/oauth-xx/oauth2/-/compare/v0.0.1...v0.0.2
|
466
|
+
[0.0.2t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.2
|
467
|
+
[0.0.1]: https://gitlab.com/oauth-xx/oauth2/-/compare/311d9f4...v0.0.1
|
468
|
+
[0.0.1t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v0.0.1
|