grape-jwt-authentication 3.13.0 → 3.14.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: 9f9949bd7d349aa33cccfa1b2c2ede39a65d89239202d0588849924d4abcf026
4
- data.tar.gz: f979ac0ef50007323b7bb70b12ff7d8033d0ca3ed42dcfe4022df537cab7ec5a
3
+ metadata.gz: a413c9899b2b1c1706d3e56f0a24eded071cebec4cdd66295f43c4c9c7de4fca
4
+ data.tar.gz: a30c052bccff0450bff3b9edcab751c395fec6b911098bdad34fa3aa221fdd6f
5
5
  SHA512:
6
- metadata.gz: 8dc861d47b353e02e32c91fd3c923b93c1afb61bc9f07e014daa799a57111aa5e218bc77d2bfe7ce974447cfe09213f9903e94dad9c816dfb6401b90659eac75
7
- data.tar.gz: 36d1a30116b22909a4f0846824bbfc3e0b77a334530ee62a8b576f53b1db5a2274b1b7e8f621f99e12e9cd171c63126542a8a45ad56f1f08094f849f6e046daa
6
+ metadata.gz: afef9a48af114b221e1dbd501f25232260ed46ddd29d40c0f82905a07045760b110d756bddc1ced2c8b335ec1b2e37428ec58fccc759443219535fd5c1398795
7
+ data.tar.gz: 83b92c1f886734dfe156722a3d5a8ba68e5a55ac9c03d7f4c2700ebefca26baea3b6a956ce179695ff0a2bac2da959d8efb8ccd9475df4c3064c1dbfb5dd8ce2
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 3.14.0 (20 May 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#41](https://github.com/hausgold/grape-jwt-authentication/pull/41))
8
+
5
9
  ### 3.13.0 (4 May 2026)
6
10
 
7
11
  * 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.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.13.0
4
+ version: 3.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer