grape-jwt-authentication 3.13.0 → 3.14.1

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: 9f9949bd7d349aa33cccfa1b2c2ede39a65d89239202d0588849924d4abcf026
4
- data.tar.gz: f979ac0ef50007323b7bb70b12ff7d8033d0ca3ed42dcfe4022df537cab7ec5a
3
+ metadata.gz: f581cec0f8040653116f46c137ef52e3608bf8cbff897619e2d57638ff7570f1
4
+ data.tar.gz: 1029ff079ec8dfc43b3179c7aff6020c0a85c868b63d1effe0b9d8a56a27f6e9
5
5
  SHA512:
6
- metadata.gz: 8dc861d47b353e02e32c91fd3c923b93c1afb61bc9f07e014daa799a57111aa5e218bc77d2bfe7ce974447cfe09213f9903e94dad9c816dfb6401b90659eac75
7
- data.tar.gz: 36d1a30116b22909a4f0846824bbfc3e0b77a334530ee62a8b576f53b1db5a2274b1b7e8f621f99e12e9cd171c63126542a8a45ad56f1f08094f849f6e046daa
6
+ metadata.gz: e7aac17ae40ce2110100681752635b1ba7a40b69a829b1584143e6edbb1fd6902c35227a4bdb9616329d9061ed551dd4569f35509275c43a18ea86daec3f2c88
7
+ data.tar.gz: 8f00628b6c2277bf31f19bbb404fe29a19e52e2b880bb76f57cdc455be35a9205bf034ce13c851c1775ec0ce8df1f4d36e6395e88fde1b3fa0036e78f1bec2bc
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 3.14.1 (14 July 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#42](https://github.com/hausgold/grape-jwt-authentication/pull/42))
8
+
9
+ ### 3.14.0 (20 May 2026)
10
+
11
+ * Corrected some RuboCop glitches ([#41](https://github.com/hausgold/grape-jwt-authentication/pull/41))
12
+
5
13
  ### 3.13.0 (4 May 2026)
6
14
 
7
15
  * Dropped Ruby 3.x, Rails <8.1, and Rack 2.x support ([#40](https://github.com/hausgold/grape-jwt-authentication/pull/40))
data/Makefile CHANGED
@@ -137,9 +137,11 @@ endif
137
137
  clean-images:
138
138
  # Clean build images
139
139
  ifeq ($(MAKE_ENV),docker)
140
- @-$(DOCKER) images | $(GREP) $(shell basename "`pwd`") \
141
- | $(AWK) '{ print $$3 }' \
142
- | $(XARGS) -rn1 $(DOCKER) rmi -f
140
+ @$(DOCKER) images --format '{{.ID}} {{.Repository}}:{{.Tag}}' \
141
+ | $(GREP) $(shell basename "`pwd`") \
142
+ | $(AWK) '{ print $$0 }' \
143
+ | $(XARGS) -P4 -rn1 $(DOCKER) rmi -f \
144
+ | $(GREP) -vP 'cannot be forced|invalid reference' || true
143
145
  endif
144
146
 
145
147
  distclean: clean clean-containers clean-images
@@ -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.13.0'
8
+ VERSION = '3.14.1'
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.13.0
4
+ version: 3.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -177,7 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
177
  - !ruby/object:Gem::Version
178
178
  version: '0'
179
179
  requirements: []
180
- rubygems_version: 4.0.11
180
+ rubygems_version: 4.0.16
181
181
  specification_version: 4
182
182
  summary: A reusable Grape JWT authentication concern
183
183
  test_files: []