alchemy-devise 8.0.0 → 8.0.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74e6bf670f9dba505bc6c0a8c542d856128f8d222699857d0e45754a1c9eb1de
|
|
4
|
+
data.tar.gz: 4d3c36f87933a2bf3ff04fb4ee51d12288d7c63c7da675fb3541f2cf883116fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38ad0188c7a15dafbb6351115c1843a30485b072129241abbd4875f6482d4372f67d96eeaf20dea0a2b50019df43ff98a5b81a9b63fc96638002ff2dfb6b5de0
|
|
7
|
+
data.tar.gz: f733e77957aa54ec4a9894c83d85a3ee5cbc3743900e0ca0a55be9a2e1c673c8fa4706857b48f53868fd0ebc0e99f7ce6e69d296142dc863231e194dab57aa35
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.0.2 (2026-03-25)
|
|
4
|
+
|
|
5
|
+
## What's Changed
|
|
6
|
+
* [8.0-stable] Merge pull request #256 from blish-guenzler/fix-double-pagination by @alchemycms-bot[bot] in https://github.com/AlchemyCMS/alchemy-devise/pull/257
|
|
7
|
+
* [8.0-stable] Merge pull request #259 from blish-guenzler/fix-login-link-to-dialog by @alchemycms-bot[bot] in https://github.com/AlchemyCMS/alchemy-devise/pull/260
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
**Full Changelog**: https://github.com/AlchemyCMS/alchemy-devise/compare/v8.0.1...v8.0.2
|
|
11
|
+
|
|
12
|
+
## 8.0.1 (2025-12-04)
|
|
13
|
+
|
|
14
|
+
- [8.0-stable] Merge pull request #237 from AlchemyCMS/devise-rememberable [#243](https://github.com/AlchemyCMS/alchemy-devise/pull/243) ([alchemycms-bot](https://github.com/apps/alchemycms-bot))
|
|
15
|
+
- [8.0-stable] Merge pull request #236 from AlchemyCMS/alchemy-config [#242](https://github.com/AlchemyCMS/alchemy-devise/pull/242) ([alchemycms-bot](https://github.com/apps/alchemycms-bot))
|
|
16
|
+
- [8.0-stable] Merge pull request #238 from robinboening/fix_missing_clear_buttons [#241](https://github.com/AlchemyCMS/alchemy-devise/pull/241) ([alchemycms-bot](https://github.com/apps/alchemycms-bot))
|
|
17
|
+
- Enable rememberable module [#237](https://github.com/AlchemyCMS/alchemy-devise/pull/237) ([tvdeyen](https://github.com/tvdeyen))
|
|
18
|
+
- Use Alchemy::Configuration for config [#236](https://github.com/AlchemyCMS/alchemy-devise/pull/236) ([tvdeyen](https://github.com/tvdeyen))
|
|
19
|
+
- Set 8.0-stable branch to current `main` [#232](https://github.com/AlchemyCMS/alchemy-devise/pull/232) ([mamhoff](https://github.com/mamhoff))
|
|
20
|
+
|
|
3
21
|
## 8.0.0 (2025-11-28)
|
|
4
22
|
|
|
5
23
|
- Enable rememberable module [#237](https://github.com/AlchemyCMS/alchemy-devise/pull/237) ([tvdeyen](https://github.com/tvdeyen))
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<%= render_icon(:user, style: user.logged_in? ? "solid" : "regular") %>
|
|
4
4
|
<% end %>
|
|
5
5
|
<% table.column :login, sortable: true do |user| %>
|
|
6
|
-
<% if can?(:edit, user) %>
|
|
6
|
+
<% if can?(:edit, user) && user.login %>
|
|
7
7
|
<%= link_to_dialog user.login,
|
|
8
8
|
alchemy.edit_admin_user_path(user), {
|
|
9
9
|
title: Alchemy.t(:edit_user),
|
|
@@ -30,5 +30,3 @@
|
|
|
30
30
|
<% table.delete_button tooltip: Alchemy.t(:delete_user), confirm_message: Alchemy.t(:confirm_to_delete_user) %>
|
|
31
31
|
<% table.edit_button tooltip: Alchemy.t(:edit_user), dialog_size: "430x500" %>
|
|
32
32
|
<% end %>
|
|
33
|
-
|
|
34
|
-
<%= paginate @users, theme: "alchemy" %>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alchemy-devise
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.0.
|
|
4
|
+
version: 8.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas von Deyen
|
|
@@ -221,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
221
221
|
- !ruby/object:Gem::Version
|
|
222
222
|
version: '0'
|
|
223
223
|
requirements: []
|
|
224
|
-
rubygems_version:
|
|
224
|
+
rubygems_version: 4.0.6
|
|
225
225
|
specification_version: 4
|
|
226
226
|
summary: Devise based user authentication for AlchemyCMS.
|
|
227
227
|
test_files: []
|