alchemy-devise 8.2.0 → 8.2.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/app/views/alchemy/admin/users/_fields.html.erb +1 -1
- data/config/initializers/alchemy.rb +1 -1
- data/lib/alchemy/devise/engine.rb +1 -1
- data/lib/alchemy/devise/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d928e49a343ef2986c50b3a7da3fe0ae63f5772dc532992afc38d9e860a903f5
|
|
4
|
+
data.tar.gz: 0c6d644ae0963efe14583ac80807e357c5caeebb9e04d11a617e6e69cabf3027
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ceaa7da33c3ffcd1d5183258e5b53aecea88a28eb4c843b6f1cbdc6bbc4b6f0190976cbf232e5d27ba1a92fa7a264f4d7b5b33be65aeb5d44ef570e5291abb7f
|
|
7
|
+
data.tar.gz: cc6e8751b959e485c1122891732784afa7e7602174e2c03bd46fef5829c0a392413c5748e9bedb52dbe41be83442367df8784dde92ca662d8182517b30352378
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.2.2 (2026-05-06)
|
|
4
|
+
|
|
5
|
+
<!-- Release notes generated using configuration in .github/release.yml at 8.2-stable -->
|
|
6
|
+
|
|
7
|
+
## What's Changed
|
|
8
|
+
### Other Changes
|
|
9
|
+
* [8.2-stable] Merge pull request #279 from AlchemyCMS/prevent-deprecation-warnings by @alchemycms-bot[bot] in https://github.com/AlchemyCMS/alchemy-devise/pull/280
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
**Full Changelog**: https://github.com/AlchemyCMS/alchemy-devise/compare/v8.2.1...v8.2.2
|
|
13
|
+
|
|
14
|
+
## 8.2.1 (2026-04-16)
|
|
15
|
+
|
|
16
|
+
<!-- Release notes generated using configuration in .github/release.yml at 8.2-stable -->
|
|
17
|
+
|
|
18
|
+
## What's Changed
|
|
19
|
+
### Other Changes
|
|
20
|
+
* [8.2-stable] Merge pull request #276 from AlchemyCMS/locale-select-disable-auto-submit by @alchemycms-bot[bot] in https://github.com/AlchemyCMS/alchemy-devise/pull/277
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
**Full Changelog**: https://github.com/AlchemyCMS/alchemy-devise/compare/v8.2.0...v8.2.1
|
|
24
|
+
|
|
3
25
|
## 8.2.0 (2026-04-13)
|
|
4
26
|
|
|
5
27
|
<!-- Release notes generated using configuration in .github/release.yml at main -->
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<% if Alchemy::I18n.available_locales.many? %>
|
|
6
6
|
<div class="input select">
|
|
7
7
|
<%= f.label(:language) %>
|
|
8
|
-
<%= render Alchemy::Admin::LocaleSelect.new(f.field_name(:language)) %>
|
|
8
|
+
<%= render Alchemy::Admin::LocaleSelect.new(f.field_name(:language), auto_submit: false) %>
|
|
9
9
|
</div>
|
|
10
10
|
<% end %>
|
|
11
11
|
<%= f.input :password, required: while_signup?, input_html: {autocomplete: "new-password"} %>
|
|
@@ -11,7 +11,7 @@ module Alchemy
|
|
|
11
11
|
engine_name "alchemy_devise"
|
|
12
12
|
|
|
13
13
|
initializer "alchemy_devise.user_class", before: "alchemy.userstamp" do
|
|
14
|
-
Alchemy.
|
|
14
|
+
Alchemy.config.user_class = "Alchemy::User"
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
initializer "alchemy_devise.assets" do |app|
|