alchemy-devise 7.4.0 → 7.4.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +1 -1
- data/config/initializers/alchemy.rb +11 -1
- data/lib/alchemy/devise/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5d447cfdfb707f5624e4b1803029dbb76e1516964be8df050e997a52a173202
|
4
|
+
data.tar.gz: 251266f1e5032339894c027e27d36943303ac7e2663e6cd8a706a556d206e56d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e55c976529fabecea15bb9d103d86e2fb3fe057e6c719e464764ea1f716403edd2c2d9e11ce9685b0bf6cb46b374c7ab30d514e1273e9700145d8116d8ce13aa
|
7
|
+
data.tar.gz: 2772bbfcf3d755654832055e168fe45fb30c893718322622b463d2b7fc98add973dd41ccad91d5fa03b7f4a6002b957b8ec842488430bc2233e33ce093cce8a8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 7.4.1 (2025-02-12)
|
4
|
+
|
5
|
+
- Fix module icon for Alchemy 7.4 [#224](https://github.com/AlchemyCMS/alchemy-devise/pull/224) ([tvdeyen](https://github.com/tvdeyen))
|
6
|
+
- Update sqlite3 requirement from ~> 1.4 to ~> 2.5 [#223](https://github.com/AlchemyCMS/alchemy-devise/pull/223) ([dependabot](https://github.com/apps/dependabot))
|
7
|
+
- Update rspec-rails requirement from ~> 6.0 to ~> 7.1 [#222](https://github.com/AlchemyCMS/alchemy-devise/pull/222) ([dependabot](https://github.com/apps/dependabot))
|
8
|
+
- Enable dependabot version updates [#221](https://github.com/AlchemyCMS/alchemy-devise/pull/221) ([tvdeyen](https://github.com/tvdeyen))
|
9
|
+
|
3
10
|
## 7.4.0 (2025-01-21)
|
4
11
|
|
5
12
|
- Extend test matrix [#219](https://github.com/AlchemyCMS/alchemy-devise/pull/219) ([mamhoff](https://github.com/mamhoff))
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
## Devise based authentication for AlchemyCMS
|
2
2
|
|
3
|
-
[](https://github.com/AlchemyCMS/alchemy-devise/actions/workflows/ci.yml)
|
4
4
|
[](https://github.com/AlchemyCMS/alchemy-devise/actions/workflows/brakeman-analysis.yml)
|
5
5
|
|
6
6
|
[](http://badge.fury.io/rb/alchemy-devise) [](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/coverage) [](https://codeclimate.com/github/AlchemyCMS/alchemy-devise)
|
@@ -3,6 +3,16 @@
|
|
3
3
|
Rails.application.config.to_prepare do
|
4
4
|
require "alchemy/devise/ability"
|
5
5
|
|
6
|
+
alchemy_7_4 = Gem::Version.new("7.4.0.a")
|
7
|
+
|
8
|
+
icon = if Alchemy.gem_version.between? Gem::Version.new("7.1.0-b1"), alchemy_7_4
|
9
|
+
"group-line"
|
10
|
+
elsif Alchemy.gem_version > alchemy_7_4
|
11
|
+
"group"
|
12
|
+
else
|
13
|
+
"users"
|
14
|
+
end
|
15
|
+
|
6
16
|
Alchemy.register_ability(Alchemy::Devise::Ability)
|
7
17
|
|
8
18
|
Alchemy::Modules.register_module({
|
@@ -13,7 +23,7 @@ Rails.application.config.to_prepare do
|
|
13
23
|
name: "modules.users",
|
14
24
|
controller: "/alchemy/admin/users",
|
15
25
|
action: "index",
|
16
|
-
icon:
|
26
|
+
icon: icon
|
17
27
|
}
|
18
28
|
})
|
19
29
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alchemy-devise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.4.
|
4
|
+
version: 7.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas von Deyen
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-02-12 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: alchemy_cms
|
@@ -99,14 +99,14 @@ dependencies:
|
|
99
99
|
requirements:
|
100
100
|
- - "~>"
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version: '
|
102
|
+
version: '7.1'
|
103
103
|
type: :development
|
104
104
|
prerelease: false
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
107
|
- - "~>"
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
109
|
+
version: '7.1'
|
110
110
|
- !ruby/object:Gem::Dependency
|
111
111
|
name: simplecov
|
112
112
|
requirement: !ruby/object:Gem::Requirement
|
@@ -199,7 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
199
199
|
- !ruby/object:Gem::Version
|
200
200
|
version: '0'
|
201
201
|
requirements: []
|
202
|
-
rubygems_version: 3.6.
|
202
|
+
rubygems_version: 3.6.3
|
203
203
|
specification_version: 4
|
204
204
|
summary: Devise based user authentication for AlchemyCMS.
|
205
205
|
test_files: []
|