grape-jwt-authentication 2.7.1 → 2.8.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/test.yml +1 -1
- data/CHANGELOG.md +18 -14
- data/grape-jwt-authentication.gemspec +1 -0
- data/lib/grape/jwt/authentication/version.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f44584743cb6d8904ca81e902f59012184ce72af402c7d467ca692514ee3fc6a
|
4
|
+
data.tar.gz: 8c59a84764ce68c7dd6e7bb38ba0f7e81ae3c38a8b6a151f86173b0d2b5f334b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d864b1c445ebd26ee363b001b652f0b931a1d5d4ad4363a38d2e6b3ee2d682639d1a43a642e2a974217e0211f183f7fb75fa75642e42c5ac3cbc1b1ca99f854a
|
7
|
+
data.tar.gz: 2c03cd34c4a56968adfd975dc78b51f8c35a0d3abf7ef8596502da77fc97d8f25600fd556cd371c10fc4faf1e9e936c5cf9459d7dda482c8dd4afe6d6e5dd771
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -2,21 +2,25 @@
|
|
2
2
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
4
4
|
|
5
|
+
### 2.8.0 (30 January 2025)
|
6
|
+
|
7
|
+
* Added all versions up to Ruby 3.4 to the CI matrix ([#19](https://github.com/hausgold/grape-jwt-authentication/pull/19))
|
8
|
+
|
5
9
|
### 2.7.1 (17 January 2025)
|
6
10
|
|
7
|
-
* Added the logger dependency (#18)
|
11
|
+
* Added the logger dependency ([#18](https://github.com/hausgold/grape-jwt-authentication/pull/18))
|
8
12
|
|
9
13
|
### 2.7.0 (11 January 2025)
|
10
14
|
|
11
|
-
* Switched to Zeitwerk as autoloader (#17)
|
15
|
+
* Switched to Zeitwerk as autoloader ([#17](https://github.com/hausgold/grape-jwt-authentication/pull/17))
|
12
16
|
|
13
17
|
### 2.6.0 (3 January 2025)
|
14
18
|
|
15
|
-
* Raised minimum supported Ruby/Rails version to 2.7/6.1 (#16)
|
19
|
+
* Raised minimum supported Ruby/Rails version to 2.7/6.1 ([#16](https://github.com/hausgold/grape-jwt-authentication/pull/16))
|
16
20
|
|
17
21
|
### 2.5.0 (4 October 2024)
|
18
22
|
|
19
|
-
* Upgraded the `recursive-open-struct` gem to `~> 2.0` (#15)
|
23
|
+
* Upgraded the `recursive-open-struct` gem to `~> 2.0` ([#15](https://github.com/hausgold/grape-jwt-authentication/pull/15))
|
20
24
|
|
21
25
|
### 2.4.5 (15 August 2024)
|
22
26
|
|
@@ -36,17 +40,17 @@
|
|
36
40
|
|
37
41
|
### 2.4.1 (9 August 2024)
|
38
42
|
|
39
|
-
* Added API docs building to continuous integration (#14)
|
43
|
+
* Added API docs building to continuous integration ([#14](https://github.com/hausgold/grape-jwt-authentication/pull/14))
|
40
44
|
|
41
45
|
### 2.4.0 (8 July 2024)
|
42
46
|
|
43
|
-
* Dropped support for Ruby <2.7 (#13)
|
47
|
+
* Dropped support for Ruby <2.7 ([#13](https://github.com/hausgold/grape-jwt-authentication/pull/13))
|
44
48
|
|
45
49
|
### 2.3.0 (16 January 2024)
|
46
50
|
|
47
51
|
* Implemented case-insensitive header value checks for Grape 2.0.0+
|
48
52
|
compatibility, aligning with HTTP/2+ semantics (#11, #12)
|
49
|
-
* Moved the development dependencies from the gemspec to the Gemfile (#10)
|
53
|
+
* Moved the development dependencies from the gemspec to the Gemfile ([#10](https://github.com/hausgold/grape-jwt-authentication/pull/10))
|
50
54
|
|
51
55
|
### 2.2.0 (24 February 2023)
|
52
56
|
|
@@ -54,11 +58,11 @@
|
|
54
58
|
|
55
59
|
### 2.1.0 (18 January 2023)
|
56
60
|
|
57
|
-
* Bundler >= 2.3 is from now on required as minimal version (#9)
|
58
|
-
* Dropped support for Ruby < 2.5 (#9)
|
59
|
-
* Dropped support for Rails < 5.2 (#9)
|
61
|
+
* Bundler >= 2.3 is from now on required as minimal version ([#9](https://github.com/hausgold/grape-jwt-authentication/pull/9))
|
62
|
+
* Dropped support for Ruby < 2.5 ([#9](https://github.com/hausgold/grape-jwt-authentication/pull/9))
|
63
|
+
* Dropped support for Rails < 5.2 ([#9](https://github.com/hausgold/grape-jwt-authentication/pull/9))
|
60
64
|
* Updated all development/runtime gems to their latest
|
61
|
-
Ruby 2.5 compatible version (#9)
|
65
|
+
Ruby 2.5 compatible version ([#9](https://github.com/hausgold/grape-jwt-authentication/pull/9))
|
62
66
|
|
63
67
|
### 2.0.4 (15 October 2021)
|
64
68
|
|
@@ -84,7 +88,7 @@
|
|
84
88
|
### 2.0.0 (7 September 2020)
|
85
89
|
|
86
90
|
* Extracted the JWT verification functionality into its own gem
|
87
|
-
([keyless](https://github.com/hausgold/keyless)) (#6)
|
91
|
+
([keyless](https://github.com/hausgold/keyless)) ([#6](https://github.com/hausgold/grape-jwt-authentication/pull/6))
|
88
92
|
* This extraction allows users to use the JWT/RSA key handling without Grape
|
89
93
|
* The API/configuration stays the same
|
90
94
|
* With the major update to 2.0 we dropped a lot of code which is now located at
|
@@ -98,13 +102,13 @@
|
|
98
102
|
|
99
103
|
### 1.2.0 (14 February 2019)
|
100
104
|
|
101
|
-
* Check the remote response on public key fetching (#3)
|
105
|
+
* Check the remote response on public key fetching ([#3](https://github.com/hausgold/grape-jwt-authentication/pull/3))
|
102
106
|
* Added support for Ruby 2.6
|
103
107
|
* Dropped support for EOL Ruby 2.2
|
104
108
|
|
105
109
|
### 1.1.0 (1 November 2018)
|
106
110
|
|
107
|
-
* Added the parsed and original token to the Rack environment (#2)
|
111
|
+
* Added the parsed and original token to the Rack environment ([#2](https://github.com/hausgold/grape-jwt-authentication/pull/2))
|
108
112
|
* Two new helper methods are now available to access the JWT from an API spec
|
109
113
|
|
110
114
|
### 1.0.1 (23 November 2017)
|
@@ -38,6 +38,7 @@ Gem::Specification.new do |spec|
|
|
38
38
|
spec.add_dependency 'httparty', '>= 0.21'
|
39
39
|
spec.add_dependency 'jwt', '~> 2.6'
|
40
40
|
spec.add_dependency 'keyless', '~> 1.6'
|
41
|
+
spec.add_dependency 'mutex_m', '~> 0.3.0'
|
41
42
|
spec.add_dependency 'recursive-open-struct', '~> 2.0'
|
42
43
|
spec.add_dependency 'zeitwerk', '~> 2.6'
|
43
44
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grape-jwt-authentication
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hermann Mayer
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -86,6 +86,20 @@ dependencies:
|
|
86
86
|
- - "~>"
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: '1.6'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: mutex_m
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: 0.3.0
|
96
|
+
type: :runtime
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 0.3.0
|
89
103
|
- !ruby/object:Gem::Dependency
|
90
104
|
name: recursive-open-struct
|
91
105
|
requirement: !ruby/object:Gem::Requirement
|
@@ -179,7 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
179
193
|
- !ruby/object:Gem::Version
|
180
194
|
version: '0'
|
181
195
|
requirements: []
|
182
|
-
rubygems_version: 3.
|
196
|
+
rubygems_version: 3.4.22
|
183
197
|
signing_key:
|
184
198
|
specification_version: 4
|
185
199
|
summary: A reusable Grape JWT authentication concern
|