alchemy_cms 7.3.4 → 7.3.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 279893174c10713f9a126baecd9627b90b9657271a432ef1ebda40b8c7b22d15
4
- data.tar.gz: 2216a3cb47a1558c3bb2a6b009a28d6e702ff2316dce2462ebc910ecc96545af
3
+ metadata.gz: 2ff8fbcb9df4ac1650e6cf5d5db531ed1ff53d0aecef0120e8ce4a7e56ce3317
4
+ data.tar.gz: dbf230b6dc6becd8c21a1243c7fb48f0fe572bbd44e25cf1d99c1b3503bc5073
5
5
  SHA512:
6
- metadata.gz: af4f9dd42c434e074a3045dfbca42b783d58291b207153ccc457ed3eeca7fc3de9931eacf836f4677a23e557f2af284dc0cec9dda187803db2095aba3fb18952
7
- data.tar.gz: d682cbc7df52388e0dd9714a22545d9116eb2bb7668ad1cffe64251df4e9615a00414e8b9bf542e42edb12e6409710739a2a7c3c7cdadc6436c887669c81ece3
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