grape-jwt-authentication 3.3.0 → 3.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c247a35b51bfbd096545c993121a3e87d94c8bae8f80682a62e1a4b1b80734c9
4
- data.tar.gz: 04cdae86c7e3216146e6626dfca5d4ab44a4d1d32f1f26856a42719c36d7243e
3
+ metadata.gz: b4f1306d86dec1405d0ae65f640f5f8a058a71af20ac96f1f4f52c824bb0ceda
4
+ data.tar.gz: 1623329cb528b285235b883ec66c78387d6c09ad8c2473c5955a23b1996dcda1
5
5
  SHA512:
6
- metadata.gz: 55e2e0e099959745fd8e339c708ee960d63ad5acf851a3233e90119498da7cbb5139fed6165fd34dc68c3c34c4b3b86be67070b9c23ead0ffb1771b23b583833
7
- data.tar.gz: 763102cef1bd885ee24b418cafcaf59654109181d98b33047cd50d8f22570cf5d581c832aed331ca5b3bbc74ea11622e8e14f9d212c5d55411e15f7adc863b6c
6
+ metadata.gz: f512a845dc2c3b83ae3b9ca8d13bf11844509516ad9e0bc829113b69bcffaa3f0cee7d8bbf85ca4b28d89b16d3e6d991098a75879d0e2057006211b602e3edcf
7
+ data.tar.gz: 47bfa65cffbee0ddd5dcf0e586bd88db5172eec5c8388a28ca4f0571f399fc7add6977261b8a633bea7ee79d4fb863db6a2aab74b56c23824340efd29e1beb65
@@ -20,10 +20,10 @@ jobs:
20
20
  steps:
21
21
  - uses: actions/checkout@v4
22
22
 
23
- - name: Install Ruby 3.2
23
+ - name: Install Ruby 3.3
24
24
  uses: ruby/setup-ruby@v1
25
25
  with:
26
- ruby-version: 3.2
26
+ ruby-version: 3.3
27
27
  bundler-cache: true
28
28
  rubygems: '3.6.9'
29
29
 
@@ -18,8 +18,8 @@ jobs:
18
18
  strategy:
19
19
  fail-fast: false
20
20
  matrix:
21
- ruby: ['3.2', '3.3', '3.4']
22
- rails: ['7.1', '7.2', '8.0', '8.1']
21
+ ruby: ['3.3', '3.4', '4.0']
22
+ rails: ['7.2', '8.0', '8.1']
23
23
  env:
24
24
  BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
25
25
  steps:
@@ -53,7 +53,7 @@ jobs:
53
53
  strategy:
54
54
  fail-fast: false
55
55
  matrix:
56
- ruby: ['3.2', '3.3', '3.4']
56
+ ruby: ['3.3', '3.4', '4.0']
57
57
  grape: ['1', '2', '3']
58
58
  env:
59
59
  BUNDLE_GEMFILE: 'gemfiles/grape_${{ matrix.grape }}.gemfile'
data/.rubocop.yml CHANGED
@@ -1,3 +1,7 @@
1
+ inherit_from:
2
+ - https://potpourri.hausgold.de/config/rubocop.yml
3
+ - https://potpourri.hausgold.de/config/rubocop-gem.yml
4
+
1
5
  plugins:
2
6
  - rubocop-rspec
3
7
  - rubocop-rails
@@ -5,58 +9,24 @@ plugins:
5
9
  Rails:
6
10
  Enabled: true
7
11
 
8
- Style/Documentation:
9
- Enabled: true
10
-
11
12
  AllCops:
12
13
  NewCops: enable
13
14
  SuggestExtensions: false
14
15
  DisplayCopNames: true
15
- TargetRubyVersion: 3.2
16
- TargetRailsVersion: 7.1
16
+ TargetRubyVersion: 3.3
17
+ TargetRailsVersion: 7.2
17
18
  Exclude:
18
19
  - bin/**/*
19
20
  - vendor/**/*
20
21
  - build/**/*
21
22
  - gemfiles/**/*
22
23
 
