alchemy_cms 7.3.5 → 7.4.1

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.
Files changed (128) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +60 -0
  3. data/Gemfile +3 -3
  4. data/README.md +2 -2
  5. data/alchemy_cms.gemspec +1 -4
  6. data/app/assets/builds/alchemy/admin.css +9 -1
  7. data/app/assets/builds/alchemy/admin.css.map +1 -1
  8. data/app/assets/builds/alchemy/custom-properties.css +1 -1
  9. data/app/assets/builds/alchemy/custom-properties.css.map +1 -1
  10. data/app/assets/builds/alchemy/preview.min.js +1 -0
  11. data/app/assets/builds/alchemy/welcome.css +1 -1
  12. data/app/assets/builds/alchemy/welcome.css.map +1 -1
  13. data/app/assets/builds/tinymce/skins/content/alchemy/content.min.css +1 -1
  14. data/app/assets/builds/tinymce/skins/content/alchemy/content.min.css.map +1 -1
  15. data/app/assets/config/alchemy_manifest.js +0 -4
  16. data/app/assets/javascripts/alchemy/admin.js +8 -6
  17. data/app/assets/stylesheets/alchemy/admin/elements.scss +43 -7
  18. data/app/assets/stylesheets/alchemy/admin/forms.scss +4 -0
  19. data/app/assets/stylesheets/alchemy/admin/navigation.scss +9 -1
  20. data/app/assets/stylesheets/alchemy/admin/preview_window.scss +22 -17
  21. data/app/assets/stylesheets/alchemy/admin.scss +1 -1
  22. data/app/assets/stylesheets/alchemy/custom-properties.css +2 -1
  23. data/app/components/alchemy/ingredients/link_view.rb +7 -1
  24. data/app/components/alchemy/ingredients/picture_view.rb +5 -2
  25. data/app/components/alchemy/ingredients/text_view.rb +4 -1
  26. data/app/components/concerns/alchemy/ingredients/link_target.rb +18 -0
  27. data/app/controllers/alchemy/admin/base_controller.rb +8 -3
  28. data/app/controllers/alchemy/admin/elements_controller.rb +2 -2
  29. data/app/controllers/alchemy/admin/layoutpages_controller.rb +1 -0
  30. data/app/controllers/alchemy/admin/pages_controller.rb +5 -1
  31. data/app/controllers/alchemy/elements_controller.rb +3 -0
  32. data/app/helpers/alchemy/admin/form_helper.rb +1 -1
  33. data/app/helpers/alchemy/admin/navigation_helper.rb +22 -1
  34. data/app/javascript/alchemy_admin/components/action.js +2 -1
  35. data/app/javascript/alchemy_admin/components/dialog_link.js +3 -18
  36. data/app/javascript/alchemy_admin/components/element_editor.js +9 -0
  37. data/app/javascript/alchemy_admin/components/elements_window.js +34 -0
  38. data/app/javascript/alchemy_admin/components/elements_window_handle.js +65 -0
  39. data/app/javascript/alchemy_admin/components/icon.js +2 -2
  40. data/app/javascript/alchemy_admin/components/index.js +1 -0
  41. data/app/javascript/alchemy_admin/components/preview_window.js +5 -5
  42. data/app/javascript/alchemy_admin/components/uploader/file_upload.js +1 -1
  43. data/app/javascript/alchemy_admin/confirm_dialog.js +9 -11
  44. data/app/javascript/alchemy_admin/dialog.js +329 -0
  45. data/app/javascript/alchemy_admin/hotkeys.js +3 -2
  46. data/app/javascript/alchemy_admin/image_cropper.js +56 -48
  47. data/app/javascript/alchemy_admin/image_overlay.js +73 -0
  48. data/app/javascript/alchemy_admin/initializer.js +51 -2
  49. data/app/javascript/alchemy_admin/link_dialog.js +2 -1
  50. data/app/javascript/alchemy_admin/node_tree.js +3 -1
  51. data/app/javascript/alchemy_admin/page_sorter.js +1 -1
  52. data/app/javascript/alchemy_admin/picture_selector.js +2 -1
  53. data/app/javascript/alchemy_admin/shoelace_theme.js +2 -2
  54. data/app/javascript/alchemy_admin/templates/compiled.js +1 -0
  55. data/app/javascript/alchemy_admin.js +10 -6
  56. data/app/javascript/preview.js +117 -0
  57. data/app/models/alchemy/image_cropper_settings.rb +3 -4
  58. data/app/views/alchemy/_preview_mode_code.html.erb +1 -1
  59. data/app/views/alchemy/admin/crop.html.erb +18 -16
  60. data/app/views/alchemy/admin/dashboard/info.html.erb +1 -1
  61. data/app/views/alchemy/admin/elements/_add_nested_element_form.html.erb +9 -8
  62. data/app/views/alchemy/admin/elements/_clipboard_button.html.erb +14 -0
  63. data/app/views/alchemy/admin/elements/_element.html.erb +2 -0
  64. data/app/views/alchemy/admin/elements/_form.html.erb +15 -13
  65. data/app/views/alchemy/admin/elements/create.turbo_stream.erb +34 -0
  66. data/app/views/alchemy/admin/elements/index.html.erb +3 -15
  67. data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +1 -1
  68. data/app/views/alchemy/admin/layoutpages/edit.html.erb +7 -5
  69. data/app/views/alchemy/admin/nodes/_form.html.erb +1 -1
  70. data/app/views/alchemy/admin/pages/_current_page.html.erb +1 -1
  71. data/app/views/alchemy/admin/pages/_form.html.erb +43 -40
  72. data/app/views/alchemy/admin/pages/_locked_page.html.erb +1 -1
  73. data/app/views/alchemy/admin/pages/_page_layout_filter.html.erb +1 -1
  74. data/app/views/alchemy/admin/pages/_sitemap.html.erb +1 -1
  75. data/app/views/alchemy/admin/pages/_table.html.erb +2 -2
  76. data/app/views/alchemy/admin/pages/edit.html.erb +1 -1
  77. data/app/views/alchemy/admin/pages/update.turbo_stream.erb +39 -0
  78. data/app/views/alchemy/admin/partials/_main_navigation_entry.html.erb +3 -4
  79. data/app/views/alchemy/admin/pictures/_picture_description_field.html.erb +7 -5
  80. data/app/views/alchemy/admin/pictures/index.html.erb +13 -9
  81. data/app/views/alchemy/admin/resources/_filter_bar.html.erb +1 -1
  82. data/app/views/layouts/alchemy/admin.html.erb +8 -4
  83. data/bun.lockb +0 -0
  84. data/bundles/tinymce.js +2 -0
  85. data/config/alchemy/config.yml +3 -3
  86. data/config/alchemy/modules.yml +7 -6
  87. data/config/importmap.rb +4 -0
  88. data/config/routes.rb +1 -1
  89. data/lib/alchemy/engine.rb +6 -0
  90. data/lib/alchemy/modules.rb +0 -27
  91. data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +10 -10
  92. data/lib/alchemy/tinymce.rb +2 -1
  93. data/lib/alchemy/upgrader/seven_point_four.rb +26 -0
  94. data/lib/alchemy/version.rb +1 -1
  95. data/lib/alchemy.rb +14 -0
  96. data/lib/alchemy_cms.rb +0 -2
  97. data/lib/generators/alchemy/ingredient/ingredient_generator.rb +5 -0
  98. data/lib/generators/alchemy/ingredient/templates/view.html.erb +1 -1
  99. data/lib/generators/alchemy/ingredient/templates/view_component.rb.tt +10 -0
  100. data/lib/generators/alchemy/install/install_generator.rb +0 -1
  101. data/lib/generators/alchemy/install/templates/elements.yml.tt +1 -1
  102. data/lib/tasks/alchemy/upgrade.rake +19 -20
  103. data/rollup.config.mjs +44 -1
  104. data/vendor/javascript/cropperjs.min.js +10 -0
  105. data/vendor/javascript/handlebars.min.js +29 -0
  106. data/vendor/javascript/jquery.min.js +2 -0
  107. data/vendor/javascript/select2.min.js +23 -0
  108. data/vendor/javascript/tinymce.min.js +1 -1
  109. metadata +40 -92
  110. data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +0 -271
  111. data/app/assets/javascripts/alchemy/alchemy.image_overlay.coffee +0 -54
  112. data/app/assets/javascripts/alchemy/alchemy.preview.js.coffee +0 -97
  113. data/app/assets/javascripts/alchemy/preview.js +0 -1
  114. data/app/assets/javascripts/alchemy/templates/index.js +0 -2
  115. data/app/javascript/alchemy_admin/gui.js +0 -12
  116. data/app/views/alchemy/admin/elements/create.js.erb +0 -35
  117. data/app/views/alchemy/admin/pages/update.js.erb +0 -43
  118. data/lib/alchemy/upgrader/seven_point_zero.rb +0 -36
  119. data/vendor/assets/images/Jcrop.gif +0 -0
  120. data/vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js +0 -7
  121. data/vendor/assets/javascripts/jquery_plugins/select2.js +0 -3729
  122. data/vendor/assets/stylesheets/jquery.Jcrop.min.css +0 -2
  123. data/vendor/assets/stylesheets/tinymce/skins/content/default/content.min.css +0 -1
  124. /data/app/{assets/javascripts/alchemy → javascript/alchemy_admin}/templates/node_folder.hbs +0 -0
  125. /data/app/{assets/javascripts/alchemy → javascript/alchemy_admin}/templates/page_folder.hbs +0 -0
  126. /data/app/{assets/javascripts/tinymce/icons/remixicons/icons.js → javascript/tinymce/icons/remixicons/index.js} +0 -0
  127. /data/app/{assets/javascripts/tinymce/plugins/alchemy_link/plugin.min.js → javascript/tinymce/plugins/alchemy_link/index.js} +0 -0
  128. /data/vendor/assets/{fonts → images}/remixicon.symbol.svg +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2ff8fbcb9df4ac1650e6cf5d5db531ed1ff53d0aecef0120e8ce4a7e56ce3317
