alchemy_cms 7.3.5 → 7.3.7
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.
Potentially problematic release.
This version of alchemy_cms might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/Gemfile +1 -1
- 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/navigation.scss +1 -1
- data/app/components/alchemy/admin/link_dialog/internal_tab.rb +2 -1
- data/app/components/alchemy/ingredients/datetime_view.rb +4 -2
- 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/models/alchemy/ingredients/headline.rb +1 -1
- data/lib/alchemy/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7793f89e30c4c26dbffd0f1709da0993e58f5481ea71ab40affe22f03a17a349
|
4
|
+
data.tar.gz: 465f1c1247818a0f5b9abdd912a0ffb89d3229b4ee88d5ab72ad113d50540d68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b4a4f4977cac620606c08a44112d8d69b516370ef22717b4834a6323ec68f9cf57246ce9df618cc00d6ae4bbd1d4a865cf90291225bee251e490fb1f498fc28
|
7
|
+
data.tar.gz: eab228151d87bf04343c52a2b8c11dc67aea7592e16c4118735fb40801cf321e2723c7ffa38312aeb9991003d662ce7af6375ceaaab50c1cf33bc2625e4950e0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 7.3.7 (2025-08-15)
|
4
|
+
|
5
|
+
- [7.3-stable] fix(DatetimeView): Use settings value if present [#3349](https://github.com/AlchemyCMS/alchemy_cms/pull/3349) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
6
|
+
|
7
|
+
## 7.3.6 (2025-03-17)
|
8
|
+
|
9
|
+
- [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))
|
10
|
+
- [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))
|
11
|
+
- [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))
|
12
|
+
- [7.3-stable] Fix locked pages tab height [#3169](https://github.com/AlchemyCMS/alchemy_cms/pull/3169) ([tvdeyen](https://github.com/tvdeyen))
|
13
|
+
|
3
14
|
## 7.3.5 (2025-01-24)
|
4
15
|
|
5
16
|
- [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))
|
data/Gemfile
CHANGED
@@ -15,7 +15,7 @@ if ENV["DB"] == "mysql" || ENV["DB"] == "mariadb"
|
|
15
15
|
end
|
16
16
|
gem "pg", "~> 1.0" if ENV["DB"] == "postgresql"
|
17
17
|
|
18
|
-
gem "alchemy_i18n", git: "https://github.com/AlchemyCMS/alchemy_i18n.git", branch: "
|
18
|
+
gem "alchemy_i18n", git: "https://github.com/AlchemyCMS/alchemy_i18n.git", branch: "4.2-stable"
|
19
19
|
|
20
20
|
group :development, :test do
|
21
21
|
gem "execjs", "~> 2.9.1"
|