alchemy_cms 7.3.4 → 7.3.6
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 +18 -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/assets/stylesheets/alchemy/admin/navigation.scss +1 -1
- data/app/components/alchemy/admin/link_dialog/internal_tab.rb +2 -1
- data/app/components/alchemy/ingredients/link_view.rb +7 -1
- data/app/components/alchemy/ingredients/picture_view.rb +5 -2
- data/app/components/alchemy/ingredients/text_view.rb +4 -1
- data/app/components/concerns/alchemy/ingredients/link_target.rb +18 -0
- 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 +4 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb126235f1ddf15244e37704736d4af514e7fcacf8179af9a7b6dc6183895d88
|
4
|
+
data.tar.gz: cb420ae1a3f848d9b5aa4da402f3799a579eb6e44a6e5809b595082a45aad99a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57a05f8db5772973aec3d79cc794ef47acc96096100b2a31382c8205958828f332fe3cf925e3d0a0d31b72d30fa91f376bf5a2f0185507035546ebbe9f321c02
|
7
|
+
data.tar.gz: ba3bba1f781513df91093bdb74b6f897838c6f2fce85bdeb4f4921c7e29eb5f79fea8846219c76356877cae1eb55a9aabc7691c982685560e0b3f169820f23cd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 7.3.6 (2025-03-17)
|
4
|
+
|
5
|
+
- [7.3-stable] Fix link dialog for links with url scheme mailto [#3206](https://github.com/AlchemyCMS/alchemy_cms/pull/3206) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
6
|
+
- [7.3-stable] CI: Use own script to check changes files [#3199](https://github.com/AlchemyCMS/alchemy_cms/pull/3199) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
7
|
+
- [7.3-stable] Add rel="noopener noreferrer" to external links [#3185](https://github.com/AlchemyCMS/alchemy_cms/pull/3185) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
8
|
+
- [7.3-stable] Fix locked pages tab height [#3169](https://github.com/AlchemyCMS/alchemy_cms/pull/3169) ([tvdeyen](https://github.com/tvdeyen))
|
9
|
+
|
10
|
+
## 7.3.5 (2025-01-24)
|
11
|
+
|
12
|
+
- [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))
|
13
|
+
- [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))
|
14
|
+
- [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))
|
15
|
+
- [7.3-stable] CI: Set workflow permissions [#3140](https://github.com/AlchemyCMS/alchemy_cms/pull/3140) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
16
|
+
- [7.3-stable] Use safe redirect paths in admin redirects [#3137](https://github.com/AlchemyCMS/alchemy_cms/pull/3137) ([tvdeyen](https://github.com/tvdeyen))
|
17
|
+
- [7.3-stable] CI: Run actions on ubuntu-22.04 [#3124](https://github.com/AlchemyCMS/alchemy_cms/pull/3124) ([tvdeyen](https://github.com/tvdeyen))
|
18
|
+
- [7.3-stable] Fix image_overlay hidden form style [#3111](https://github.com/AlchemyCMS/alchemy_cms/pull/3111) ([tvdeyen](https://github.com/tvdeyen))
|
19
|
+
- Fix tinymce fullscreen mode [#3100](https://github.com/AlchemyCMS/alchemy_cms/pull/3100) ([tvdeyen](https://github.com/tvdeyen))
|
20
|
+
|
3
21
|
## 7.3.4 (2024-11-18)
|
4
22
|
|
5
23
|
- [7.3-stable] chore: Fix rubocop styling issues [#3080](https://github.com/AlchemyCMS/alchemy_cms/pull/3080) ([tvdeyen](https://github.com/tvdeyen))
|
@@ -1911,4 +1929,3 @@ No changes
|
|
1911
1929
|
## 3.0.0 (2014-07-03)
|
1912
1930
|
|
1913
1931
|
[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
|