grape-jwt-authentication 2.8.1 → 3.0.0
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/workflows/release.yml +3 -3
- data/.github/workflows/test.yml +3 -3
- data/.rubocop.yml +1 -1
- data/Appraisals +12 -6
- data/CHANGELOG.md +5 -0
- data/Dockerfile +3 -3
- data/Gemfile +3 -3
- data/Makefile +1 -1
- data/docker-compose.yml +0 -1
- data/gemfiles/rails_7.1.gemfile +3 -3
- data/gemfiles/rails_7.2.gemfile +27 -0
- data/gemfiles/rails_8.0.gemfile +27 -0
- data/grape-jwt-authentication.gemspec +3 -3
- data/lib/grape/jwt/authentication/jwt_handler.rb +1 -1
- data/lib/grape/jwt/authentication/version.rb +1 -1
- metadata +10 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d39f954c1709be8bcf40890427ce3c5903cbf1a3e354efe46ade4ef2d9e8d086
|
4
|
+
data.tar.gz: ccbf4143b8fc1258bb3235e1b910aa8b3bca2c0d118b00ef03251447d447cce7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89c29d5a661bc6d865d19193ae60c8310072281cc92b4e2501038d6a7038e9b7a1c20baa0b38c0e414c855a1800f49f1a986df9571e1e179387c5ccb3e3283fb
|
7
|
+
data.tar.gz: 1f7bd448ee6e7cd6323c1e24b05ab2ac928359bc906b81d3d6e4d3ab58847c833790d81d4e785efae7d4fe89941d26fafd632627fadf7966cef11d19f7fed0a4
|
@@ -20,12 +20,12 @@ jobs:
|
|
20
20
|
steps:
|
21
21
|
- uses: actions/checkout@v4
|
22
22
|
|
23
|
-
- name: Install Ruby 2
|
23
|
+
- name: Install Ruby 3.2
|
24
24
|
uses: ruby/setup-ruby@v1
|
25
25
|
with:
|
26
|
-
ruby-version: 2
|
26
|
+
ruby-version: 3.2
|
27
27
|
bundler-cache: true
|
28
|
-
rubygems: '3.
|
28
|
+
rubygems: '3.6.9'
|
29
29
|
|
30
30
|
- name: Prepare the virtual environment
|
31
31
|
uses: hausgold/actions/ci@master
|
data/.github/workflows/test.yml
CHANGED
@@ -18,8 +18,8 @@ jobs:
|
|
18
18
|
strategy:
|
19
19
|
fail-fast: false
|
20
20
|
matrix:
|
21
|
-
ruby: ['
|
22
|
-
rails: ['
|
21
|
+
ruby: ['3.2', '3.3', '3.4']
|
22
|
+
rails: ['7.1', '7.2', '8.0']
|
23
23
|
env:
|
24
24
|
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
|
25
25
|
steps:
|
@@ -30,7 +30,7 @@ jobs:
|
|
30
30
|
with:
|
31
31
|
ruby-version: ${{ matrix.ruby }}
|
32
32
|
bundler-cache: true
|
33
|
-
rubygems: '3.
|
33
|
+
rubygems: '3.6.9'
|
34
34
|
|
35
35
|
- name: Prepare the virtual environment
|
36
36
|
uses: hausgold/actions/ci@master
|
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
@@ -1,13 +1,19 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
appraise 'rails-6.1' do
|
4
|
-
gem 'activejob', '~> 6.1.0'
|
5
|
-
gem 'activerecord', '~> 6.1.0'
|
6
|
-
gem 'activesupport', '~> 6.1.0'
|
7
|
-
end
|
8
|
-
|
9
3
|
appraise 'rails-7.1' do
|
10
4
|
gem 'activejob', '~> 7.1.0'
|
11
5
|
gem 'activerecord', '~> 7.1.0'
|
12
6
|
gem 'activesupport', '~> 7.1.0'
|
13
7
|
end
|
8
|
+
|
9
|
+
appraise 'rails-7.2' do
|
10
|
+
gem 'activejob', '~> 7.2.0'
|
11
|
+
gem 'activerecord', '~> 7.2.0'
|
12
|
+
gem 'activesupport', '~> 7.2.0'
|
13
|
+
end
|
14
|
+
|
15
|
+
appraise 'rails-8.0' do
|
16
|
+
gem 'activejob', '~> 8.0.0'
|
17
|
+
gem 'activerecord', '~> 8.0.0'
|
18
|
+
gem 'activesupport', '~> 8.0.0'
|
19
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
4
4
|
|
5
|
+
### 3.0.0 (28 June 2025)
|
6
|
+
|
7
|
+
* Corrected some RuboCop glitches ([#21](https://github.com/hausgold/grape-jwt-authentication/pull/21))
|
8
|
+
* Drop Ruby 2 and end of life Rails (<7.1) ([#22](https://github.com/hausgold/grape-jwt-authentication/pull/22))
|
9
|
+
|
5
10
|
### 2.8.1 (21 May 2025)
|
6
11
|
|
7
12
|
* Corrected some RuboCop glitches ([#19](https://github.com/hausgold/grape-jwt-authentication/pull/19))
|
data/Dockerfile
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
FROM hausgold/ruby:2
|
1
|
+
FROM hausgold/ruby:3.2
|
2
2
|
LABEL org.opencontainers.image.authors="containers@hausgold.de"
|
3
3
|
|
4
4
|
# Update system gem
|
5
|
-
RUN gem update --system '3.
|
5
|
+
RUN gem update --system '3.6.9'
|
6
6
|
|
7
7
|
# Install system packages and the latest bundler
|
8
8
|
RUN apt-get update -yqqq && \
|
@@ -11,7 +11,7 @@ RUN apt-get update -yqqq && \
|
|
11
11
|
ca-certificates \
|
12
12
|
bash-completion inotify-tools && \
|
13
13
|
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \
|
14
|
-
gem install bundler -v '~> 2.
|
14
|
+
gem install bundler -v '~> 2.6.9' --no-document --no-prerelease
|
15
15
|
|
16
16
|
# Add new web user
|
17
17
|
RUN mkdir /app && \
|
data/Gemfile
CHANGED
@@ -9,12 +9,12 @@ gemspec
|
|
9
9
|
|
10
10
|
# Development dependencies
|
11
11
|
gem 'appraisal', '~> 2.4'
|
12
|
-
gem 'bundler', '~> 2.
|
13
|
-
gem 'countless', '~>
|
12
|
+
gem 'bundler', '~> 2.6'
|
13
|
+
gem 'countless', '~> 2.0'
|
14
14
|
gem 'guard-rspec', '~> 4.7'
|
15
15
|
gem 'rack', '~> 2.2'
|
16
16
|
gem 'rack-test', '~> 2.0'
|
17
|
-
gem 'railties', '>=
|
17
|
+
gem 'railties', '>= 7.1'
|
18
18
|
gem 'rake', '~> 13.0'
|
19
19
|
gem 'rspec', '~> 3.12'
|
20
20
|
gem 'rubocop'
|
data/Makefile
CHANGED
@@ -117,7 +117,7 @@ test-style: \
|
|
117
117
|
test-style-ruby:
|
118
118
|
# Run the static code analyzer (rubocop)
|
119
119
|
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
|
120
|
-
|| ($(TEST) $$($(RUBY_VERSION)) != '2
|
120
|
+
|| ($(TEST) $$($(RUBY_VERSION)) != '3.2' && true))
|
121
121
|
|
122
122
|
clean:
|
123
123
|
# Clean the dependencies
|
data/docker-compose.yml
CHANGED
data/gemfiles/rails_7.1.gemfile
CHANGED
@@ -3,12 +3,12 @@
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
5
|
gem "appraisal", "~> 2.4"
|
6
|
-
gem "bundler", "~> 2.
|
7
|
-
gem "countless", "~>
|
6
|
+
gem "bundler", "~> 2.6"
|
7
|
+
gem "countless", "~> 2.0"
|
8
8
|
gem "guard-rspec", "~> 4.7"
|
9
9
|
gem "rack", "~> 2.2"
|
10
10
|
gem "rack-test", "~> 2.0"
|
11
|
-
gem "railties", ">=
|
11
|
+
gem "railties", ">= 7.1"
|
12
12
|
gem "rake", "~> 13.0"
|
13
13
|
gem "rspec", "~> 3.12"
|
14
14
|
gem "rubocop"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "appraisal", "~> 2.4"
|
6
|
+
gem "bundler", "~> 2.6"
|
7
|
+
gem "countless", "~> 2.0"
|
8
|
+
gem "guard-rspec", "~> 4.7"
|
9
|
+
gem "rack", "~> 2.2"
|
10
|
+
gem "rack-test", "~> 2.0"
|
11
|
+
gem "railties", ">= 7.1"
|
12
|
+
gem "rake", "~> 13.0"
|
13
|
+
gem "rspec", "~> 3.12"
|
14
|
+
gem "rubocop"
|
15
|
+
gem "rubocop-rails"
|
16
|
+
gem "rubocop-rspec"
|
17
|
+
gem "simplecov", ">= 0.22"
|
18
|
+
gem "timecop", ">= 0.9.6"
|
19
|
+
gem "vcr", "~> 6.0"
|
20
|
+
gem "webmock", "~> 3.18"
|
21
|
+
gem "yard", ">= 0.9.28"
|
22
|
+
gem "yard-activesupport-concern", ">= 0.0.1"
|
23
|
+
gem "activejob", "~> 7.2.0"
|
24
|
+
gem "activerecord", "~> 7.2.0"
|
25
|
+
gem "activesupport", "~> 7.2.0"
|
26
|
+
|
27
|
+
gemspec path: "../"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "appraisal", "~> 2.4"
|
6
|
+
gem "bundler", "~> 2.6"
|
7
|
+
gem "countless", "~> 2.0"
|
8
|
+
gem "guard-rspec", "~> 4.7"
|
9
|
+
gem "rack", "~> 2.2"
|
10
|
+
gem "rack-test", "~> 2.0"
|
11
|
+
gem "railties", ">= 7.1"
|
12
|
+
gem "rake", "~> 13.0"
|
13
|
+
gem "rspec", "~> 3.12"
|
14
|
+
gem "rubocop"
|
15
|
+
gem "rubocop-rails"
|
16
|
+
gem "rubocop-rspec"
|
17
|
+
gem "simplecov", ">= 0.22"
|
18
|
+
gem "timecop", ">= 0.9.6"
|
19
|
+
gem "vcr", "~> 6.0"
|
20
|
+
gem "webmock", "~> 3.18"
|
21
|
+
gem "yard", ">= 0.9.28"
|
22
|
+
gem "yard-activesupport-concern", ">= 0.0.1"
|
23
|
+
gem "activejob", "~> 8.0.0"
|
24
|
+
gem "activerecord", "~> 8.0.0"
|
25
|
+
gem "activesupport", "~> 8.0.0"
|
26
|
+
|
27
|
+
gemspec path: "../"
|
@@ -31,13 +31,13 @@ Gem::Specification.new do |spec|
|
|
31
31
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
32
32
|
spec.require_paths = ['lib']
|
33
33
|
|
34
|
-
spec.required_ruby_version = '>= 2
|
34
|
+
spec.required_ruby_version = '>= 3.2'
|
35
35
|
|
36
|
-
spec.add_dependency 'activesupport', '>=
|
36
|
+
spec.add_dependency 'activesupport', '>= 7.1'
|
37
37
|
spec.add_dependency 'grape', '>= 1.0', '< 3.0'
|
38
38
|
spec.add_dependency 'httparty', '>= 0.21'
|
39
39
|
spec.add_dependency 'jwt', '~> 2.6'
|
40
|
-
spec.add_dependency 'keyless', '~>
|
40
|
+
spec.add_dependency 'keyless', '~> 2.0'
|
41
41
|
spec.add_dependency 'mutex_m', '~> 0.3.0'
|
42
42
|
spec.add_dependency 'recursive-open-struct', '~> 2.0'
|
43
43
|
spec.add_dependency 'zeitwerk', '~> 2.6'
|
@@ -17,7 +17,7 @@ module Grape
|
|
17
17
|
|
18
18
|
# A generic JWT part, the full token contains three parts
|
19
19
|
# separated by a period.
|
20
|
-
JWT_PART_REGEX = /([a-zA-Z0-9\-_]+)
|
20
|
+
JWT_PART_REGEX = /([a-zA-Z0-9\-_]+)?/
|
21
21
|
|
22
22
|
# A common JWT validation regex which meets the RFC specs.
|
23
23
|
JWT_REGEX = Regexp.new("^#{([JWT_PART_REGEX] * 3).join('\.')}$").freeze
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grape-jwt-authentication
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hermann Mayer
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: activesupport
|
@@ -16,14 +15,14 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
18
|
+
version: '7.1'
|
20
19
|
type: :runtime
|
21
20
|
prerelease: false
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
23
22
|
requirements:
|
24
23
|
- - ">="
|
25
24
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
25
|
+
version: '7.1'
|
27
26
|
- !ruby/object:Gem::Dependency
|
28
27
|
name: grape
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -78,14 +77,14 @@ dependencies:
|
|
78
77
|
requirements:
|
79
78
|
- - "~>"
|
80
79
|
- !ruby/object:Gem::Version
|
81
|
-
version: '
|
80
|
+
version: '2.0'
|
82
81
|
type: :runtime
|
83
82
|
prerelease: false
|
84
83
|
version_requirements: !ruby/object:Gem::Requirement
|
85
84
|
requirements:
|
86
85
|
- - "~>"
|
87
86
|
- !ruby/object:Gem::Version
|
88
|
-
version: '
|
87
|
+
version: '2.0'
|
89
88
|
- !ruby/object:Gem::Dependency
|
90
89
|
name: mutex_m
|
91
90
|
requirement: !ruby/object:Gem::Requirement
|
@@ -163,13 +162,14 @@ files:
|
|
163
162
|
- docker-compose.yml
|
164
163
|
- gemfiles/rails_6.1.gemfile
|
165
164
|
- gemfiles/rails_7.1.gemfile
|
165
|
+
- gemfiles/rails_7.2.gemfile
|
166
|
+
- gemfiles/rails_8.0.gemfile
|
166
167
|
- grape-jwt-authentication.gemspec
|
167
168
|
- lib/grape/jwt/authentication.rb
|
168
169
|
- lib/grape/jwt/authentication/configuration.rb
|
169
170
|
- lib/grape/jwt/authentication/extensions/dependencies.rb
|
170
171
|
- lib/grape/jwt/authentication/jwt_handler.rb
|
171
172
|
- lib/grape/jwt/authentication/version.rb
|
172
|
-
homepage:
|
173
173
|
licenses:
|
174
174
|
- MIT
|
175
175
|
metadata:
|
@@ -178,7 +178,6 @@ metadata:
|
|
178
178
|
changelog_uri: https://github.com/hausgold/grape-jwt-authentication/blob/master/CHANGELOG.md
|
179
179
|
bug_tracker_uri: https://github.com/hausgold/grape-jwt-authentication/issues
|
180
180
|
documentation_uri: https://www.rubydoc.info/gems/grape-jwt-authentication
|
181
|
-
post_install_message:
|
182
181
|
rdoc_options: []
|
183
182
|
require_paths:
|
184
183
|
- lib
|
@@ -186,15 +185,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
186
185
|
requirements:
|
187
186
|
- - ">="
|
188
187
|
- !ruby/object:Gem::Version
|
189
|
-
version: '2
|
188
|
+
version: '3.2'
|
190
189
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
191
190
|
requirements:
|
192
191
|
- - ">="
|
193
192
|
- !ruby/object:Gem::Version
|
194
193
|
version: '0'
|
195
194
|
requirements: []
|
196
|
-
rubygems_version: 3.
|
197
|
-
signing_key:
|
195
|
+
rubygems_version: 3.6.9
|
198
196
|
specification_version: 4
|
199
197
|
summary: A reusable Grape JWT authentication concern
|
200
198
|
test_files: []
|