keyless 1.6.0 → 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 +18 -10
- data/keyless.gemspec +1 -0
- data/lib/keyless/version.rb +1 -1
- data/lib/keyless.rb +2 -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,17 +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
|
+
|
9
|
+
### 1.6.1 (17 January 2025)
|
10
|
+
|
11
|
+
* Added the logger dependency ([#8](https://github.com/hausgold/keyless/pull/8))
|
12
|
+
|
5
13
|
### 1.6.0 (11 January 2025)
|
6
14
|
|
7
|
-
* Switched to Zeitwerk as autoloader (#7)
|
15
|
+
* Switched to Zeitwerk as autoloader ([#7](https://github.com/hausgold/keyless/pull/7))
|
8
16
|
|
9
17
|
### 1.5.0 (3 January 2025)
|
10
18
|
|
11
|
-
* 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))
|
12
20
|
|
13
21
|
### 1.4.0 (4 October 2024)
|
14
22
|
|
15
|
-
* 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))
|
16
24
|
|
17
25
|
### 1.3.5 (15 August 2024)
|
18
26
|
|
@@ -32,12 +40,12 @@
|
|
32
40
|
|
33
41
|
### 1.3.1 (9 August 2024)
|
34
42
|
|
35
|
-
* Added API docs building to continuous integration (#4)
|
43
|
+
* Added API docs building to continuous integration ([#4](https://github.com/hausgold/keyless/pull/4))
|
36
44
|
|
37
45
|
### 1.3.0 (8 July 2024)
|
38
46
|
|
39
|
-
* Moved the development dependencies from the gemspec to the Gemfile (#2)
|
40
|
-
* 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))
|
41
49
|
|
42
50
|
### 1.2.0 (24 February 2023)
|
43
51
|
|
@@ -45,11 +53,11 @@
|
|
45
53
|
|
46
54
|
### 1.1.0 (18 January 2023)
|
47
55
|
|
48
|
-
* Bundler >= 2.3 is from now on required as minimal version (#1)
|
49
|
-
* Dropped support for Ruby < 2.5 (#1)
|
50
|
-
* 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))
|
51
59
|
* Updated all development/runtime gems to their latest
|
52
|
-
Ruby 2.5 compatible version (#1)
|
60
|
+
Ruby 2.5 compatible version ([#1](https://github.com/hausgold/keyless/pull/1))
|
53
61
|
|
54
62
|
### 1.0.2 (15 October 2021)
|
55
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
data/lib/keyless.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'zeitwerk'
|
4
|
+
require 'logger'
|
4
5
|
require 'active_support'
|
5
6
|
require 'active_support/concern'
|
6
7
|
require 'active_support/configurable'
|
@@ -25,7 +26,7 @@ module Keyless
|
|
25
26
|
# Load standalone code
|
26
27
|
require 'keyless/version'
|
27
28
|
|
28
|
-
# Make sure to eager load all
|
29
|
+
# Make sure to eager load all constants
|
29
30
|
loader.eager_load
|
30
31
|
|
31
32
|
class << self
|
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
|