4
- data.tar.gz: dbf230b6dc6becd8c21a1243c7fb48f0fe572bbd44e25cf1d99c1b3503bc5073
3
+ metadata.gz: 6ee0b06ef42eee852ad19ec83bb5fcc81e2fb8940442921da89debd7ee1a0619
4
+ data.tar.gz: 5666121fc18ed4b150320ca997f40c5f306c67389ebefc9d77f4a6f046bba99b
5
5
  SHA512:
6
- metadata.gz: 2f779c0a2073ed6689a0c28769c547b0b344a8939dbf5571483149fdb55be8e0d21f443a0674cc7a2bde2a987d0c26e7be87be0028e400b57db7259a15f5ffcd
7
- data.tar.gz: 4beda833c869e3ba9aaeec6e2e1753646021a065e4937819c7c1f2c892212573b6495b7126771cdfdce0cfa22e2272a5be86012a3d9197a905a6f4653f576563
6
+ metadata.gz: c3f0c0a1129cec4514c51ae4db1fa8ecd85621e5b551b9d1a5a7871db807bf8c8c03826bdf088578d363dcc868b53eec6ccc0d0dc4c57449b905ff6c0dc04cf9
7
+ data.tar.gz: dc6e95ad76b7128e23a146864f242bff19335eb2c8ec50a5e1efe8254f951b33a7ac8c4f3c4e9053b693a63e6073745c6b87dfd3339147f28e1e0a6b29c13612
data/CHANGELOG.md CHANGED
@@ -1,5 +1,65 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.4.1 (2025-03-05)
4
+
5
+ - [7.4-stable] Fix image cropper [#3193](https://github.com/AlchemyCMS/alchemy_cms/pull/3193) ([alchemycms-bot](https://github.com/alchemycms-bot))
6
+
7
+ ## 7.4.0 (2025-02-07)
8
+
9
+ - Add specs for format matchers [#3182](https://github.com/AlchemyCMS/alchemy_cms/pull/3182) ([mamhoff](https://github.com/mamhoff))
10
+ - Allow additional stylesheets to be included in the admin UI [#3179](https://github.com/AlchemyCMS/alchemy_cms/pull/3179) ([tvdeyen](https://github.com/tvdeyen))
11
+ - fix(Uploader): Handle HTML Errors during upload [#3176](https://github.com/AlchemyCMS/alchemy_cms/pull/3176) ([tvdeyen](https://github.com/tvdeyen))
12
+ - Add rel="noopener noreferrer" to external links [#3175](https://github.com/AlchemyCMS/alchemy_cms/pull/3175) ([tvdeyen](https://github.com/tvdeyen))
13
+ - Remove coffee-rails dependency [#3172](https://github.com/AlchemyCMS/alchemy_cms/pull/3172) ([tvdeyen](https://github.com/tvdeyen))
14
+ - fix missing logger issue in github actions [#3154](https://github.com/AlchemyCMS/alchemy_cms/pull/3154) ([robinboening](https://github.com/robinboening))
15
+ - fix attribute sorting across Ruby versions [#3153](https://github.com/AlchemyCMS/alchemy_cms/pull/3153) ([robinboening](https://github.com/robinboening))
16
+ - Fix Alchemy Guides links [#3148](https://github.com/AlchemyCMS/alchemy_cms/pull/3148) ([zirni](https://github.com/zirni))
17
+ - Correct element guides link in elements.yml.tt [#3146](https://github.com/AlchemyCMS/alchemy_cms/pull/3146) ([zirni](https://github.com/zirni))
18
+ - CI: Brakeman needs security-events: write permissions [#3145](https://github.com/AlchemyCMS/alchemy_cms/pull/3145) ([tvdeyen](https://github.com/tvdeyen))
19
+ - CI: Set workflow permissions [#3139](https://github.com/AlchemyCMS/alchemy_cms/pull/3139) ([tvdeyen](https://github.com/tvdeyen))
20
+ - Use safe redirect paths in admin redirects [#3129](https://github.com/AlchemyCMS/alchemy_cms/pull/3129) ([tvdeyen](https://github.com/tvdeyen))
21
+ - CI: Run actions on ubuntu-22.04 [#3122](https://github.com/AlchemyCMS/alchemy_cms/pull/3122) ([tvdeyen](https://github.com/tvdeyen))
22
+ - Fix image_overlay hidden form style [#3110](https://github.com/AlchemyCMS/alchemy_cms/pull/3110) ([tvdeyen](https://github.com/tvdeyen))
23
+ - [js] Update all development npm dependencies (2024-12-26) [#3109](https://github.com/AlchemyCMS/alchemy_cms/pull/3109) ([depfu](https://github.com/apps/depfu))
24
+ - [ruby - main] Update rails_live_reload to version 0.4.0 [#3105](https://github.com/AlchemyCMS/alchemy_cms/pull/3105) ([depfu](https://github.com/apps/depfu))
25
+ - Test with Ruby 3.4.1 [#3103](https://github.com/AlchemyCMS/alchemy_cms/pull/3103) ([tvdeyen](https://github.com/tvdeyen))
26
+ - Resizable elements window [#3097](https://github.com/AlchemyCMS/alchemy_cms/pull/3097) ([tvdeyen](https://github.com/tvdeyen))
27
+ - Move element hint into header (again) [#3096](https://github.com/AlchemyCMS/alchemy_cms/pull/3096) ([tvdeyen](https://github.com/tvdeyen))
28
+ - Prevent redefining 'alchemy-menubar' custom element when using Turbo [#3095](https://github.com/AlchemyCMS/alchemy_cms/pull/3095) ([gdott9](https://github.com/gdott9))
29
+ - Use `#send` in navigation helper [#3094](https://github.com/AlchemyCMS/alchemy_cms/pull/3094) ([mamhoff](https://github.com/mamhoff))
30
+ - Verify module controllers at runtime [#3093](https://github.com/AlchemyCMS/alchemy_cms/pull/3093) ([mamhoff](https://github.com/mamhoff))
31
+ - Add dependabot bundler version updates [#3090](https://github.com/AlchemyCMS/alchemy_cms/pull/3090) ([tvdeyen](https://github.com/tvdeyen))
32
+ - Convert Sass `@import` into `@use` [#3088](https://github.com/AlchemyCMS/alchemy_cms/pull/3088) ([tvdeyen](https://github.com/tvdeyen))
33
+ - dev: Update rspec-rails to v7.1 [#3084](https://github.com/AlchemyCMS/alchemy_cms/pull/3084) ([tvdeyen](https://github.com/tvdeyen))
34
+ - CI: Remove rexml gem [#3082](https://github.com/AlchemyCMS/alchemy_cms/pull/3082) ([tvdeyen](https://github.com/tvdeyen))
35
+ - Update importmap-rails to v2.0.3 [#3081](https://github.com/AlchemyCMS/alchemy_cms/pull/3081) ([tvdeyen](https://github.com/tvdeyen))
36
+ - chore: Fix rubocop styling issues [#3079](https://github.com/AlchemyCMS/alchemy_cms/pull/3079) ([tvdeyen](https://github.com/tvdeyen))
37
+ - Fix loading custom properties into Tinymce skin [#3071](https://github.com/AlchemyCMS/alchemy_cms/pull/3071) ([tvdeyen](https://github.com/tvdeyen))
38
+ - Fix filtering associated models by id [#3067](https://github.com/AlchemyCMS/alchemy_cms/pull/3067) ([tvdeyen](https://github.com/tvdeyen))
39
+ - Add support for Propshaft [#3066](https://github.com/AlchemyCMS/alchemy_cms/pull/3066) ([tvdeyen](https://github.com/tvdeyen))
40
+ - Add tinymce skin files to Sprockets manifest [#3062](https://github.com/AlchemyCMS/alchemy_cms/pull/3062) ([tvdeyen](https://github.com/tvdeyen))
41
+ - [js] Update all development npm dependencies (2024-10-03) [#3061](https://github.com/AlchemyCMS/alchemy_cms/pull/3061) ([depfu](https://github.com/apps/depfu))
42
+ - fix new page form [#3060](https://github.com/AlchemyCMS/alchemy_cms/pull/3060) ([zp1984](https://github.com/zp1984))
43
+ - Generate a view component in ingredient generator [#3058](https://github.com/AlchemyCMS/alchemy_cms/pull/3058) ([kulturbande](https://github.com/kulturbande))
44
+ - Remove frontend elements controller [#3057](https://github.com/AlchemyCMS/alchemy_cms/pull/3057) ([tvdeyen](https://github.com/tvdeyen))
45
+ - Fix locked pages tab height [#3056](https://github.com/AlchemyCMS/alchemy_cms/pull/3056) ([tvdeyen](https://github.com/tvdeyen))
46
+ - Use turbo streams to update page from configure dialog [#3054](https://github.com/AlchemyCMS/alchemy_cms/pull/3054) ([tvdeyen](https://github.com/tvdeyen))
47
+ - Use turbo frame and stream to create element [#3053](https://github.com/AlchemyCMS/alchemy_cms/pull/3053) ([tvdeyen](https://github.com/tvdeyen))
48
+ - Picture alt text form field height [#3051](https://github.com/AlchemyCMS/alchemy_cms/pull/3051) ([tvdeyen](https://github.com/tvdeyen))
49
+ - Convert dialog class into esm [#3050](https://github.com/AlchemyCMS/alchemy_cms/pull/3050) ([tvdeyen](https://github.com/tvdeyen))
50
+ - Load jQuery via importmap [#3049](https://github.com/AlchemyCMS/alchemy_cms/pull/3049) ([tvdeyen](https://github.com/tvdeyen))
51
+ - Load Select2 via importmap [#3048](https://github.com/AlchemyCMS/alchemy_cms/pull/3048) ([tvdeyen](https://github.com/tvdeyen))
52
+ - Use cropperjs instead of Jcrop [#3047](https://github.com/AlchemyCMS/alchemy_cms/pull/3047) ([tvdeyen](https://github.com/tvdeyen))
53
+ - Preload SVG Icon Sprite [#3046](https://github.com/AlchemyCMS/alchemy_cms/pull/3046) ([tvdeyen](https://github.com/tvdeyen))
54
+ - Precompile alchem/preview.js [#3045](https://github.com/AlchemyCMS/alchemy_cms/pull/3045) ([tvdeyen](https://github.com/tvdeyen))
55
+ - Use Handlebars templates from npm [#3044](https://github.com/AlchemyCMS/alchemy_cms/pull/3044) ([tvdeyen](https://github.com/tvdeyen))
56
+ - Bundle alchemy_link plugin into tinymce bundle [#3043](https://github.com/AlchemyCMS/alchemy_cms/pull/3043) ([tvdeyen](https://github.com/tvdeyen))
57
+ - Replace MySQL build with SQLite [#3042](https://github.com/AlchemyCMS/alchemy_cms/pull/3042) ([tvdeyen](https://github.com/tvdeyen))
58
+ - Remove 7.x deprecations [#3041](https://github.com/AlchemyCMS/alchemy_cms/pull/3041) ([tvdeyen](https://github.com/tvdeyen))
59
+ - Remove 7.x upgraders [#3039](https://github.com/AlchemyCMS/alchemy_cms/pull/3039) ([tvdeyen](https://github.com/tvdeyen))
60
+ - Make page select portable [#3037](https://github.com/AlchemyCMS/alchemy_cms/pull/3037) ([tvdeyen](https://github.com/tvdeyen))
61
+ - Allow Rails 8.0 [#3032](https://github.com/AlchemyCMS/alchemy_cms/pull/3032) ([tvdeyen](https://github.com/tvdeyen))
62
+
3
63
  ## 7.3.5 (2025-01-24)
4
64
 
5
65
  - [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
@@ -4,11 +4,11 @@ source "https://rubygems.org"
4
4
 
5
5
  gemspec
6
6
 
7
- rails_version = ENV.fetch("RAILS_VERSION", "7.2")
7
+ rails_version = ENV.fetch("RAILS_VERSION", "8.0")
8
8
  gem "rails", "~> #{rails_version}.0"
9
9
 
10
10
  if ENV["DB"].nil? || ENV["DB"] == "sqlite"
11
- gem "sqlite3", "~> 1.7.0"
11
+ gem "sqlite3", (rails_version == "7.0") ? "~> 1.7" : "~> 2.0"
12
12
  end
13
13
  if ENV["DB"] == "mysql" || ENV["DB"] == "mariadb"
14
14
  gem "mysql2", "~> 0.5.1"
@@ -64,7 +64,7 @@ end
64
64
 
65
65
  gem "web-console", "~> 4.2", group: :development
66
66
 
67
- gem "rails_live_reload", "~> 0.3.5"
67
+ gem "rails_live_reload", "~> 0.4.0"
68
68
 
69
69
  gem "dartsass-rails", "~> 0.5.0"
70
70
 
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # AlchemyCMS
2
2
 
3
- [![Build Status](https://github.com/AlchemyCMS/alchemy_cms/workflows/CI/badge.svg?branch=main)](https://github.com/AlchemyCMS/alchemy_cms/actions)
3
+ [![Build & Test](https://github.com/AlchemyCMS/alchemy_cms/actions/workflows/build_test.yml/badge.svg)](https://github.com/AlchemyCMS/alchemy_cms/actions/workflows/build_test.yml)
4
4
  [![Brakeman Scan](https://github.com/AlchemyCMS/alchemy_cms/actions/workflows/brakeman-analysis.yml/badge.svg)](https://github.com/AlchemyCMS/alchemy_cms/actions/workflows/brakeman-analysis.yml)
5
+ [![Lint](https://github.com/AlchemyCMS/alchemy_cms/actions/workflows/lint.yml/badge.svg)](https://github.com/AlchemyCMS/alchemy_cms/actions/workflows/lint.yml)
5
6
 
6
7
  [![Gem Version](https://badge.fury.io/rb/alchemy_cms.svg)](https://badge.fury.io/rb/alchemy_cms)
7
8
  [![codecov](https://codecov.io/gh/AlchemyCMS/alchemy_cms/graph/badge.svg?token=uUHQGfB2xe)](https://codecov.io/gh/AlchemyCMS/alchemy_cms)
8
- [![Lint](https://github.com/AlchemyCMS/alchemy_cms/actions/workflows/lint.yml/badge.svg)](https://github.com/AlchemyCMS/alchemy_cms/actions/workflows/lint.yml)
9
9
  [![Depfu](https://badges.depfu.com/badges/ebe56d2dd7b7044a8ae700cc81212a8e/overview.svg)](https://depfu.com/github/AlchemyCMS/alchemy_cms?project_id=4600)
10
10
 
11
11
  [![Backers on Open Collective](https://opencollective.com/alchemy_cms/backers/badge.svg?color=blue)](#backers)
data/alchemy_cms.gemspec CHANGED
@@ -29,21 +29,18 @@ Gem::Specification.new do |gem|
29
29
  activesupport
30
30
  railties
31
31
  ].each do |rails_gem|
32
- gem.add_runtime_dependency rails_gem, [">= 7.0", "< 7.3"]
32
+ gem.add_runtime_dependency rails_gem, [">= 7.0", "< 8.1"]
33
33
  end
34
34
 
35
35
  gem.add_runtime_dependency "active_model_serializers", ["~> 0.10.14"]
36
36
  gem.add_runtime_dependency "acts_as_list", [">= 0.3", "< 2"]
37
37
  gem.add_runtime_dependency "awesome_nested_set", ["~> 3.1", ">= 3.7.0"]
38
38
  gem.add_runtime_dependency "cancancan", [">= 2.1", "< 4.0"]
39
- gem.add_runtime_dependency "coffee-rails", [">= 4.0", "< 6.0"]
40
39
  gem.add_runtime_dependency "csv", ["~> 3.3"]
41
40
  gem.add_runtime_dependency "dragonfly", ["~> 1.4"]
42
41
  gem.add_runtime_dependency "dragonfly_svg", ["~> 0.0.4"]
43
42
  gem.add_runtime_dependency "gutentag", ["~> 2.2", ">= 2.2.1"]
44
- gem.add_runtime_dependency "handlebars_assets", ["~> 0.23"]
45
43
  gem.add_runtime_dependency "importmap-rails", ["~> 1.2", ">= 1.2.1"]
46
- gem.add_runtime_dependency "jquery-rails", ["~> 4.0", ">= 4.0.4"]
47
44
  gem.add_runtime_dependency "kaminari", ["~> 1.1"]
48
45
  gem.add_runtime_dependency "originator", ["~> 3.1"]
49
46
  gem.add_runtime_dependency "ransack", [">= 1.8", "< 5.0"]