23
- Metrics/BlockLength:
24
- Exclude:
25
- - Rakefile
26
- - '*.gemspec'
27
- - spec/**/*.rb
28
- - '**/*.rake'
29
- - doc/**/*.rb
30
-
31
- # MFA is not yet enabled for our gems yet.
32
- Gemspec/RequireMFA:
33
- Enabled: false
34
-
35
- # We stay with the original Ruby Style Guide recommendation.
36
- Layout/LineLength:
37
- Max: 80
38
-
39
- # Document all the things.
40
- Style/DocumentationMethod:
41
- Enabled: true
42
- RequireForNonPublicMethods: true
43
-
44
24
  # It's a deliberate idiom in RSpec.
45
25
  # See: https://github.com/bbatsov/rubocop/issues/4222
46
26
  Lint/AmbiguousBlockAssociation:
47
27
  Exclude:
48
28
  - "spec/**/*"
49
29
 
50
- # Because +expect_any_instance_of().to have_received()+ is not
51
- # supported with the +with(hash_including)+ matchers
52
- RSpec/MessageSpies:
53
- EnforcedStyle: receive
54
-
55
- # Because nesting makes sense here to group the feature tests
56
- # more effective. This increases maintainability.
57
- RSpec/NestedGroups:
58
- Max: 4
59
-
60
30
  # Disable regular Rails spec paths.
61
31
  Rails/FilePath:
62
32
  Enabled: false
@@ -64,7 +34,3 @@ Rails/FilePath:
64
34
  # Because we just implemented the ActiveRecord API.
65
35
  Rails/SkipsModelValidations:
66
36
  Enabled: false
67
-
68
- # We highly depend on memoized helpers across the specs.
69
- RSpec/MultipleMemoizedHelpers:
70
- Enabled: false
data/Appraisals CHANGED
@@ -1,11 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- appraise 'rails-7.1' do
4
- gem 'activejob', '~> 7.1.0'
5
- gem 'activerecord', '~> 7.1.0'
6
- gem 'activesupport', '~> 7.1.0'
7
- end
8
-
9
3
  appraise 'rails-7.2' do
10
4
  gem 'activejob', '~> 7.2.0'
11
5
  gem 'activerecord', '~> 7.2.0'
