keyless 1.6.1 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +1 -1
- data/CHANGELOG.md +15 -11
- data/keyless.gemspec +1 -0
- data/lib/keyless/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: 0ead9b3667fb0799b97ddc1254a38eb4c8880d2e474ec667d88ec07e11b477c5
|
4
|
+
data.tar.gz: 92a444af3a73c5c149ede8f91777bb865f21afb865dd165309dd1ac2674b4107
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2141bfa360ddb33a75d6da8c798ffe0edeed218960987846420aa7e822966b786446716c080aa344ca3ff26265c660289b1c8fb2bdfcdbce78766f46ea5ce7d
|
7
|
+
data.tar.gz: 5e052f97b767758eced395992c3851f202aa70454c6b5f0e21e4835524857641cfe76576b306d1e73586266248a605995208b72d1859022b8c62df3a9fddeddd
|
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
|
+
### 1.7.0 (30 January 2025)
|
6
|
+
|
7
|
+
* Added all versions up to Ruby 3.4 to the CI matrix ([#9](https://github.com/hausgold/keyless/pull/9))
|
8
|
+
|
5
9
|
### 1.6.1 (17 January 2025)
|
6
10
|
|
7
|
-
* Added the logger dependency (#8)
|
11
|
+
* Added the logger dependency ([#8](https://github.com/hausgold/keyless/pull/8))
|
8
12
|
|
9
13
|
### 1.6.0 (11 January 2025)
|
10
14
|
|
11
|
-
* Switched to Zeitwerk as autoloader (#7)
|
15
|
+
* Switched to Zeitwerk as autoloader ([#7](https://github.com/hausgold/keyless/pull/7))
|
12
16
|
|
13
17
|
### 1.5.0 (3 January 2025)
|
14
18
|
|
15
|
-
* Raised minimum supported Ruby/Rails version to 2.7/6.1 (#6)
|
19
|
+
* Raised minimum supported Ruby/Rails version to 2.7/6.1 ([#6](https://github.com/hausgold/keyless/pull/6))
|
16
20
|
|
17
21
|
### 1.4.0 (4 October 2024)
|
18
22
|
|
19
|
-
* Upgraded the `recursive-open-struct` gem to `~> 2.0` (#5)
|
23
|
+
* Upgraded the `recursive-open-struct` gem to `~> 2.0` ([#5](https://github.com/hausgold/keyless/pull/5))
|
20
24
|
|
21
25
|
### 1.3.5 (15 August 2024)
|
22
26
|
|
@@ -36,12 +40,12 @@
|
|
36
40
|
|
37
41
|
### 1.3.1 (9 August 2024)
|
38
42
|
|
39
|
-
* Added API docs building to continuous integration (#4)
|
43
|
+
* Added API docs building to continuous integration ([#4](https://github.com/hausgold/keyless/pull/4))
|
40
44
|
|
41
45
|
### 1.3.0 (8 July 2024)
|
42
46
|
|
43
|
-
* Moved the development dependencies from the gemspec to the Gemfile (#2)
|
44
|
-
* Dropped support for Ruby <2.7 (#3)
|
47
|
+
* Moved the development dependencies from the gemspec to the Gemfile ([#2](https://github.com/hausgold/keyless/pull/2))
|
48
|
+
* Dropped support for Ruby <2.7 ([#3](https://github.com/hausgold/keyless/pull/3))
|
45
49
|
|
46
50
|
### 1.2.0 (24 February 2023)
|
47
51
|
|
@@ -49,11 +53,11 @@
|
|
49
53
|
|
50
54
|
### 1.1.0 (18 January 2023)
|
51
55
|
|
52
|
-
* Bundler >= 2.3 is from now on required as minimal version (#1)
|
53
|
-
* Dropped support for Ruby < 2.5 (#1)
|
54
|
-
* Dropped support for Rails < 5.2 (#1)
|
56
|
+
* Bundler >= 2.3 is from now on required as minimal version ([#1](https://github.com/hausgold/keyless/pull/1))
|
57
|
+
* Dropped support for Ruby < 2.5 ([#1](https://github.com/hausgold/keyless/pull/1))
|
58
|
+
* Dropped support for Rails < 5.2 ([#1](https://github.com/hausgold/keyless/pull/1))
|
55
59
|
* Updated all development/runtime gems to their latest
|
56
|
-
Ruby 2.5 compatible version (#1)
|
60
|
+
Ruby 2.5 compatible version ([#1](https://github.com/hausgold/keyless/pull/1))
|
57
61
|
|
58
62
|
### 1.0.2 (15 October 2021)
|
59
63
|
|
data/keyless.gemspec
CHANGED
@@ -38,6 +38,7 @@ Gem::Specification.new do |spec|
|
|
38
38
|
spec.add_dependency 'activesupport', '>= 6.1'
|
39
39
|
spec.add_dependency 'httparty', '>= 0.21'
|
40
40
|
spec.add_dependency 'jwt', '~> 2.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
|
data/lib/keyless/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: keyless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hermann Mayer
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2025-01-
|
13
|
+
date: 2025-01-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|
@@ -54,6 +54,20 @@ dependencies:
|
|
54
54
|
- - "~>"
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: '2.6'
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: mutex_m
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - "~>"
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 0.3.0
|
64
|
+
type: :runtime
|
65
|
+
prerelease: false
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - "~>"
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 0.3.0
|
57
71
|
- !ruby/object:Gem::Dependency
|
58
72
|
name: recursive-open-struct
|
59
73
|
requirement: !ruby/object:Gem::Requirement
|
@@ -149,7 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
149
163
|
- !ruby/object:Gem::Version
|
150
164
|
version: '0'
|
151
165
|
requirements: []
|
152
|
-
rubygems_version: 3.
|
166
|
+
rubygems_version: 3.4.22
|
153
167
|
signing_key:
|
154
168
|
specification_version: 4
|
155
169
|
summary: A reusable JWT authentication helper
|