alchemy-devise 7.3.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 +13 -0
- data/README.md +1 -1
- data/config/initializers/alchemy.rb +11 -1
- data/lib/alchemy/devise/version.rb +1 -1
- metadata +5 -7
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,18 @@
|
|
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
|
+
|
10
|
+
## 7.4.0 (2025-01-21)
|
11
|
+
|
12
|
+
- Extend test matrix [#219](https://github.com/AlchemyCMS/alchemy-devise/pull/219) ([mamhoff](https://github.com/mamhoff))
|
13
|
+
- Allow Alchemy 8.x [#218](https://github.com/AlchemyCMS/alchemy-devise/pull/218) ([mamhoff](https://github.com/mamhoff))
|
14
|
+
- test: Fix admin users feature spec [#217](https://github.com/AlchemyCMS/alchemy-devise/pull/217) ([tvdeyen](https://github.com/tvdeyen))
|
15
|
+
|
3
16
|
## 7.3.0 (2024-09-06)
|
4
17
|
|
5
18
|
- Use new resource_table component for user list [#213](https://github.com/AlchemyCMS/alchemy-devise/pull/213) ([tvdeyen](https://github.com/tvdeyen))
|
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,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alchemy-devise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.
|
4
|
+
version: 7.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas von Deyen
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-12 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: alchemy_cms
|
@@ -100,14 +99,14 @@ dependencies:
|
|
100
99
|
requirements:
|
101
100
|
- - "~>"
|
102
101
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
102
|
+
version: '7.1'
|
104
103
|
type: :development
|
105
104
|
prerelease: false
|
106
105
|
version_requirements: !ruby/object:Gem::Requirement
|
107
106
|
requirements:
|
108
107
|
- - "~>"
|
109
108
|
- !ruby/object:Gem::Version
|
110
|
-
version: '
|
109
|
+
version: '7.1'
|
111
110
|
- !ruby/object:Gem::Dependency
|
112
111
|
name: simplecov
|
113
112
|
requirement: !ruby/object:Gem::Requirement
|
@@ -200,8 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
200
199
|
- !ruby/object:Gem::Version
|
201
200
|
version: '0'
|
202
201
|
requirements: []
|
203
|
-
rubygems_version: 3.
|
204
|
-
signing_key:
|
202
|
+
rubygems_version: 3.6.3
|
205
203
|
specification_version: 4
|
206
204
|
summary: Devise based user authentication for AlchemyCMS.
|
207
205
|
test_files: []
|