data/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 3.5.0 (26 December 2025)
6
+
7
+ * Added Ruby 4.0 support ([#32](https://github.com/hausgold/grape-jwt-authentication/pull/32))
8
+ * Dropped Ruby 3.2 and Rails 7.1 support ([#31](https://github.com/hausgold/grape-jwt-authentication/pull/31))
9
+
10
+ ### 3.4.0 (19 December 2025)
11
+
12
+ * Migrated to a shared Rubocop configuration for HAUSGOLD gems ([#30](https://github.com/hausgold/grape-jwt-authentication/pull/30))
13
+
5
14
  ### 3.3.0 (16 December 2025)
6
15
 
7
16
  * Dropped the unused `httparty` gem ([#29](https://github.com/hausgold/grape-jwt-authentication/pull/29))
data/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM hausgold/ruby:3.2
1
+ FROM hausgold/ruby:3.3
2
2
  LABEL org.opencontainers.image.authors="containers@hausgold.de"
3
3
 
4
4
  # Update system gem
data/Envfile CHANGED
@@ -1,3 +1,4 @@
1
1
  LANG=en_US.UTF-8
2
2
  LANGUAGE=en_US.UTF-8
3
3
  LC_ALL=en_US.UTF-8
4
+ RUBOCOP_CACHE_ROOT=/app/tmp
data/Gemfile CHANGED
@@ -9,12 +9,12 @@ gemspec
9
9
 
10
10
  # Development dependencies
11
11
  gem 'appraisal', '~> 2.4'
12
- gem 'bundler', '~> 2.6'
12
+ gem 'bundler', '>= 2.6', '< 5'
13
13
  gem 'countless', '~> 2.2'
14
14
  gem 'guard-rspec', '~> 4.7'
15
15
  gem 'rack', '~> 2.2'
16
16
  gem 'rack-test', '~> 2.0'
17
- gem 'railties', '>= 7.1'
17
+ gem 'railties', '>= 7.2'
18
18
  gem 'rake', '~> 13.0'
19
19
  gem 'rspec', '~> 3.12'
20
20
  gem 'rubocop'
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 HAUSGOLD | talocasa GmbH
3
+ Copyright (c) 2025 HAUSGOLD | talocasa GmbH
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/Makefile CHANGED
@@ -85,7 +85,8 @@ all:
85
85
  install:
86
86
  # Install the dependencies
87
87
  @$(MKDIR) -p $(VENDOR_DIR)
88
- @$(call run-shell,$(BUNDLE) check || $(BUNDLE) install --path $(VENDOR_DIR))
88
+ @$(call run-shell,$(BUNDLE) config set --local path '$(VENDOR_DIR)')
89
+ @$(call run-shell,$(BUNDLE) check || $(BUNDLE) install)
89
90
  @$(call run-shell,$(BUNDLE) exec $(APPRAISAL) install)
90
91
 
91
92
  update:
@@ -117,7 +118,7 @@ test-style: \
117
118
  test-style-ruby:
118
119
  # Run the static code analyzer (rubocop)
119
120
  @$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
120
- || ($(TEST) $$($(RUBY_VERSION)) != '3.2' && true))
121
+ || ($(TEST) $$($(RUBY_VERSION)) != '3.3' && true))
121
122
 
122
123
  clean:
123
124
  # Clean the dependencies
@@ -3,12 +3,12 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal", "~> 2.4"
6
- gem "bundler", "~> 2.6"
6
+ gem "bundler", ">= 2.6", "< 5"
7
7
  gem "countless", "~> 2.2"
8
8
  gem "guard-rspec", "~> 4.7"
9
9
  gem "rack", "~> 2.2"
10
10
  gem "rack-test", "~> 2.0"
11
- gem "railties", ">= 7.1"
11
+ gem "railties", ">= 7.2"
12
12
  gem "rake", "~> 13.0"
13
13
  gem "rspec", "~> 3.12"
14
14
  gem "rubocop"
@@ -3,12 +3,12 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal", "~> 2.4"
6
- gem "bundler", "~> 2.6"
6
+ gem "bundler", ">= 2.6", "< 5"
7
7
  gem "countless", "~> 2.2"
8
8
  gem "guard-rspec", "~> 4.7"
9
9
  gem "rack", "~> 2.2"
10
10
  gem "rack-test", "~> 2.0"
11
- gem "railties", ">= 7.1"
11
+ gem "railties", ">= 7.2"
12
12
  gem "rake", "~> 13.0"
13
13
  gem "rspec", "~> 3.12"
14
14
  gem "rubocop"
@@ -3,12 +3,12 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal", "~> 2.4"
6
- gem "bundler", "~> 2.6"
6
+ gem "bundler", ">= 2.6", "< 5"
7
7
  gem "countless", "~> 2.2"
8
8
  gem "guard-rspec", "~> 4.7"
9
9
  gem "rack", "~> 2.2"
10
10
  gem "rack-test", "~> 2.0"
11
- gem "railties", ">= 7.1"
11
+ gem "railties", ">= 7.2"
12
12
  gem "rake", "~> 13.0"
13
13
  gem "rspec", "~> 3.12"
14
14
  gem "rubocop"
@@ -3,12 +3,12 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal", "~> 2.4"
6
- gem "bundler", "~> 2.6"
6
+ gem "bundler", ">= 2.6", "< 5"
7
7
  gem "countless", "~> 2.2"
8
8
  gem "guard-rspec", "~> 4.7"
9
9
  gem "rack", "~> 2.2"
10
10
  gem "rack-test", "~> 2.0"
11
- gem "railties", ">= 7.1"
11
+ gem "railties", ">= 7.2"
12
12
  gem "rake", "~> 13.0"
13
13
  gem "rspec", "~> 3.12"
14
14
  gem "rubocop"
@@ -3,12 +3,12 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal", "~> 2.4"
6
- gem "bundler", "~> 2.6"
6
+ gem "bundler", ">= 2.6", "< 5"
7
7
  gem "countless", "~> 2.2"
8
8
  gem "guard-rspec", "~> 4.7"
9
9
  gem "rack", "~> 2.2"
10
10
  gem "rack-test", "~> 2.0"
11
- gem "railties", ">= 7.1"
11
+ gem "railties", ">= 7.2"
12
12
  gem "rake", "~> 13.0"
13
13
  gem "rspec", "~> 3.12"
14
14
  gem "rubocop"
@@ -3,12 +3,12 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal", "~> 2.4"
6
- gem "bundler", "~> 2.6"
6
+ gem "bundler", ">= 2.6", "< 5"
7
7
  gem "countless", "~> 2.2"
8
8
  gem "guard-rspec", "~> 4.7"
9
9
  gem "rack", "~> 2.2"
10
10
  gem "rack-test", "~> 2.0"
11
- gem "railties", ">= 7.1"
11
+ gem "railties", ">= 7.2"
12
12
  gem "rake", "~> 13.0"
13
13
  gem "rspec", "~> 3.12"
14
14
  gem "rubocop"
@@ -31,9 +31,9 @@ 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 = '>= 3.2'
34
+ spec.required_ruby_version = '>= 3.3'
35
35
 
36
- spec.add_dependency 'activesupport', '>= 7.1'
36
+ spec.add_dependency 'activesupport', '>= 7.2'
37
37
  spec.add_dependency 'grape', '>= 1.0', '< 4.0'
38
38
  spec.add_dependency 'jwt', '>= 2.6'
39
39
  spec.add_dependency 'keyless', '~> 2.3'
@@ -122,7 +122,7 @@ module Grape
122
122
  inject_token_into_env(env, token)
123
123
 
124
124
  # Give the parsed token to the user defined block
125
- # for futher verification. The user given block MUST return
125
+ # for further verification. The user given block MUST return
126
126
  # a positive result to allow the request to be further
127
127
  # processed, or a negative result to stop processing.
128
128
  raise AuthenticationError unless authenticator.call(token)
@@ -5,7 +5,7 @@ module Grape
5
5
  # The gem version details.
6
6
  module Authentication
7
7
  # The version of the +grape-jwt-authentication+ gem
8
- VERSION = '3.3.0'
8
+ VERSION = '3.5.0'
9
9
 
10
10
  class << self
11
11
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grape-jwt-authentication
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -15,14 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: '7.1'
18
+ version: '7.2'
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - ">="
24
24
  - !ruby/object:Gem::Version
25
- version: '7.1'
25
+ version: '7.2'
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: grape
28
28
  requirement: !ruby/object:Gem::Requirement
@@ -149,8 +149,6 @@ files:
149
149
  - gemfiles/grape_1.gemfile
150
150
  - gemfiles/grape_2.gemfile
151
151
  - gemfiles/grape_3.gemfile
152
- - gemfiles/rails_6.1.gemfile
153
- - gemfiles/rails_7.1.gemfile
154
152
  - gemfiles/rails_7.2.gemfile
155
153
  - gemfiles/rails_8.0.gemfile
156
154
  - gemfiles/rails_8.1.gemfile
@@ -175,7 +173,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
175
173
  requirements:
176
174
  - - ">="
177
175
  - !ruby/object:Gem::Version
178
- version: '3.2'
176
+ version: '3.3'
179
177
  required_rubygems_version: !ruby/object:Gem::Requirement
180
178
  requirements:
181
179
  - - ">="
@@ -1,27 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal", "~> 2.4"
6
- gem "bundler", "~> 2.3"
7
- gem "countless", "~> 1.1"
8
- gem "guard-rspec", "~> 4.7"
9
- gem "rack", "~> 2.2"
10
- gem "rack-test", "~> 2.0"
11
- gem "railties", ">= 6.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", "~> 6.1.0"
24
- gem "activerecord", "~> 6.1.0"
25
- gem "activesupport", "~> 6.1.0"
26
-
27
- gemspec path: "../"
@@ -1,27 +0,0 @@
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.2"
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.1.0"
24
- gem "activerecord", "~> 7.1.0"
25
- gem "activesupport", "~> 7.1.0"
26
-
27
- gemspec path: "../"