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