alchemy_cms 7.3.4 → 7.3.5
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 +11 -1
- data/Gemfile +7 -0
- data/Rakefile +2 -0
- data/app/assets/builds/alchemy/admin.css +1 -1
- data/app/assets/builds/alchemy/admin.css.map +1 -1
- data/app/assets/stylesheets/alchemy/admin/elements.scss +1 -1
- data/app/assets/stylesheets/alchemy/admin/image_library.scss +40 -26
- data/app/controllers/alchemy/admin/base_controller.rb +27 -3
- data/app/controllers/alchemy/admin/languages_controller.rb +1 -1
- data/app/controllers/alchemy/admin/pages_controller.rb +1 -5
- data/app/controllers/alchemy/admin/resources_controller.rb +1 -1
- data/app/views/alchemy/_menubar.html.erb +1 -1
- data/lib/alchemy/resource.rb +14 -4
- data/lib/alchemy/version.rb +1 -1
- metadata +3 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ff8fbcb9df4ac1650e6cf5d5db531ed1ff53d0aecef0120e8ce4a7e56ce3317
|
|
4
|
+
data.tar.gz: dbf230b6dc6becd8c21a1243c7fb48f0fe572bbd44e25cf1d99c1b3503bc5073
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f779c0a2073ed6689a0c28769c547b0b344a8939dbf5571483149fdb55be8e0d21f443a0674cc7a2bde2a987d0c26e7be87be0028e400b57db7259a15f5ffcd
|
|
7
|
+
data.tar.gz: 4beda833c869e3ba9aaeec6e2e1753646021a065e4937819c7c1f2c892212573b6495b7126771cdfdce0cfa22e2272a5be86012a3d9197a905a6f4653f576563
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.3.5 (2025-01-24)
|
|
4
|
+
|
|
5
|
+
- [7.3-stable] Prevent redefining 'alchemy-menubar' custom element when using Turbo [#3166](https://github.com/AlchemyCMS/alchemy_cms/pull/3166) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
|
6
|
+
- [7.3-stable] fix attribute sorting across Ruby versions [#3163](https://github.com/AlchemyCMS/alchemy_cms/pull/3163) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
|
7
|
+
- [7.3-stable] fix missing logger issue in github actions [#3158](https://github.com/AlchemyCMS/alchemy_cms/pull/3158) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
|
8
|
+
- [7.3-stable] CI: Set workflow permissions [#3140](https://github.com/AlchemyCMS/alchemy_cms/pull/3140) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
|
9
|
+
- [7.3-stable] Use safe redirect paths in admin redirects [#3137](https://github.com/AlchemyCMS/alchemy_cms/pull/3137) ([tvdeyen](https://github.com/tvdeyen))
|
|
10
|
+
- [7.3-stable] CI: Run actions on ubuntu-22.04 [#3124](https://github.com/AlchemyCMS/alchemy_cms/pull/3124) ([tvdeyen](https://github.com/tvdeyen))
|
|
11
|
+
- [7.3-stable] Fix image_overlay hidden form style [#3111](https://github.com/AlchemyCMS/alchemy_cms/pull/3111) ([tvdeyen](https://github.com/tvdeyen))
|
|
12
|
+
- Fix tinymce fullscreen mode [#3100](https://github.com/AlchemyCMS/alchemy_cms/pull/3100) ([tvdeyen](https://github.com/tvdeyen))
|
|
13
|
+
|
|
3
14
|
## 7.3.4 (2024-11-18)
|
|
4
15
|
|
|
5
16
|
- [7.3-stable] chore: Fix rubocop styling issues [#3080](https://github.com/AlchemyCMS/alchemy_cms/pull/3080) ([tvdeyen](https://github.com/tvdeyen))
|
|
@@ -1911,4 +1922,3 @@ No changes
|
|
|
1911
1922
|
## 3.0.0 (2014-07-03)
|
|
1912
1923
|
|
|
1913
1924
|
[Release Notes](https://github.com/AlchemyCMS/alchemy_cms/releases/tag/v3.0.0)
|
|
1914
|
-
|
data/Gemfile
CHANGED
|
@@ -31,6 +31,13 @@ group :development, :test do
|
|
|
31
31
|
if rails_version == "7.1"
|
|
32
32
|
gem "actioncable", "~> #{rails_version}.0"
|
|
33
33
|
end
|
|
34
|
+
|
|
35
|
+
# concurrent-ruby v1.3.5 has removed the dependency on logger,
|
|
36
|
+
# effecting Rails 6.1 up to including 7.0.
|
|
37
|
+
# https://github.com/rails/rails/pull/54264
|
|
38
|
+
if ("6.1".to_f.."7.0".to_f).cover?(rails_version.to_f)
|
|
39
|
+
gem "concurrent-ruby", "< 1.3.5"
|
|
40
|
+
end
|
|
34
41
|
else
|
|
35
42
|
gem "launchy"
|
|
36
43
|
gem "annotate"
|
data/Rakefile
CHANGED
|
@@ -95,6 +95,8 @@ namespace :alchemy do
|
|
|
95
95
|
File.open("CHANGELOG.md", "w") { |file| file.puts changelog }
|
|
96
96
|
system("git add CHANGELOG.md")
|
|
97
97
|
system("git commit --amend --no-edit")
|
|
98
|
+
system("gem tag")
|
|
98
99
|
Rake::Task["release"].invoke
|
|
100
|
+
system("git push --follow-tags")
|
|
99
101
|
end
|
|
100
102
|
end
|