oauth2 1.4.1 → 1.4.6
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
- data/.github/dependabot.yml +8 -0
- data/.github/workflows/style.yml +37 -0
- data/.github/workflows/test.yml +58 -0
- data/.gitignore +7 -0
- data/.rspec +2 -0
- data/.rubocop.yml +41 -9
- data/.rubocop_todo.yml +108 -10
- data/.ruby-version +1 -0
- data/.travis.yml +47 -21
- data/CHANGELOG.md +37 -10
- data/CODE_OF_CONDUCT.md +105 -46
- data/Gemfile +36 -16
- data/README.md +45 -14
- data/Rakefile +1 -1
- data/gemfiles/jruby_1.7.gemfile +6 -6
- data/gemfiles/jruby_9.0.gemfile +2 -8
- data/gemfiles/jruby_9.1.gemfile +0 -14
- data/gemfiles/jruby_9.2.gemfile +0 -14
- data/gemfiles/jruby_head.gemfile +0 -14
- data/gemfiles/ruby_1.9.gemfile +2 -7
- data/gemfiles/ruby_2.0.gemfile +1 -12
- data/gemfiles/ruby_head.gemfile +2 -10
- data/gemfiles/truffleruby.gemfile +3 -0
- data/lib/oauth2/access_token.rb +14 -4
- data/lib/oauth2/authenticator.rb +10 -0
- data/lib/oauth2/client.rb +63 -16
- data/lib/oauth2/mac_token.rb +10 -2
- data/lib/oauth2/response.rb +5 -3
- data/lib/oauth2/strategy/assertion.rb +3 -3
- data/lib/oauth2/strategy/password.rb +2 -2
- data/lib/oauth2/version.rb +8 -6
- data/maintenance-branch +1 -0
- data/oauth2.gemspec +15 -3
- metadata +78 -28
- data/gemfiles/jruby_1.7.gemfile.lock +0 -81
- data/gemfiles/jruby_9.1.gemfile.lock +0 -112
- data/gemfiles/jruby_9.2.gemfile.lock +0 -112
- data/gemfiles/ruby_1.9.gemfile.lock +0 -85
- data/gemfiles/ruby_2.0.gemfile.lock +0 -90
- data/gemfiles/ruby_2.1.gemfile +0 -19
- data/gemfiles/ruby_2.1.gemfile.lock +0 -109
- data/gemfiles/ruby_2.2.gemfile +0 -17
- data/gemfiles/ruby_2.2.gemfile.lock +0 -108
- data/gemfiles/ruby_2.3.gemfile +0 -17
- data/gemfiles/ruby_2.3.gemfile.lock +0 -108
- data/gemfiles/ruby_2.4.gemfile +0 -17
- data/gemfiles/ruby_2.4.gemfile.lock +0 -108
- data/gemfiles/ruby_2.5.gemfile +0 -17
- data/gemfiles/ruby_2.5.gemfile.lock +0 -108
- data/gemfiles/ruby_head.gemfile.lock +0 -108
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7912a62b5b26c6c8cdedaf620194ef0d2a0adbd92307da9fe29b77d88c984b34
|
4
|
+
data.tar.gz: 83bd964f93de41cd8ede2e8fdcf9aa037ff5d779ba7d922589d5cb666fe8c1c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b18270faea191ac365fc6c63e350bd94a4180d1d64966c2eb6f59c2fd3131e7175df62e8179dba257661447fa7ec4d222ba166ee5ddab9fec4b29340629ed81
|
7
|
+
data.tar.gz: 8bf6ed52a51b03aba99af5ea24c63a13a6f548708ac05e88f4c19a6813211d01bacc1f60b0505ad7bba1e21425b6ff7817dee2cf1424605eed27b1aaf76e86eb
|
@@ -0,0 +1,37 @@
|
|
1
|
+
name: Code Style Checks
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- 'main'
|
7
|
+
- 'master'
|
8
|
+
- '*-maintenance'
|
9
|
+
- '*-dev'
|
10
|
+
tags:
|
11
|
+
- '!*' # Do not execute on tags
|
12
|
+
pull_request:
|
13
|
+
branches:
|
14
|
+
- '*'
|
15
|
+
|
16
|
+
jobs:
|
17
|
+
rubocop:
|
18
|
+
name: Rubocop
|
19
|
+
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')"
|
20
|
+
strategy:
|
21
|
+
fail-fast: false
|
22
|
+
matrix:
|
23
|
+
ruby:
|
24
|
+
- 2.7
|
25
|
+
runs-on: ubuntu-20.04
|
26
|
+
steps:
|
27
|
+
- name: Checkout
|
28
|
+
uses: actions/checkout@v2
|
29
|
+
- name: Setup Ruby
|
30
|
+
uses: ruby/setup-ruby@v1
|
31
|
+
with:
|
32
|
+
ruby-version: ${{ matrix.ruby }}
|
33
|
+
bundler-cache: true
|
34
|
+
- name: Install dependencies
|
35
|
+
run: bundle install --jobs 3 --retry 3
|
36
|
+
- name: Run Rubocop
|
37
|
+
run: bundle exec rubocop -DESP
|
@@ -0,0 +1,58 @@
|
|
1
|
+
name: Unit Tests
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- 'main'
|
7
|
+
- 'master'
|
8
|
+
- '*-maintenance'
|
9
|
+
- '*-dev'
|
10
|
+
tags:
|
11
|
+
- '!*' # Do not execute on tags
|
12
|
+
pull_request:
|
13
|
+
branches:
|
14
|
+
- '*'
|
15
|
+
|
16
|
+
jobs:
|
17
|
+
test:
|
18
|
+
name: Specs - Ruby ${{ matrix.ruby }} ${{ matrix.name_extra || '' }}
|
19
|
+
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')"
|
20
|
+
strategy:
|
21
|
+
fail-fast: false
|
22
|
+
matrix:
|
23
|
+
ruby:
|
24
|
+
- 3.0.0
|
25
|
+
- 2.7
|
26
|
+
- 2.6
|
27
|
+
- 2.5
|
28
|
+
- 2.4
|
29
|
+
- 2.3
|
30
|
+
- 2.2
|
31
|
+
- 2.1
|
32
|
+
runs-on: ubuntu-20.04
|
33
|
+
continue-on-error: ${{ matrix.allow_failure || endsWith(matrix.ruby, 'head') }}
|
34
|
+
steps:
|
35
|
+
- uses: amancevice/setup-code-climate@v0
|
36
|
+
name: CodeClimate Install
|
37
|
+
if: matrix.ruby == '2.7' && github.event_name != 'pull_request'
|
38
|
+
with:
|
39
|
+
cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
40
|
+
- uses: actions/checkout@v2
|
41
|
+
- name: Setup Ruby
|
42
|
+
uses: ruby/setup-ruby@v1
|
43
|
+
with:
|
44
|
+
bundler: ${{ matrix.bundler || 2 }}
|
45
|
+
bundler-cache: true
|
46
|
+
ruby-version: ${{ matrix.ruby }}
|
47
|
+
- name: Install dependencies
|
48
|
+
run: bundle install --jobs 3 --retry 3 --binstubs --standalone
|
49
|
+
- name: CodeClimate Pre-build Notification
|
50
|
+
run: cc-test-reporter before-build
|
51
|
+
if: matrix.ruby == '2.7' && github.event_name != 'pull_request'
|
52
|
+
continue-on-error: ${{ matrix.allow_failures != 'false' }}
|
53
|
+
- name: Run tests
|
54
|
+
run: bundle exec rake test
|
55
|
+
- name: CodeClimate Post-build Notification
|
56
|
+
run: cc-test-reporter after-build
|
57
|
+
if: matrix.ruby == '2.7' && github.event_name != 'pull_request' && always()
|
58
|
+
continue-on-error: ${{ matrix.allow_failures != 'false' }}
|
data/.gitignore
CHANGED
data/.rspec
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,30 +1,42 @@
|
|
1
|
-
require: rubocop-rspec
|
2
1
|
inherit_from:
|
3
2
|
- .rubocop_todo.yml
|
4
3
|
- .rubocop_rspec.yml
|
4
|
+
|
5
|
+
require:
|
6
|
+
- 'rubocop-md'
|
7
|
+
- 'rubocop-packaging'
|
8
|
+
- 'rubocop-performance'
|
9
|
+
- 'rubocop-rake'
|
10
|
+
- 'rubocop-rspec'
|
11
|
+
|
5
12
|
AllCops:
|
13
|
+
NewCops: enable
|
6
14
|
DisplayCopNames: true # Display the name of the failing cops
|
7
|
-
TargetRubyVersion: 2.1
|
8
15
|
Exclude:
|
9
16
|
- 'gemfiles/vendor/**/*'
|
10
17
|
- 'vendor/**/*'
|
11
18
|
- '**/.irbrc'
|
12
19
|
|
13
|
-
Gemspec/RequiredRubyVersion:
|
14
|
-
Enabled: false
|
15
|
-
|
16
20
|
Metrics/BlockLength:
|
21
|
+
IgnoredMethods:
|
22
|
+
- context
|
23
|
+
- describe
|
24
|
+
- it
|
25
|
+
- shared_context
|
26
|
+
- shared_examples
|
27
|
+
- shared_examples_for
|
28
|
+
- namespace
|
29
|
+
- draw
|
30
|
+
|
31
|
+
Gemspec/RequiredRubyVersion:
|
17
32
|
Enabled: false
|
18
33
|
|
19
34
|
Metrics/BlockNesting:
|
20
35
|
Max: 2
|
21
36
|
|
22
|
-
|
37
|
+
Layout/LineLength:
|
23
38
|
Enabled: false
|
24
39
|
|
25
|
-
Metrics/MethodLength:
|
26
|
-
Max: 15
|
27
|
-
|
28
40
|
Metrics/ParameterLists:
|
29
41
|
Max: 4
|
30
42
|
|
@@ -78,3 +90,23 @@ Style/TrailingCommaInArrayLiteral:
|
|
78
90
|
|
79
91
|
Style/TrailingCommaInHashLiteral:
|
80
92
|
EnforcedStyleForMultiline: comma
|
93
|
+
|
94
|
+
Style/HashSyntax:
|
95
|
+
EnforcedStyle: hash_rockets
|
96
|
+
|
97
|
+
Style/Lambda:
|
98
|
+
Enabled: false
|
99
|
+
|
100
|
+
Style/SymbolArray:
|
101
|
+
Enabled: false
|
102
|
+
|
103
|
+
Style/EachWithObject:
|
104
|
+
Enabled: false
|
105
|
+
|
106
|
+
# Once we drop Rubies that lack support for __dir__ we can turn this on.
|
107
|
+
Style/ExpandPathArguments:
|
108
|
+
Enabled: false
|
109
|
+
|
110
|
+
# On Ruby 1.9 array.to_h isn't available, needs to be Hash[array]
|
111
|
+
Style/HashConversion:
|
112
|
+
Enabled: false
|
data/.rubocop_todo.yml
CHANGED
@@ -1,15 +1,113 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2021-03-18 18:59:52 UTC using RuboCop version 1.11.0.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
3
8
|
|
4
|
-
|
5
|
-
|
9
|
+
# Offense count: 1
|
10
|
+
# Configuration parameters: AllowedMethods.
|
11
|
+
# AllowedMethods: enums
|
12
|
+
Lint/ConstantDefinitionInBlock:
|
13
|
+
Exclude:
|
14
|
+
- 'spec/oauth2/client_spec.rb'
|
6
15
|
|
7
|
-
|
8
|
-
|
16
|
+
# Offense count: 1
|
17
|
+
Lint/UselessAssignment:
|
18
|
+
Exclude:
|
19
|
+
- '**/*.md'
|
20
|
+
- '**/*.markdown'
|
21
|
+
- 'spec/oauth2/client_spec.rb'
|
9
22
|
|
10
|
-
|
11
|
-
|
23
|
+
# Offense count: 1
|
24
|
+
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
25
|
+
# IgnoredMethods: refine
|
26
|
+
Metrics/BlockLength:
|
27
|
+
Max: 27
|
28
|
+
|
29
|
+
# Offense count: 4
|
30
|
+
# Configuration parameters: IgnoredMethods.
|
31
|
+
Metrics/CyclomaticComplexity:
|
32
|
+
Max: 11
|
33
|
+
|
34
|
+
# Offense count: 1
|
35
|
+
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
36
|
+
Metrics/MethodLength:
|
37
|
+
Max: 18
|
38
|
+
|
39
|
+
# Offense count: 3
|
40
|
+
# Configuration parameters: IgnoredMethods.
|
41
|
+
Metrics/PerceivedComplexity:
|
42
|
+
Max: 11
|
43
|
+
|
44
|
+
# Offense count: 14
|
45
|
+
# Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers.
|
46
|
+
# SupportedStyles: snake_case, normalcase, non_integer
|
47
|
+
# AllowedIdentifiers: capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339
|
48
|
+
Naming/VariableNumber:
|
49
|
+
Exclude:
|
50
|
+
- 'Gemfile'
|
51
|
+
|
52
|
+
# Offense count: 1
|
53
|
+
Packaging/GemspecGit:
|
54
|
+
Exclude:
|
55
|
+
- 'oauth2.gemspec'
|
12
56
|
|
13
|
-
#
|
14
|
-
|
57
|
+
# Offense count: 2
|
58
|
+
# Configuration parameters: MinSize.
|
59
|
+
Performance/CollectionLiteralInLoop:
|
60
|
+
Exclude:
|
61
|
+
- 'spec/oauth2/strategy/auth_code_spec.rb'
|
62
|
+
- 'spec/oauth2/strategy/client_credentials_spec.rb'
|
63
|
+
|
64
|
+
# Offense count: 7
|
65
|
+
# Configuration parameters: Prefixes.
|
66
|
+
# Prefixes: when, with, without
|
67
|
+
RSpec/ContextWording:
|
68
|
+
Exclude:
|
69
|
+
- 'spec/oauth2/access_token_spec.rb'
|
70
|
+
- 'spec/oauth2/authenticator_spec.rb'
|
71
|
+
- 'spec/oauth2/client_spec.rb'
|
72
|
+
|
73
|
+
# Offense count: 1
|
74
|
+
RSpec/LeakyConstantDeclaration:
|
75
|
+
Exclude:
|
76
|
+
- 'spec/oauth2/client_spec.rb'
|
77
|
+
|
78
|
+
# Offense count: 8
|
79
|
+
# Configuration parameters: AllowSubject.
|
80
|
+
RSpec/MultipleMemoizedHelpers:
|
81
|
+
Max: 6
|
82
|
+
|
83
|
+
# Offense count: 1
|
84
|
+
Rake/Desc:
|
85
|
+
Exclude:
|
86
|
+
- 'Rakefile'
|
87
|
+
|
88
|
+
# Offense count: 40
|
89
|
+
# Cop supports --auto-correct.
|
90
|
+
# Configuration parameters: EnforcedStyle.
|
91
|
+
# SupportedStyles: always, always_true, never
|
92
|
+
Style/FrozenStringLiteralComment:
|
15
93
|
Enabled: false
|
94
|
+
|
95
|
+
# Offense count: 1
|
96
|
+
Style/MixinUsage:
|
97
|
+
Exclude:
|
98
|
+
- 'spec/helper.rb'
|
99
|
+
|
100
|
+
# Offense count: 1
|
101
|
+
# Cop supports --auto-correct.
|
102
|
+
# Configuration parameters: ConvertCodeThatCanStartToReturnNil, AllowedMethods.
|
103
|
+
# AllowedMethods: present?, blank?, presence, try, try!
|
104
|
+
Style/SafeNavigation:
|
105
|
+
Exclude:
|
106
|
+
- 'lib/oauth2/error.rb'
|
107
|
+
|
108
|
+
# Offense count: 3
|
109
|
+
# Cop supports --auto-correct.
|
110
|
+
Style/StringConcatenation:
|
111
|
+
Exclude:
|
112
|
+
- 'lib/oauth2/authenticator.rb'
|
113
|
+
- 'spec/oauth2/authenticator_spec.rb'
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.7.0
|
data/.travis.yml
CHANGED
@@ -1,49 +1,75 @@
|
|
1
1
|
before_install:
|
2
|
-
|
3
|
-
-
|
2
|
+
# rubygems 2.7.8 and greater include bundler
|
3
|
+
# - Ruby 2.2, and under, get RubyGems ~> 2.7.10, (includes bundler 1.17.3)
|
4
|
+
# - Anything else, including Ruby 2.3, and above, gets RubyGems ~> 3, and update bundler to latest
|
5
|
+
# - NOTE ON JRUBY: identifies as RUBY_VERSION ~> 1.9, 2.0, 2.3, or 2.5.
|
6
|
+
# - NOTE ON TRUFFLERUBY: identifies as RUBY_VERSION ~> 2.6
|
7
|
+
- |
|
8
|
+
rv="$(ruby -e 'STDOUT.write RUBY_VERSION')"
|
9
|
+
echo "Discovered Ruby Version of =====> $rv"
|
10
|
+
if [ "$rv" \< "2.3" ]; then
|
11
|
+
gem update --system 2.7.10
|
12
|
+
elif [ "$rv" \< "2.4" ]; then
|
13
|
+
gem update --system 2.7.10 --no-document
|
14
|
+
elif [ "$rv" = "2.5.3" ]; then
|
15
|
+
# JRUBY 9.2 Identifies as 2.5.3, and it fails to update rubygems
|
16
|
+
gem install --no-document bundler "bundler:>=2.0"
|
17
|
+
else
|
18
|
+
gem update --system --no-document --conservative
|
19
|
+
gem install --no-document bundler "bundler:>=2.0"
|
20
|
+
fi
|
21
|
+
|
22
|
+
before_script:
|
23
|
+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
24
|
+
- chmod +x ./cc-test-reporter
|
25
|
+
- ./cc-test-reporter before-build
|
26
|
+
|
27
|
+
after_script:
|
28
|
+
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
4
29
|
|
5
30
|
bundler_args: --no-deployment --jobs 3 --retry 3
|
6
31
|
|
7
32
|
cache: bundler
|
8
33
|
|
34
|
+
env:
|
35
|
+
global:
|
36
|
+
- JRUBY_OPTS="$JRUBY_OPTS -Xcli.debug=true --debug"
|
37
|
+
- CC_TEST_REPORTER_ID=29caf9cf27d27ae609c088feb9d4ba34460f7a39251f2e8615c9a16f3075530e
|
38
|
+
|
9
39
|
language: ruby
|
10
40
|
|
11
41
|
matrix:
|
12
42
|
allow_failures:
|
13
43
|
- rvm: jruby-head
|
14
44
|
- rvm: ruby-head
|
15
|
-
- rvm:
|
45
|
+
- rvm: truffleruby
|
46
|
+
- rvm: jruby-9.0
|
47
|
+
- rvm: jruby-9.1 # jruby-9.1 often fails to download, thus failing the build.
|
48
|
+
- rvm: jruby-9.2 # jruby-9.2 often fails to download, thus failing the build.
|
16
49
|
fast_finish: true
|
17
50
|
include:
|
18
|
-
- rvm: jruby-1.7
|
19
|
-
gemfile: gemfiles/jruby_1.7.gemfile
|
20
|
-
- rvm: 1.9
|
51
|
+
# - rvm: jruby-1.7 # targets MRI v1.9
|
52
|
+
# gemfile: gemfiles/jruby_1.7.gemfile
|
53
|
+
- rvm: 1.9
|
21
54
|
gemfile: gemfiles/ruby_1.9.gemfile
|
22
|
-
- rvm: 2.0
|
55
|
+
- rvm: 2.0
|
23
56
|
gemfile: gemfiles/ruby_2.0.gemfile
|
24
|
-
- rvm:
|
25
|
-
gemfile: gemfiles/ruby_2.1.gemfile
|
26
|
-
- rvm: jruby-9.0.5.0 # targets MRI v2.0
|
57
|
+
- rvm: jruby-9.0 # targets MRI v2.0
|
27
58
|
gemfile: gemfiles/jruby_9.0.gemfile
|
28
59
|
# DEPRECATION WARNING
|
60
|
+
# NOTE: Specs for Ruby 2.1 are now running with Github Actions
|
29
61
|
# oauth2 1.x series releases are the last to support Ruby versions above
|
30
62
|
# oauth2 2.x series releases will support Ruby versions below, and not above
|
31
|
-
|
63
|
+
# NOTE: Specs for Ruby 2.2, 2.3, 2.4, 2.5, 2.6, 2.7 & 3.0 are now running with Github Actions
|
64
|
+
- rvm: jruby-9.1 # targets MRI v2.3
|
32
65
|
gemfile: gemfiles/jruby_9.1.gemfile
|
33
|
-
- rvm:
|
34
|
-
gemfile: gemfiles/ruby_2.2.gemfile
|
35
|
-
- rvm: 2.3.7
|
36
|
-
gemfile: gemfiles/ruby_2.3.gemfile
|
37
|
-
- rvm: 2.4.4
|
38
|
-
gemfile: gemfiles/ruby_2.4.gemfile
|
39
|
-
- rvm: jruby-9.2.0.0 # targets MRI v2.5
|
66
|
+
- rvm: jruby-9.2 # targets MRI v2.5
|
40
67
|
gemfile: gemfiles/jruby_9.2.gemfile
|
41
|
-
- rvm: 2.5.1
|
42
|
-
gemfile: gemfiles/ruby_2.5.gemfile
|
43
68
|
- rvm: jruby-head
|
44
69
|
gemfile: gemfiles/jruby_head.gemfile
|
45
70
|
- rvm: ruby-head
|
46
71
|
gemfile: gemfiles/ruby_head.gemfile
|
47
|
-
- rvm:
|
72
|
+
- rvm: truffleruby
|
73
|
+
gemfile: gemfiles/truffleruby.gemfile
|
48
74
|
|
49
75
|
sudo: false
|
data/CHANGELOG.md
CHANGED
@@ -1,19 +1,44 @@
|
|
1
1
|
# Change Log
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
-
##
|
4
|
+
## unreleased
|
5
5
|
|
6
|
-
|
6
|
+
## [1.4.6] - 2021-03-18
|
7
|
+
|
8
|
+
|
9
|
+
- [#537](https://github.com/oauth-xx/oauth2/pull/537) - Fix crash in OAuth2::Client#get_token (@anderscarling)
|
10
|
+
- [#538](https://github.com/oauth-xx/oauth2/pull/538) - Remove reliance on globally included OAuth2 in tests for version 1.4 (@anderscarling)
|
11
|
+
|
12
|
+
## [1.4.5] - 2021-03-18
|
13
|
+
|
14
|
+
- [#535](https://github.com/oauth-xx/oauth2/pull/535) - Compatibility with range of supported Ruby OpenSSL versions, Rubocop updates, Github Actions (@pboling)
|
15
|
+
- [#518](https://github.com/oauth-xx/oauth2/pull/518) - Add extract_access_token option to OAuth2::Client (@jonspalmer)
|
16
|
+
|
17
|
+
## [1.4.4] - 2020-02-12
|
18
|
+
|
19
|
+
- [#408](https://github.com/oauth-xx/oauth2/pull/408) - Fixed expires_at for formatted time (@Lomey)
|
20
|
+
|
21
|
+
## [1.4.3] - 2020-01-29
|
22
|
+
|
23
|
+
- [#483](https://github.com/oauth-xx/oauth2/pull/483) - add project metadata to gemspec (@orien)
|
24
|
+
- [#495](https://github.com/oauth-xx/oauth2/pull/495) - support additional types of access token requests (@SteveyblamFreeagent, @thomcorley, @dgholz)
|
25
|
+
- Adds support for private_key_jwt and tls_client_auth
|
26
|
+
- [#433](https://github.com/oauth-xx/oauth2/pull/433) - allow field names with square brackets and numbers in params (@asm256)
|
27
|
+
|
28
|
+
## [1.4.2] - 2019-10-01
|
29
|
+
|
30
|
+
- [#478](https://github.com/oauth-xx/oauth2/pull/478) - support latest version of faraday & fix build (@pboling)
|
31
|
+
- officially support Ruby 2.6 and truffleruby
|
7
32
|
|
8
33
|
## [1.4.1] - 2018-10-13
|
9
34
|
|
10
|
-
- [#417](oauth-xx/oauth2
|
11
|
-
- [#
|
12
|
-
- [#
|
13
|
-
- [#420](oauth-xx/oauth2
|
14
|
-
- [#421](oauth-xx/oauth2
|
15
|
-
- [#422](oauth-xx/oauth2
|
16
|
-
- [#423](oauth-xx/oauth2
|
35
|
+
- [#417](https://github.com/oauth-xx/oauth2/pull/417) - update jwt dependency (@thewoolleyman)
|
36
|
+
- [#419](https://github.com/oauth-xx/oauth2/pull/419) - remove rubocop dependency (temporary, added back in [#423](https://github.com/oauth-xx/oauth2/pull/423)) (@pboling)
|
37
|
+
- [#418](https://github.com/oauth-xx/oauth2/pull/418) - update faraday dependency (@pboling)
|
38
|
+
- [#420](https://github.com/oauth-xx/oauth2/pull/420) - update [oauth2.gemspec](https://github.com/oauth-xx/oauth2/blob/1-4-stable/oauth2.gemspec) (@pboling)
|
39
|
+
- [#421](https://github.com/oauth-xx/oauth2/pull/421) - fix [CHANGELOG.md](https://github.com/oauth-xx/oauth2/blob/1-4-stable/CHANGELOG.md) for previous releases (@pboling)
|
40
|
+
- [#422](https://github.com/oauth-xx/oauth2/pull/422) - update [LICENSE](https://github.com/oauth-xx/oauth2/blob/1-4-stable/LICENSE) and [README.md](https://github.com/oauth-xx/oauth2/blob/1-4-stable/README.md) (@pboling)
|
41
|
+
- [#423](https://github.com/oauth-xx/oauth2/pull/423) - update [builds](https://travis-ci.org/oauth-xx/oauth2/builds), [Rakefile](https://github.com/oauth-xx/oauth2/blob/1-4-stable/Rakefile) (@pboling)
|
17
42
|
- officially document supported Rubies
|
18
43
|
* Ruby 1.9.3
|
19
44
|
* Ruby 2.0.0
|
@@ -136,4 +161,6 @@ All notable changes to this project will be documented in this file.
|
|
136
161
|
[1.3.1]: https://github.com/oauth-xx/oauth2/compare/v1.3.0...v1.3.1
|
137
162
|
[1.4.0]: https://github.com/oauth-xx/oauth2/compare/v1.3.1...v1.4.0
|
138
163
|
[1.4.1]: https://github.com/oauth-xx/oauth2/compare/v1.4.0...v1.4.1
|
139
|
-
[
|
164
|
+
[1.4.2]: https://github.com/oauth-xx/oauth2/compare/v1.4.1...v1.4.2
|
165
|
+
[1.4.3]: https://github.com/oauth-xx/oauth2/compare/v1.4.2...v1.4.3
|
166
|
+
[unreleased]: https://github.com/oauth-xx/oauth2/compare/v1.4.1...HEAD
|