alchemy_cms 7.4.10 → 8.0.0.b
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/README.md +16 -5
- data/app/assets/builds/alchemy/admin/page-select.css +1 -1
- data/app/assets/builds/alchemy/admin/print.css +1 -1
- data/app/assets/builds/alchemy/admin.css +2 -2
- data/app/assets/builds/alchemy/dark-theme.css +1 -0
- data/app/assets/builds/alchemy/light-theme.css +1 -0
- data/app/assets/builds/alchemy/theme.css +1 -0
- data/app/assets/builds/alchemy/welcome.css +1 -1
- data/app/assets/builds/tinymce/skins/content/alchemy/content.min.css +1 -1
- data/app/assets/builds/tinymce/skins/content/alchemy-dark/content.min.css +1 -0
- data/app/assets/builds/tinymce/skins/ui/alchemy/content.min.css +1 -0
- data/app/assets/builds/tinymce/skins/ui/alchemy/skin.min.css +1 -1
- data/app/assets/builds/tinymce/skins/ui/alchemy-dark/content.min.css +1 -0
- data/app/assets/builds/tinymce/skins/ui/alchemy-dark/skin.min.css +1 -0
- data/app/assets/config/alchemy_manifest.js +0 -2
- data/app/assets/images/alchemy/element_icons/default.svg +1 -0
- data/app/assets/images/alchemy/icons-sprite.svg +1 -0
- data/app/components/alchemy/admin/element_select.rb +39 -0
- data/app/components/alchemy/admin/resource/applied_filter.rb +29 -0
- data/app/components/alchemy/admin/resource/checkbox_filter.rb +36 -0
- data/app/components/alchemy/admin/resource/datepicker_filter.rb +42 -0
- data/app/components/alchemy/admin/resource/select_filter.rb +43 -0
- data/app/components/alchemy/admin/toolbar_button.rb +5 -2
- data/app/components/alchemy/ingredients/number_view.rb +18 -0
- data/app/controllers/alchemy/admin/attachments_controller.rb +10 -15
- data/app/controllers/alchemy/admin/clipboard_controller.rb +2 -6
- data/app/controllers/alchemy/admin/elements_controller.rb +3 -1
- data/app/controllers/alchemy/admin/languages_controller.rb +1 -1
- data/app/controllers/alchemy/admin/pages_controller.rb +15 -15
- data/app/controllers/alchemy/admin/pictures_controller.rb +27 -37
- data/app/controllers/alchemy/admin/resources_controller.rb +16 -106
- data/app/controllers/alchemy/attachments_controller.rb +43 -14
- data/app/controllers/alchemy/messages_controller.rb +1 -1
- data/app/controllers/alchemy/pages_controller.rb +26 -4
- data/app/controllers/concerns/alchemy/admin/resource_filter.rb +93 -0
- data/app/decorators/alchemy/element_editor.rb +5 -48
- data/app/decorators/alchemy/ingredient_editor.rb +3 -53
- data/app/helpers/alchemy/admin/attachments_helper.rb +5 -5
- data/app/helpers/alchemy/admin/base_helper.rb +14 -84
- data/app/helpers/alchemy/admin/pages_helper.rb +1 -1
- data/app/helpers/alchemy/base_helper.rb +0 -30
- data/app/helpers/alchemy/elements_block_helper.rb +0 -14
- data/app/helpers/alchemy/pages_helper.rb +1 -1
- data/{lib → app/helpers}/alchemy/resources_helper.rb +5 -45
- data/app/javascript/alchemy_admin/components/action.js +2 -0
- data/app/javascript/alchemy_admin/components/alchemy_html_element.js +3 -3
- data/app/javascript/alchemy_admin/components/auto_submit.js +20 -0
- data/app/javascript/alchemy_admin/components/datepicker.js +18 -7
- data/app/javascript/alchemy_admin/components/element_editor/delete_element_button.js +8 -7
- data/app/javascript/alchemy_admin/components/element_editor.js +25 -15
- data/app/javascript/alchemy_admin/components/element_select.js +43 -0
- data/app/javascript/alchemy_admin/components/index.js +3 -0
- data/app/javascript/alchemy_admin/components/link_buttons.js +6 -2
- data/app/javascript/alchemy_admin/components/remote_select.js +9 -2
- data/app/javascript/alchemy_admin/components/tags_autocomplete.js +5 -1
- data/app/javascript/alchemy_admin/components/tinymce.js +93 -14
- data/app/javascript/alchemy_admin/components/update_check.js +42 -0
- data/app/javascript/alchemy_admin/components/uploader/file_upload.js +15 -8
- data/app/javascript/alchemy_admin/components/uploader/progress.js +12 -6
- data/app/javascript/alchemy_admin/components/uploader.js +4 -2
- data/app/javascript/alchemy_admin/confirm_dialog.js +27 -57
- data/app/javascript/alchemy_admin/dialog.js +1 -1
- data/app/javascript/alchemy_admin/dirty.js +3 -2
- data/app/javascript/alchemy_admin/file_editors.js +1 -1
- data/app/javascript/alchemy_admin/i18n.js +15 -16
- data/app/javascript/alchemy_admin/image_loader.js +4 -2
- data/app/javascript/alchemy_admin/initializer.js +1 -49
- data/app/javascript/alchemy_admin/picture_editors.js +7 -4
- data/app/javascript/alchemy_admin/picture_selector.js +4 -4
- data/app/javascript/alchemy_admin/utils/ajax.js +51 -44
- data/app/javascript/alchemy_admin.js +3 -8
- data/app/jobs/alchemy/delete_picture_job.rb +12 -0
- data/app/models/alchemy/admin/filters/base.rb +38 -0
- data/app/models/alchemy/admin/filters/checkbox.rb +24 -0
- data/app/models/alchemy/admin/filters/datepicker.rb +53 -0
- data/app/models/alchemy/admin/filters/select.rb +70 -0
- data/app/models/alchemy/admin/resource_name.rb +27 -0
- data/app/models/alchemy/attachment.rb +49 -44
- data/app/models/alchemy/base_record.rb +2 -0
- data/app/models/alchemy/element/definitions.rb +1 -1
- data/app/models/alchemy/element/element_ingredients.rb +6 -6
- data/app/models/alchemy/element/presenters.rb +3 -12
- data/app/models/alchemy/element.rb +10 -27
- data/app/models/alchemy/element_definition.rb +190 -0
- data/app/models/alchemy/ingredient.rb +10 -43
- data/app/models/alchemy/ingredient_definition.rb +134 -0
- data/app/models/alchemy/ingredient_validator.rb +7 -3
- data/app/models/alchemy/ingredients/number.rb +19 -0
- data/app/models/alchemy/language.rb +2 -21
- data/app/models/alchemy/message.rb +3 -7
- data/app/models/alchemy/node.rb +1 -1
- data/app/models/alchemy/page/{page_layouts.rb → definitions.rb} +12 -19
- data/app/models/alchemy/page/fixed_attributes.rb +1 -1
- data/app/models/alchemy/page/page_elements.rb +13 -14
- data/app/models/alchemy/page/page_naming.rb +3 -11
- data/app/models/alchemy/page/page_natures.rb +20 -15
- data/app/models/alchemy/page/page_scopes.rb +1 -1
- data/app/models/alchemy/page.rb +12 -39
- data/app/models/alchemy/page_definition.rb +115 -0
- data/app/models/alchemy/picture.rb +71 -99
- data/app/models/alchemy/picture_variant.rb +115 -5
- data/{lib → app/models}/alchemy/resource.rb +4 -18
- data/{lib → app/models}/alchemy/searchable_resource.rb +15 -0
- data/app/models/alchemy/site/layout.rb +5 -5
- data/app/models/alchemy/site.rb +1 -21
- data/app/models/alchemy/storage_adapter/active_storage/attachment_url.rb +41 -0
- data/app/models/alchemy/storage_adapter/active_storage/picture_url.rb +55 -0
- data/app/models/alchemy/storage_adapter/active_storage/preprocessor.rb +40 -0
- data/app/models/alchemy/storage_adapter/active_storage.rb +173 -0
- data/app/models/alchemy/{attachment/url.rb → storage_adapter/dragonfly/attachment_url.rb} +12 -12
- data/app/models/alchemy/storage_adapter/dragonfly/picture_url.rb +75 -0
- data/app/models/alchemy/{picture → storage_adapter/dragonfly}/preprocessor.rb +4 -4
- data/app/models/alchemy/storage_adapter/dragonfly.rb +205 -0
- data/app/models/alchemy/storage_adapter.rb +74 -0
- data/app/models/concerns/alchemy/picture_thumbnails.rb +19 -6
- data/app/models/concerns/alchemy/relatable_resource.rb +28 -0
- data/app/serializers/alchemy/element_serializer.rb +0 -1
- data/app/services/alchemy/dragonfly_to_image_processing.rb +100 -0
- data/app/stylesheets/alchemy/_custom-properties.scss +162 -0
- data/app/stylesheets/alchemy/_defaults.scss +3 -0
- data/app/stylesheets/alchemy/_extends.scss +69 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/_mixins.scss +40 -68
- data/app/stylesheets/alchemy/_themes.scss +540 -0
- data/app/stylesheets/alchemy/_variables.scss +5 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/archive.scss +45 -42
- data/app/stylesheets/alchemy/admin/attachments.scss +17 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/base.scss +20 -15
- data/app/stylesheets/alchemy/admin/buttons.scss +135 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/clipboard.scss +2 -2
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/dashboard.scss +13 -16
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/dialogs.scss +33 -16
- data/app/stylesheets/alchemy/admin/element-select.scss +11 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/elements.scss +239 -133
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/errors.scss +5 -5
- data/app/stylesheets/alchemy/admin/filters.scss +57 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/flatpickr.scss +54 -76
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/form_fields.scss +10 -11
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/forms.scss +28 -21
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/frame.scss +20 -18
- data/app/stylesheets/alchemy/admin/hints.scss +5 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/icons.scss +1 -1
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/image_library.scss +21 -61
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/images.scss +1 -1
- data/app/stylesheets/alchemy/admin/labels.scss +5 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/lists.scss +3 -3
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/navigation.scss +55 -59
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/node-select.scss +1 -10
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/nodes.scss +21 -18
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/notices.scss +20 -19
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/page-select.scss +18 -2
- data/app/stylesheets/alchemy/admin/pagination.scss +137 -0
- data/app/stylesheets/alchemy/admin/preview_window.scss +46 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/print.scss +1 -1
- data/app/stylesheets/alchemy/admin/resource_info.scss +148 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/search.scss +10 -7
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/selects.scss +85 -46
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/shoelace.scss +37 -68
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/sitemap.scss +39 -34
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/tables.scss +9 -7
- data/app/stylesheets/alchemy/admin/tags.scss +143 -0
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/toolbar.scss +6 -6
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/typography.scss +3 -6
- data/app/{assets/stylesheets → stylesheets}/alchemy/admin/upload.scss +7 -5
- data/app/stylesheets/alchemy/admin.scss +44 -0
- data/app/stylesheets/alchemy/dark-theme.scss +5 -0
- data/app/stylesheets/alchemy/light-theme.scss +6 -0
- data/app/stylesheets/alchemy/theme.scss +13 -0
- data/app/stylesheets/alchemy/welcome.scss +75 -0
- data/app/stylesheets/tinymce/skins/content/alchemy/content.scss +69 -0
- data/app/{assets/stylesheets/tinymce/skins/content/alchemy → stylesheets/tinymce/skins/content/alchemy-dark}/content.scss +12 -12
- data/app/stylesheets/tinymce/skins/ui/alchemy/content.scss +1 -0
- data/app/{assets/stylesheets → stylesheets}/tinymce/skins/ui/alchemy/skin.scss +158 -176
- data/app/stylesheets/tinymce/skins/ui/alchemy-dark/content.scss +1 -0
- data/app/stylesheets/tinymce/skins/ui/alchemy-dark/skin.scss +3784 -0
- data/app/views/alchemy/admin/attachments/_files_list.html.erb +22 -12
- data/app/views/alchemy/admin/attachments/_overlay_file_list.html.erb +1 -1
- data/app/views/alchemy/admin/attachments/assign.js.erb +4 -3
- data/app/views/alchemy/admin/attachments/show.html.erb +55 -43
- data/app/views/alchemy/admin/{elements/_clipboard_button.html.erb → clipboard/_button.html.erb} +3 -5
- data/app/views/alchemy/admin/clipboard/_update_nested_element_button.turbo_stream.erb +11 -0
- data/app/views/alchemy/admin/clipboard/clear.turbo_stream.erb +4 -0
- data/app/views/alchemy/admin/clipboard/index.html.erb +15 -13
- data/app/views/alchemy/admin/clipboard/insert.turbo_stream.erb +18 -0
- data/app/views/alchemy/admin/clipboard/remove.turbo_stream.erb +9 -0
- data/app/views/alchemy/admin/crop.html.erb +1 -1
- data/app/views/alchemy/admin/dashboard/info.html.erb +17 -31
- data/app/views/alchemy/admin/elements/_element.html.erb +4 -8
- data/app/views/alchemy/admin/elements/_form.html.erb +9 -9
- data/app/views/alchemy/admin/elements/_header.html.erb +5 -1
- data/app/views/alchemy/admin/elements/_toolbar.html.erb +4 -6
- data/app/views/alchemy/admin/elements/create.turbo_stream.erb +2 -1
- data/app/views/alchemy/admin/elements/index.html.erb +2 -2
- data/app/views/alchemy/admin/ingredients/_file_fields.html.erb +3 -16
- data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +0 -9
- data/app/views/alchemy/admin/languages/_form.html.erb +1 -1
- data/app/views/alchemy/admin/languages/_table.html.erb +1 -1
- data/app/views/alchemy/admin/languages/index.html.erb +5 -2
- data/app/views/alchemy/admin/layoutpages/index.html.erb +1 -12
- data/app/views/alchemy/admin/pages/_form.html.erb +2 -2
- data/app/views/alchemy/admin/pages/_page.html.erb +2 -3
- data/app/views/alchemy/admin/pages/_toolbar.html.erb +1 -15
- data/app/views/alchemy/admin/pages/index.html.erb +1 -1
- data/app/views/alchemy/admin/partials/_remote_search_form.html.erb +9 -12
- data/app/views/alchemy/admin/partials/_search_form.html.erb +4 -9
- data/app/views/alchemy/admin/pictures/_archive.html.erb +16 -29
- data/app/views/alchemy/admin/pictures/_archive_overlay.html.erb +3 -7
- data/app/views/alchemy/admin/pictures/_filter_and_size_bar.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/_form.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/_infos.html.erb +21 -52
- data/app/views/alchemy/admin/pictures/_library_sidebar.html.erb +7 -0
- data/app/views/alchemy/admin/pictures/_picture.html.erb +14 -20
- data/app/views/alchemy/admin/pictures/_picture_to_assign.html.erb +20 -16
- data/app/views/alchemy/admin/pictures/_sorting_select.html.erb +13 -0
- data/app/views/alchemy/admin/pictures/_tag_list.html.erb +1 -1
- data/app/views/alchemy/admin/pictures/edit_multiple.html.erb +1 -6
- data/app/views/alchemy/admin/pictures/index.html.erb +5 -19
- data/app/views/alchemy/admin/pictures/show.html.erb +10 -5
- data/app/views/alchemy/admin/resources/_applied_filters.html.erb +8 -0
- data/app/views/alchemy/admin/resources/_filter_bar.html.erb +5 -25
- data/app/views/alchemy/admin/resources/_pagination.html.erb +6 -0
- data/app/views/alchemy/admin/resources/_per_page_select.html.erb +4 -2
- data/app/views/alchemy/admin/resources/_resource_table.html.erb +1 -1
- data/app/views/alchemy/admin/resources/_resource_usage_info.html.erb +36 -0
- data/app/views/alchemy/admin/resources/_table_header.html.erb +1 -15
- data/app/views/alchemy/admin/sites/index.html.erb +5 -1
- data/app/views/alchemy/admin/styleguide/index.html.erb +118 -58
- data/app/views/alchemy/admin/tags/index.html.erb +1 -1
- data/app/views/alchemy/admin/tinymce/_setup.html.erb +7 -7
- data/app/{javascript/alchemy_admin/locales/en.js → views/alchemy/admin/translations/_en.js} +5 -2
- data/app/views/alchemy/admin/uploader/_button.html.erb +1 -1
- data/app/views/alchemy/admin/uploader/_setup.html.erb +4 -4
- data/app/views/alchemy/base/error_notice.html.erb +1 -1
- data/app/views/alchemy/ingredients/_number_editor.html.erb +24 -0
- data/app/views/alchemy/no_index.html.erb +31 -0
- data/app/views/alchemy/welcome.html.erb +12 -10
- data/app/views/kaminari/alchemy/_first_page.html.erb +5 -3
- data/app/views/kaminari/alchemy/_last_page.html.erb +5 -3
- data/app/views/kaminari/alchemy/_next_page.html.erb +5 -3
- data/app/views/kaminari/alchemy/_paginator.html.erb +18 -13
- data/app/views/kaminari/alchemy/_prev_page.html.erb +5 -3
- data/app/views/layouts/alchemy/admin.html.erb +25 -24
- data/config/alchemy/config.yml +3 -2
- data/config/initializers/dragonfly.rb +0 -1
- data/config/initializers/mime_types.rb +1 -0
- data/config/locales/alchemy.en.yml +57 -21
- data/config/routes.rb +0 -2
- data/db/migrate/20250905140323_add_created_at_index_to_pictures_and_attachments.rb +14 -0
- data/lib/alchemy/admin/preview_url.rb +4 -5
- data/lib/alchemy/cache_digests/template_tracker.rb +6 -9
- data/lib/alchemy/config_missing.rb +14 -0
- data/lib/alchemy/configuration/base_option.rb +24 -0
- data/lib/alchemy/configuration/boolean_option.rb +16 -0
- data/lib/alchemy/configuration/class_option.rb +15 -0
- data/lib/alchemy/configuration/class_set_option.rb +46 -0
- data/lib/alchemy/configuration/integer_list_option.rb +13 -0
- data/lib/alchemy/configuration/integer_option.rb +12 -0
- data/lib/alchemy/configuration/list_option.rb +22 -0
- data/lib/alchemy/configuration/regexp_option.rb +11 -0
- data/lib/alchemy/configuration/string_list_option.rb +13 -0
- data/lib/alchemy/configuration/string_option.rb +11 -0
- data/lib/alchemy/configuration.rb +115 -0
- data/lib/alchemy/configuration_methods.rb +3 -1
- data/lib/alchemy/configurations/default_language.rb +12 -0
- data/lib/alchemy/configurations/default_site.rb +10 -0
- data/lib/alchemy/configurations/format_matchers.rb +11 -0
- data/lib/alchemy/configurations/mailer.rb +16 -0
- data/lib/alchemy/configurations/main.rb +223 -0
- data/lib/alchemy/configurations/page_cache.rb +19 -0
- data/lib/alchemy/configurations/preview.rb +32 -0
- data/lib/alchemy/configurations/sitemap.rb +10 -0
- data/lib/alchemy/configurations/uploader.rb +34 -0
- data/lib/alchemy/engine.rb +81 -24
- data/lib/alchemy/hints.rb +3 -7
- data/lib/alchemy/install/tasks.rb +0 -12
- data/lib/alchemy/on_page_layout.rb +2 -2
- data/lib/alchemy/propshaft/tinymce_asset.rb +15 -0
- data/lib/alchemy/seeder.rb +2 -2
- data/lib/alchemy/tasks/tidy.rb +18 -0
- data/lib/alchemy/tasks/usage.rb +4 -4
- data/lib/alchemy/test_support/config_stubbing.rb +1 -7
- data/lib/alchemy/test_support/factories/attachment_factory.rb +13 -2
- data/lib/alchemy/test_support/factories/language_factory.rb +1 -1
- data/lib/alchemy/test_support/factories/page_factory.rb +2 -3
- data/lib/alchemy/test_support/factories/picture_factory.rb +31 -2
- data/lib/alchemy/test_support/factories/site_factory.rb +2 -2
- data/lib/alchemy/test_support/having_crop_action_examples.rb +2 -2
- data/lib/alchemy/test_support/having_picture_thumbnails_examples.rb +80 -26
- data/lib/alchemy/test_support/relatable_resource_examples.rb +58 -0
- data/lib/alchemy/test_support/shared_ingredient_examples.rb +5 -5
- data/lib/alchemy/tinymce.rb +0 -1
- data/lib/alchemy/upgrader/eight_zero.rb +14 -0
- data/lib/alchemy/upgrader.rb +33 -20
- data/lib/alchemy/version.rb +1 -1
- data/lib/alchemy.rb +185 -172
- data/lib/alchemy_cms.rb +1 -7
- data/lib/generators/alchemy/ingredient/ingredient_generator.rb +0 -3
- data/lib/generators/alchemy/install/files/_article.html.erb +6 -4
- data/lib/generators/alchemy/install/files/alchemy.en.yml +22 -3
- data/lib/generators/alchemy/install/files/application.html.erb +5 -0
- data/lib/generators/alchemy/install/install_generator.rb +25 -23
- data/lib/generators/alchemy/install/templates/alchemy.rb.tt +200 -0
- data/lib/generators/alchemy/install/templates/dragonfly.rb.tt +0 -1
- data/lib/generators/alchemy/install/templates/elements.yml.tt +3 -1
- data/lib/generators/alchemy/install/templates/menus.yml.tt +1 -1
- data/lib/generators/alchemy/install/templates/page_layouts.yml.tt +2 -2
- data/lib/generators/alchemy/page_layouts/page_layouts_generator.rb +2 -2
- data/lib/tasks/alchemy/assets.rake +14 -0
- data/lib/tasks/alchemy/tidy.rake +6 -0
- data/lib/tasks/alchemy/upgrade.rake +12 -47
- data/vendor/assets/stylesheets/tinymce/skins/content/dark/content.min.css +1 -0
- data/vendor/assets/stylesheets/tinymce/skins/content/default/content.min.css +1 -0
- data/vendor/assets/stylesheets/tinymce/skins/ui/oxide/skin.min.css +1 -0
- data/vendor/assets/stylesheets/tinymce/skins/ui/oxide-dark/content.min.css +1 -0
- data/vendor/assets/stylesheets/tinymce/skins/ui/oxide-dark/skin.min.css +1 -0
- data/vendor/javascript/clipboard.min.js +1 -1
- data/vendor/javascript/cropperjs.min.js +1 -1
- data/vendor/javascript/handlebars.min.js +3 -3
- data/vendor/javascript/jquery.min.js +1 -1
- data/vendor/javascript/select2.min.js +3 -3
- data/vendor/javascript/shoelace.min.js +92 -76
- data/vendor/javascript/sortable.min.js +2 -2
- data/vendor/javascript/tinymce.min.js +1 -1
- data/vendor/javascript/ungap-custom-elements.min.js +2 -2
- metadata +223 -208
- data/CHANGELOG.md +0 -2041
- data/CODE_OF_CONDUCT.md +0 -13
- data/CONTRIBUTING.md +0 -73
- data/Gemfile +0 -71
- data/Rakefile +0 -102
- data/SECURITY.md +0 -13
- data/alchemy_cms.gemspec +0 -88
- data/app/assets/builds/alchemy/admin/page-select.css.map +0 -1
- data/app/assets/builds/alchemy/admin/print.css.map +0 -1
- data/app/assets/builds/alchemy/admin.css.map +0 -1
- data/app/assets/builds/alchemy/custom-properties.css +0 -1
- data/app/assets/builds/alchemy/custom-properties.css.map +0 -1
- data/app/assets/builds/alchemy/welcome.css.map +0 -1
- data/app/assets/builds/tinymce/skins/content/alchemy/content.min.css.map +0 -1
- data/app/assets/builds/tinymce/skins/ui/alchemy/skin.min.css.map +0 -1
- data/app/assets/javascripts/alchemy/admin.js +0 -10
- data/app/assets/stylesheets/alchemy/_defaults.scss +0 -3
- data/app/assets/stylesheets/alchemy/_deprecated_variables.scss +0 -45
- data/app/assets/stylesheets/alchemy/_deprecation.scss +0 -17
- data/app/assets/stylesheets/alchemy/_extends.scss +0 -62
- data/app/assets/stylesheets/alchemy/_variables.scss +0 -201
- data/app/assets/stylesheets/alchemy/admin/attachments.scss +0 -40
- data/app/assets/stylesheets/alchemy/admin/buttons.scss +0 -123
- data/app/assets/stylesheets/alchemy/admin/hints.scss +0 -5
- data/app/assets/stylesheets/alchemy/admin/labels.scss +0 -3
- data/app/assets/stylesheets/alchemy/admin/pagination.scss +0 -92
- data/app/assets/stylesheets/alchemy/admin/preview_window.scss +0 -33
- data/app/assets/stylesheets/alchemy/admin/resource_info.scss +0 -42
- data/app/assets/stylesheets/alchemy/admin/tags.scss +0 -158
- data/app/assets/stylesheets/alchemy/admin.scss +0 -42
- data/app/assets/stylesheets/alchemy/custom-properties.css +0 -98
- data/app/assets/stylesheets/alchemy/welcome.scss +0 -57
- data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.css +0 -711
- data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.inline.css +0 -705
- data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.inline.min.css +0 -7
- data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.min.css +0 -7
- data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.mobile.css +0 -29
- data/app/assets/stylesheets/tinymce/skins/ui/alchemy/content.mobile.min.css +0 -7
- data/app/assets/stylesheets/tinymce/skins/ui/alchemy/skin.mobile.css +0 -677
- data/app/assets/stylesheets/tinymce/skins/ui/alchemy/skin.mobile.min.css +0 -7
- data/app/controllers/alchemy/elements_controller.rb +0 -32
- data/app/helpers/alchemy/admin/elements_helper.rb +0 -25
- data/app/models/alchemy/element/dom_id.rb +0 -31
- data/app/models/alchemy/picture/calculations.rb +0 -49
- data/app/models/alchemy/picture/transformations.rb +0 -115
- data/app/models/alchemy/picture/url.rb +0 -54
- data/app/views/alchemy/admin/attachments/destroy.js.erb +0 -1
- data/app/views/alchemy/admin/clipboard/clear.js.erb +0 -3
- data/app/views/alchemy/admin/clipboard/insert.js.erb +0 -29
- data/app/views/alchemy/admin/clipboard/remove.js.erb +0 -10
- data/app/views/alchemy/admin/resources/_filter.html.erb +0 -12
- data/app/views/alchemy/admin/resources/_resource.html.erb +0 -34
- data/app/views/alchemy/admin/resources/_table.html.erb +0 -29
- data/app/views/alchemy/elements/show.html.erb +0 -1
- data/app/views/alchemy/elements/show.js.erb +0 -1
- data/app/views/alchemy/ingredients/_audio_view.html.erb +0 -1
- data/app/views/alchemy/ingredients/_boolean_view.html.erb +0 -1
- data/app/views/alchemy/ingredients/_datetime_view.html.erb +0 -3
- data/app/views/alchemy/ingredients/_file_view.html.erb +0 -4
- data/app/views/alchemy/ingredients/_headline_view.html.erb +0 -4
- data/app/views/alchemy/ingredients/_html_view.html.erb +0 -1
- data/app/views/alchemy/ingredients/_link_view.html.erb +0 -4
- data/app/views/alchemy/ingredients/_node_view.html.erb +0 -1
- data/app/views/alchemy/ingredients/_page_view.html.erb +0 -1
- data/app/views/alchemy/ingredients/_picture_view.html.erb +0 -4
- data/app/views/alchemy/ingredients/_richtext_view.html.erb +0 -3
- data/app/views/alchemy/ingredients/_select_view.html.erb +0 -1
- data/app/views/alchemy/ingredients/_text_view.html.erb +0 -4
- data/app/views/alchemy/ingredients/_video_view.html.erb +0 -3
- data/babel.config.js +0 -12
- data/bin/importmap +0 -4
- data/bin/rails +0 -9
- data/bin/rspec +0 -3
- data/bin/setup +0 -30
- data/bin/start +0 -17
- data/bun.lockb +0 -0
- data/bundles/shoelace.js +0 -12
- data/bundles/tinymce.js +0 -22
- data/config/initializers/assets.rb +0 -4
- data/eslint.config.js +0 -17
- data/lib/alchemy/config.rb +0 -114
- data/lib/alchemy/element_definition.rb +0 -73
- data/lib/alchemy/page_layout.rb +0 -73
- data/lib/alchemy/resource_filter.rb +0 -40
- data/lib/alchemy/upgrader/seven_point_four.rb +0 -26
- data/lib/alchemy/upgrader/seven_point_three.rb +0 -52
- data/lib/alchemy/upgrader/tasks/.keep +0 -0
- data/lib/generators/alchemy/ingredient/templates/view.html.erb +0 -1
- data/lib/generators/alchemy/install/files/alchemy_admin.js +0 -1
- data/lib/generators/alchemy/install/files/all.js +0 -11
- data/lib/generators/alchemy/install/files/article.css +0 -25
- data/rollup.config.mjs +0 -108
- data/vendor/assets/images/remixicon.symbol.svg +0 -11
- /data/app/{assets/stylesheets → stylesheets}/alchemy/_fonts.scss +0 -0
- /data/app/{assets/stylesheets → stylesheets}/alchemy/admin/attachment-select.scss +0 -0
- /data/app/{assets/stylesheets → stylesheets}/alchemy/admin/flash.scss +0 -0
- /data/app/{assets/stylesheets → stylesheets}/alchemy/admin/list_filter.scss +0 -0
- /data/app/{assets/stylesheets → stylesheets}/alchemy/admin/spinner.scss +0 -0
- /data/app/{assets/stylesheets → stylesheets}/tinymce/skins/skintool.json +0 -0
- /data/app/{assets/stylesheets → stylesheets}/tinymce/skins/ui/alchemy/fonts/tinymce-mobile.woff +0 -0
data/CHANGELOG.md
DELETED
@@ -1,2041 +0,0 @@
|
|
1
|
-
# Changelog
|
2
|
-
|
3
|
-
## 7.4.10 (2025-10-02)
|
4
|
-
|
5
|
-
- [7.4-stable] Fix admin page preview permissions [#3389](https://github.com/AlchemyCMS/alchemy_cms/pull/3389) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
6
|
-
- [7.4] Sanititze filenames before upload [#3375](https://github.com/AlchemyCMS/alchemy_cms/pull/3375) ([tvdeyen](https://github.com/tvdeyen))
|
7
|
-
- [7.4] Allow importmap-rails v2.0 [#3374](https://github.com/AlchemyCMS/alchemy_cms/pull/3374) ([tvdeyen](https://github.com/tvdeyen))
|
8
|
-
|
9
|
-
## 7.4.9 (2025-09-04)
|
10
|
-
|
11
|
-
- [7.4-stable] Alchemy TinyMCE: Remove frontend presence validation [#3361](https://github.com/AlchemyCMS/alchemy_cms/pull/3361) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
12
|
-
- [7.4-stable] Fix page info url path display [#3355](https://github.com/AlchemyCMS/alchemy_cms/pull/3355) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
13
|
-
|
14
|
-
## 7.4.8 (2025-08-15)
|
15
|
-
|
16
|
-
- [7.4-stable] fix(DatetimeView): Use settings value if present [#3350](https://github.com/AlchemyCMS/alchemy_cms/pull/3350) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
17
|
-
|
18
|
-
## 7.4.7 (2025-07-22)
|
19
|
-
|
20
|
-
- [7.4-stable] Harden picture descriptions integration spec [#3342](https://github.com/AlchemyCMS/alchemy_cms/pull/3342) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
21
|
-
- [7.4] CI: Use unique screenshots name [#3341](https://github.com/AlchemyCMS/alchemy_cms/pull/3341) ([tvdeyen](https://github.com/tvdeyen))
|
22
|
-
- [7.4-stable] Nullify related_object_type if related_object_id is set to nil [#3338](https://github.com/AlchemyCMS/alchemy_cms/pull/3338) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
23
|
-
- [7.4-stable] Add explicit strict mode in components index file [#3337](https://github.com/AlchemyCMS/alchemy_cms/pull/3337) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
24
|
-
- [7.4-stable] Fix Picture.deletable scope [#3336](https://github.com/AlchemyCMS/alchemy_cms/pull/3336) ([tvdeyen](https://github.com/tvdeyen))
|
25
|
-
- [7.4-stable] fix(picture_fields): use correct local variable [#3321](https://github.com/AlchemyCMS/alchemy_cms/pull/3321) ([tvdeyen](https://github.com/tvdeyen))
|
26
|
-
- [7.4-stable] Display current search string in resource search field [#3315](https://github.com/AlchemyCMS/alchemy_cms/pull/3315) ([mamhoff](https://github.com/mamhoff))
|
27
|
-
- [7.4]: Resources Admin: Fix editing with filters [#3313](https://github.com/AlchemyCMS/alchemy_cms/pull/3313) ([mamhoff](https://github.com/mamhoff))
|
28
|
-
- [7.4-stable] Tweak small button appearance [#3294](https://github.com/AlchemyCMS/alchemy_cms/pull/3294) ([tvdeyen](https://github.com/tvdeyen))
|
29
|
-
|
30
|
-
## 7.4.6 (2025-06-27)
|
31
|
-
|
32
|
-
- [7.4-stable] Fix multi language picture descriptions [#3293](https://github.com/AlchemyCMS/alchemy_cms/pull/3293) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
33
|
-
- [7.4-stable] Add server error turbo_stream template [#3292](https://github.com/AlchemyCMS/alchemy_cms/pull/3292) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
34
|
-
- [7.4-stable] Remove non visual custom elements after connect [#3291](https://github.com/AlchemyCMS/alchemy_cms/pull/3291) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
35
|
-
|
36
|
-
## 7.4.5 (2025-06-04)
|
37
|
-
|
38
|
-
- [7.4] Fix attachment overlay list overflow [#3261](https://github.com/AlchemyCMS/alchemy_cms/pull/3261) ([tvdeyen](https://github.com/tvdeyen))
|
39
|
-
|
40
|
-
## 7.4.4 (2025-05-06)
|
41
|
-
|
42
|
-
- [7.4-stable] Fix Icons [#3257](https://github.com/AlchemyCMS/alchemy_cms/pull/3257) ([tvdeyen](https://github.com/tvdeyen))
|
43
|
-
- [7.4-stable] fix(alchemy-select): Remove clear button of select2 [#3253](https://github.com/AlchemyCMS/alchemy_cms/pull/3253) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
44
|
-
- [7.4] Fix thumbnail bg pattern [#3250](https://github.com/AlchemyCMS/alchemy_cms/pull/3250) ([tvdeyen](https://github.com/tvdeyen))
|
45
|
-
|
46
|
-
## 7.4.3 (2025-04-23)
|
47
|
-
|
48
|
-
- [7.4-stable] Hide body while custom elements load [#3232](https://github.com/AlchemyCMS/alchemy_cms/pull/3232) ([tvdeyen](https://github.com/tvdeyen))
|
49
|
-
- [7.4-stable] Skip PushJavaScript Job for PRs without changed bun lock [#3222](https://github.com/AlchemyCMS/alchemy_cms/pull/3222) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
50
|
-
- [7.4-stable] Allow is_safe_redirect_path to recognize customized admin path [#3213](https://github.com/AlchemyCMS/alchemy_cms/pull/3213) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
51
|
-
- [7.4-stable] Resource "Download CSV" link: Use all filter params [#3211](https://github.com/AlchemyCMS/alchemy_cms/pull/3211) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
52
|
-
|
53
|
-
## 7.4.2 (2025-03-17)
|
54
|
-
|
55
|
-
- [7.4-stable] Fix link dialog for links with url scheme mailto [#3207](https://github.com/AlchemyCMS/alchemy_cms/pull/3207) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
56
|
-
- [7.4-stable] CI: Use own script to check changes files [#3200](https://github.com/AlchemyCMS/alchemy_cms/pull/3200) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
57
|
-
- [7.4-stable] Prevent content overflowing in tinymce editor fullscreen mode [#3197](https://github.com/AlchemyCMS/alchemy_cms/pull/3197) ([tvdeyen](https://github.com/tvdeyen))
|
58
|
-
- [7.4-stable] Only set elementEditor dirty if present during assignment [#3196](https://github.com/AlchemyCMS/alchemy_cms/pull/3196) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
59
|
-
|
60
|
-
## 7.4.1 (2025-03-05)
|
61
|
-
|
62
|
-
- [7.4-stable] Fix image cropper [#3193](https://github.com/AlchemyCMS/alchemy_cms/pull/3193) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
63
|
-
|
64
|
-
## 7.4.0 (2025-02-07)
|
65
|
-
|
66
|
-
- Add specs for format matchers [#3182](https://github.com/AlchemyCMS/alchemy_cms/pull/3182) ([mamhoff](https://github.com/mamhoff))
|
67
|
-
- Allow additional stylesheets to be included in the admin UI [#3179](https://github.com/AlchemyCMS/alchemy_cms/pull/3179) ([tvdeyen](https://github.com/tvdeyen))
|
68
|
-
- fix(Uploader): Handle HTML Errors during upload [#3176](https://github.com/AlchemyCMS/alchemy_cms/pull/3176) ([tvdeyen](https://github.com/tvdeyen))
|
69
|
-
- Add rel="noopener noreferrer" to external links [#3175](https://github.com/AlchemyCMS/alchemy_cms/pull/3175) ([tvdeyen](https://github.com/tvdeyen))
|
70
|
-
- Remove coffee-rails dependency [#3172](https://github.com/AlchemyCMS/alchemy_cms/pull/3172) ([tvdeyen](https://github.com/tvdeyen))
|
71
|
-
- fix missing logger issue in github actions [#3154](https://github.com/AlchemyCMS/alchemy_cms/pull/3154) ([robinboening](https://github.com/robinboening))
|
72
|
-
- fix attribute sorting across Ruby versions [#3153](https://github.com/AlchemyCMS/alchemy_cms/pull/3153) ([robinboening](https://github.com/robinboening))
|
73
|
-
- Fix Alchemy Guides links [#3148](https://github.com/AlchemyCMS/alchemy_cms/pull/3148) ([zirni](https://github.com/zirni))
|
74
|
-
- Correct element guides link in elements.yml.tt [#3146](https://github.com/AlchemyCMS/alchemy_cms/pull/3146) ([zirni](https://github.com/zirni))
|
75
|
-
- CI: Brakeman needs security-events: write permissions [#3145](https://github.com/AlchemyCMS/alchemy_cms/pull/3145) ([tvdeyen](https://github.com/tvdeyen))
|
76
|
-
- CI: Set workflow permissions [#3139](https://github.com/AlchemyCMS/alchemy_cms/pull/3139) ([tvdeyen](https://github.com/tvdeyen))
|
77
|
-
- Use safe redirect paths in admin redirects [#3129](https://github.com/AlchemyCMS/alchemy_cms/pull/3129) ([tvdeyen](https://github.com/tvdeyen))
|
78
|
-
- CI: Run actions on ubuntu-22.04 [#3122](https://github.com/AlchemyCMS/alchemy_cms/pull/3122) ([tvdeyen](https://github.com/tvdeyen))
|
79
|
-
- Fix image_overlay hidden form style [#3110](https://github.com/AlchemyCMS/alchemy_cms/pull/3110) ([tvdeyen](https://github.com/tvdeyen))
|
80
|
-
- [js] Update all development npm dependencies (2024-12-26) [#3109](https://github.com/AlchemyCMS/alchemy_cms/pull/3109) ([depfu](https://github.com/apps/depfu))
|
81
|
-
- [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))
|
82
|
-
- Test with Ruby 3.4.1 [#3103](https://github.com/AlchemyCMS/alchemy_cms/pull/3103) ([tvdeyen](https://github.com/tvdeyen))
|
83
|
-
- Resizable elements window [#3097](https://github.com/AlchemyCMS/alchemy_cms/pull/3097) ([tvdeyen](https://github.com/tvdeyen))
|
84
|
-
- Move element hint into header (again) [#3096](https://github.com/AlchemyCMS/alchemy_cms/pull/3096) ([tvdeyen](https://github.com/tvdeyen))
|
85
|
-
- Prevent redefining 'alchemy-menubar' custom element when using Turbo [#3095](https://github.com/AlchemyCMS/alchemy_cms/pull/3095) ([gdott9](https://github.com/gdott9))
|
86
|
-
- Use `#send` in navigation helper [#3094](https://github.com/AlchemyCMS/alchemy_cms/pull/3094) ([mamhoff](https://github.com/mamhoff))
|
87
|
-
- Verify module controllers at runtime [#3093](https://github.com/AlchemyCMS/alchemy_cms/pull/3093) ([mamhoff](https://github.com/mamhoff))
|
88
|
-
- Add dependabot bundler version updates [#3090](https://github.com/AlchemyCMS/alchemy_cms/pull/3090) ([tvdeyen](https://github.com/tvdeyen))
|
89
|
-
- Convert Sass `@import` into `@use` [#3088](https://github.com/AlchemyCMS/alchemy_cms/pull/3088) ([tvdeyen](https://github.com/tvdeyen))
|
90
|
-
- dev: Update rspec-rails to v7.1 [#3084](https://github.com/AlchemyCMS/alchemy_cms/pull/3084) ([tvdeyen](https://github.com/tvdeyen))
|
91
|
-
- CI: Remove rexml gem [#3082](https://github.com/AlchemyCMS/alchemy_cms/pull/3082) ([tvdeyen](https://github.com/tvdeyen))
|
92
|
-
- Update importmap-rails to v2.0.3 [#3081](https://github.com/AlchemyCMS/alchemy_cms/pull/3081) ([tvdeyen](https://github.com/tvdeyen))
|
93
|
-
- chore: Fix rubocop styling issues [#3079](https://github.com/AlchemyCMS/alchemy_cms/pull/3079) ([tvdeyen](https://github.com/tvdeyen))
|
94
|
-
- Fix loading custom properties into Tinymce skin [#3071](https://github.com/AlchemyCMS/alchemy_cms/pull/3071) ([tvdeyen](https://github.com/tvdeyen))
|
95
|
-
- Fix filtering associated models by id [#3067](https://github.com/AlchemyCMS/alchemy_cms/pull/3067) ([tvdeyen](https://github.com/tvdeyen))
|
96
|
-
- Add support for Propshaft [#3066](https://github.com/AlchemyCMS/alchemy_cms/pull/3066) ([tvdeyen](https://github.com/tvdeyen))
|
97
|
-
- Add tinymce skin files to Sprockets manifest [#3062](https://github.com/AlchemyCMS/alchemy_cms/pull/3062) ([tvdeyen](https://github.com/tvdeyen))
|
98
|
-
- [js] Update all development npm dependencies (2024-10-03) [#3061](https://github.com/AlchemyCMS/alchemy_cms/pull/3061) ([depfu](https://github.com/apps/depfu))
|
99
|
-
- fix new page form [#3060](https://github.com/AlchemyCMS/alchemy_cms/pull/3060) ([zp1984](https://github.com/zp1984))
|
100
|
-
- Generate a view component in ingredient generator [#3058](https://github.com/AlchemyCMS/alchemy_cms/pull/3058) ([kulturbande](https://github.com/kulturbande))
|
101
|
-
- Remove frontend elements controller [#3057](https://github.com/AlchemyCMS/alchemy_cms/pull/3057) ([tvdeyen](https://github.com/tvdeyen))
|
102
|
-
- Fix locked pages tab height [#3056](https://github.com/AlchemyCMS/alchemy_cms/pull/3056) ([tvdeyen](https://github.com/tvdeyen))
|
103
|
-
- Use turbo streams to update page from configure dialog [#3054](https://github.com/AlchemyCMS/alchemy_cms/pull/3054) ([tvdeyen](https://github.com/tvdeyen))
|
104
|
-
- Use turbo frame and stream to create element [#3053](https://github.com/AlchemyCMS/alchemy_cms/pull/3053) ([tvdeyen](https://github.com/tvdeyen))
|
105
|
-
- Picture alt text form field height [#3051](https://github.com/AlchemyCMS/alchemy_cms/pull/3051) ([tvdeyen](https://github.com/tvdeyen))
|
106
|
-
- Convert dialog class into esm [#3050](https://github.com/AlchemyCMS/alchemy_cms/pull/3050) ([tvdeyen](https://github.com/tvdeyen))
|
107
|
-
- Load jQuery via importmap [#3049](https://github.com/AlchemyCMS/alchemy_cms/pull/3049) ([tvdeyen](https://github.com/tvdeyen))
|
108
|
-
- Load Select2 via importmap [#3048](https://github.com/AlchemyCMS/alchemy_cms/pull/3048) ([tvdeyen](https://github.com/tvdeyen))
|
109
|
-
- Use cropperjs instead of Jcrop [#3047](https://github.com/AlchemyCMS/alchemy_cms/pull/3047) ([tvdeyen](https://github.com/tvdeyen))
|
110
|
-
- Preload SVG Icon Sprite [#3046](https://github.com/AlchemyCMS/alchemy_cms/pull/3046) ([tvdeyen](https://github.com/tvdeyen))
|
111
|
-
- Precompile alchem/preview.js [#3045](https://github.com/AlchemyCMS/alchemy_cms/pull/3045) ([tvdeyen](https://github.com/tvdeyen))
|
112
|
-
- Use Handlebars templates from npm [#3044](https://github.com/AlchemyCMS/alchemy_cms/pull/3044) ([tvdeyen](https://github.com/tvdeyen))
|
113
|
-
- Bundle alchemy_link plugin into tinymce bundle [#3043](https://github.com/AlchemyCMS/alchemy_cms/pull/3043) ([tvdeyen](https://github.com/tvdeyen))
|
114
|
-
- Replace MySQL build with SQLite [#3042](https://github.com/AlchemyCMS/alchemy_cms/pull/3042) ([tvdeyen](https://github.com/tvdeyen))
|
115
|
-
- Remove 7.x deprecations [#3041](https://github.com/AlchemyCMS/alchemy_cms/pull/3041) ([tvdeyen](https://github.com/tvdeyen))
|
116
|
-
- Remove 7.x upgraders [#3039](https://github.com/AlchemyCMS/alchemy_cms/pull/3039) ([tvdeyen](https://github.com/tvdeyen))
|
117
|
-
- Make page select portable [#3037](https://github.com/AlchemyCMS/alchemy_cms/pull/3037) ([tvdeyen](https://github.com/tvdeyen))
|
118
|
-
- Allow Rails 8.0 [#3032](https://github.com/AlchemyCMS/alchemy_cms/pull/3032) ([tvdeyen](https://github.com/tvdeyen))
|
119
|
-
|
120
|
-
## 7.3.5 (2025-01-24)
|
121
|
-
|
122
|
-
- [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))
|
123
|
-
- [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))
|
124
|
-
- [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))
|
125
|
-
- [7.3-stable] CI: Set workflow permissions [#3140](https://github.com/AlchemyCMS/alchemy_cms/pull/3140) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
126
|
-
- [7.3-stable] Use safe redirect paths in admin redirects [#3137](https://github.com/AlchemyCMS/alchemy_cms/pull/3137) ([tvdeyen](https://github.com/tvdeyen))
|
127
|
-
- [7.3-stable] CI: Run actions on ubuntu-22.04 [#3124](https://github.com/AlchemyCMS/alchemy_cms/pull/3124) ([tvdeyen](https://github.com/tvdeyen))
|
128
|
-
- [7.3-stable] Fix image_overlay hidden form style [#3111](https://github.com/AlchemyCMS/alchemy_cms/pull/3111) ([tvdeyen](https://github.com/tvdeyen))
|
129
|
-
- Fix tinymce fullscreen mode [#3100](https://github.com/AlchemyCMS/alchemy_cms/pull/3100) ([tvdeyen](https://github.com/tvdeyen))
|
130
|
-
|
131
|
-
## 7.3.4 (2024-11-18)
|
132
|
-
|
133
|
-
- [7.3-stable] chore: Fix rubocop styling issues [#3080](https://github.com/AlchemyCMS/alchemy_cms/pull/3080) ([tvdeyen](https://github.com/tvdeyen))
|
134
|
-
- [7.3] Fix welcome screen stylesheet [#3078](https://github.com/AlchemyCMS/alchemy_cms/pull/3078) ([tvdeyen](https://github.com/tvdeyen))
|
135
|
-
|
136
|
-
## 7.3.3 (2024-10-15)
|
137
|
-
|
138
|
-
- [7.3-stable] Fix loading custom properties into Tinymce skin [#3070](https://github.com/AlchemyCMS/alchemy_cms/pull/3070) ([tvdeyen](https://github.com/tvdeyen))
|
139
|
-
|
140
|
-
## 7.3.2 (2024-10-15)
|
141
|
-
|
142
|
-
- [7.3-stable] Fix filtering associated models by id [#3068](https://github.com/AlchemyCMS/alchemy_cms/pull/3068) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
143
|
-
- [7.3-stable] fix new page form [#3064](https://github.com/AlchemyCMS/alchemy_cms/pull/3064) ([tvdeyen](https://github.com/tvdeyen))
|
144
|
-
|
145
|
-
## 7.3.1 (2024-10-04)
|
146
|
-
|
147
|
-
- [7.3-stable] Add tinymce skin files to Sprockets manifest [#3063](https://github.com/AlchemyCMS/alchemy_cms/pull/3063) ([tvdeyen](https://github.com/tvdeyen))
|
148
|
-
- [7.3] Deprecate resources helpers [#3040](https://github.com/AlchemyCMS/alchemy_cms/pull/3040) ([tvdeyen](https://github.com/tvdeyen))
|
149
|
-
- [7.3-stable] Make page select portable [#3038](https://github.com/AlchemyCMS/alchemy_cms/pull/3038) ([tvdeyen](https://github.com/tvdeyen))
|
150
|
-
|
151
|
-
## 7.3.0 (2024-09-11)
|
152
|
-
|
153
|
-
- fix(Ingredient::Picture): Do not try to localize CSS class if empty [#3031](https://github.com/AlchemyCMS/alchemy_cms/pull/3031) ([tvdeyen](https://github.com/tvdeyen))
|
154
|
-
- Use alchemy_display_name for page actor names [#3027](https://github.com/AlchemyCMS/alchemy_cms/pull/3027) ([tvdeyen](https://github.com/tvdeyen))
|
155
|
-
- Move alchemy resources table into resource_table partial [#3026](https://github.com/AlchemyCMS/alchemy_cms/pull/3026) ([tvdeyen](https://github.com/tvdeyen))
|
156
|
-
- Resource table fixes [#3025](https://github.com/AlchemyCMS/alchemy_cms/pull/3025) ([tvdeyen](https://github.com/tvdeyen))
|
157
|
-
- Fix asset precompilation [#3024](https://github.com/AlchemyCMS/alchemy_cms/pull/3024) ([mamhoff](https://github.com/mamhoff))
|
158
|
-
- Set Alchemy::Page.current in Messages Controller [#3012](https://github.com/AlchemyCMS/alchemy_cms/pull/3012) ([tvdeyen](https://github.com/tvdeyen))
|
159
|
-
- Fallback to @page var if no Current.page is set [#3011](https://github.com/AlchemyCMS/alchemy_cms/pull/3011) ([tvdeyen](https://github.com/tvdeyen))
|
160
|
-
- CSS: Fix tag styles [#3010](https://github.com/AlchemyCMS/alchemy_cms/pull/3010) ([tvdeyen](https://github.com/tvdeyen))
|
161
|
-
- Generate CSS entrypoint for Custom Admin CSS [#3009](https://github.com/AlchemyCMS/alchemy_cms/pull/3009) ([mamhoff](https://github.com/mamhoff))
|
162
|
-
- Add 7.3 upgrader [#3008](https://github.com/AlchemyCMS/alchemy_cms/pull/3008) ([tvdeyen](https://github.com/tvdeyen))
|
163
|
-
- Update Tinymce to v7.3.0 [#3007](https://github.com/AlchemyCMS/alchemy_cms/pull/3007) ([tvdeyen](https://github.com/tvdeyen))
|
164
|
-
- [CI] Fix builds [#3006](https://github.com/AlchemyCMS/alchemy_cms/pull/3006) ([tvdeyen](https://github.com/tvdeyen))
|
165
|
-
- Deprecate element dom_id and dom_id_class [#3005](https://github.com/AlchemyCMS/alchemy_cms/pull/3005) ([tvdeyen](https://github.com/tvdeyen))
|
166
|
-
- Render Datetime ingredient in local time zone [#3003](https://github.com/AlchemyCMS/alchemy_cms/pull/3003) ([tvdeyen](https://github.com/tvdeyen))
|
167
|
-
- Allow to set input_type on Datetime ingredient editor [#3002](https://github.com/AlchemyCMS/alchemy_cms/pull/3002) ([tvdeyen](https://github.com/tvdeyen))
|
168
|
-
- Use time.formats.alchemy.default for datetime view [#3001](https://github.com/AlchemyCMS/alchemy_cms/pull/3001) ([tvdeyen](https://github.com/tvdeyen))
|
169
|
-
- Fix Datetime view with rfc822 format option [#3000](https://github.com/AlchemyCMS/alchemy_cms/pull/3000) ([tvdeyen](https://github.com/tvdeyen))
|
170
|
-
- Allow Rails 7.2 [#2999](https://github.com/AlchemyCMS/alchemy_cms/pull/2999) ([tvdeyen](https://github.com/tvdeyen))
|
171
|
-
- Add sprockets-rails as dependency [#2997](https://github.com/AlchemyCMS/alchemy_cms/pull/2997) ([tvdeyen](https://github.com/tvdeyen))
|
172
|
-
- [js] Update all development npm dependencies (2024-08-15) [#2996](https://github.com/AlchemyCMS/alchemy_cms/pull/2996) ([depfu](https://github.com/apps/depfu))
|
173
|
-
- Switch to Bun as bundler and script runner [#2994](https://github.com/AlchemyCMS/alchemy_cms/pull/2994) ([tvdeyen](https://github.com/tvdeyen))
|
174
|
-
- [js] Update @shoelace-style/shoelace 2.15.1 → 2.16.0 (minor) [#2990](https://github.com/AlchemyCMS/alchemy_cms/pull/2990) ([depfu](https://github.com/apps/depfu))
|
175
|
-
- Tackle Sass deprecation with mixed declarations [#2989](https://github.com/AlchemyCMS/alchemy_cms/pull/2989) ([tvdeyen](https://github.com/tvdeyen))
|
176
|
-
- Fix margin of alchemy-message in alchemy-dialog [#2988](https://github.com/AlchemyCMS/alchemy_cms/pull/2988) ([tvdeyen](https://github.com/tvdeyen))
|
177
|
-
- fix PictureEditor defaultCropSize [#2987](https://github.com/AlchemyCMS/alchemy_cms/pull/2987) ([tvdeyen](https://github.com/tvdeyen))
|
178
|
-
- Use keywords in routes mapping [#2986](https://github.com/AlchemyCMS/alchemy_cms/pull/2986) ([tvdeyen](https://github.com/tvdeyen))
|
179
|
-
- Display ingredient validation errors inline [#2984](https://github.com/AlchemyCMS/alchemy_cms/pull/2984) ([tvdeyen](https://github.com/tvdeyen))
|
180
|
-
- Resource Controller: Allow additional Ransack filters [#2979](https://github.com/AlchemyCMS/alchemy_cms/pull/2979) ([mamhoff](https://github.com/mamhoff))
|
181
|
-
- Fix combining search filters and pagination [#2978](https://github.com/AlchemyCMS/alchemy_cms/pull/2978) ([mamhoff](https://github.com/mamhoff))
|
182
|
-
- Fix displaying element validation errors. [#2977](https://github.com/AlchemyCMS/alchemy_cms/pull/2977) ([tvdeyen](https://github.com/tvdeyen))
|
183
|
-
- Add ingredient length validation [#2976](https://github.com/AlchemyCMS/alchemy_cms/pull/2976) ([tvdeyen](https://github.com/tvdeyen))
|
184
|
-
- [js] Update all development Yarn dependencies (2024-07-25) [#2975](https://github.com/AlchemyCMS/alchemy_cms/pull/2975) ([depfu](https://github.com/apps/depfu))
|
185
|
-
- Resource Table Component [#2972](https://github.com/AlchemyCMS/alchemy_cms/pull/2972) ([kulturbande](https://github.com/kulturbande))
|
186
|
-
- [js] Update all development Yarn dependencies (2024-07-18) [#2971](https://github.com/AlchemyCMS/alchemy_cms/pull/2971) ([depfu](https://github.com/apps/depfu))
|
187
|
-
- [js] Update all development Yarn dependencies (2024-07-11) [#2970](https://github.com/AlchemyCMS/alchemy_cms/pull/2970) ([depfu](https://github.com/apps/depfu))
|
188
|
-
- [js] Update tinymce 7.2.0 → 7.2.1 (patch) [#2969](https://github.com/AlchemyCMS/alchemy_cms/pull/2969) ([depfu](https://github.com/apps/depfu))
|
189
|
-
- Only allow to assign contentpages in menu node form [#2967](https://github.com/AlchemyCMS/alchemy_cms/pull/2967) ([tvdeyen](https://github.com/tvdeyen))
|
190
|
-
- Update _autocomplete_tag_list.html.erb [#2965](https://github.com/AlchemyCMS/alchemy_cms/pull/2965) ([dbwinger](https://github.com/dbwinger))
|
191
|
-
- Fix picture selector behavior [#2964](https://github.com/AlchemyCMS/alchemy_cms/pull/2964) ([ovinix](https://github.com/ovinix))
|
192
|
-
- Remove call to missing content_positions task [#2959](https://github.com/AlchemyCMS/alchemy_cms/pull/2959) ([afdev82](https://github.com/afdev82))
|
193
|
-
- Clear current language when switching sites [#2957](https://github.com/AlchemyCMS/alchemy_cms/pull/2957) ([dbwinger](https://github.com/dbwinger))
|
194
|
-
- Remove unused resource `update.js.erb` template [#2955](https://github.com/AlchemyCMS/alchemy_cms/pull/2955) ([tvdeyen](https://github.com/tvdeyen))
|
195
|
-
- Fix re-render of layoutpages form if validation fails [#2951](https://github.com/AlchemyCMS/alchemy_cms/pull/2951) ([tvdeyen](https://github.com/tvdeyen))
|
196
|
-
- Use Turbo Frame for picture dialog for [#2950](https://github.com/AlchemyCMS/alchemy_cms/pull/2950) ([tvdeyen](https://github.com/tvdeyen))
|
197
|
-
- Wrap error responses in turbo-frame tags [#2949](https://github.com/AlchemyCMS/alchemy_cms/pull/2949) ([tvdeyen](https://github.com/tvdeyen))
|
198
|
-
- Split dashboard into partials [#2948](https://github.com/AlchemyCMS/alchemy_cms/pull/2948) ([tvdeyen](https://github.com/tvdeyen))
|
199
|
-
- Disable Turbo Prefetch in Admin [#2944](https://github.com/AlchemyCMS/alchemy_cms/pull/2944) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
200
|
-
- Disable Turbo Cache in Admin [#2943](https://github.com/AlchemyCMS/alchemy_cms/pull/2943) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
201
|
-
- Prevent Javascript error if the page will be unlocked [#2942](https://github.com/AlchemyCMS/alchemy_cms/pull/2942) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
202
|
-
- Remove dartsass-rails requirement from alchemy_cms.rb [#2941](https://github.com/AlchemyCMS/alchemy_cms/pull/2941) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
203
|
-
- [js] Update all development Yarn dependencies (2024-06-27) [#2940](https://github.com/AlchemyCMS/alchemy_cms/pull/2940) ([depfu](https://github.com/apps/depfu))
|
204
|
-
- Fix grey color variables [#2939](https://github.com/AlchemyCMS/alchemy_cms/pull/2939) ([tvdeyen](https://github.com/tvdeyen))
|
205
|
-
- Use custom properties for color variables [#2938](https://github.com/AlchemyCMS/alchemy_cms/pull/2938) ([tvdeyen](https://github.com/tvdeyen))
|
206
|
-
- 🚨 [security] [js] Update tinymce 7.1.1 → 7.2.0 (minor) [#2935](https://github.com/AlchemyCMS/alchemy_cms/pull/2935) ([depfu](https://github.com/apps/depfu))
|
207
|
-
- Bump ws from 8.14.2 to 8.17.1 [#2933](https://github.com/AlchemyCMS/alchemy_cms/pull/2933) ([dependabot](https://github.com/apps/dependabot))
|
208
|
-
- Bump braces from 3.0.2 to 3.0.3 [#2932](https://github.com/AlchemyCMS/alchemy_cms/pull/2932) ([dependabot](https://github.com/apps/dependabot))
|
209
|
-
- Remove to_jq_upload [#2931](https://github.com/AlchemyCMS/alchemy_cms/pull/2931) ([tvdeyen](https://github.com/tvdeyen))
|
210
|
-
- [js] Update all development Yarn dependencies (2024-06-13) [#2930](https://github.com/AlchemyCMS/alchemy_cms/pull/2930) ([depfu](https://github.com/apps/depfu))
|
211
|
-
- fix(ContactMessages): Use alchemy route proxy [#2926](https://github.com/AlchemyCMS/alchemy_cms/pull/2926) ([tvdeyen](https://github.com/tvdeyen))
|
212
|
-
- CSS: Use custom properties for spacing [#2925](https://github.com/AlchemyCMS/alchemy_cms/pull/2925) ([tvdeyen](https://github.com/tvdeyen))
|
213
|
-
- Adjustable preview sizes [#2923](https://github.com/AlchemyCMS/alchemy_cms/pull/2923) ([tvdeyen](https://github.com/tvdeyen))
|
214
|
-
- [js] Update all development Yarn dependencies (2024-06-06) [#2922](https://github.com/AlchemyCMS/alchemy_cms/pull/2922) ([depfu](https://github.com/apps/depfu))
|
215
|
-
- [js] Update tinymce 7.1.0 → 7.1.1 (patch) [#2920](https://github.com/AlchemyCMS/alchemy_cms/pull/2920) ([depfu](https://github.com/apps/depfu))
|
216
|
-
- Fix clipboard items styling [#2919](https://github.com/AlchemyCMS/alchemy_cms/pull/2919) ([tvdeyen](https://github.com/tvdeyen))
|
217
|
-
- Enable element select if only one is available [#2918](https://github.com/AlchemyCMS/alchemy_cms/pull/2918) ([tvdeyen](https://github.com/tvdeyen))
|
218
|
-
- Replace picture css class after update [#2917](https://github.com/AlchemyCMS/alchemy_cms/pull/2917) ([tvdeyen](https://github.com/tvdeyen))
|
219
|
-
- fix(RoutingConstraints): Allow Turbo Stream requests [#2913](https://github.com/AlchemyCMS/alchemy_cms/pull/2913) ([tvdeyen](https://github.com/tvdeyen))
|
220
|
-
- fix Ingredient Audio and Video boolean type casting [#2909](https://github.com/AlchemyCMS/alchemy_cms/pull/2909) ([tvdeyen](https://github.com/tvdeyen))
|
221
|
-
- Precompile CSS files into Gem [#2886](https://github.com/AlchemyCMS/alchemy_cms/pull/2886) ([tvdeyen](https://github.com/tvdeyen))
|
222
|
-
- Return 422 on validation error [#2869](https://github.com/AlchemyCMS/alchemy_cms/pull/2869) ([tvdeyen](https://github.com/tvdeyen))
|
223
|
-
|
224
|
-
## 7.2.4 (2024-08-10)
|
225
|
-
|
226
|
-
- [7.2-stable] Fix margin of alchemy-message in alchemy-dialog [#2993](https://github.com/AlchemyCMS/alchemy_cms/pull/2993) ([tvdeyen](https://github.com/tvdeyen))
|
227
|
-
- [7.2-stable] fix PictureEditor defaultCropSize [#2992](https://github.com/AlchemyCMS/alchemy_cms/pull/2992) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
228
|
-
- [7.2] Resource Controller: Allow additional Ransack filters [#2985](https://github.com/AlchemyCMS/alchemy_cms/pull/2985) ([mamhoff](https://github.com/mamhoff))
|
229
|
-
- [7.2-stable] Fix combining search filters and pagination [#2982](https://github.com/AlchemyCMS/alchemy_cms/pull/2982) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
230
|
-
- [7.2-stable] Clear current language when switching sites [#2974](https://github.com/AlchemyCMS/alchemy_cms/pull/2974) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
231
|
-
- [7.2-stable] Update _autocomplete_tag_list.html.erb [#2966](https://github.com/AlchemyCMS/alchemy_cms/pull/2966) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
232
|
-
- [7.2-stable] Remove call to missing content_positions task [#2963](https://github.com/AlchemyCMS/alchemy_cms/pull/2963) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
233
|
-
- [7.2-stable] Fix re-render of layoutpages form if validation fails [#2954](https://github.com/AlchemyCMS/alchemy_cms/pull/2954) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
234
|
-
|
235
|
-
## 7.2.3 (2024-06-27)
|
236
|
-
|
237
|
-
- [7.2-stable] Disable Turbo Prefetch in Admin [#2947](https://github.com/AlchemyCMS/alchemy_cms/pull/2947) ([tvdeyen](https://github.com/tvdeyen))
|
238
|
-
- [7.2-stable] Prevent Javascript error if the page will be unlocked [#2946](https://github.com/AlchemyCMS/alchemy_cms/pull/2946) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
239
|
-
- [7.2-stable] fix(ContactMessages): Use alchemy route proxy [#2929](https://github.com/AlchemyCMS/alchemy_cms/pull/2929) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
240
|
-
- [7.2-stable] [js] Update tinymce 7.1.0 → 7.1.1 (patch) [#2921](https://github.com/AlchemyCMS/alchemy_cms/pull/2921) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
241
|
-
|
242
|
-
## 7.2.2 (2024-06-04)
|
243
|
-
|
244
|
-
- [7.2-stable] fix(RoutingConstraints): Allow Turbo Stream requests [#2916](https://github.com/AlchemyCMS/alchemy_cms/pull/2916) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
245
|
-
- [7.2-stable] fix Ingredient Audio and Video boolean type casting [#2912](https://github.com/AlchemyCMS/alchemy_cms/pull/2912) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
246
|
-
|
247
|
-
## 7.2.1 (2024-06-03)
|
248
|
-
|
249
|
-
- Add name attribute to Preview IFrame [#2908](https://github.com/AlchemyCMS/alchemy_cms/pull/2908) ([mamhoff](https://github.com/mamhoff))
|
250
|
-
- [js] Update all development Yarn dependencies (2024-05-30) [#2907](https://github.com/AlchemyCMS/alchemy_cms/pull/2907) ([depfu](https://github.com/apps/depfu))
|
251
|
-
- fix(HeadlineEditor): Add css class for any level option [#2905](https://github.com/AlchemyCMS/alchemy_cms/pull/2905) ([tvdeyen](https://github.com/tvdeyen))
|
252
|
-
- [js] Update @shoelace-style/shoelace 2.15.0 → 2.15.1 (patch) [#2903](https://github.com/AlchemyCMS/alchemy_cms/pull/2903) ([depfu](https://github.com/apps/depfu))
|
253
|
-
|
254
|
-
## 7.2.0 (2024-05-28)
|
255
|
-
|
256
|
-
- Remove responders gem [#2901](https://github.com/AlchemyCMS/alchemy_cms/pull/2901) ([tvdeyen](https://github.com/tvdeyen))
|
257
|
-
- Add Language and Site serializers [#2900](https://github.com/AlchemyCMS/alchemy_cms/pull/2900) ([tvdeyen](https://github.com/tvdeyen))
|
258
|
-
- PageSelect: Move URL to bottom [#2899](https://github.com/AlchemyCMS/alchemy_cms/pull/2899) ([tvdeyen](https://github.com/tvdeyen))
|
259
|
-
- Highlight search terms in RemoteSelect [#2898](https://github.com/AlchemyCMS/alchemy_cms/pull/2898) ([tvdeyen](https://github.com/tvdeyen))
|
260
|
-
- fix(InternalTab): Fix for urls with trailing slash and no locale [#2897](https://github.com/AlchemyCMS/alchemy_cms/pull/2897) ([tvdeyen](https://github.com/tvdeyen))
|
261
|
-
|
262
|
-
## 7.2.0.rc2 (2024-05-27)
|
263
|
-
|
264
|
-
- Harden specs [#2896](https://github.com/AlchemyCMS/alchemy_cms/pull/2896) ([tvdeyen](https://github.com/tvdeyen))
|
265
|
-
- Support trailing slash in internal link tab selection [#2895](https://github.com/AlchemyCMS/alchemy_cms/pull/2895) ([tvdeyen](https://github.com/tvdeyen))
|
266
|
-
|
267
|
-
## 7.2.0.rc1 (2024-05-24)
|
268
|
-
|
269
|
-
- Deprecate float positioning in File and Picture ingredients [#2894](https://github.com/AlchemyCMS/alchemy_cms/pull/2894) ([tvdeyen](https://github.com/tvdeyen))
|
270
|
-
- Use inline styles for menubar component [#2893](https://github.com/AlchemyCMS/alchemy_cms/pull/2893) ([tvdeyen](https://github.com/tvdeyen))
|
271
|
-
- Fix link selection of internal root or locale urls [#2892](https://github.com/AlchemyCMS/alchemy_cms/pull/2892) ([tvdeyen](https://github.com/tvdeyen))
|
272
|
-
- Switch ingredient update response from Javascript to Turob Stream [#2891](https://github.com/AlchemyCMS/alchemy_cms/pull/2891) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
273
|
-
- Prevent jumping of toggle button in element window [#2888](https://github.com/AlchemyCMS/alchemy_cms/pull/2888) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
274
|
-
- Fix preview window width for smaller viewports [#2887](https://github.com/AlchemyCMS/alchemy_cms/pull/2887) ([tvdeyen](https://github.com/tvdeyen))
|
275
|
-
- fix(alchemy_link.plugin): Avoid getting an absolute URL [#2885](https://github.com/AlchemyCMS/alchemy_cms/pull/2885) ([tvdeyen](https://github.com/tvdeyen))
|
276
|
-
- Allow to add to Alchemy's importmap from Rails application [#2884](https://github.com/AlchemyCMS/alchemy_cms/pull/2884) ([tvdeyen](https://github.com/tvdeyen))
|
277
|
-
- Only set url on attachment select if attachment found [#2882](https://github.com/AlchemyCMS/alchemy_cms/pull/2882) ([tvdeyen](https://github.com/tvdeyen))
|
278
|
-
- Fix Preview Window width [#2879](https://github.com/AlchemyCMS/alchemy_cms/pull/2879) ([tvdeyen](https://github.com/tvdeyen))
|
279
|
-
- Allow engine importmaps [#2878](https://github.com/AlchemyCMS/alchemy_cms/pull/2878) ([tvdeyen](https://github.com/tvdeyen))
|
280
|
-
- fix(node-select): Display order and seperator style [#2877](https://github.com/AlchemyCMS/alchemy_cms/pull/2877) ([tvdeyen](https://github.com/tvdeyen))
|
281
|
-
|
282
|
-
## 7.2.0.b (2024-05-16)
|
283
|
-
|
284
|
-
- fix language scope in picture description field [#2876](https://github.com/AlchemyCMS/alchemy_cms/pull/2876) ([tvdeyen](https://github.com/tvdeyen))
|
285
|
-
- fix(dialog-link): Do not addEventListener on every DOM insert [#2874](https://github.com/AlchemyCMS/alchemy_cms/pull/2874) ([tvdeyen](https://github.com/tvdeyen))
|
286
|
-
- [js] Update tinymce 7.0.1 → 7.1.0 (minor) [#2873](https://github.com/AlchemyCMS/alchemy_cms/pull/2873) ([depfu](https://github.com/apps/depfu))
|
287
|
-
- Fix preview window resize transition [#2870](https://github.com/AlchemyCMS/alchemy_cms/pull/2870) ([tvdeyen](https://github.com/tvdeyen))
|
288
|
-
- Do not use select2 for ingredient style select [#2868](https://github.com/AlchemyCMS/alchemy_cms/pull/2868) ([tvdeyen](https://github.com/tvdeyen))
|
289
|
-
- Convert legacy page urls panel into Turbo Frame [#2867](https://github.com/AlchemyCMS/alchemy_cms/pull/2867) ([tvdeyen](https://github.com/tvdeyen))
|
290
|
-
- Add `message_for_resource_action` [#2866](https://github.com/AlchemyCMS/alchemy_cms/pull/2866) ([tvdeyen](https://github.com/tvdeyen))
|
291
|
-
- Tackle deprecations [#2865](https://github.com/AlchemyCMS/alchemy_cms/pull/2865) ([tvdeyen](https://github.com/tvdeyen))
|
292
|
-
- [js] Update all development Yarn dependencies (2024-05-16) [#2864](https://github.com/AlchemyCMS/alchemy_cms/pull/2864) ([depfu](https://github.com/apps/depfu))
|
293
|
-
- Add spec for PagesHelper#page_title [#2863](https://github.com/AlchemyCMS/alchemy_cms/pull/2863) ([mamhoff](https://github.com/mamhoff))
|
294
|
-
- Use page version's `updated_at` timestamp as cache key [#2862](https://github.com/AlchemyCMS/alchemy_cms/pull/2862) ([mamhoff](https://github.com/mamhoff))
|
295
|
-
- Raise missing template errors from `render_site_layout` and `render_menu` [#2861](https://github.com/AlchemyCMS/alchemy_cms/pull/2861) ([mamhoff](https://github.com/mamhoff))
|
296
|
-
- Remove rufo gem [#2860](https://github.com/AlchemyCMS/alchemy_cms/pull/2860) ([tvdeyen](https://github.com/tvdeyen))
|
297
|
-
- fix(IngredientAnchorLink): Use alchemy-icon setAttribute [#2859](https://github.com/AlchemyCMS/alchemy_cms/pull/2859) ([tvdeyen](https://github.com/tvdeyen))
|
298
|
-
- Remove `render_flash_notice` helper [#2857](https://github.com/AlchemyCMS/alchemy_cms/pull/2857) ([tvdeyen](https://github.com/tvdeyen))
|
299
|
-
- Deprecate `js_filter_field` [#2856](https://github.com/AlchemyCMS/alchemy_cms/pull/2856) ([tvdeyen](https://github.com/tvdeyen))
|
300
|
-
- Deprecate `toolbar_button` helper [#2855](https://github.com/AlchemyCMS/alchemy_cms/pull/2855) ([tvdeyen](https://github.com/tvdeyen))
|
301
|
-
- feat(alchemy-button): Re-enable on turbo:submit-end [#2854](https://github.com/AlchemyCMS/alchemy_cms/pull/2854) ([tvdeyen](https://github.com/tvdeyen))
|
302
|
-
- feat(alchemy-growl): Allow innerHTML as message [#2853](https://github.com/AlchemyCMS/alchemy_cms/pull/2853) ([tvdeyen](https://github.com/tvdeyen))
|
303
|
-
- Always show element tabs if the page has fixed elements [#2852](https://github.com/AlchemyCMS/alchemy_cms/pull/2852) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
304
|
-
- CI: Commit changes to javascript bundles [#2851](https://github.com/AlchemyCMS/alchemy_cms/pull/2851) ([tvdeyen](https://github.com/tvdeyen))
|
305
|
-
- [CI] Unify build workflow into one file again [#2850](https://github.com/AlchemyCMS/alchemy_cms/pull/2850) ([tvdeyen](https://github.com/tvdeyen))
|
306
|
-
- fix(CI): Skip Build JS packages if no changes [#2849](https://github.com/AlchemyCMS/alchemy_cms/pull/2849) ([tvdeyen](https://github.com/tvdeyen))
|
307
|
-
- [js] Update all development Yarn dependencies (2024-04-26) [#2847](https://github.com/AlchemyCMS/alchemy_cms/pull/2847) ([depfu](https://github.com/apps/depfu))
|
308
|
-
- UI fixes for picture css class display [#2844](https://github.com/AlchemyCMS/alchemy_cms/pull/2844) ([tvdeyen](https://github.com/tvdeyen))
|
309
|
-
- Allow to customize Headline Sizes [#2843](https://github.com/AlchemyCMS/alchemy_cms/pull/2843) ([tvdeyen](https://github.com/tvdeyen))
|
310
|
-
- [js] Update tinymce 7.0.0 → 7.0.1 (patch) [#2842](https://github.com/AlchemyCMS/alchemy_cms/pull/2842) ([depfu](https://github.com/apps/depfu))
|
311
|
-
- Fix Ingredient Boolean View [#2836](https://github.com/AlchemyCMS/alchemy_cms/pull/2836) ([tvdeyen](https://github.com/tvdeyen))
|
312
|
-
- Fix elements clipboard button permissions [#2834](https://github.com/AlchemyCMS/alchemy_cms/pull/2834) ([tvdeyen](https://github.com/tvdeyen))
|
313
|
-
- Reintroduce autocomplete_tag_list partial [#2833](https://github.com/AlchemyCMS/alchemy_cms/pull/2833) ([tvdeyen](https://github.com/tvdeyen))
|
314
|
-
- Harden Page List Feature Spec [#2832](https://github.com/AlchemyCMS/alchemy_cms/pull/2832) ([mamhoff](https://github.com/mamhoff))
|
315
|
-
- Nullify Ingredients::Page on Page destroy [#2829](https://github.com/AlchemyCMS/alchemy_cms/pull/2829) ([mamhoff](https://github.com/mamhoff))
|
316
|
-
- Reload preview window (again) after element create [#2827](https://github.com/AlchemyCMS/alchemy_cms/pull/2827) ([tvdeyen](https://github.com/tvdeyen))
|
317
|
-
- Always show headline level [#2825](https://github.com/AlchemyCMS/alchemy_cms/pull/2825) ([tvdeyen](https://github.com/tvdeyen))
|
318
|
-
- Clear definitions cache after file change [#2824](https://github.com/AlchemyCMS/alchemy_cms/pull/2824) ([tvdeyen](https://github.com/tvdeyen))
|
319
|
-
- Use Shoelace Dialog for ConfirmDialog [#2823](https://github.com/AlchemyCMS/alchemy_cms/pull/2823) ([tvdeyen](https://github.com/tvdeyen))
|
320
|
-
- Fix module error [#2820](https://github.com/AlchemyCMS/alchemy_cms/pull/2820) ([mamhoff](https://github.com/mamhoff))
|
321
|
-
- Add delete-element-button [#2818](https://github.com/AlchemyCMS/alchemy_cms/pull/2818) ([tvdeyen](https://github.com/tvdeyen))
|
322
|
-
- Locally import growl function in ES code [#2817](https://github.com/AlchemyCMS/alchemy_cms/pull/2817) ([tvdeyen](https://github.com/tvdeyen))
|
323
|
-
- Locally initialize SortableElements [#2815](https://github.com/AlchemyCMS/alchemy_cms/pull/2815) ([tvdeyen](https://github.com/tvdeyen))
|
324
|
-
- Only initialize Alchemy Admin JS locally [#2814](https://github.com/AlchemyCMS/alchemy_cms/pull/2814) ([tvdeyen](https://github.com/tvdeyen))
|
325
|
-
- [js] Update all development Yarn dependencies (2024-03-28) [#2811](https://github.com/AlchemyCMS/alchemy_cms/pull/2811) ([depfu](https://github.com/apps/depfu))
|
326
|
-
- Table icon fixes [#2810](https://github.com/AlchemyCMS/alchemy_cms/pull/2810) ([tvdeyen](https://github.com/tvdeyen))
|
327
|
-
- Revert list flex box [#2809](https://github.com/AlchemyCMS/alchemy_cms/pull/2809) ([tvdeyen](https://github.com/tvdeyen))
|
328
|
-
- 🚨 [security] [js] Update tinymce 6.8.3 → 7.0.0 (major) [#2807](https://github.com/AlchemyCMS/alchemy_cms/pull/2807) ([depfu](https://github.com/apps/depfu))
|
329
|
-
- Add Alchemy::Admin::ListFilter component [#2805](https://github.com/AlchemyCMS/alchemy_cms/pull/2805) ([tvdeyen](https://github.com/tvdeyen))
|
330
|
-
- Some UI fixes [#2804](https://github.com/AlchemyCMS/alchemy_cms/pull/2804) ([tvdeyen](https://github.com/tvdeyen))
|
331
|
-
- Add remote Attachment select to Link Dialog [#2803](https://github.com/AlchemyCMS/alchemy_cms/pull/2803) ([tvdeyen](https://github.com/tvdeyen))
|
332
|
-
- Convert Preview Window into web component [#2802](https://github.com/AlchemyCMS/alchemy_cms/pull/2802) ([tvdeyen](https://github.com/tvdeyen))
|
333
|
-
- Use Turbo Frame for Elements Window [#2801](https://github.com/AlchemyCMS/alchemy_cms/pull/2801) ([tvdeyen](https://github.com/tvdeyen))
|
334
|
-
- Add Toolbar button component [#2800](https://github.com/AlchemyCMS/alchemy_cms/pull/2800) ([tvdeyen](https://github.com/tvdeyen))
|
335
|
-
- Fix hidden element visibility [#2799](https://github.com/AlchemyCMS/alchemy_cms/pull/2799) ([tvdeyen](https://github.com/tvdeyen))
|
336
|
-
- Picture view fixes [#2798](https://github.com/AlchemyCMS/alchemy_cms/pull/2798) ([tvdeyen](https://github.com/tvdeyen))
|
337
|
-
- [js] Update all development Yarn dependencies (2024-03-21) [#2797](https://github.com/AlchemyCMS/alchemy_cms/pull/2797) ([depfu](https://github.com/apps/depfu))
|
338
|
-
- Refactor link dialog into ES module [#2796](https://github.com/AlchemyCMS/alchemy_cms/pull/2796) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
339
|
-
- Rebuild Growler into web component [#2795](https://github.com/AlchemyCMS/alchemy_cms/pull/2795) ([tvdeyen](https://github.com/tvdeyen))
|
340
|
-
- Update open source resources in info panel [#2794](https://github.com/AlchemyCMS/alchemy_cms/pull/2794) ([tvdeyen](https://github.com/tvdeyen))
|
341
|
-
- Fix tag list style [#2793](https://github.com/AlchemyCMS/alchemy_cms/pull/2793) ([tvdeyen](https://github.com/tvdeyen))
|
342
|
-
- Add multi language image descriptions [#2792](https://github.com/AlchemyCMS/alchemy_cms/pull/2792) ([tvdeyen](https://github.com/tvdeyen))
|
343
|
-
- Convert List Filter into ES module [#2791](https://github.com/AlchemyCMS/alchemy_cms/pull/2791) ([tvdeyen](https://github.com/tvdeyen))
|
344
|
-
- Fix image archive icons [#2790](https://github.com/AlchemyCMS/alchemy_cms/pull/2790) ([tvdeyen](https://github.com/tvdeyen))
|
345
|
-
- Fix hotkeys [#2789](https://github.com/AlchemyCMS/alchemy_cms/pull/2789) ([tvdeyen](https://github.com/tvdeyen))
|
346
|
-
- Do not use xlink:href in svg icons [#2787](https://github.com/AlchemyCMS/alchemy_cms/pull/2787) ([tvdeyen](https://github.com/tvdeyen))
|
347
|
-
- Remove order in before_action callback [#2784](https://github.com/AlchemyCMS/alchemy_cms/pull/2784) ([kulturbande](https://github.com/kulturbande))
|
348
|
-
- CI: Setup concurrency [#2783](https://github.com/AlchemyCMS/alchemy_cms/pull/2783) ([tvdeyen](https://github.com/tvdeyen))
|
349
|
-
- Fix layoutpages layout [#2780](https://github.com/AlchemyCMS/alchemy_cms/pull/2780) ([tvdeyen](https://github.com/tvdeyen))
|
350
|
-
- Mark ingredient output as html_safe [#2779](https://github.com/AlchemyCMS/alchemy_cms/pull/2779) ([tvdeyen](https://github.com/tvdeyen))
|
351
|
-
- Add CODEOWNERS file [#2777](https://github.com/AlchemyCMS/alchemy_cms/pull/2777) ([tvdeyen](https://github.com/tvdeyen))
|
352
|
-
- Flexify pages sitemap [#2776](https://github.com/AlchemyCMS/alchemy_cms/pull/2776) ([tvdeyen](https://github.com/tvdeyen))
|
353
|
-
- Reload page sitemap on move errors [#2775](https://github.com/AlchemyCMS/alchemy_cms/pull/2775) ([tvdeyen](https://github.com/tvdeyen))
|
354
|
-
- Add a Sitemap rake task to detect and fix issues [#2774](https://github.com/AlchemyCMS/alchemy_cms/pull/2774) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
355
|
-
- Use Codecov for coverage reports [#2773](https://github.com/AlchemyCMS/alchemy_cms/pull/2773) ([tvdeyen](https://github.com/tvdeyen))
|
356
|
-
- [js] Update all development Yarn dependencies (2024-03-07) [#2772](https://github.com/AlchemyCMS/alchemy_cms/pull/2772) ([depfu](https://github.com/apps/depfu))
|
357
|
-
- Remove order admin pages route [#2770](https://github.com/AlchemyCMS/alchemy_cms/pull/2770) ([tvdeyen](https://github.com/tvdeyen))
|
358
|
-
- Do not include timezone in datepickers only displaying date [#2767](https://github.com/AlchemyCMS/alchemy_cms/pull/2767) ([tvdeyen](https://github.com/tvdeyen))
|
359
|
-
- Moved the link dialog partials into view components [#2766](https://github.com/AlchemyCMS/alchemy_cms/pull/2766) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
360
|
-
- Fix taggable uniqueness in tags admin table [#2761](https://github.com/AlchemyCMS/alchemy_cms/pull/2761) ([tvdeyen](https://github.com/tvdeyen))
|
361
|
-
- Fix datepicker in resource forms [#2760](https://github.com/AlchemyCMS/alchemy_cms/pull/2760) ([tvdeyen](https://github.com/tvdeyen))
|
362
|
-
- [js] Update all development Yarn dependencies (2024-02-29) [#2759](https://github.com/AlchemyCMS/alchemy_cms/pull/2759) ([depfu](https://github.com/apps/depfu))
|
363
|
-
- CI: Disable brakeman analysis for codeclimate [#2758](https://github.com/AlchemyCMS/alchemy_cms/pull/2758) ([tvdeyen](https://github.com/tvdeyen))
|
364
|
-
- CI: Fix backporting [#2755](https://github.com/AlchemyCMS/alchemy_cms/pull/2755) ([tvdeyen](https://github.com/tvdeyen))
|
365
|
-
- Fix order of elements after Page copy [#2752](https://github.com/AlchemyCMS/alchemy_cms/pull/2752) ([tvdeyen](https://github.com/tvdeyen))
|
366
|
-
- Fix sortable elements [#2750](https://github.com/AlchemyCMS/alchemy_cms/pull/2750) ([tvdeyen](https://github.com/tvdeyen))
|
367
|
-
- Use svg remixicons [#2749](https://github.com/AlchemyCMS/alchemy_cms/pull/2749) ([tvdeyen](https://github.com/tvdeyen))
|
368
|
-
- Transform the tag selector into a web component [#2748](https://github.com/AlchemyCMS/alchemy_cms/pull/2748) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
369
|
-
- Allow turbo v2.0.x [#2747](https://github.com/AlchemyCMS/alchemy_cms/pull/2747) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
370
|
-
- Fix svg thumbnail size [#2741](https://github.com/AlchemyCMS/alchemy_cms/pull/2741) ([tvdeyen](https://github.com/tvdeyen))
|
371
|
-
- [js] Update @shoelace-style/shoelace 2.13.1 → 2.14.0 (minor) [#2739](https://github.com/AlchemyCMS/alchemy_cms/pull/2739) ([depfu](https://github.com/apps/depfu))
|
372
|
-
- Remove Alchemy.FileProgress file [#2738](https://github.com/AlchemyCMS/alchemy_cms/pull/2738) ([tvdeyen](https://github.com/tvdeyen))
|
373
|
-
- Fix tags view for missing taggables [#2735](https://github.com/AlchemyCMS/alchemy_cms/pull/2735) ([tvdeyen](https://github.com/tvdeyen))
|
374
|
-
- Fix two minor translations [#2734](https://github.com/AlchemyCMS/alchemy_cms/pull/2734) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
375
|
-
- fix(CI/Build): Use alchemy bot PAT to checkout code [#2731](https://github.com/AlchemyCMS/alchemy_cms/pull/2731) ([tvdeyen](https://github.com/tvdeyen))
|
376
|
-
- Remove string_extension.coffee [#2730](https://github.com/AlchemyCMS/alchemy_cms/pull/2730) ([tvdeyen](https://github.com/tvdeyen))
|
377
|
-
- Fix overlay picture grid [#2728](https://github.com/AlchemyCMS/alchemy_cms/pull/2728) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
378
|
-
- [js] Update tinymce 6.8.2 → 6.8.3 (patch) [#2727](https://github.com/AlchemyCMS/alchemy_cms/pull/2727) ([depfu](https://github.com/apps/depfu))
|
379
|
-
- [ruby - main] Update dotenv → 3.0.0 (unknown) [#2726](https://github.com/AlchemyCMS/alchemy_cms/pull/2726) ([depfu](https://github.com/apps/depfu))
|
380
|
-
- Update backport action to v9.3.1 [#2724](https://github.com/AlchemyCMS/alchemy_cms/pull/2724) ([tvdeyen](https://github.com/tvdeyen))
|
381
|
-
- Sort the element Select List alphabetically [#2722](https://github.com/AlchemyCMS/alchemy_cms/pull/2722) ([kulturbande](https://github.com/kulturbande))
|
382
|
-
- Restrict turbo-rails version [#2720](https://github.com/AlchemyCMS/alchemy_cms/pull/2720) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
383
|
-
- Harden edit elements feature spec [#2718](https://github.com/AlchemyCMS/alchemy_cms/pull/2718) ([tvdeyen](https://github.com/tvdeyen))
|
384
|
-
- Add picture description [#2717](https://github.com/AlchemyCMS/alchemy_cms/pull/2717) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
385
|
-
- [js] Update all development Yarn dependencies (2024-02-20) [#2716](https://github.com/AlchemyCMS/alchemy_cms/pull/2716) ([depfu](https://github.com/apps/depfu))
|
386
|
-
- Fix ActionNotFound in PictureController [#2714](https://github.com/AlchemyCMS/alchemy_cms/pull/2714) ([kulturbande](https://github.com/kulturbande))
|
387
|
-
- Update README.md [#2713](https://github.com/AlchemyCMS/alchemy_cms/pull/2713) ([kulturbande](https://github.com/kulturbande))
|
388
|
-
- Use Rails' CurrentAttributes to store globals [#2701](https://github.com/AlchemyCMS/alchemy_cms/pull/2701) ([tvdeyen](https://github.com/tvdeyen))
|
389
|
-
- Add nodes to page dialog [#2699](https://github.com/AlchemyCMS/alchemy_cms/pull/2699) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
390
|
-
- Fixes language switching to default language [#2689](https://github.com/AlchemyCMS/alchemy_cms/pull/2689) ([robinboening](https://github.com/robinboening))
|
391
|
-
|
392
|
-
## 7.1.11 (2024-08-10)
|
393
|
-
|
394
|
-
- [7.1-stable] fix PictureEditor defaultCropSize [#2991](https://github.com/AlchemyCMS/alchemy_cms/pull/2991) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
395
|
-
- [7.1-stable] Fix combining search filters and pagination [#2981](https://github.com/AlchemyCMS/alchemy_cms/pull/2981) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
396
|
-
- [7.1-stable] Clear current language when switching sites [#2973](https://github.com/AlchemyCMS/alchemy_cms/pull/2973) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
397
|
-
- [7.1-stable] Remove call to missing content_positions task [#2962](https://github.com/AlchemyCMS/alchemy_cms/pull/2962) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
398
|
-
- [7.1-stable] Fix re-render of layoutpages form if validation fails [#2953](https://github.com/AlchemyCMS/alchemy_cms/pull/2953) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
399
|
-
|
400
|
-
## 7.1.10 (2024-06-27)
|
401
|
-
|
402
|
-
- [7.1-stable] Prevent Javascript error if the page will be unlocked [#2945](https://github.com/AlchemyCMS/alchemy_cms/pull/2945) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
403
|
-
- [7.1-stable] fix(ContactMessages): Use alchemy route proxy [#2928](https://github.com/AlchemyCMS/alchemy_cms/pull/2928) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
404
|
-
|
405
|
-
## 7.1.9 (2024-06-04)
|
406
|
-
|
407
|
-
- [7.1-stable] fix(RoutingConstraints): Allow Turbo Stream requests [#2915](https://github.com/AlchemyCMS/alchemy_cms/pull/2915) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
408
|
-
- [7.1-stable] fix Ingredient Audio and Video boolean type casting [#2911](https://github.com/AlchemyCMS/alchemy_cms/pull/2911) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
409
|
-
|
410
|
-
## 7.1.8 (2024-05-29)
|
411
|
-
|
412
|
-
- [7.1-stable] Fix preview window width for smaller viewports [#2890](https://github.com/AlchemyCMS/alchemy_cms/pull/2890) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
413
|
-
- [7.1-stable] Fix Preview Window width [#2881](https://github.com/AlchemyCMS/alchemy_cms/pull/2881) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
414
|
-
- [7.1-stable] Fix preview window resize transition [#2872](https://github.com/AlchemyCMS/alchemy_cms/pull/2872) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
415
|
-
- [7.1-stable] UI fixes for picture css class display [#2846](https://github.com/AlchemyCMS/alchemy_cms/pull/2846) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
416
|
-
|
417
|
-
## 7.1.7 (2024-04-12)
|
418
|
-
|
419
|
-
- [7.1-stable] Fix Ingredient Boolean View [#2838](https://github.com/AlchemyCMS/alchemy_cms/pull/2838) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
420
|
-
- [7.1-stable] Nullify Ingredients::Page on Page destroy [#2831](https://github.com/AlchemyCMS/alchemy_cms/pull/2831) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
421
|
-
- [7.1] Reload preview window (again) after element create [#2826](https://github.com/AlchemyCMS/alchemy_cms/pull/2826) ([tvdeyen](https://github.com/tvdeyen))
|
422
|
-
- [7.1-stable] Fix module error [#2822](https://github.com/AlchemyCMS/alchemy_cms/pull/2822) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
423
|
-
- [7.1-stable] Mark ingredient output as html_safe [#2782](https://github.com/AlchemyCMS/alchemy_cms/pull/2782) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
424
|
-
|
425
|
-
## 7.1.6 (2024-03-05)
|
426
|
-
|
427
|
-
- [7.1-stable] Do not include timezone in datepickers only displaying date [#2768](https://github.com/AlchemyCMS/alchemy_cms/pull/2768) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
428
|
-
|
429
|
-
## 7.1.5 (2024-02-29)
|
430
|
-
|
431
|
-
- [7.1-stable] Fix taggable uniqueness in tags admin table [#2764](https://github.com/AlchemyCMS/alchemy_cms/pull/2764) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
432
|
-
- [7.1-stable] Fix datepicker in resource forms [#2762](https://github.com/AlchemyCMS/alchemy_cms/pull/2762) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
433
|
-
|
434
|
-
## 7.1.4 (2024-02-27)
|
435
|
-
|
436
|
-
- [7.1-stable] Merge pull request #2752 from tvdeyen/fix-copy-elements-order [#2754](https://github.com/AlchemyCMS/alchemy_cms/pull/2754) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
437
|
-
- [7.1-stable] Merge pull request #2750 from tvdeyen/fix-sortable-elements [#2751](https://github.com/AlchemyCMS/alchemy_cms/pull/2751) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
438
|
-
- [7.1-stable] Merge pull request #2689 from robinboening/fix_switching_to_default_language [#2746](https://github.com/AlchemyCMS/alchemy_cms/pull/2746) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
439
|
-
- [7.1-stable] Merge pull request #2741 from tvdeyen/fix-svg-thumbnail-size [#2743](https://github.com/AlchemyCMS/alchemy_cms/pull/2743) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
440
|
-
- [7.1-stable] Merge pull request #2735 from tvdeyen/fix-tags [#2736](https://github.com/AlchemyCMS/alchemy_cms/pull/2736) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
441
|
-
|
442
|
-
## 7.1.3 (2024-02-19)
|
443
|
-
|
444
|
-
- Update tinymce to version 6.8.3 [#2727](https://github.com/AlchemyCMS/alchemy_cms/pull/2727) ([depfu](https://github.com/apps/depfu))
|
445
|
-
- [7.1-stable] Merge pull request #2728 from sascha-karnatz/overlay-picture-grid-row-height [#2729](https://github.com/AlchemyCMS/alchemy_cms/pull/2729) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
446
|
-
|
447
|
-
## 7.1.2 (2024-02-12)
|
448
|
-
|
449
|
-
- [7.1-stable] Merge pull request #2720 from sascha-karnatz/restrict-turbo-rails-version [#2723](https://github.com/AlchemyCMS/alchemy_cms/pull/2723) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
450
|
-
- [7.1-stable] Merge pull request #2714 from kulturbande/fix-rails-7.1-picture-controller [#2715](https://github.com/AlchemyCMS/alchemy_cms/pull/2715) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
451
|
-
|
452
|
-
## 7.1.1 (2024-01-31)
|
453
|
-
|
454
|
-
- Translate collapse all elements button [#2711](https://github.com/AlchemyCMS/alchemy_cms/pull/2711) ([tvdeyen](https://github.com/tvdeyen))
|
455
|
-
- Slighty raise page properties dialog width [#2710](https://github.com/AlchemyCMS/alchemy_cms/pull/2710) ([tvdeyen](https://github.com/tvdeyen))
|
456
|
-
- [js] Update @shoelace-style/shoelace 2.12.0 → 2.13.1 (minor) [#2709](https://github.com/AlchemyCMS/alchemy_cms/pull/2709) ([depfu](https://github.com/apps/depfu))
|
457
|
-
|
458
|
-
## 7.1.0 (2024-01-25)
|
459
|
-
|
460
|
-
- Revert "Set admin picture thumbnail quality to 90" [#2706](https://github.com/AlchemyCMS/alchemy_cms/pull/2706) ([tvdeyen](https://github.com/tvdeyen))
|
461
|
-
- [js] Update all development Yarn dependencies (2024-01-25) [#2705](https://github.com/AlchemyCMS/alchemy_cms/pull/2705) ([depfu](https://github.com/apps/depfu))
|
462
|
-
- 7.1 Fix UI glitches [#2704](https://github.com/AlchemyCMS/alchemy_cms/pull/2704) ([tvdeyen](https://github.com/tvdeyen))
|
463
|
-
- [7.1] Revert WebP thumbnails [#2703](https://github.com/AlchemyCMS/alchemy_cms/pull/2703) ([tvdeyen](https://github.com/tvdeyen))
|
464
|
-
- TinyMCE: Trim spaces from pasted links [#2702](https://github.com/AlchemyCMS/alchemy_cms/pull/2702) ([mamhoff](https://github.com/mamhoff))
|
465
|
-
- [js] Update sortablejs 1.15.1 → 1.15.2 (patch) [#2698](https://github.com/AlchemyCMS/alchemy_cms/pull/2698) ([depfu](https://github.com/apps/depfu))
|
466
|
-
- [js] Update @rails/ujs 7.1.2 → 7.1.3 (patch) [#2697](https://github.com/AlchemyCMS/alchemy_cms/pull/2697) ([depfu](https://github.com/apps/depfu))
|
467
|
-
- Set admin picture thumbnail quality to 90 [#2692](https://github.com/AlchemyCMS/alchemy_cms/pull/2692) ([tvdeyen](https://github.com/tvdeyen))
|
468
|
-
- Set Tinymce editor form min-height [#2691](https://github.com/AlchemyCMS/alchemy_cms/pull/2691) ([tvdeyen](https://github.com/tvdeyen))
|
469
|
-
- Link tinymce icons [#2690](https://github.com/AlchemyCMS/alchemy_cms/pull/2690) ([tvdeyen](https://github.com/tvdeyen))
|
470
|
-
|
471
|
-
## 7.1.0-rc1 (2024-01-15)
|
472
|
-
|
473
|
-
- Use title attribute for link_to_dialog and delete_button tooltip [#2688](https://github.com/AlchemyCMS/alchemy_cms/pull/2688) ([tvdeyen](https://github.com/tvdeyen))
|
474
|
-
- Add alchemy-clipboard-button component [#2687](https://github.com/AlchemyCMS/alchemy_cms/pull/2687) ([tvdeyen](https://github.com/tvdeyen))
|
475
|
-
- Fix layout of empty picture archive [#2686](https://github.com/AlchemyCMS/alchemy_cms/pull/2686) ([tvdeyen](https://github.com/tvdeyen))
|
476
|
-
- Fix Tinymce language config [#2685](https://github.com/AlchemyCMS/alchemy_cms/pull/2685) ([tvdeyen](https://github.com/tvdeyen))
|
477
|
-
- Add richtext input type for form builder [#2684](https://github.com/AlchemyCMS/alchemy_cms/pull/2684) ([tvdeyen](https://github.com/tvdeyen))
|
478
|
-
- Add support for legacy icon styles [#2683](https://github.com/AlchemyCMS/alchemy_cms/pull/2683) ([tvdeyen](https://github.com/tvdeyen))
|
479
|
-
- Fix imports of ES modules [#2682](https://github.com/AlchemyCMS/alchemy_cms/pull/2682) ([tvdeyen](https://github.com/tvdeyen))
|
480
|
-
- Use webp for image cropper [#2681](https://github.com/AlchemyCMS/alchemy_cms/pull/2681) ([tvdeyen](https://github.com/tvdeyen))
|
481
|
-
- Fix sizing of tinymce textarea [#2680](https://github.com/AlchemyCMS/alchemy_cms/pull/2680) ([tvdeyen](https://github.com/tvdeyen))
|
482
|
-
|
483
|
-
## 7.1.0-b2 (2024-01-09)
|
484
|
-
|
485
|
-
- Download and bundle third party JS packages with npm [#2679](https://github.com/AlchemyCMS/alchemy_cms/pull/2679) ([tvdeyen](https://github.com/tvdeyen))
|
486
|
-
- Remove legacy pages urls and folded pages if page gets destroyed [#2678](https://github.com/AlchemyCMS/alchemy_cms/pull/2678) ([tvdeyen](https://github.com/tvdeyen))
|
487
|
-
- Clear unnecessary legacy URLs [#2677](https://github.com/AlchemyCMS/alchemy_cms/pull/2677) ([mamhoff](https://github.com/mamhoff))
|
488
|
-
- Fix error linking text in tinymce [#2676](https://github.com/AlchemyCMS/alchemy_cms/pull/2676) ([tvdeyen](https://github.com/tvdeyen))
|
489
|
-
- Use WebP for all thumbnails [#2675](https://github.com/AlchemyCMS/alchemy_cms/pull/2675) ([tvdeyen](https://github.com/tvdeyen))
|
490
|
-
- Allow quality setting for webp images [#2674](https://github.com/AlchemyCMS/alchemy_cms/pull/2674) ([tvdeyen](https://github.com/tvdeyen))
|
491
|
-
- Do not remove background from non transparent images [#2673](https://github.com/AlchemyCMS/alchemy_cms/pull/2673) ([tvdeyen](https://github.com/tvdeyen))
|
492
|
-
- Update Tinymce to v6 [#2671](https://github.com/AlchemyCMS/alchemy_cms/pull/2671) ([tvdeyen](https://github.com/tvdeyen))
|
493
|
-
- Update Tinymce to v5 [#2670](https://github.com/AlchemyCMS/alchemy_cms/pull/2670) ([tvdeyen](https://github.com/tvdeyen))
|
494
|
-
- Fix missing image styles [#2667](https://github.com/AlchemyCMS/alchemy_cms/pull/2667) ([tvdeyen](https://github.com/tvdeyen))
|
495
|
-
- Preserve transparent backgrounds for PNGs [#2666](https://github.com/AlchemyCMS/alchemy_cms/pull/2666) ([tvdeyen](https://github.com/tvdeyen))
|
496
|
-
- Resource filter fixes [#2665](https://github.com/AlchemyCMS/alchemy_cms/pull/2665) ([tvdeyen](https://github.com/tvdeyen))
|
497
|
-
- [ruby - main] Update sqlite3 → 1.7.0 (unknown) [#2663](https://github.com/AlchemyCMS/alchemy_cms/pull/2663) ([depfu](https://github.com/apps/depfu))
|
498
|
-
- Fix brakeman offense [#2661](https://github.com/AlchemyCMS/alchemy_cms/pull/2661) ([tvdeyen](https://github.com/tvdeyen))
|
499
|
-
|
500
|
-
## 7.1.0-b1 (2023-12-28)
|
501
|
-
|
502
|
-
- Fix messages controller [#2658](https://github.com/AlchemyCMS/alchemy_cms/pull/2658) ([tvdeyen](https://github.com/tvdeyen))
|
503
|
-
- Test with Ruby 3.3 stable [#2657](https://github.com/AlchemyCMS/alchemy_cms/pull/2657) ([tvdeyen](https://github.com/tvdeyen))
|
504
|
-
- [ruby - main] Update shoulda-matchers → 6.0.0 (unknown) [#2656](https://github.com/AlchemyCMS/alchemy_cms/pull/2656) ([depfu](https://github.com/apps/depfu))
|
505
|
-
- Add Link button components [#2655](https://github.com/AlchemyCMS/alchemy_cms/pull/2655) ([tvdeyen](https://github.com/tvdeyen))
|
506
|
-
- Fix humanization for add nested element button [#2654](https://github.com/AlchemyCMS/alchemy_cms/pull/2654) ([nsaloj](https://github.com/nsaloj))
|
507
|
-
- Fix many layouts glitches [#2652](https://github.com/AlchemyCMS/alchemy_cms/pull/2652) ([tvdeyen](https://github.com/tvdeyen))
|
508
|
-
- Visually highlight droppable areas [#2651](https://github.com/AlchemyCMS/alchemy_cms/pull/2651) ([tvdeyen](https://github.com/tvdeyen))
|
509
|
-
- Fix imports of uploader [#2650](https://github.com/AlchemyCMS/alchemy_cms/pull/2650) ([tvdeyen](https://github.com/tvdeyen))
|
510
|
-
- Use SortableJS for sortable elements [#2649](https://github.com/AlchemyCMS/alchemy_cms/pull/2649) ([tvdeyen](https://github.com/tvdeyen))
|
511
|
-
- Fix picture archive layout [#2648](https://github.com/AlchemyCMS/alchemy_cms/pull/2648) ([tvdeyen](https://github.com/tvdeyen))
|
512
|
-
- Test with Ruby 3.3.0-rc1 [#2647](https://github.com/AlchemyCMS/alchemy_cms/pull/2647) ([tvdeyen](https://github.com/tvdeyen))
|
513
|
-
- Fix Tinymce button styles [#2646](https://github.com/AlchemyCMS/alchemy_cms/pull/2646) ([tvdeyen](https://github.com/tvdeyen))
|
514
|
-
- Fix Overlay component [#2644](https://github.com/AlchemyCMS/alchemy_cms/pull/2644) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
515
|
-
- Picture archive grid layout [#2642](https://github.com/AlchemyCMS/alchemy_cms/pull/2642) ([tvdeyen](https://github.com/tvdeyen))
|
516
|
-
- Show page locked status in page status [#2641](https://github.com/AlchemyCMS/alchemy_cms/pull/2641) ([tvdeyen](https://github.com/tvdeyen))
|
517
|
-
- Fix image usage info panel icons [#2640](https://github.com/AlchemyCMS/alchemy_cms/pull/2640) ([tvdeyen](https://github.com/tvdeyen))
|
518
|
-
- [js] Update @shoelace-style/shoelace 2.9.0 → 2.12.0 (minor) [#2639](https://github.com/AlchemyCMS/alchemy_cms/pull/2639) ([depfu](https://github.com/apps/depfu))
|
519
|
-
- [js] Update sortablejs 1.15.0 → 1.15.1 (patch) [#2638](https://github.com/AlchemyCMS/alchemy_cms/pull/2638) ([depfu](https://github.com/apps/depfu))
|
520
|
-
- Show page status inline [#2637](https://github.com/AlchemyCMS/alchemy_cms/pull/2637) ([tvdeyen](https://github.com/tvdeyen))
|
521
|
-
- Fix element states styling [#2636](https://github.com/AlchemyCMS/alchemy_cms/pull/2636) ([tvdeyen](https://github.com/tvdeyen))
|
522
|
-
- Fix menubar styling [#2634](https://github.com/AlchemyCMS/alchemy_cms/pull/2634) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
523
|
-
- Use shoelace switch for Element publish toggle [#2633](https://github.com/AlchemyCMS/alchemy_cms/pull/2633) ([tvdeyen](https://github.com/tvdeyen))
|
524
|
-
- UI Refinements [#2630](https://github.com/AlchemyCMS/alchemy_cms/pull/2630) ([tvdeyen](https://github.com/tvdeyen))
|
525
|
-
- Use Shoelace tooltip for all tooltips and hint bubbles [#2629](https://github.com/AlchemyCMS/alchemy_cms/pull/2629) ([tvdeyen](https://github.com/tvdeyen))
|
526
|
-
- Add support for RailsLiveReload [#2628](https://github.com/AlchemyCMS/alchemy_cms/pull/2628) ([tvdeyen](https://github.com/tvdeyen))
|
527
|
-
- Revert "Optimize events on handler" [#2627](https://github.com/AlchemyCMS/alchemy_cms/pull/2627) ([tvdeyen](https://github.com/tvdeyen))
|
528
|
-
- Use Remix icons [#2626](https://github.com/AlchemyCMS/alchemy_cms/pull/2626) ([tvdeyen](https://github.com/tvdeyen))
|
529
|
-
- Add a new picture thumbnail style [#2625](https://github.com/AlchemyCMS/alchemy_cms/pull/2625) ([tvdeyen](https://github.com/tvdeyen))
|
530
|
-
- Add alchemy-dialog-link custom component [#2624](https://github.com/AlchemyCMS/alchemy_cms/pull/2624) ([tvdeyen](https://github.com/tvdeyen))
|
531
|
-
- Replace jquery.upload with web component [#2623](https://github.com/AlchemyCMS/alchemy_cms/pull/2623) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
532
|
-
- Add alchemy-button web component [#2621](https://github.com/AlchemyCMS/alchemy_cms/pull/2621) ([tvdeyen](https://github.com/tvdeyen))
|
533
|
-
- Preload tinymce assets [#2620](https://github.com/AlchemyCMS/alchemy_cms/pull/2620) ([tvdeyen](https://github.com/tvdeyen))
|
534
|
-
- Use rails-ujs instead of jquery_ujs [#2619](https://github.com/AlchemyCMS/alchemy_cms/pull/2619) ([tvdeyen](https://github.com/tvdeyen))
|
535
|
-
- Do not seed during install [#2617](https://github.com/AlchemyCMS/alchemy_cms/pull/2617) ([kennyadsl](https://github.com/kennyadsl))
|
536
|
-
- Add a RemoteSelect base component [#2616](https://github.com/AlchemyCMS/alchemy_cms/pull/2616) ([tvdeyen](https://github.com/tvdeyen))
|
537
|
-
- Add a NodeSelect web component [#2615](https://github.com/AlchemyCMS/alchemy_cms/pull/2615) ([tvdeyen](https://github.com/tvdeyen))
|
538
|
-
- Add Element Editor Custom Element [#2614](https://github.com/AlchemyCMS/alchemy_cms/pull/2614) ([tvdeyen](https://github.com/tvdeyen))
|
539
|
-
- Prevent publishing of the same page at the same time [#2612](https://github.com/AlchemyCMS/alchemy_cms/pull/2612) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
540
|
-
- Create menubar web component [#2611](https://github.com/AlchemyCMS/alchemy_cms/pull/2611) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
541
|
-
- Update jQuery to v3.7 [#2610](https://github.com/AlchemyCMS/alchemy_cms/pull/2610) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
542
|
-
- Add Select Web Component [#2606](https://github.com/AlchemyCMS/alchemy_cms/pull/2606) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
543
|
-
- Include jquery-ui [#2601](https://github.com/AlchemyCMS/alchemy_cms/pull/2601) ([tvdeyen](https://github.com/tvdeyen))
|
544
|
-
- Fix duplicated flatpickr calendar - DOM elements [#2600](https://github.com/AlchemyCMS/alchemy_cms/pull/2600) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
545
|
-
- Fix adding element into main content [#2599](https://github.com/AlchemyCMS/alchemy_cms/pull/2599) ([tvdeyen](https://github.com/tvdeyen))
|
546
|
-
- Add shoelace theme [#2597](https://github.com/AlchemyCMS/alchemy_cms/pull/2597) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
547
|
-
- Use Shoelace Tab for tabs [#2595](https://github.com/AlchemyCMS/alchemy_cms/pull/2595) ([tvdeyen](https://github.com/tvdeyen))
|
548
|
-
- Fix language and site creation [#2593](https://github.com/AlchemyCMS/alchemy_cms/pull/2593) ([tvdeyen](https://github.com/tvdeyen))
|
549
|
-
- Allow Rails 7.1 [#2592](https://github.com/AlchemyCMS/alchemy_cms/pull/2592) ([tvdeyen](https://github.com/tvdeyen))
|
550
|
-
- [ruby - main] Update net-imap → 0.4.0 (unknown) [#2591](https://github.com/AlchemyCMS/alchemy_cms/pull/2591) ([depfu](https://github.com/apps/depfu))
|
551
|
-
- Test Ruby 3.3-preview2 and YJIT [#2590](https://github.com/AlchemyCMS/alchemy_cms/pull/2590) ([tvdeyen](https://github.com/tvdeyen))
|
552
|
-
- Allow to import additional admin JS modules [#2588](https://github.com/AlchemyCMS/alchemy_cms/pull/2588) ([tvdeyen](https://github.com/tvdeyen))
|
553
|
-
- Disable Turbo on the leave overlay [#2586](https://github.com/AlchemyCMS/alchemy_cms/pull/2586) ([tvdeyen](https://github.com/tvdeyen))
|
554
|
-
- Fix web component i18n issues [#2585](https://github.com/AlchemyCMS/alchemy_cms/pull/2585) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
555
|
-
- Use fewer select2 [#2584](https://github.com/AlchemyCMS/alchemy_cms/pull/2584) ([tvdeyen](https://github.com/tvdeyen))
|
556
|
-
- [ruby - main] Update net-smtp → 0.4.0 (unknown) [#2583](https://github.com/AlchemyCMS/alchemy_cms/pull/2583) ([depfu](https://github.com/apps/depfu))
|
557
|
-
- Page Select Component [#2582](https://github.com/AlchemyCMS/alchemy_cms/pull/2582) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
558
|
-
- [ruby - main] Update execjs → 2.9.1 (unknown) [#2579](https://github.com/AlchemyCMS/alchemy_cms/pull/2579) ([depfu](https://github.com/apps/depfu))
|
559
|
-
- Web Component Safari fixes [#2578](https://github.com/AlchemyCMS/alchemy_cms/pull/2578) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
560
|
-
- [ruby - main] Update execjs → 2.9.0 (unknown) [#2577](https://github.com/AlchemyCMS/alchemy_cms/pull/2577) ([depfu](https://github.com/apps/depfu))
|
561
|
-
- Replace Spinner with web component [#2574](https://github.com/AlchemyCMS/alchemy_cms/pull/2574) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
562
|
-
- Fix NonStupidDigestAssets with String whitelist [#2571](https://github.com/AlchemyCMS/alchemy_cms/pull/2571) ([tvdeyen](https://github.com/tvdeyen))
|
563
|
-
- Standardrb rules update [#2570](https://github.com/AlchemyCMS/alchemy_cms/pull/2570) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
564
|
-
- Use sqren/backport for automated back porting of PRs [#2567](https://github.com/AlchemyCMS/alchemy_cms/pull/2567) ([tvdeyen](https://github.com/tvdeyen))
|
565
|
-
- Revert "Change capitalization of Ruby On Rails in README" [#2566](https://github.com/AlchemyCMS/alchemy_cms/pull/2566) ([tvdeyen](https://github.com/tvdeyen))
|
566
|
-
- Use our backport fork [#2565](https://github.com/AlchemyCMS/alchemy_cms/pull/2565) ([tvdeyen](https://github.com/tvdeyen))
|
567
|
-
- Actions: Remove labels_template [#2564](https://github.com/AlchemyCMS/alchemy_cms/pull/2564) ([tvdeyen](https://github.com/tvdeyen))
|
568
|
-
- Change capitalization of Ruby On Rails in README [#2563](https://github.com/AlchemyCMS/alchemy_cms/pull/2563) ([tvdeyen](https://github.com/tvdeyen))
|
569
|
-
- Fix format of labels_template [#2562](https://github.com/AlchemyCMS/alchemy_cms/pull/2562) ([tvdeyen](https://github.com/tvdeyen))
|
570
|
-
- Change backport templates [#2561](https://github.com/AlchemyCMS/alchemy_cms/pull/2561) ([tvdeyen](https://github.com/tvdeyen))
|
571
|
-
- Add backport GH action [#2560](https://github.com/AlchemyCMS/alchemy_cms/pull/2560) ([tvdeyen](https://github.com/tvdeyen))
|
572
|
-
- Allow redirecting to other host in site redirect [#2559](https://github.com/AlchemyCMS/alchemy_cms/pull/2559) ([tvdeyen](https://github.com/tvdeyen))
|
573
|
-
- Picture Ingredient: Fix NaN error with free height [#2556](https://github.com/AlchemyCMS/alchemy_cms/pull/2556) ([mamhoff](https://github.com/mamhoff))
|
574
|
-
- Migrate Tinymce module into a web component [#2555](https://github.com/AlchemyCMS/alchemy_cms/pull/2555) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
575
|
-
- Migrate datepicker into a web component [#2554](https://github.com/AlchemyCMS/alchemy_cms/pull/2554) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
576
|
-
- Convert base from Coffeescript to Javascript [#2550](https://github.com/AlchemyCMS/alchemy_cms/pull/2550) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
577
|
-
- Convert CharCounter from CoffeeScript to Javascript [#2549](https://github.com/AlchemyCMS/alchemy_cms/pull/2549) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
578
|
-
- Convert Tooltip from Coffeescript to Javascript [#2548](https://github.com/AlchemyCMS/alchemy_cms/pull/2548) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
579
|
-
- Convert autocomplete from CoffeeScript to Javascript [#2547](https://github.com/AlchemyCMS/alchemy_cms/pull/2547) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
580
|
-
- Update README [#2546](https://github.com/AlchemyCMS/alchemy_cms/pull/2546) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
581
|
-
- Add web-console to local gems [#2545](https://github.com/AlchemyCMS/alchemy_cms/pull/2545) ([tvdeyen](https://github.com/tvdeyen))
|
582
|
-
- Remove IE6 CSS hacks [#2543](https://github.com/AlchemyCMS/alchemy_cms/pull/2543) ([tvdeyen](https://github.com/tvdeyen))
|
583
|
-
- Increase minimum Rails version to v7.0 [#2542](https://github.com/AlchemyCMS/alchemy_cms/pull/2542) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
584
|
-
- Remove return statement in datepicker [#2540](https://github.com/AlchemyCMS/alchemy_cms/pull/2540) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
585
|
-
- Improve Richtext editor view [#2539](https://github.com/AlchemyCMS/alchemy_cms/pull/2539) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
586
|
-
- Revert "[7.0] Fix DOM ids and labels of ingredient editors" [#2536](https://github.com/AlchemyCMS/alchemy_cms/pull/2536) ([tvdeyen](https://github.com/tvdeyen))
|
587
|
-
- Revert "[7.0] Bugfix: Init PagePublicationFields on Pages Table" [#2535](https://github.com/AlchemyCMS/alchemy_cms/pull/2535) ([tvdeyen](https://github.com/tvdeyen))
|
588
|
-
- [7.0] Fix DOM ids and labels of ingredient editors [#2534](https://github.com/AlchemyCMS/alchemy_cms/pull/2534) ([tvdeyen](https://github.com/tvdeyen))
|
589
|
-
- [7.0] Bugfix: Init PagePublicationFields on Pages Table [#2533](https://github.com/AlchemyCMS/alchemy_cms/pull/2533) ([tvdeyen](https://github.com/tvdeyen))
|
590
|
-
- Use selenium-webdriver instead of webdrivers gem [#2529](https://github.com/AlchemyCMS/alchemy_cms/pull/2529) ([mamhoff](https://github.com/mamhoff))
|
591
|
-
- Bugfix: Init PagePublicationFields on Pages Table [#2528](https://github.com/AlchemyCMS/alchemy_cms/pull/2528) ([mamhoff](https://github.com/mamhoff))
|
592
|
-
- Fix DOM ids and labels of ingredient editors [#2526](https://github.com/AlchemyCMS/alchemy_cms/pull/2526) ([tvdeyen](https://github.com/tvdeyen))
|
593
|
-
- Increase minimum Rails version to v6.1 [#2524](https://github.com/AlchemyCMS/alchemy_cms/pull/2524) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
594
|
-
- Add configurable unauthorized path [#2522](https://github.com/AlchemyCMS/alchemy_cms/pull/2522) ([gr8bit](https://github.com/gr8bit))
|
595
|
-
- Copying pages: Only add "(Copy)" if necessary [#2521](https://github.com/AlchemyCMS/alchemy_cms/pull/2521) ([mamhoff](https://github.com/mamhoff))
|
596
|
-
- [js] Update prettier → 3.0.0 (unknown) [#2520](https://github.com/AlchemyCMS/alchemy_cms/pull/2520) ([depfu](https://github.com/apps/depfu))
|
597
|
-
- Convert GUI from Coffeescript to Javascript [#2516](https://github.com/AlchemyCMS/alchemy_cms/pull/2516) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
598
|
-
- convert Initializer from Coffeescript to Javascript [#2513](https://github.com/AlchemyCMS/alchemy_cms/pull/2513) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
599
|
-
- Convert Dirty from Coffeescript to Javascript [#2510](https://github.com/AlchemyCMS/alchemy_cms/pull/2510) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
600
|
-
- Convert buttons.js.coffee to buttons.js [#2509](https://github.com/AlchemyCMS/alchemy_cms/pull/2509) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
601
|
-
|
602
|
-
## 7.0.12 (2024-04-12)
|
603
|
-
|
604
|
-
- [7.0-stable] Fix Ingredient Boolean View [#2837](https://github.com/AlchemyCMS/alchemy_cms/pull/2837) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
605
|
-
- [7.0-stable] Nullify Ingredients::Page on Page destroy [#2830](https://github.com/AlchemyCMS/alchemy_cms/pull/2830) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
606
|
-
- [7.0-stable] Fix module error [#2821](https://github.com/AlchemyCMS/alchemy_cms/pull/2821) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
607
|
-
- [7.0-stable] Mark ingredient output as html_safe [#2781](https://github.com/AlchemyCMS/alchemy_cms/pull/2781) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
608
|
-
|
609
|
-
## 7.0.11 (2024-03-05)
|
610
|
-
|
611
|
-
- [7.0-stable] Do not include timezone in datepickers only displaying date [#2769](https://github.com/AlchemyCMS/alchemy_cms/pull/2769) ([tvdeyen](https://github.com/tvdeyen))
|
612
|
-
|
613
|
-
## 7.0.10 (2024-02-29)
|
614
|
-
|
615
|
-
- [7.0-stable] Fix taggable uniqueness in tags admin table [#2763](https://github.com/AlchemyCMS/alchemy_cms/pull/2763) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
616
|
-
|
617
|
-
## 7.0.9 (2024-02-27)
|
618
|
-
|
619
|
-
- [7.0] Fix tags view for missing taggables [#2757](https://github.com/AlchemyCMS/alchemy_cms/pull/2757) ([tvdeyen](https://github.com/tvdeyen))
|
620
|
-
- [7.0-stable] Merge pull request #2752 from tvdeyen/fix-copy-elements-order [#2753](https://github.com/AlchemyCMS/alchemy_cms/pull/2753) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
621
|
-
- [7.0-stable] Merge pull request #2689 from robinboening/fix_switching_to_default_language [#2745](https://github.com/AlchemyCMS/alchemy_cms/pull/2745) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
622
|
-
- [7.0-stable] Merge pull request #2720 from sascha-karnatz/restrict-turbo-rails-version [#2725](https://github.com/AlchemyCMS/alchemy_cms/pull/2725) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
623
|
-
- [7.0-stable] Merge pull request #2665 from tvdeyen/resource-filter-fixes [#2668](https://github.com/AlchemyCMS/alchemy_cms/pull/2668) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
624
|
-
|
625
|
-
## 7.0.8 (2023-12-28)
|
626
|
-
|
627
|
-
- [7.0-stable] Merge pull request #2658 from tvdeyen/fix-contactform-mailer [#2660](https://github.com/AlchemyCMS/alchemy_cms/pull/2660) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
628
|
-
- [7.0] Fix humanization for add nested element button [#2659](https://github.com/AlchemyCMS/alchemy_cms/pull/2659) ([tvdeyen](https://github.com/tvdeyen))
|
629
|
-
|
630
|
-
## 7.0.7 (2023-11-28)
|
631
|
-
|
632
|
-
- [7.0] Disable Turbolinks on menubar [#2622](https://github.com/AlchemyCMS/alchemy_cms/pull/2622) ([tvdeyen](https://github.com/tvdeyen))
|
633
|
-
- [7.0-stable] Merge pull request #2617 from kennyadsl/patch-1 [#2618](https://github.com/AlchemyCMS/alchemy_cms/pull/2618) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
634
|
-
|
635
|
-
## 7.0.6 (2023-11-15)
|
636
|
-
|
637
|
-
- [7.0-stable] Merge pull request #2612 from sascha-karnatz/harden-page-publisher [#2613](https://github.com/AlchemyCMS/alchemy_cms/pull/2613) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
638
|
-
- [7.0] Allow Rails 7.1 [#2603](https://github.com/AlchemyCMS/alchemy_cms/pull/2603) ([tvdeyen](https://github.com/tvdeyen))
|
639
|
-
- [7.0-stable] Merge pull request #2601 from tvdeyen/remove-jquery-ui-rails [#2602](https://github.com/AlchemyCMS/alchemy_cms/pull/2602) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
640
|
-
|
641
|
-
## 7.0.5 (2023-10-06)
|
642
|
-
|
643
|
-
- [7.0-stable] Merge pull request #2593 from tvdeyen/fix-turbo-redirect [#2594](https://github.com/AlchemyCMS/alchemy_cms/pull/2594) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
644
|
-
|
645
|
-
## 7.0.4 (2023-10-04)
|
646
|
-
|
647
|
-
- [7.0-stable] Merge pull request #2588 from tvdeyen/admin-js-imports [#2589](https://github.com/AlchemyCMS/alchemy_cms/pull/2589) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
648
|
-
- [7.0-stable] Merge pull request #2586 from AlchemyCMS/fix-leave-dialog [#2587](https://github.com/AlchemyCMS/alchemy_cms/pull/2587) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
649
|
-
- [7.0-stable] Merge pull request #2556 from mamhoff/fix-nan-ratio-error [#2580](https://github.com/AlchemyCMS/alchemy_cms/pull/2580) ([alchemycms-bot](https://github.com/alchemycms-bot))
|
650
|
-
|
651
|
-
## 7.0.3 (2023-08-29)
|
652
|
-
|
653
|
-
- [7.0-stable] Merge pull request #2571 from tvdeyen/fix-non-stupid-digest-assets [#2572](https://github.com/AlchemyCMS/alchemy_cms/pull/2572) ([github-actions](https://github.com/apps/github-actions))
|
654
|
-
- Increase minimum Rails version to v6.1 [#2541](https://github.com/AlchemyCMS/alchemy_cms/pull/2541) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
655
|
-
|
656
|
-
## 7.0.2 (2023-07-31)
|
657
|
-
|
658
|
-
- [7.0] Fix DOM ids and labels of ingredient editors [#2538](https://github.com/AlchemyCMS/alchemy_cms/pull/2538) ([tvdeyen](https://github.com/tvdeyen))
|
659
|
-
- [7.0] Bugfix: Initialize PagePublicationFields on Pages Table [#2537](https://github.com/AlchemyCMS/alchemy_cms/pull/2537) ([tvdeyen](https://github.com/tvdeyen))
|
660
|
-
- [v7.0] Use selenium-webdriver instead of webdrivers gem [#2532](https://github.com/AlchemyCMS/alchemy_cms/pull/2532) ([mamhoff](https://github.com/mamhoff))
|
661
|
-
|
662
|
-
## 7.0.1 (2023-07-07)
|
663
|
-
|
664
|
-
- Fix disconnecting Tinymce intersection observer [#2519](https://github.com/AlchemyCMS/alchemy_cms/pull/2519) ([tvdeyen](https://github.com/tvdeyen))
|
665
|
-
|
666
|
-
## 7.0.0 (2023-07-05)
|
667
|
-
|
668
|
-
- Remove old alchemy_admin files from sprockets builds [#2517](https://github.com/AlchemyCMS/alchemy_cms/pull/2517) ([tvdeyen](https://github.com/tvdeyen))
|
669
|
-
- Sort unused elements and page types by name [#2515](https://github.com/AlchemyCMS/alchemy_cms/pull/2515) ([tvdeyen](https://github.com/tvdeyen))
|
670
|
-
- Remove flatpickr/flatpickr.min.js [#2512](https://github.com/AlchemyCMS/alchemy_cms/pull/2512) ([tvdeyen](https://github.com/tvdeyen))
|
671
|
-
- Remove iOS switch for data pickers [#2511](https://github.com/AlchemyCMS/alchemy_cms/pull/2511) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
672
|
-
- Add task(s) to visualize element and page usage [#2496](https://github.com/AlchemyCMS/alchemy_cms/pull/2496) ([tvdeyen](https://github.com/tvdeyen))
|
673
|
-
- Allow to create element with warning in definition [#2507](https://github.com/AlchemyCMS/alchemy_cms/pull/2507) ([tvdeyen](https://github.com/tvdeyen))
|
674
|
-
- Remove unused javascript [#2506](https://github.com/AlchemyCMS/alchemy_cms/pull/2506) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
675
|
-
- Allow authors to link to all pages again [#2504](https://github.com/AlchemyCMS/alchemy_cms/pull/2504) ([tvdeyen](https://github.com/tvdeyen))
|
676
|
-
- Lint JS code with Prettier [#2503](https://github.com/AlchemyCMS/alchemy_cms/pull/2503) ([tvdeyen](https://github.com/tvdeyen))
|
677
|
-
- Use absolute imports in modules [#2502](https://github.com/AlchemyCMS/alchemy_cms/pull/2502) ([tvdeyen](https://github.com/tvdeyen))
|
678
|
-
- Replace turbolinks with turbo [#2499](https://github.com/AlchemyCMS/alchemy_cms/pull/2499) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
679
|
-
- Use Importmaps for admin JS [#2498](https://github.com/AlchemyCMS/alchemy_cms/pull/2498) ([tvdeyen](https://github.com/tvdeyen))
|
680
|
-
- Fix TinyMCE loading behavior after page change [#2494](https://github.com/AlchemyCMS/alchemy_cms/pull/2494) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
681
|
-
- [js] Update esbuild → 0.18.4 (unknown) [#2492](https://github.com/AlchemyCMS/alchemy_cms/pull/2492) ([depfu](https://github.com/apps/depfu))
|
682
|
-
- Add ransackable attributes to tags [#2487](https://github.com/AlchemyCMS/alchemy_cms/pull/2487) ([tvdeyen](https://github.com/tvdeyen))
|
683
|
-
- Remove selenium-webdriver 4.9.0 [#2484](https://github.com/AlchemyCMS/alchemy_cms/pull/2484) ([depfu](https://github.com/apps/depfu))
|
684
|
-
- Make it easier to run the dummy app locally [#2483](https://github.com/AlchemyCMS/alchemy_cms/pull/2483) ([tvdeyen](https://github.com/tvdeyen))
|
685
|
-
- VideoView: Merge html_options onto options [#2481](https://github.com/AlchemyCMS/alchemy_cms/pull/2481) ([tvdeyen](https://github.com/tvdeyen))
|
686
|
-
- Allow to pass level to HeadlineView component [#2480](https://github.com/AlchemyCMS/alchemy_cms/pull/2480) ([tvdeyen](https://github.com/tvdeyen))
|
687
|
-
- Un-deprecate rendering ingredient view partials [#2479](https://github.com/AlchemyCMS/alchemy_cms/pull/2479) ([tvdeyen](https://github.com/tvdeyen))
|
688
|
-
- Fix installer application layout template [#2478](https://github.com/AlchemyCMS/alchemy_cms/pull/2478) ([tvdeyen](https://github.com/tvdeyen))
|
689
|
-
- Respect available locales set in application [#2477](https://github.com/AlchemyCMS/alchemy_cms/pull/2477) ([tvdeyen](https://github.com/tvdeyen))
|
690
|
-
- Use intersection observer to init Tinymce editors [#2476](https://github.com/AlchemyCMS/alchemy_cms/pull/2476) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
691
|
-
- Revert "Preload related objects in Alchemy::PagesController" [#2472](https://github.com/AlchemyCMS/alchemy_cms/pull/2472) ([tvdeyen](https://github.com/tvdeyen))
|
692
|
-
- Collapse all nested elements on fold [#2471](https://github.com/AlchemyCMS/alchemy_cms/pull/2471) ([tvdeyen](https://github.com/tvdeyen))
|
693
|
-
- Do not render nested elements of element editor if folded [#2470](https://github.com/AlchemyCMS/alchemy_cms/pull/2470) ([tvdeyen](https://github.com/tvdeyen))
|
694
|
-
- Pin selenium-webdriver to 4.9.0 [#2469](https://github.com/AlchemyCMS/alchemy_cms/pull/2469) ([tvdeyen](https://github.com/tvdeyen))
|
695
|
-
- Add indexes to pictures table [#2466](https://github.com/AlchemyCMS/alchemy_cms/pull/2466) ([sascha-karnatz](https://github.com/sascha-karnatz))
|
696
|
-
- Use view_component for ingredient views [#2465](https://github.com/AlchemyCMS/alchemy_cms/pull/2465) ([tvdeyen](https://github.com/tvdeyen))
|
697
|
-
- Drop Ruby 2.x support [#2464](https://github.com/AlchemyCMS/alchemy_cms/pull/2464) ([tvdeyen](https://github.com/tvdeyen))
|
698
|
-
- Remove defer from admin JS includes [#2463](https://github.com/AlchemyCMS/alchemy_cms/pull/2463) ([tvdeyen](https://github.com/tvdeyen))
|
699
|
-
- Use ISO Date format in flatpickr [#2462](https://github.com/AlchemyCMS/alchemy_cms/pull/2462) ([phantomwhale](https://github.com/phantomwhale))
|
700
|
-
- Fix layoutpages configuration [#2459](https://github.com/AlchemyCMS/alchemy_cms/pull/2459) ([oRIOnTx](https://github.com/oRIOnTx))
|
701
|
-
- Fix picture show overlay if picture in use [#2456](https://github.com/AlchemyCMS/alchemy_cms/pull/2456) ([tvdeyen](https://github.com/tvdeyen))
|
702
|
-
- Fix picture file format filter [#2455](https://github.com/AlchemyCMS/alchemy_cms/pull/2455) ([tvdeyen](https://github.com/tvdeyen))
|
703
|
-
- Allow editors to switch language [#2454](https://github.com/AlchemyCMS/alchemy_cms/pull/2454) ([mamhoff](https://github.com/mamhoff))
|
704
|
-
- Use standard.rb as code linter and formatter [#2453](https://github.com/AlchemyCMS/alchemy_cms/pull/2453) ([tvdeyen](https://github.com/tvdeyen))
|
705
|
-
- CI: Update brakeman workflow [#2452](https://github.com/AlchemyCMS/alchemy_cms/pull/2452) ([tvdeyen](https://github.com/tvdeyen))
|
706
|
-
- CI: Use latest version of GitHub actions [#2451](https://github.com/AlchemyCMS/alchemy_cms/pull/2451) ([tvdeyen](https://github.com/tvdeyen))
|
707
|
-
- Send language_id (of the currently editing page) parameter to Pages API requests for page select on link overlay [#2439](https://github.com/AlchemyCMS/alchemy_cms/pull/2439) ([dbwinger](https://github.com/dbwinger))
|
708
|
-
- Fix page seeder [#2389](https://github.com/AlchemyCMS/alchemy_cms/pull/2389) ([tvdeyen](https://github.com/tvdeyen))
|
709
|
-
- Remove deprecations [#2450](https://github.com/AlchemyCMS/alchemy_cms/pull/2450) ([tvdeyen](https://github.com/tvdeyen))
|
710
|
-
- Fix respond_to? overwrite in ElementEditor [#2449](https://github.com/AlchemyCMS/alchemy_cms/pull/2449) ([tvdeyen](https://github.com/tvdeyen))
|
711
|
-
- Fix installer: Add seeds file if not exists [#2446](https://github.com/AlchemyCMS/alchemy_cms/pull/2446) ([tvdeyen](https://github.com/tvdeyen))
|
712
|
-
- Make CapybaraHelpers requireable [#2445](https://github.com/AlchemyCMS/alchemy_cms/pull/2445) ([tvdeyen](https://github.com/tvdeyen))
|
713
|
-
- Do not install webpacker tag for fresh apps [#2444](https://github.com/AlchemyCMS/alchemy_cms/pull/2444) ([tvdeyen](https://github.com/tvdeyen))
|
714
|
-
- Re-add Webpacker support. [#2443](https://github.com/AlchemyCMS/alchemy_cms/pull/2443) ([tvdeyen](https://github.com/tvdeyen))
|
715
|
-
- Add support for more link tabs [#2442](https://github.com/AlchemyCMS/alchemy_cms/pull/2442) ([tvdeyen](https://github.com/tvdeyen))
|
716
|
-
- Add support for Ransack 4 [#2438](https://github.com/AlchemyCMS/alchemy_cms/pull/2438) ([tvdeyen](https://github.com/tvdeyen))
|
717
|
-
- Fix non_stupid_digest_assets [#2436](https://github.com/AlchemyCMS/alchemy_cms/pull/2436) ([tvdeyen](https://github.com/tvdeyen))
|
718
|
-
- Add PictureThumb.storage_class [#2435](https://github.com/AlchemyCMS/alchemy_cms/pull/2435) ([tvdeyen](https://github.com/tvdeyen))
|
719
|
-
- Fix thumbnail writing for multi-concurrent and multi-db setups [#2433](https://github.com/AlchemyCMS/alchemy_cms/pull/2433) ([tvdeyen](https://github.com/tvdeyen))
|
720
|
-
- Integrate non_stupid_digest_assets gem [#2430](https://github.com/AlchemyCMS/alchemy_cms/pull/2430) ([afdev82](https://github.com/afdev82))
|
721
|
-
- Define allowed settings in ingredients [#2425](https://github.com/AlchemyCMS/alchemy_cms/pull/2425) ([tvdeyen](https://github.com/tvdeyen))
|
722
|
-
- Remove webpacker [#2424](https://github.com/AlchemyCMS/alchemy_cms/pull/2424) ([tvdeyen](https://github.com/tvdeyen))
|
723
|
-
- Remove deprecated methods [#2421](https://github.com/AlchemyCMS/alchemy_cms/pull/2421) ([tvdeyen](https://github.com/tvdeyen))
|
724
|
-
- Remove 6.0 upgrade tasks [#2418](https://github.com/AlchemyCMS/alchemy_cms/pull/2418) ([tvdeyen](https://github.com/tvdeyen))
|
725
|
-
- Compress 6.1 migrations [#2417](https://github.com/AlchemyCMS/alchemy_cms/pull/2417) ([tvdeyen](https://github.com/tvdeyen))
|
726
|
-
- Remove all content/essence related code [#2416](https://github.com/AlchemyCMS/alchemy_cms/pull/2416) ([tvdeyen](https://github.com/tvdeyen))
|
727
|
-
- Remove RSS Feed feature [#2415](https://github.com/AlchemyCMS/alchemy_cms/pull/2415) ([tvdeyen](https://github.com/tvdeyen))
|
728
|
-
- Add searchable field to page [#2414](https://github.com/AlchemyCMS/alchemy_cms/pull/2414) ([kulturbande](https://github.com/kulturbande))
|
729
|
-
|
730
|
-
## 6.1.9 (2023-08-29)
|
731
|
-
|
732
|
-
- [6.1-stable] Merge pull request #2571 from tvdeyen/fix-non-stupid-digest-assets [#2573](https://github.com/AlchemyCMS/alchemy_cms/pull/2573) ([github-actions](https://github.com/apps/github-actions))
|
733
|
-
- [6.1] Show if element is using contents or ingredients [#2568](https://github.com/AlchemyCMS/alchemy_cms/pull/2568) ([tvdeyen](https://github.com/tvdeyen))
|
734
|
-
|
735
|
-
## 6.1.8 (2023-07-31)
|
736
|
-
|
737
|
-
- [v6.1] Use selenium-webdriver instead of webdrivers gem [#2531](https://github.com/AlchemyCMS/alchemy_cms/pull/2531) ([mamhoff](https://github.com/mamhoff))
|
738
|
-
- [v6.1] Bugfix: Init PagePublicationFields on Pages Table [#2530](https://github.com/AlchemyCMS/alchemy_cms/pull/2530) ([mamhoff](https://github.com/mamhoff))
|
739
|
-
|
740
|
-
## 6.1.7 (2023-07-07)
|
741
|
-
|
742
|
-
- [6.1] Add task(s) to visualize element and page usage [#2514](https://github.com/AlchemyCMS/alchemy_cms/pull/2514) ([tvdeyen](https://github.com/tvdeyen))
|
743
|
-
|
744
|
-
## 6.1.6 (2023-06-30)
|
745
|
-
|
746
|
-
- [6.1] Allow to create element with warning in definition [#2508](https://github.com/AlchemyCMS/alchemy_cms/pull/2508) ([tvdeyen](https://github.com/tvdeyen))
|
747
|
-
- [6.1] Allow authors to link to all pages again [#2505](https://github.com/AlchemyCMS/alchemy_cms/pull/2505) ([tvdeyen](https://github.com/tvdeyen))
|
748
|
-
- install generator: Add option to force patched babel config [#2495](https://github.com/AlchemyCMS/alchemy_cms/pull/2495) ([tvdeyen](https://github.com/tvdeyen))
|
749
|
-
- Remove memory leak in ingredients migrator [#2493](https://github.com/AlchemyCMS/alchemy_cms/pull/2493) ([tvdeyen](https://github.com/tvdeyen))
|
750
|
-
|
751
|
-
## 6.1.5 (2023-05-26)
|
752
|
-
|
753
|
-
- [6.1] Fix page seeder [#2482](https://github.com/AlchemyCMS/alchemy_cms/pull/2482) ([tvdeyen](https://github.com/tvdeyen))
|
754
|
-
|
755
|
-
## 6.1.4 (2023-05-18)
|
756
|
-
|
757
|
-
- [6.1] Revert "Preload related objects in Alchemy::PagesController" [#2473](https://github.com/AlchemyCMS/alchemy_cms/pull/2473) ([tvdeyen](https://github.com/tvdeyen))
|
758
|
-
|
759
|
-
## 6.1.3 (2023-03-29)
|
760
|
-
|
761
|
-
- Fix installer: Add seeds file if not exists [#2446](https://github.com/AlchemyCMS/alchemy_cms/pull/2446) ([tvdeyen](https://github.com/tvdeyen))
|
762
|
-
- Integrate non_stupid_digest_assets gem [#2430](https://github.com/AlchemyCMS/alchemy_cms/pull/2430) ([afdev82](https://github.com/afdev82))
|
763
|
-
|
764
|
-
## 6.1.2 (2023-02-27)
|
765
|
-
|
766
|
-
- [6.1] Fix thumbnail writing for multi-concurrent and multi-db setups [#2434](https://github.com/AlchemyCMS/alchemy_cms/pull/2434) ([tvdeyen](https://github.com/tvdeyen))
|
767
|
-
|
768
|
-
## 6.1.1 (2023-01-23)
|
769
|
-
|
770
|
-
- Re-introduce deleted methods [#2422](https://github.com/AlchemyCMS/alchemy_cms/pull/2422) ([tvdeyen](https://github.com/tvdeyen))
|
771
|
-
- Add searchable field to page (Alchemy 6.1) [#2420](https://github.com/AlchemyCMS/alchemy_cms/pull/2420) ([kulturbande](https://github.com/kulturbande))
|
772
|
-
|
773
|
-
## 6.1.0 (2023-01-19)
|
774
|
-
|
775
|
-
### Features
|
776
|
-
|
777
|
-
- Add page layouts repository class option [#2410](https://github.com/AlchemyCMS/alchemy_cms/pull/2410) ([tvdeyen](https://github.com/tvdeyen))
|
778
|
-
- Add element definitions repository class option [#2409](https://github.com/AlchemyCMS/alchemy_cms/pull/2409) ([tvdeyen](https://github.com/tvdeyen))
|
779
|
-
- Allow to set preview_sources [#2407](https://github.com/AlchemyCMS/alchemy_cms/pull/2407) ([tvdeyen](https://github.com/tvdeyen))
|
780
|
-
- Allow to add anchors to ingredients [#2395](https://github.com/AlchemyCMS/alchemy_cms/pull/2395) ([tvdeyen](https://github.com/tvdeyen))
|
781
|
-
- Add a error logger exception handler [#2387](https://github.com/AlchemyCMS/alchemy_cms/pull/2387) ([tvdeyen](https://github.com/tvdeyen))
|
782
|
-
- Add a element DOM id class [#2373](https://github.com/AlchemyCMS/alchemy_cms/pull/2373) ([tvdeyen](https://github.com/tvdeyen))
|
783
|
-
|
784
|
-
### Changes
|
785
|
-
|
786
|
-
- Remove old jasmine based javascript specs [#2400](https://github.com/AlchemyCMS/alchemy_cms/pull/2400) ([tvdeyen](https://github.com/tvdeyen))
|
787
|
-
- Update bundled Tinymce to 4.9.11 [#2399](https://github.com/AlchemyCMS/alchemy_cms/pull/2399) ([tvdeyen](https://github.com/tvdeyen))
|
788
|
-
- Add Headline size and level selects as input addons [#2398](https://github.com/AlchemyCMS/alchemy_cms/pull/2398) ([tvdeyen](https://github.com/tvdeyen))
|
789
|
-
- Remove Element.available scope [#2372](https://github.com/AlchemyCMS/alchemy_cms/pull/2372) ([tvdeyen](https://github.com/tvdeyen))
|
790
|
-
- Remove element_dom_id helper [#2369](https://github.com/AlchemyCMS/alchemy_cms/pull/2369) ([tvdeyen](https://github.com/tvdeyen))
|
791
|
-
- Use position for element dom_id [#2368](https://github.com/AlchemyCMS/alchemy_cms/pull/2368) ([tvdeyen](https://github.com/tvdeyen))
|
792
|
-
- Disallow deleting pages if still attached to menu node [#2338](https://github.com/AlchemyCMS/alchemy_cms/pull/2338) ([afdev82](https://github.com/afdev82))
|
793
|
-
|
794
|
-
### Fixes
|
795
|
-
|
796
|
-
- Add `:contact_form_id` to `messages` params in `messages_controller` [#2403](https://github.com/AlchemyCMS/alchemy_cms/pull/2403) ([chiperific](https://github.com/chiperific))
|
797
|
-
- Do not create thumbs for invalid pictures [#2386](https://github.com/AlchemyCMS/alchemy_cms/pull/2386) ([tvdeyen](https://github.com/tvdeyen))
|
798
|
-
|
799
|
-
### Misc
|
800
|
-
|
801
|
-
- [ruby - main] Upgrade sqlite3 to version 1.6.0 [#2408](https://github.com/AlchemyCMS/alchemy_cms/pull/2408) ([depfu](https://github.com/apps/depfu))
|
802
|
-
- [ruby - main] Upgrade puma to version 6.0.1 [#2404](https://github.com/AlchemyCMS/alchemy_cms/pull/2404) ([depfu](https://github.com/apps/depfu))
|
803
|
-
- CI: Update brakeman scan [#2390](https://github.com/AlchemyCMS/alchemy_cms/pull/2390) ([tvdeyen](https://github.com/tvdeyen))
|
804
|
-
- [ruby - main] Upgrade net-imap to version 0.3.1 [#2379](https://github.com/AlchemyCMS/alchemy_cms/pull/2379) ([depfu](https://github.com/apps/depfu))
|
805
|
-
- CI: Try ubuntu-latest [#2378](https://github.com/AlchemyCMS/alchemy_cms/pull/2378) ([tvdeyen](https://github.com/tvdeyen))
|
806
|
-
- [ruby - main] Upgrade sqlite3 to version 1.5.0 [#2374](https://github.com/AlchemyCMS/alchemy_cms/pull/2374) ([depfu](https://github.com/apps/depfu))
|
807
|
-
- [js] Upgrade babel-jest to version 29.0.1 [#2362](https://github.com/AlchemyCMS/alchemy_cms/pull/2362) ([depfu](https://github.com/apps/depfu))
|
808
|
-
- Use released Rails gems again for local testing [#2355](https://github.com/AlchemyCMS/alchemy_cms/pull/2355) ([tvdeyen](https://github.com/tvdeyen))
|
809
|
-
- [js] Upgrade babel-jest to version 28.0.2 [#2324](https://github.com/AlchemyCMS/alchemy_cms/pull/2324) ([depfu](https://github.com/apps/depfu))
|
810
|
-
|
811
|
-
## 6.0.12 (2022-11-19)
|
812
|
-
|
813
|
-
- More installer options [#2385](https://github.com/AlchemyCMS/alchemy_cms/pull/2385) ([tvdeyen](https://github.com/tvdeyen))
|
814
|
-
- Fix custom module installer [#2384](https://github.com/AlchemyCMS/alchemy_cms/pull/2384) ([tvdeyen](https://github.com/tvdeyen))
|
815
|
-
- Always provide format with attachment URLs [#2383](https://github.com/AlchemyCMS/alchemy_cms/pull/2383) ([mamhoff](https://github.com/mamhoff))
|
816
|
-
|
817
|
-
## 6.0.11 (2022-09-22)
|
818
|
-
|
819
|
-
- Do not touch pages when toggling element [#2377](https://github.com/AlchemyCMS/alchemy_cms/pull/2377) ([tvdeyen](https://github.com/tvdeyen))
|
820
|
-
- Remove unused Kaminari::Helpers::Tag hack [#2376](https://github.com/AlchemyCMS/alchemy_cms/pull/2376) ([tvdeyen](https://github.com/tvdeyen))
|
821
|
-
|
822
|
-
## 6.0.10 (2022-09-04)
|
823
|
-
|
824
|
-
- Deprecate essence classes [#2371](https://github.com/AlchemyCMS/alchemy_cms/pull/2371) ([tvdeyen](https://github.com/tvdeyen))
|
825
|
-
- Deprecate full_url_for_element helper [#2368](https://github.com/AlchemyCMS/alchemy_cms/pull/2368) ([tvdeyen](https://github.com/tvdeyen))
|
826
|
-
- Deprecate element_dom_id helper [#2368](https://github.com/AlchemyCMS/alchemy_cms/pull/2368) ([tvdeyen](https://github.com/tvdeyen))
|
827
|
-
- Use position instead of id for element dom_id [#2368](https://github.com/AlchemyCMS/alchemy_cms/pull/2368) ([tvdeyen](https://github.com/tvdeyen))
|
828
|
-
- Fix ingredient boolean preview text [#2367](https://github.com/AlchemyCMS/alchemy_cms/pull/2367) ([tvdeyen](https://github.com/tvdeyen))
|
829
|
-
- Decide locale prefix with page language in show_alchemy_page_url helper [#2366](https://github.com/AlchemyCMS/alchemy_cms/pull/2366) ([tvdeyen](https://github.com/tvdeyen))
|
830
|
-
- Use cache_key_with_version in page_etag [#2365](https://github.com/AlchemyCMS/alchemy_cms/pull/2365) ([tvdeyen](https://github.com/tvdeyen))
|
831
|
-
- Fix author edit_content permissions [#2364](https://github.com/AlchemyCMS/alchemy_cms/pull/2364) ([tvdeyen](https://github.com/tvdeyen))
|
832
|
-
|
833
|
-
## 6.0.9 (2022-07-25)
|
834
|
-
|
835
|
-
- Allow Site managers to remove page locks [#2360](https://github.com/AlchemyCMS/alchemy_cms/pull/2360) ([mamhoff](https://github.com/mamhoff))
|
836
|
-
- Add tags to Alchemy::EagerLoading [#2359](https://github.com/AlchemyCMS/alchemy_cms/pull/2359) ([mamhoff](https://github.com/mamhoff))
|
837
|
-
- Delete Gutentag Taggings in Alchemy::DeleteElements [#2358](https://github.com/AlchemyCMS/alchemy_cms/pull/2358) ([mamhoff](https://github.com/mamhoff))
|
838
|
-
- Fix PictureTransformations#inferred_sizes_from_string [#2356](https://github.com/AlchemyCMS/alchemy_cms/pull/2356) ([mamhoff](https://github.com/mamhoff))
|
839
|
-
- add playsinline attribute to ingredient and essence [#2351](https://github.com/AlchemyCMS/alchemy_cms/pull/2351) ([pascalbetz](https://github.com/pascalbetz))
|
840
|
-
|
841
|
-
## 6.0.8 (2022-06-10)
|
842
|
-
|
843
|
-
- Fix admin page tree links after update [#2348](https://github.com/AlchemyCMS/alchemy_cms/pull/2348) ([tvdeyen](https://github.com/tvdeyen))
|
844
|
-
- Fix initial selection of internal page link select [#2346](https://github.com/AlchemyCMS/alchemy_cms/pull/2346) ([tvdeyen](https://github.com/tvdeyen))
|
845
|
-
|
846
|
-
## 6.0.7 (2022-06-04)
|
847
|
-
|
848
|
-
- Eagerly generate thumbs for srcset images in task as well [#2344](https://github.com/AlchemyCMS/alchemy_cms/pull/2344) ([tvdeyen](https://github.com/tvdeyen))
|
849
|
-
- Use HashWithIndifferentAccess for Page definition. Key hint translation by page_layout [#2343](https://github.com/AlchemyCMS/alchemy_cms/pull/2343) ([dbwinger](https://github.com/dbwinger))
|
850
|
-
|
851
|
-
## 6.0.6 (2022-05-30)
|
852
|
-
|
853
|
-
- Add task to eagerly generate ingredients pictures thumbnails [#2342](https://github.com/AlchemyCMS/alchemy_cms/pull/2342) ([tvdeyen](https://github.com/tvdeyen))
|
854
|
-
- Add spec for ingredients migrator; fix preloading in Rails 6.1+ [#2340](https://github.com/AlchemyCMS/alchemy_cms/pull/2340) ([mamhoff](https://github.com/mamhoff))
|
855
|
-
- Extract element ingredient migrator [#2337](https://github.com/AlchemyCMS/alchemy_cms/pull/2337) ([tvdeyen](https://github.com/tvdeyen))
|
856
|
-
- Update published_at only after page has been published. [#2331](https://github.com/AlchemyCMS/alchemy_cms/pull/2331) ([pascalbetz](https://github.com/pascalbetz))
|
857
|
-
- Add element groups functionality for cleaning up editors [#2124](https://github.com/AlchemyCMS/alchemy_cms/pull/2124) ([dbwinger](https://github.com/dbwinger))
|
858
|
-
- Eagerload at the controller or job layer [#2313](https://github.com/AlchemyCMS/alchemy_cms/pull/2313) ([mamhoff](https://github.com/mamhoff))
|
859
|
-
|
860
|
-
## 6.0.5 (2022-05-11)
|
861
|
-
|
862
|
-
- Extract element ingredient migrator [#2337](https://github.com/AlchemyCMS/alchemy_cms/pull/2337) ([tvdeyen](https://github.com/tvdeyen))
|
863
|
-
|
864
|
-
## 6.0.4 (2022-05-06)
|
865
|
-
|
866
|
-
- Add support for Rails' recycable cache keys [#2334](https://github.com/AlchemyCMS/alchemy_cms/pull/2334) ([tvdeyen](https://github.com/tvdeyen))
|
867
|
-
- Make Alchemy::Content::Factory reloadable [#2333](https://github.com/AlchemyCMS/alchemy_cms/pull/2333) ([tvdeyen](https://github.com/tvdeyen))
|
868
|
-
- Wrap the result of rendering into an ActiveSupport::SafeBuffer [#2332](https://github.com/AlchemyCMS/alchemy_cms/pull/2332) ([mamhoff](https://github.com/mamhoff))
|
869
|
-
- Override Alchemy::Page.ransackable_scopes [#2328](https://github.com/AlchemyCMS/alchemy_cms/pull/2328) ([mamhoff](https://github.com/mamhoff))
|
870
|
-
- Default Link Format matcher: Allow tel: protocol [#2327](https://github.com/AlchemyCMS/alchemy_cms/pull/2327) ([mamhoff](https://github.com/mamhoff))
|
871
|
-
|
872
|
-
## 6.0.3 (2022-05-02)
|
873
|
-
|
874
|
-
- Add Support for MariaDB [#2326](https://github.com/AlchemyCMS/alchemy_cms/pull/2326) ([mamhoff](https://github.com/mamhoff))
|
875
|
-
- Fix Alchemy::Content::Factory module definition [#2325](https://github.com/AlchemyCMS/alchemy_cms/pull/2325) ([tvdeyen](https://github.com/tvdeyen))
|
876
|
-
|
877
|
-
## 6.0.2 (2022-04-27)
|
878
|
-
|
879
|
-
- Remove JSON decode from ingredient data store [#2323](https://github.com/AlchemyCMS/alchemy_cms/pull/2323) ([tvdeyen](https://github.com/tvdeyen))
|
880
|
-
- Eagerload at the controller or job layer [#2313](https://github.com/AlchemyCMS/alchemy_cms/pull/2313) ([mamhoff](https://github.com/mamhoff))
|
881
|
-
|
882
|
-
## 6.0.1 (2022-04-26)
|
883
|
-
|
884
|
-
- Allow passing a different partial to `render_element` [#2322](https://github.com/AlchemyCMS/alchemy_cms/pull/2322) ([mamhoff](https://github.com/mamhoff))
|
885
|
-
- Allow render_elements to take a block [#2321](https://github.com/AlchemyCMS/alchemy_cms/pull/2321) ([mamhoff](https://github.com/mamhoff))
|
886
|
-
- Remove old unused root_page ivar [#2320](https://github.com/AlchemyCMS/alchemy_cms/pull/2320) ([tvdeyen](https://github.com/tvdeyen))
|
887
|
-
- Raise on non-existing locale [#2319](https://github.com/AlchemyCMS/alchemy_cms/pull/2319) ([mamhoff](https://github.com/mamhoff))
|
888
|
-
- chore: Remove unnecessary puts from spec [#2318](https://github.com/AlchemyCMS/alchemy_cms/pull/2318) ([tvdeyen](https://github.com/tvdeyen))
|
889
|
-
- Fix gif resizing [#2315](https://github.com/AlchemyCMS/alchemy_cms/pull/2315) ([kulturbande](https://github.com/kulturbande))
|
890
|
-
- Refactor: Use page version's element repository rather than a new one [#2312](https://github.com/AlchemyCMS/alchemy_cms/pull/2312) ([mamhoff](https://github.com/mamhoff))
|
891
|
-
- Deprecate Alchemy::Element.available [#2309](https://github.com/AlchemyCMS/alchemy_cms/pull/2309) ([mamhoff](https://github.com/mamhoff))
|
892
|
-
- Explicitly set "store" for MariaDB [#2308](https://github.com/AlchemyCMS/alchemy_cms/pull/2308) ([mamhoff](https://github.com/mamhoff))
|
893
|
-
- Set preview mode earlier [#2307](https://github.com/AlchemyCMS/alchemy_cms/pull/2307) ([mamhoff](https://github.com/mamhoff))
|
894
|
-
- Fix updating the public_on date on persisted pages [#2305](https://github.com/AlchemyCMS/alchemy_cms/pull/2305) ([mamhoff](https://github.com/mamhoff))
|
895
|
-
- Allow opting out of Turbolinks in non-Alchemy controllers [#2302](https://github.com/AlchemyCMS/alchemy_cms/pull/2302) ([dssjoblom](https://github.com/dssjoblom))
|
896
|
-
- Explicitly validate uniqueness without case sensitivity [#2300](https://github.com/AlchemyCMS/alchemy_cms/pull/2300) ([mamhoff](https://github.com/mamhoff))
|
897
|
-
- Fix frozen string error when mixing template engines [#2299](https://github.com/AlchemyCMS/alchemy_cms/pull/2299) ([gr8bit](https://github.com/gr8bit))
|
898
|
-
- Do not flatten gifs if converted to webp [#2293](https://github.com/AlchemyCMS/alchemy_cms/pull/2293) ([tvdeyen](https://github.com/tvdeyen))
|
899
|
-
- Allow pasting into parent element with only one nested element type [#2292](https://github.com/AlchemyCMS/alchemy_cms/pull/2292) ([dbwinger](https://github.com/dbwinger))
|
900
|
-
- Restrict Node select to the site/language of the page being edited [#2277](https://github.com/AlchemyCMS/alchemy_cms/pull/2277) ([dbwinger](https://github.com/dbwinger))
|
901
|
-
- Add Ruby 3.1 support [#2229](https://github.com/AlchemyCMS/alchemy_cms/pull/2229) ([tvdeyen](https://github.com/tvdeyen))
|
902
|
-
|
903
|
-
## 6.0.0 (2022-04-11)
|
904
|
-
|
905
|
-
- [ruby - main] Allow ransack version 3.0.1 [#2287](https://github.com/AlchemyCMS/alchemy_cms/pull/2287) ([depfu](https://github.com/apps/depfu))
|
906
|
-
- Fix image loader [#2285](https://github.com/AlchemyCMS/alchemy_cms/pull/2285) ([tvdeyen](https://github.com/tvdeyen))
|
907
|
-
- Don't delete locals in render_element so they can be used by all elements in render_elements [#2283](https://github.com/AlchemyCMS/alchemy_cms/pull/2283) ([dbwinger](https://github.com/dbwinger))
|
908
|
-
- Don't hardcode URLs in Javascript [#2282](https://github.com/AlchemyCMS/alchemy_cms/pull/2282) ([dssjoblom](https://github.com/dssjoblom))
|
909
|
-
- [ruby - main] Allow ransack 3.0.0 [#2278](https://github.com/AlchemyCMS/alchemy_cms/pull/2278) ([depfu](https://github.com/apps/depfu))
|
910
|
-
- Show site and language name on page select in Link dialog [#2276](https://github.com/AlchemyCMS/alchemy_cms/pull/2276) ([dbwinger](https://github.com/dbwinger))
|
911
|
-
- Allow webp as image file format [#2274](https://github.com/AlchemyCMS/alchemy_cms/pull/2274) ([tvdeyen](https://github.com/tvdeyen))
|
912
|
-
- Rails 7 Support [#2225](https://github.com/AlchemyCMS/alchemy_cms/pull/2225) ([tvdeyen](https://github.com/tvdeyen))
|
913
|
-
- Support AR enums in resource models [#2210](https://github.com/AlchemyCMS/alchemy_cms/pull/2210) ([robinboening](https://github.com/robinboening))
|
914
|
-
|
915
|
-
## 6.0.0-rc7 (2022-03-28)
|
916
|
-
|
917
|
-
- fix(Sitemap): Use response data [#2272](https://github.com/AlchemyCMS/alchemy_cms/pull/2272) ([tvdeyen](https://github.com/tvdeyen))
|
918
|
-
- Revert "Ajax: Send method override" [#2271](https://github.com/AlchemyCMS/alchemy_cms/pull/2271) ([tvdeyen](https://github.com/tvdeyen))
|
919
|
-
- ImageLoader: Add error handling [#2270](https://github.com/AlchemyCMS/alchemy_cms/pull/2270) ([tvdeyen](https://github.com/tvdeyen))
|
920
|
-
- Check presence of page_public checkbox [#2269](https://github.com/AlchemyCMS/alchemy_cms/pull/2269) ([afdev82](https://github.com/afdev82))
|
921
|
-
- Use lodash-es instead of lodash [#2268](https://github.com/AlchemyCMS/alchemy_cms/pull/2268) ([afdev82](https://github.com/afdev82))
|
922
|
-
- CI: Update stale workflow [#2267](https://github.com/AlchemyCMS/alchemy_cms/pull/2267) ([tvdeyen](https://github.com/tvdeyen))
|
923
|
-
- Allow to skip db:create during install task [#2266](https://github.com/AlchemyCMS/alchemy_cms/pull/2266) ([tvdeyen](https://github.com/tvdeyen))
|
924
|
-
- CI: Fix mysql builds [#2263](https://github.com/AlchemyCMS/alchemy_cms/pull/2263) ([tvdeyen](https://github.com/tvdeyen))
|
925
|
-
- Fix new Sitemap [#2262](https://github.com/AlchemyCMS/alchemy_cms/pull/2262) ([tvdeyen](https://github.com/tvdeyen))
|
926
|
-
- [ruby - main] Allow ransack version 2.6.0 [#2259](https://github.com/AlchemyCMS/alchemy_cms/pull/2259) ([depfu](https://github.com/apps/depfu))
|
927
|
-
- Allow all pages in API again [#2258](https://github.com/AlchemyCMS/alchemy_cms/pull/2258) ([tvdeyen](https://github.com/tvdeyen))
|
928
|
-
- Fix setting default value of ingredients [#2257](https://github.com/AlchemyCMS/alchemy_cms/pull/2257) ([tvdeyen](https://github.com/tvdeyen))
|
929
|
-
- Eager load in PageTree serializer [#2256](https://github.com/AlchemyCMS/alchemy_cms/pull/2256) ([tvdeyen](https://github.com/tvdeyen))
|
930
|
-
- Revert "Merge pull request #2203 from tvdeyen/switch-to-cuprite" [#2255](https://github.com/AlchemyCMS/alchemy_cms/pull/2255) ([tvdeyen](https://github.com/tvdeyen))
|
931
|
-
- [js] New version of flatpickr (4.6.10) broke the build [#2254](https://github.com/AlchemyCMS/alchemy_cms/pull/2254) ([depfu](https://github.com/apps/depfu))
|
932
|
-
- New sortable page tree [#2252](https://github.com/AlchemyCMS/alchemy_cms/pull/2252) ([tvdeyen](https://github.com/tvdeyen))
|
933
|
-
- Use minor versions for ruby version matrix [#2251](https://github.com/AlchemyCMS/alchemy_cms/pull/2251) ([tvdeyen](https://github.com/tvdeyen))
|
934
|
-
- Precompile packs during test setup [#2250](https://github.com/AlchemyCMS/alchemy_cms/pull/2250) ([tvdeyen](https://github.com/tvdeyen))
|
935
|
-
- Allow parent page change [#2246](https://github.com/AlchemyCMS/alchemy_cms/pull/2246) ([tvdeyen](https://github.com/tvdeyen))
|
936
|
-
- Send language_id to Api::PagesController#index so Pages can be restricted to the language of the page [#2245](https://github.com/AlchemyCMS/alchemy_cms/pull/2245) ([dbwinger](https://github.com/dbwinger))
|
937
|
-
|
938
|
-
## 6.0.0-rc6 (2022-03-05)
|
939
|
-
|
940
|
-
- Rework sitemap JS [#2249](https://github.com/AlchemyCMS/alchemy_cms/pull/2249) ([tvdeyen](https://github.com/tvdeyen))
|
941
|
-
- Remove old page layout change code from update action [#2248](https://github.com/AlchemyCMS/alchemy_cms/pull/2248) ([tvdeyen](https://github.com/tvdeyen))
|
942
|
-
- Fix rendering errors in page configure overlay [#2247](https://github.com/AlchemyCMS/alchemy_cms/pull/2247) ([tvdeyen](https://github.com/tvdeyen))
|
943
|
-
- Fix copying page with descendants to a different language [#2243](https://github.com/AlchemyCMS/alchemy_cms/pull/2243) ([dbwinger](https://github.com/dbwinger))
|
944
|
-
- Handle copying/pasting global pages [#2241](https://github.com/AlchemyCMS/alchemy_cms/pull/2241) ([dbwinger](https://github.com/dbwinger))
|
945
|
-
|
946
|
-
## 6.0.0-rc5 (2022-02-24)
|
947
|
-
|
948
|
-
### Changes
|
949
|
-
|
950
|
-
- Change database version to 6.0 [#2239](https://github.com/AlchemyCMS/alchemy_cms/pull/2239) ([tvdeyen](https://github.com/tvdeyen))
|
951
|
-
- Remove unused route [#2238](https://github.com/AlchemyCMS/alchemy_cms/pull/2238) ([phantomwhale](https://github.com/phantomwhale))
|
952
|
-
- Add custom gutentag tag validations class [#2232](https://github.com/AlchemyCMS/alchemy_cms/pull/2232) ([tvdeyen](https://github.com/tvdeyen))
|
953
|
-
- Touch nodes and all ancestors on page update [#2226](https://github.com/AlchemyCMS/alchemy_cms/pull/2226) ([tvdeyen](https://github.com/tvdeyen))
|
954
|
-
- Extract Airbrake error handler into extension [#2221](https://github.com/AlchemyCMS/alchemy_cms/pull/2221) ([tvdeyen](https://github.com/tvdeyen))
|
955
|
-
|
956
|
-
## 6.0.0-rc4 (2022-01-16)
|
957
|
-
|
958
|
-
### Changes
|
959
|
-
|
960
|
-
- Allow ransack 2.5.0 [#2223](https://github.com/AlchemyCMS/alchemy_cms/pull/2223) ([depfu](https://github.com/apps/depfu))
|
961
|
-
- make the admin error tracker customizable [#2220](https://github.com/AlchemyCMS/alchemy_cms/pull/2220) ([DarkSwoop](https://github.com/DarkSwoop))
|
962
|
-
- Update Flatpickr to 4.6.9 [#2197](https://github.com/AlchemyCMS/alchemy_cms/pull/2197) ([tvdeyen](https://github.com/tvdeyen))
|
963
|
-
|
964
|
-
## 6.0.0-rc3 (2021-11-24)
|
965
|
-
|
966
|
-
### Changes
|
967
|
-
|
968
|
-
- Set stampable user_class_name without root identifier [#2215](https://github.com/AlchemyCMS/alchemy_cms/pull/2215) ([tvdeyen](https://github.com/tvdeyen))
|
969
|
-
- Allow all possible args in tagged_with method [#2211](https://github.com/AlchemyCMS/alchemy_cms/pull/2211) ([robinboening](https://github.com/robinboening))
|
970
|
-
|
971
|
-
### Fixes
|
972
|
-
|
973
|
-
- fix(ImageCropper): Add dom ids to picture crop fields [#2219](https://github.com/AlchemyCMS/alchemy_cms/pull/2219) ([tvdeyen](https://github.com/tvdeyen))
|
974
|
-
- Adjust tinymce skin assets urls again [#2218](https://github.com/AlchemyCMS/alchemy_cms/pull/2218) ([tvdeyen](https://github.com/tvdeyen))
|
975
|
-
- Use relative path for tinymce font-face [#2214](https://github.com/AlchemyCMS/alchemy_cms/pull/2214) ([tvdeyen](https://github.com/tvdeyen))
|
976
|
-
|
977
|
-
### Misc
|
978
|
-
|
979
|
-
- Install correct npm package [#2204](https://github.com/AlchemyCMS/alchemy_cms/pull/2204) ([tvdeyen](https://github.com/tvdeyen))
|
980
|
-
- Switch to cuprite for system testing [#2203](https://github.com/AlchemyCMS/alchemy_cms/pull/2203) ([tvdeyen](https://github.com/tvdeyen))
|
981
|
-
- Upgrade webdrivers to version 5.0.0 [#2201](https://github.com/AlchemyCMS/alchemy_cms/pull/2201) ([depfu](https://github.com/apps/depfu))
|
982
|
-
|
983
|
-
## 6.0.0-rc2 (2021-10-13)
|
984
|
-
|
985
|
-
- Fix init link dialog if used in tinymce [#2200](https://github.com/AlchemyCMS/alchemy_cms/pull/2200) ([tvdeyen](https://github.com/tvdeyen))
|
986
|
-
|
987
|
-
## 6.0.0-rc1 (2021-09-12)
|
988
|
-
|
989
|
-
- Allow Rails 6.1 [#2047](https://github.com/AlchemyCMS/alchemy_cms/pull/2047) ([robinboening](https://github.com/robinboening))
|
990
|
-
|
991
|
-
## 6.0.0-b6 (2021-09-02)
|
992
|
-
|
993
|
-
- Fix element with ingredients preview text [#2187](https://github.com/AlchemyCMS/alchemy_cms/pull/2187) ([tvdeyen](https://github.com/tvdeyen))
|
994
|
-
- Do not validate element during toggle fold and create [#2186](https://github.com/AlchemyCMS/alchemy_cms/pull/2186) ([tvdeyen](https://github.com/tvdeyen))
|
995
|
-
## 6.0.0-b5 (2021-08-27)
|
996
|
-
|
997
|
-
- Remove spec that tests default data store value [#2184](https://github.com/AlchemyCMS/alchemy_cms/pull/2184) ([tvdeyen](https://github.com/tvdeyen))
|
998
|
-
- Remove data store accessor from ingredient base class [#2183](https://github.com/AlchemyCMS/alchemy_cms/pull/2183) ([tvdeyen](https://github.com/tvdeyen))
|
999
|
-
|
1000
|
-
## 6.0.0-b4 (2021-08-27)
|
1001
|
-
|
1002
|
-
- Load custom Tinymce config for ingredients [#2182](https://github.com/AlchemyCMS/alchemy_cms/pull/2182) ([tvdeyen](https://github.com/tvdeyen))
|
1003
|
-
- Fix ingredient editor selector in element update callback [#2181](https://github.com/AlchemyCMS/alchemy_cms/pull/2181) ([tvdeyen](https://github.com/tvdeyen))
|
1004
|
-
- Ingredient by role block level helper [#2180](https://github.com/AlchemyCMS/alchemy_cms/pull/2180) ([tvdeyen](https://github.com/tvdeyen))
|
1005
|
-
- Fixes caching [#2179](https://github.com/AlchemyCMS/alchemy_cms/pull/2179) ([tvdeyen](https://github.com/tvdeyen))
|
1006
|
-
- make images non-executable [#2176](https://github.com/AlchemyCMS/alchemy_cms/pull/2176) ([mensfeld](https://github.com/mensfeld))
|
1007
|
-
- Release task [#2173](https://github.com/AlchemyCMS/alchemy_cms/pull/2173) ([tvdeyen](https://github.com/tvdeyen))
|
1008
|
-
|
1009
|
-
## 6.0.0.b3 (2021-08-12)
|
1010
|
-
|
1011
|
-
### Fixes
|
1012
|
-
|
1013
|
-
- Simplify ingredient creation [#2171](https://github.com/AlchemyCMS/alchemy_cms/pull/2171) ([tvdeyen](https://github.com/tvdeyen))
|
1014
|
-
- Return ingredients value if element asked for ingredient [#2170](https://github.com/AlchemyCMS/alchemy_cms/pull/2170) ([tvdeyen](https://github.com/tvdeyen))
|
1015
|
-
- Fix ingredient form field DOM ids [#2167](https://github.com/AlchemyCMS/alchemy_cms/pull/2167) ([tvdeyen](https://github.com/tvdeyen))
|
1016
|
-
- Ensure resource table ends before the filter/tag sidebar [#2166](https://github.com/AlchemyCMS/alchemy_cms/pull/2166) ([robinboening](https://github.com/robinboening))
|
1017
|
-
- Return fully namespaced ingredient constant [#2164](https://github.com/AlchemyCMS/alchemy_cms/pull/2164) ([tvdeyen](https://github.com/tvdeyen))
|
1018
|
-
- (Re)-init Tinymce for elements with ingredients [#2163](https://github.com/AlchemyCMS/alchemy_cms/pull/2163) ([tvdeyen](https://github.com/tvdeyen))
|
1019
|
-
|
1020
|
-
## 6.0.0.b2 (2021-08-05)
|
1021
|
-
|
1022
|
-
### Features
|
1023
|
-
|
1024
|
-
- Add datepicker simple form input [#2162](https://github.com/AlchemyCMS/alchemy_cms/pull/2162) ([tvdeyen](https://github.com/tvdeyen))
|
1025
|
-
- Feature flexible resource filters [#2091](https://github.com/AlchemyCMS/alchemy_cms/pull/2091) ([robinboening](https://github.com/robinboening))
|
1026
|
-
|
1027
|
-
### Changes
|
1028
|
-
|
1029
|
-
- Require alchemy/version [#2159](https://github.com/AlchemyCMS/alchemy_cms/pull/2159) ([tvdeyen](https://github.com/tvdeyen))
|
1030
|
-
- Make ingredient examples usable without elements.yml [#2158](https://github.com/AlchemyCMS/alchemy_cms/pull/2158) ([tvdeyen](https://github.com/tvdeyen))
|
1031
|
-
- Fix ingredient migrator (again) [#2155](https://github.com/AlchemyCMS/alchemy_cms/pull/2155) ([tvdeyen](https://github.com/tvdeyen))
|
1032
|
-
- Respect additional essence attributes during ingredients migration [#2154](https://github.com/AlchemyCMS/alchemy_cms/pull/2154) ([tvdeyen](https://github.com/tvdeyen))
|
1033
|
-
- Improve cache key defaults for menus [#2153](https://github.com/AlchemyCMS/alchemy_cms/pull/2153) ([oneiros](https://github.com/oneiros))
|
1034
|
-
- Make element preview text work with ingredients [#2152](https://github.com/AlchemyCMS/alchemy_cms/pull/2152) ([tvdeyen](https://github.com/tvdeyen))
|
1035
|
-
- Do not leak all records for guest users in API controllers [#2145](https://github.com/AlchemyCMS/alchemy_cms/pull/2145) ([tvdeyen](https://github.com/tvdeyen))
|
1036
|
-
|
1037
|
-
### Misc
|
1038
|
-
|
1039
|
-
- [ruby - main] Upgrade shoulda-matchers to version 5.0.0 [#2161](https://github.com/AlchemyCMS/alchemy_cms/pull/2161) ([depfu](https://github.com/apps/depfu))
|
1040
|
-
|
1041
|
-
## 6.0.0.b1 (2021-07-05)
|
1042
|
-
|
1043
|
-
### Features
|
1044
|
-
|
1045
|
-
- Import essence video and audio from extension [#2089](https://github.com/AlchemyCMS/alchemy_cms/pull/2089) ([tvdeyen](https://github.com/tvdeyen))
|
1046
|
-
- Introduce ingredients as new content structure [#2061](https://github.com/AlchemyCMS/alchemy_cms/pull/2061) ([tvdeyen](https://github.com/tvdeyen))
|
1047
|
-
- Alchemy essence headline [#2060](https://github.com/AlchemyCMS/alchemy_cms/pull/2060) ([mamhoff](https://github.com/mamhoff))
|
1048
|
-
- Add Page Versions [#2022](https://github.com/AlchemyCMS/alchemy_cms/pull/2022) ([tvdeyen](https://github.com/tvdeyen))
|
1049
|
-
|
1050
|
-
### Changes
|
1051
|
-
|
1052
|
-
- Link dialog changes can be submitted by enter [#2144](https://github.com/AlchemyCMS/alchemy_cms/pull/2144) ([tvdeyen](https://github.com/tvdeyen))
|
1053
|
-
- Extract Thumbnails and CropAction concerns [#2141](https://github.com/AlchemyCMS/alchemy_cms/pull/2141) ([tvdeyen](https://github.com/tvdeyen))
|
1054
|
-
- generate picture thumbnails only for pictures with convertible format [#2129](https://github.com/AlchemyCMS/alchemy_cms/pull/2129) ([afdev82](https://github.com/afdev82))
|
1055
|
-
- Only crop image if cropping is enabled [#2143](https://github.com/AlchemyCMS/alchemy_cms/pull/2143) ([tvdeyen](https://github.com/tvdeyen))
|
1056
|
-
- expose translations in global Alchemy js object, #2113 [#2114](https://github.com/AlchemyCMS/alchemy_cms/pull/2114) ([afdev82](https://github.com/afdev82))
|
1057
|
-
- Only return pages for current site in API [#2111](https://github.com/AlchemyCMS/alchemy_cms/pull/2111) ([tvdeyen](https://github.com/tvdeyen))
|
1058
|
-
- Add crop_resize Dragonfly processor [#2109](https://github.com/AlchemyCMS/alchemy_cms/pull/2109) ([tvdeyen](https://github.com/tvdeyen))
|
1059
|
-
- Auto-orient images based on their EXIF data [#2107](https://github.com/AlchemyCMS/alchemy_cms/pull/2107) ([tvdeyen](https://github.com/tvdeyen))
|
1060
|
-
- Allow flatten as argument for Dragonfly encode [#2106](https://github.com/AlchemyCMS/alchemy_cms/pull/2106) ([tvdeyen](https://github.com/tvdeyen))
|
1061
|
-
- Deprecate image format methods [#2103](https://github.com/AlchemyCMS/alchemy_cms/pull/2103) ([tvdeyen](https://github.com/tvdeyen))
|
1062
|
-
- Do not attempt to generate thumbs for svg files (fixes upload of svg files) [#2090](https://github.com/AlchemyCMS/alchemy_cms/pull/2090) ([oneiros](https://github.com/oneiros))
|
1063
|
-
- Trigger publish targets after page published [#2088](https://github.com/AlchemyCMS/alchemy_cms/pull/2088) ([tvdeyen](https://github.com/tvdeyen))
|
1064
|
-
- Add collection option for resource relations [#2084](https://github.com/AlchemyCMS/alchemy_cms/pull/2084) ([robinboening](https://github.com/robinboening))
|
1065
|
-
- Remove deprecated helper method page_active? [#2074](https://github.com/AlchemyCMS/alchemy_cms/pull/2074) ([robinboening](https://github.com/robinboening))
|
1066
|
-
- Handle json requests in error handler [#2071](https://github.com/AlchemyCMS/alchemy_cms/pull/2071) ([tvdeyen](https://github.com/tvdeyen))
|
1067
|
-
- Background page publishing [#2067](https://github.com/AlchemyCMS/alchemy_cms/pull/2067) ([tvdeyen](https://github.com/tvdeyen))
|
1068
|
-
- Faster element duplication [#2066](https://github.com/AlchemyCMS/alchemy_cms/pull/2066) ([mamhoff](https://github.com/mamhoff))
|
1069
|
-
- Parse params in ajax.get as query string [#2070](https://github.com/AlchemyCMS/alchemy_cms/pull/2070) ([tvdeyen](https://github.com/tvdeyen))
|
1070
|
-
- Assign, crop and remove files and pictures client side [#2069](https://github.com/AlchemyCMS/alchemy_cms/pull/2069) ([tvdeyen](https://github.com/tvdeyen))
|
1071
|
-
- Allow copying contents when they're not in the elements.yml [#2068](https://github.com/AlchemyCMS/alchemy_cms/pull/2068) ([mamhoff](https://github.com/mamhoff))
|
1072
|
-
- Delete nested elements quickly [#2065](https://github.com/AlchemyCMS/alchemy_cms/pull/2065) ([mamhoff](https://github.com/mamhoff))
|
1073
|
-
- Quickly delete elements when deleting a page version [#2064](https://github.com/AlchemyCMS/alchemy_cms/pull/2064) ([mamhoff](https://github.com/mamhoff))
|
1074
|
-
- Fast element deletion [#2063](https://github.com/AlchemyCMS/alchemy_cms/pull/2063) ([mamhoff](https://github.com/mamhoff))
|
1075
|
-
- Touch Elements only after update [#2062](https://github.com/AlchemyCMS/alchemy_cms/pull/2062) ([mamhoff](https://github.com/mamhoff))
|
1076
|
-
- Convert "Visit page" button to "Link to new tab" [#2058](https://github.com/AlchemyCMS/alchemy_cms/pull/2058) ([mamhoff](https://github.com/mamhoff))
|
1077
|
-
- Allow creating an EssenceRichtext without a content [#2057](https://github.com/AlchemyCMS/alchemy_cms/pull/2057) ([mamhoff](https://github.com/mamhoff))
|
1078
|
-
- Allow instantiating a content on an unpersisted valid element [#2056](https://github.com/AlchemyCMS/alchemy_cms/pull/2056) ([mamhoff](https://github.com/mamhoff))
|
1079
|
-
- Sanitized richtext body [#2055](https://github.com/AlchemyCMS/alchemy_cms/pull/2055) ([mamhoff](https://github.com/mamhoff))
|
1080
|
-
- Only require the Rails gems we actually need [#2054](https://github.com/AlchemyCMS/alchemy_cms/pull/2054) ([tvdeyen](https://github.com/tvdeyen))
|
1081
|
-
- Create new contents on demand [#2049](https://github.com/AlchemyCMS/alchemy_cms/pull/2049) ([tvdeyen](https://github.com/tvdeyen))
|
1082
|
-
- Add Elements repository [#2039](https://github.com/AlchemyCMS/alchemy_cms/pull/2039) ([tvdeyen](https://github.com/tvdeyen))
|
1083
|
-
- Render site layout with block [#2038](https://github.com/AlchemyCMS/alchemy_cms/pull/2038) ([henvo](https://github.com/henvo))
|
1084
|
-
- Add namespace for Tree related routes [#2037](https://github.com/AlchemyCMS/alchemy_cms/pull/2037) ([dhiraj14](https://github.com/dhiraj14))
|
1085
|
-
- Tidy Rake task to remove duplicate legacy URLs [#2036](https://github.com/AlchemyCMS/alchemy_cms/pull/2036) ([pelargir](https://github.com/pelargir))
|
1086
|
-
- Change Factory loading mechanism to FactoryBots supported mechanism [#2029](https://github.com/AlchemyCMS/alchemy_cms/pull/2029) ([mamhoff](https://github.com/mamhoff))
|
1087
|
-
- Add rake task to remove trashed elements [#2025](https://github.com/AlchemyCMS/alchemy_cms/pull/2025) ([tvdeyen](https://github.com/tvdeyen))
|
1088
|
-
- Do not include unpublished pages in breadcrumb [#2020](https://github.com/AlchemyCMS/alchemy_cms/pull/2020) ([tvdeyen](https://github.com/tvdeyen))
|
1089
|
-
- Respect Language public status for page public status [#2017](https://github.com/AlchemyCMS/alchemy_cms/pull/2017) ([tvdeyen](https://github.com/tvdeyen))
|
1090
|
-
- Use at least Ruby 2.5 [#2014](https://github.com/AlchemyCMS/alchemy_cms/pull/2014) ([tvdeyen](https://github.com/tvdeyen))
|
1091
|
-
- Drop Rails 5.2 support [#2013](https://github.com/AlchemyCMS/alchemy_cms/pull/2013) ([tvdeyen](https://github.com/tvdeyen))
|
1092
|
-
- Remove page layout change of persisted pages [#1991](https://github.com/AlchemyCMS/alchemy_cms/pull/1991) ([tvdeyen](https://github.com/tvdeyen))
|
1093
|
-
- Remove element trash [#1987](https://github.com/AlchemyCMS/alchemy_cms/pull/1987) ([tvdeyen](https://github.com/tvdeyen))
|
1094
|
-
- Remove elements fallbacks [#1983](https://github.com/AlchemyCMS/alchemy_cms/pull/1983) ([tvdeyen](https://github.com/tvdeyen))
|
1095
|
-
|
1096
|
-
### Misc
|
1097
|
-
|
1098
|
-
- Fixes i18n Jest specs [#2120](https://github.com/AlchemyCMS/alchemy_cms/pull/2120) ([tvdeyen](https://github.com/tvdeyen))
|
1099
|
-
- Allow to update element without tags [#2150](https://github.com/AlchemyCMS/alchemy_cms/pull/2150) ([tvdeyen](https://github.com/tvdeyen))
|
1100
|
-
- fix: call paging on jquery tabs only after initializing them [#2146](https://github.com/AlchemyCMS/alchemy_cms/pull/2146) ([robinboening](https://github.com/robinboening))
|
1101
|
-
- Image cropper destroy [#2139](https://github.com/AlchemyCMS/alchemy_cms/pull/2139) ([tvdeyen](https://github.com/tvdeyen))
|
1102
|
-
- Fix URL for dragonfly configuration reference [#2128](https://github.com/AlchemyCMS/alchemy_cms/pull/2128) ([afdev82](https://github.com/afdev82))
|
1103
|
-
- Link dialog UI fixes [#2112](https://github.com/AlchemyCMS/alchemy_cms/pull/2112) ([tvdeyen](https://github.com/tvdeyen))
|
1104
|
-
- [js] Upgrade babel-jest to version 27.0.1 [#2110](https://github.com/AlchemyCMS/alchemy_cms/pull/2110) ([depfu](https://github.com/apps/depfu))
|
1105
|
-
- Fix node select height [#2102](https://github.com/AlchemyCMS/alchemy_cms/pull/2102) ([tvdeyen](https://github.com/tvdeyen))
|
1106
|
-
- [ruby - main] Upgrade execjs to version 2.8.1 [#2100](https://github.com/AlchemyCMS/alchemy_cms/pull/2100) ([depfu](https://github.com/apps/depfu))
|
1107
|
-
- Fix Essence Picture View (#2083) [#2099](https://github.com/AlchemyCMS/alchemy_cms/pull/2099) ([afdev82](https://github.com/afdev82))
|
1108
|
-
- Pass crop parameter in default EssencePicture#picture_url_options [#2098](https://github.com/AlchemyCMS/alchemy_cms/pull/2098) ([mamhoff](https://github.com/mamhoff))
|
1109
|
-
- [main] Fix execjs to 2.7.0 for developers and CI [#2095](https://github.com/AlchemyCMS/alchemy_cms/pull/2095) ([mamhoff](https://github.com/mamhoff))
|
1110
|
-
- Fix alchemy:generate:thumbnails task [#2092](https://github.com/AlchemyCMS/alchemy_cms/pull/2092) ([afdev82](https://github.com/afdev82))
|
1111
|
-
- Use symbols in polymorphic routes for resources [#2087](https://github.com/AlchemyCMS/alchemy_cms/pull/2087) ([tvdeyen](https://github.com/tvdeyen))
|
1112
|
-
- Fix the height of node select [#2081](https://github.com/AlchemyCMS/alchemy_cms/pull/2081) ([tvdeyen](https://github.com/tvdeyen))
|
1113
|
-
- Preview url fixes [#2079](https://github.com/AlchemyCMS/alchemy_cms/pull/2079) ([tvdeyen](https://github.com/tvdeyen))
|
1114
|
-
- Use count over select.count in UrlPath class [#2078](https://github.com/AlchemyCMS/alchemy_cms/pull/2078) ([tvdeyen](https://github.com/tvdeyen))
|
1115
|
-
- Use the fast DuplicateElement service in Page.copy [#2077](https://github.com/AlchemyCMS/alchemy_cms/pull/2077) ([tvdeyen](https://github.com/tvdeyen))
|
1116
|
-
- Fix page versioning issues [#2076](https://github.com/AlchemyCMS/alchemy_cms/pull/2076) ([tvdeyen](https://github.com/tvdeyen))
|
1117
|
-
- Fix add nested element with multiple nestable elements [#2052](https://github.com/AlchemyCMS/alchemy_cms/pull/2052) ([tvdeyen](https://github.com/tvdeyen))
|
1118
|
-
- Destroy public version if public checkbox is unset [#2050](https://github.com/AlchemyCMS/alchemy_cms/pull/2050) ([tvdeyen](https://github.com/tvdeyen))
|
1119
|
-
- Fixes paste element and create element with autogenerated nested elements [#2046](https://github.com/AlchemyCMS/alchemy_cms/pull/2046) ([tvdeyen](https://github.com/tvdeyen))
|
1120
|
-
- Fix page re-publishing for page with nested elements [#2043](https://github.com/AlchemyCMS/alchemy_cms/pull/2043) ([tvdeyen](https://github.com/tvdeyen))
|
1121
|
-
- Update rubocop config and stick version [#2042](https://github.com/AlchemyCMS/alchemy_cms/pull/2042) ([tvdeyen](https://github.com/tvdeyen))
|
1122
|
-
- Fix factory loading [#2041](https://github.com/AlchemyCMS/alchemy_cms/pull/2041) ([tvdeyen](https://github.com/tvdeyen))
|
1123
|
-
- Fix element re-ordering [#2028](https://github.com/AlchemyCMS/alchemy_cms/pull/2028) ([tvdeyen](https://github.com/tvdeyen))
|
1124
|
-
- Fix typo in element destroy confirm notice [#2026](https://github.com/AlchemyCMS/alchemy_cms/pull/2026) ([tvdeyen](https://github.com/tvdeyen))
|
1125
|
-
- Fix constants reloading in page and element concerns [#2024](https://github.com/AlchemyCMS/alchemy_cms/pull/2024) ([tvdeyen](https://github.com/tvdeyen))
|
1126
|
-
- Fix delete element confirm dialog [#2023](https://github.com/AlchemyCMS/alchemy_cms/pull/2023) ([tvdeyen](https://github.com/tvdeyen))
|
1127
|
-
- Build for Ruby 3 [#1990](https://github.com/AlchemyCMS/alchemy_cms/pull/1990) ([tvdeyen](https://github.com/tvdeyen))
|
1128
|
-
|
1129
|
-
## 5.2.7 (2022-03-01)
|
1130
|
-
|
1131
|
-
- Fix copying page with descendants to a different language ([dbwinger](https://github.com/dbwinger))
|
1132
|
-
- Handle copying/pasting global pages ([dbwinger](https://github.com/dbwinger))
|
1133
|
-
|
1134
|
-
## 5.2.6 (2022-02-28)
|
1135
|
-
|
1136
|
-
- Add crop_resize Dragonfly processor ([tvdeyen](https://github.com/tvdeyen))
|
1137
|
-
|
1138
|
-
## 5.2.5 (2021-11-24)
|
1139
|
-
|
1140
|
-
- Adjust tinymce skin assets urls again ([tvdeyen](https://github.com/tvdeyen))
|
1141
|
-
|
1142
|
-
## 5.2.4 (2021-11-17)
|
1143
|
-
|
1144
|
-
- Set stampable user_class_name without root identifier ([tvdeyen](https://github.com/tvdeyen))
|
1145
|
-
- Use relative path for tinymce font-face ([tvdeyen](https://github.com/tvdeyen))
|
1146
|
-
|
1147
|
-
## 5.2.3 (2021-10-26)
|
1148
|
-
|
1149
|
-
- Make sure to install correct npm package ([tvdeyen](https://github.com/tvdeyen))
|
1150
|
-
|
1151
|
-
## 5.2.2 (2021-09-15)
|
1152
|
-
|
1153
|
-
- Return only pages from current site in api [#2169](https://github.com/AlchemyCMS/alchemy_cms/pull/2169) ([afdev82](https://github.com/afdev82))
|
1154
|
-
- Improve cache key defaults for menus #2138 [#2160](https://github.com/AlchemyCMS/alchemy_cms/pull/2160) ([oneiros](https://github.com/oneiros))
|
1155
|
-
- generate picture thumbnails only for pictures with convertible format [#2130](https://github.com/AlchemyCMS/alchemy_cms/pull/2130) ([afdev82](https://github.com/afdev82))
|
1156
|
-
- Backport #2114 to v5.2 [#2116](https://github.com/AlchemyCMS/alchemy_cms/pull/2116) ([afdev82](https://github.com/afdev82))
|
1157
|
-
- Add webpacker tasks to Alchemy upgrader [#2115](https://github.com/AlchemyCMS/alchemy_cms/pull/2115) ([dbwinger](https://github.com/dbwinger))
|
1158
|
-
|
1159
|
-
## 5.2.1 (2021-05-13)
|
1160
|
-
|
1161
|
-
- Fix alchemy:generate:thumbnails task [#2092](https://github.com/AlchemyCMS/alchemy_cms/pull/2092) ([afdev82](https://github.com/afdev82))
|
1162
|
-
- Do not attempt to generate thumbs for svg files. [#2090](https://github.com/AlchemyCMS/alchemy_cms/pull/2090) ([oneiros](https://github.com/oneiros))
|
1163
|
-
|
1164
|
-
## 5.2.0 (2021-05-06)
|
1165
|
-
|
1166
|
-
- Backport #2049 to 5.2 [#2086](https://github.com/AlchemyCMS/alchemy_cms/pull/2086) ([rickythefox](https://github.com/rickythefox))
|
1167
|
-
- hotfix and deprecate page_active? helper [#2073](https://github.com/AlchemyCMS/alchemy_cms/pull/2073) ([robinboening](https://github.com/robinboening))
|
1168
|
-
|
1169
|
-
## 5.2.0.rc1 (2021-02-17)
|
1170
|
-
|
1171
|
-
### Changes
|
1172
|
-
|
1173
|
-
- Change Factory loading mechanism to FactoryBots supported mechanism [#2030](https://github.com/AlchemyCMS/alchemy_cms/pull/2030) ([mamhoff](https://github.com/mamhoff))
|
1174
|
-
|
1175
|
-
## 5.2.0.b1 (2021-02-11)
|
1176
|
-
|
1177
|
-
### Features
|
1178
|
-
|
1179
|
-
- Allow Element and Content deprecation notices [#1988](https://github.com/AlchemyCMS/alchemy_cms/pull/1988) ([tvdeyen](https://github.com/tvdeyen))
|
1180
|
-
- Add element definition api (based on PageLayout definitions) [#1986](https://github.com/AlchemyCMS/alchemy_cms/pull/1986) ([stockime](https://github.com/stockime))
|
1181
|
-
|
1182
|
-
### Changes
|
1183
|
-
|
1184
|
-
- Fix jpeg quality option for jpeg files [#2016](https://github.com/AlchemyCMS/alchemy_cms/pull/2016) ([kulturbande](https://github.com/kulturbande))
|
1185
|
-
- Pin Ransack to below 2.4.2 [#2012](https://github.com/AlchemyCMS/alchemy_cms/pull/2012) ([tvdeyen](https://github.com/tvdeyen))
|
1186
|
-
- Fix setting current_user in integration helper [#2006](https://github.com/AlchemyCMS/alchemy_cms/pull/2006) ([tvdeyen](https://github.com/tvdeyen))
|
1187
|
-
- Update mime type icons and translations [#2002](https://github.com/AlchemyCMS/alchemy_cms/pull/2002) ([tvdeyen](https://github.com/tvdeyen))
|
1188
|
-
- Deprecate page layout change [#1993](https://github.com/AlchemyCMS/alchemy_cms/pull/1993) ([tvdeyen](https://github.com/tvdeyen))
|
1189
|
-
- Fix Ruby 2.7 deprecations [#1989](https://github.com/AlchemyCMS/alchemy_cms/pull/1989) ([tvdeyen](https://github.com/tvdeyen))
|
1190
|
-
- Deprecate trash [#1985](https://github.com/AlchemyCMS/alchemy_cms/pull/1985) ([tvdeyen](https://github.com/tvdeyen))
|
1191
|
-
- Deprecate elements fallbacks [#1982](https://github.com/AlchemyCMS/alchemy_cms/pull/1982) ([tvdeyen](https://github.com/tvdeyen))
|
1192
|
-
|
1193
|
-
### Misc
|
1194
|
-
|
1195
|
-
- Use Ubuntu 18.04 on GH actions [#2018](https://github.com/AlchemyCMS/alchemy_cms/pull/2018) ([tvdeyen](https://github.com/tvdeyen))
|
1196
|
-
- [ruby - main] Upgrade rubocop to version 1.9.0 [#2011](https://github.com/AlchemyCMS/alchemy_cms/pull/2011) ([depfu](https://github.com/apps/depfu))
|
1197
|
-
- [ruby - main] Upgrade rubocop to version 1.8.1 [#1999](https://github.com/AlchemyCMS/alchemy_cms/pull/1999) ([depfu](https://github.com/apps/depfu))
|
1198
|
-
- Update brakeman ignores [#1992](https://github.com/AlchemyCMS/alchemy_cms/pull/1992) ([tvdeyen](https://github.com/tvdeyen))
|
1199
|
-
- [ruby - main] Upgrade rubocop to version 1.6.1 [#1978](https://github.com/AlchemyCMS/alchemy_cms/pull/1978) ([depfu](https://github.com/apps/depfu))
|
1200
|
-
- [ruby - main] Upgrade simplecov to version 0.20.0 [#1971](https://github.com/AlchemyCMS/alchemy_cms/pull/1971) ([depfu](https://github.com/apps/depfu))
|
1201
|
-
|
1202
|
-
## 5.1.2 (2021-01-26)
|
1203
|
-
|
1204
|
-
- Allow to safe hidden elements [#2007](https://github.com/AlchemyCMS/alchemy_cms/pull/2007) ([tvdeyen](https://github.com/tvdeyen))
|
1205
|
-
|
1206
|
-
|
1207
|
-
## 5.1.1 (2021-01-12)
|
1208
|
-
|
1209
|
-
- Fix copy element feature [#1996](https://github.com/AlchemyCMS/alchemy_cms/pull/1996) ([tvdeyen](https://github.com/tvdeyen))
|
1210
|
-
|
1211
|
-
## 5.1.0 (2020-12-18)
|
1212
|
-
|
1213
|
-
### Features
|
1214
|
-
|
1215
|
-
- Allow pound sign in legacy url [#1980](https://github.com/AlchemyCMS/alchemy_cms/pull/1980) ([robinboening](https://github.com/robinboening))
|
1216
|
-
- Adjust element editor UI [#1979](https://github.com/AlchemyCMS/alchemy_cms/pull/1979) ([tvdeyen](https://github.com/tvdeyen))
|
1217
|
-
- Always show the full page name in active page tab [#1972](https://github.com/AlchemyCMS/alchemy_cms/pull/1972) ([tvdeyen](https://github.com/tvdeyen))
|
1218
|
-
- Allow multiple preview sources [#1959](https://github.com/AlchemyCMS/alchemy_cms/pull/1959) ([tvdeyen](https://github.com/tvdeyen))
|
1219
|
-
- Add Publish Targets [#1957](https://github.com/AlchemyCMS/alchemy_cms/pull/1957) ([tvdeyen](https://github.com/tvdeyen))
|
1220
|
-
- Persist rendered picture variants [#1882](https://github.com/AlchemyCMS/alchemy_cms/pull/1882) ([tvdeyen](https://github.com/tvdeyen))
|
1221
|
-
- Store current pictures size in session [#1927](https://github.com/AlchemyCMS/alchemy_cms/pull/1927) ([tvdeyen](https://github.com/tvdeyen))
|
1222
|
-
- Add support for custom mount points in Page::UrlPath [#1921](https://github.com/AlchemyCMS/alchemy_cms/pull/1921) ([tvdeyen](https://github.com/tvdeyen))
|
1223
|
-
- Allow to set a custom Page::UrlPath class [#1919](https://github.com/AlchemyCMS/alchemy_cms/pull/1919) ([tvdeyen](https://github.com/tvdeyen))
|
1224
|
-
- Introduce a pages list view [#1906](https://github.com/AlchemyCMS/alchemy_cms/pull/1906) ([tvdeyen](https://github.com/tvdeyen))
|
1225
|
-
|
1226
|
-
### Changes
|
1227
|
-
|
1228
|
-
- Fix height of search input field [#1973](https://github.com/AlchemyCMS/alchemy_cms/pull/1973) ([tvdeyen](https://github.com/tvdeyen))
|
1229
|
-
- Load select2 from assets folder [#1961](https://github.com/AlchemyCMS/alchemy_cms/pull/1961) ([tvdeyen](https://github.com/tvdeyen))
|
1230
|
-
- Do not abort if user class cannot be found [#1950](https://github.com/AlchemyCMS/alchemy_cms/pull/1950) ([tvdeyen](https://github.com/tvdeyen))
|
1231
|
-
- Deprivatize useful picture view methods [#1936](https://github.com/AlchemyCMS/alchemy_cms/pull/1936) ([mickenorlen](https://github.com/mickenorlen))
|
1232
|
-
- Unset render_size on layout default selection [#1935](https://github.com/AlchemyCMS/alchemy_cms/pull/1935) ([mickenorlen](https://github.com/mickenorlen))
|
1233
|
-
- Dont show sizes selection if using srcset [#1934](https://github.com/AlchemyCMS/alchemy_cms/pull/1934) ([mickenorlen](https://github.com/mickenorlen))
|
1234
|
-
- Change all Boolean columns to never be null [#1933](https://github.com/AlchemyCMS/alchemy_cms/pull/1933) ([mamhoff](https://github.com/mamhoff))
|
1235
|
-
- Autoselect first if only one layout available [#1932](https://github.com/AlchemyCMS/alchemy_cms/pull/1932) ([mickenorlen](https://github.com/mickenorlen))
|
1236
|
-
- Remove page from search form query [#1928](https://github.com/AlchemyCMS/alchemy_cms/pull/1928) ([tvdeyen](https://github.com/tvdeyen))
|
1237
|
-
- Allow coffee-rails 5 [#1926](https://github.com/AlchemyCMS/alchemy_cms/pull/1926) ([sechix](https://github.com/sechix))
|
1238
|
-
- Update documentation [#1917](https://github.com/AlchemyCMS/alchemy_cms/pull/1917) ([dhughesbc](https://github.com/dhughesbc))
|
1239
|
-
- Remove deprecated Attachment#urlname [#1911](https://github.com/AlchemyCMS/alchemy_cms/pull/1911) ([tvdeyen](https://github.com/tvdeyen))
|
1240
|
-
- Remove redirect_to_public_child flag and feature [#1910](https://github.com/AlchemyCMS/alchemy_cms/pull/1910) ([tvdeyen](https://github.com/tvdeyen))
|
1241
|
-
- Remove toolbar helper [#1909](https://github.com/AlchemyCMS/alchemy_cms/pull/1909) ([tvdeyen](https://github.com/tvdeyen))
|
1242
|
-
- Two minor CSS fixes [#1908](https://github.com/AlchemyCMS/alchemy_cms/pull/1908) ([tvdeyen](https://github.com/tvdeyen))
|
1243
|
-
- Do not convert JPG images into JPEG [#1905](https://github.com/AlchemyCMS/alchemy_cms/pull/1905) ([tvdeyen](https://github.com/tvdeyen))
|
1244
|
-
- Full text search respects filters [#1901](https://github.com/AlchemyCMS/alchemy_cms/pull/1901) ([tvdeyen](https://github.com/tvdeyen))
|
1245
|
-
- Do not add id attributes to hidden fields in search and filters [#1899](https://github.com/AlchemyCMS/alchemy_cms/pull/1899) ([tvdeyen](https://github.com/tvdeyen))
|
1246
|
-
- Do not freeze common_search_filter_includes [#1898](https://github.com/AlchemyCMS/alchemy_cms/pull/1898) ([tvdeyen](https://github.com/tvdeyen))
|
1247
|
-
- Refactor sidebar CSS [#1897](https://github.com/AlchemyCMS/alchemy_cms/pull/1897) ([tvdeyen](https://github.com/tvdeyen))
|
1248
|
-
- Fix tag-list height [#1896](https://github.com/AlchemyCMS/alchemy_cms/pull/1896) ([tvdeyen](https://github.com/tvdeyen))
|
1249
|
-
- Fix vertical position of site name in page tab [#1895](https://github.com/AlchemyCMS/alchemy_cms/pull/1895) ([tvdeyen](https://github.com/tvdeyen))
|
1250
|
-
- Support nested controllers in modules [#1894](https://github.com/AlchemyCMS/alchemy_cms/pull/1894) ([tvdeyen](https://github.com/tvdeyen))
|
1251
|
-
- Always make pages taggable [#1893](https://github.com/AlchemyCMS/alchemy_cms/pull/1893) ([tvdeyen](https://github.com/tvdeyen))
|
1252
|
-
- Fix editing sites [#1891](https://github.com/AlchemyCMS/alchemy_cms/pull/1891) ([mamhoff](https://github.com/mamhoff))
|
1253
|
-
- Fix missing help_text_text translations [#1888](https://github.com/AlchemyCMS/alchemy_cms/pull/1888) ([gr8bit](https://github.com/gr8bit))
|
1254
|
-
|
1255
|
-
### Misc
|
1256
|
-
|
1257
|
-
- Move away from Travis CI [#1981](https://github.com/AlchemyCMS/alchemy_cms/pull/1981) ([tvdeyen](https://github.com/tvdeyen))
|
1258
|
-
- Remove poltergeist and phantomjs leftovers [#1970](https://github.com/AlchemyCMS/alchemy_cms/pull/1970) ([tvdeyen](https://github.com/tvdeyen))
|
1259
|
-
- [ruby - main] Upgrade rubocop to version 1.1.0 [#1958](https://github.com/AlchemyCMS/alchemy_cms/pull/1958) ([depfu](https://github.com/apps/depfu))
|
1260
|
-
- Remove greetings action [#1956](https://github.com/AlchemyCMS/alchemy_cms/pull/1956) ([tvdeyen](https://github.com/tvdeyen))
|
1261
|
-
- [ruby] Upgrade rubocop to version 1.0.0 [#1952](https://github.com/AlchemyCMS/alchemy_cms/pull/1952) ([depfu](https://github.com/apps/depfu))
|
1262
|
-
- [ruby] Upgrade rubocop to version 0.93.1 [#1948](https://github.com/AlchemyCMS/alchemy_cms/pull/1948) ([depfu](https://github.com/apps/depfu))
|
1263
|
-
- [ruby] Upgrade puma to version 5.0.2 [#1944](https://github.com/AlchemyCMS/alchemy_cms/pull/1944) ([depfu](https://github.com/apps/depfu))
|
1264
|
-
- [ruby] Upgrade rubocop to version 0.92.0 [#1942](https://github.com/AlchemyCMS/alchemy_cms/pull/1942) ([depfu](https://github.com/apps/depfu))
|
1265
|
-
- Use Node 12 on CI runs [#1925](https://github.com/AlchemyCMS/alchemy_cms/pull/1925) ([tvdeyen](https://github.com/tvdeyen))
|
1266
|
-
- [ruby] Upgrade rubocop to version 0.89.0 [#1920](https://github.com/AlchemyCMS/alchemy_cms/pull/1920) ([depfu](https://github.com/apps/depfu))
|
1267
|
-
- Move back to Travis CI [#1907](https://github.com/AlchemyCMS/alchemy_cms/pull/1907) ([tvdeyen](https://github.com/tvdeyen))
|
1268
|
-
- [ruby] Upgrade rubocop to version 0.88.0 [#1892](https://github.com/AlchemyCMS/alchemy_cms/pull/1892) ([depfu](https://github.com/apps/depfu))
|
1269
|
-
- [ruby] Upgrade rubocop to version 0.87.1 [#1889](https://github.com/AlchemyCMS/alchemy_cms/pull/1889) ([depfu](https://github.com/apps/depfu))
|
1270
|
-
|
1271
|
-
## 5.0.3 (2021-01-12)
|
1272
|
-
|
1273
|
-
- Fix copy element feature [#1996](https://github.com/AlchemyCMS/alchemy_cms/pull/1996) ([tvdeyen](https://github.com/tvdeyen))
|
1274
|
-
|
1275
|
-
## 5.0.2 (2020-12-18)
|
1276
|
-
|
1277
|
-
- Fix page sorting [#1984](https://github.com/AlchemyCMS/alchemy_cms/pull/1984) ([tvdeyen](https://github.com/tvdeyen))
|
1278
|
-
|
1279
|
-
## 5.0.1 (2020-09-29)
|
1280
|
-
|
1281
|
-
- [a11y] Better image alt text support [#1940](https://github.com/AlchemyCMS/alchemy_cms/pull/1940) ([tvdeyen](https://github.com/tvdeyen))
|
1282
|
-
|
1283
|
-
## 5.0.0 (2020-07-17)
|
1284
|
-
|
1285
|
-
- Do not convert JPEG images into JPG [#1904](https://github.com/AlchemyCMS/alchemy_cms/pull/1904) ([tvdeyen](https://github.com/tvdeyen))
|
1286
|
-
- Do not enable image cropper if file is missing [#1903](https://github.com/AlchemyCMS/alchemy_cms/pull/1903) ([tvdeyen](https://github.com/tvdeyen))
|
1287
|
-
- Always show original image as zoomed image [#1902](https://github.com/AlchemyCMS/alchemy_cms/pull/1902) ([tvdeyen](https://github.com/tvdeyen))
|
1288
|
-
- Rename Attachment#urlname into slug [#1848](https://github.com/AlchemyCMS/alchemy_cms/pull/1848) ([tvdeyen](https://github.com/tvdeyen))
|
1289
|
-
- Deprecate toolbar helper [#1900](https://github.com/AlchemyCMS/alchemy_cms/pull/1900) ([tvdeyen](https://github.com/tvdeyen))
|
1290
|
-
- Deprecate redirect_to_public_child ([tvdeyen](https://github.com/tvdeyen))
|
1291
|
-
- Add --auto-accept option to installer ([tvdeyen](https://github.com/tvdeyen))
|
1292
|
-
- Move all installer code into install generator ([tvdeyen](https://github.com/tvdeyen))
|
1293
|
-
- Language Factory: Create default language in host app's locale [#1884](https://github.com/AlchemyCMS/alchemy_cms/pull/1884) ([mamhoff](https://github.com/mamhoff))
|
1294
|
-
- Respect filter and tagging params in picture archive size buttons [#1880](https://github.com/AlchemyCMS/alchemy_cms/pull/1880) ([tvdeyen](https://github.com/tvdeyen))
|
1295
|
-
- Extract picture thumbnail sizes in a constant [#1879](https://github.com/AlchemyCMS/alchemy_cms/pull/1879) ([tvdeyen](https://github.com/tvdeyen))
|
1296
|
-
- Configurable Image Preprocessor [#1878](https://github.com/AlchemyCMS/alchemy_cms/pull/1878) ([tvdeyen](https://github.com/tvdeyen))
|
1297
|
-
- Configure edit page preview per site [#1877](https://github.com/AlchemyCMS/alchemy_cms/pull/1877) ([tvdeyen](https://github.com/tvdeyen))
|
1298
|
-
- Fix Page tree sorting after root page removal [#1876](https://github.com/AlchemyCMS/alchemy_cms/pull/1876) ([tvdeyen](https://github.com/tvdeyen))
|
1299
|
-
- 5.0 Upgrader fixes [#1874](https://github.com/AlchemyCMS/alchemy_cms/pull/1874) ([tvdeyen](https://github.com/tvdeyen))
|
1300
|
-
- Remove url_nesting config [#1872](https://github.com/AlchemyCMS/alchemy_cms/pull/1872) ([tvdeyen](https://github.com/tvdeyen))
|
1301
|
-
- [ruby] Upgrade sassc to version 2.4.0 [#1871](https://github.com/AlchemyCMS/alchemy_cms/pull/1871) ([depfu](https://github.com/apps/depfu))
|
1302
|
-
- fix GitHub Actions spelling [#1869](https://github.com/AlchemyCMS/alchemy_cms/pull/1869) ([alexanderadam](https://github.com/alexanderadam))
|
1303
|
-
- Remove Page#visible [#1868](https://github.com/AlchemyCMS/alchemy_cms/pull/1868) ([tvdeyen](https://github.com/tvdeyen))
|
1304
|
-
- 4.6 backports for master [#1867](https://github.com/AlchemyCMS/alchemy_cms/pull/1867) ([tvdeyen](https://github.com/tvdeyen))
|
1305
|
-
- Use apt update instead of apt-get in GH action [#1866](https://github.com/AlchemyCMS/alchemy_cms/pull/1866) ([tvdeyen](https://github.com/tvdeyen))
|
1306
|
-
- [ruby] Upgrade rubocop to version 0.85.0 [#1863](https://github.com/AlchemyCMS/alchemy_cms/pull/1863) ([depfu](https://github.com/apps/depfu))
|
1307
|
-
- Remove active_record_5_1? method [#1854](https://github.com/AlchemyCMS/alchemy_cms/pull/1854) ([tvdeyen](https://github.com/tvdeyen))
|
1308
|
-
- Use Alchemy npm package instead of hacking webpacker [#1853](https://github.com/AlchemyCMS/alchemy_cms/pull/1853) ([tvdeyen](https://github.com/tvdeyen))
|
1309
|
-
- Fix node select ES5 syntax [#1851](https://github.com/AlchemyCMS/alchemy_cms/pull/1851) ([tvdeyen](https://github.com/tvdeyen))
|
1310
|
-
- Run yarn:install after installing webpacker in install generator [#1850](https://github.com/AlchemyCMS/alchemy_cms/pull/1850) ([mamhoff](https://github.com/mamhoff))
|
1311
|
-
- Remove male sign after emoji [#1849](https://github.com/AlchemyCMS/alchemy_cms/pull/1849) ([mamhoff](https://github.com/mamhoff))
|
1312
|
-
- Do not use ES6 Syntax in Node Selector [#1846](https://github.com/AlchemyCMS/alchemy_cms/pull/1846) ([mamhoff](https://github.com/mamhoff))
|
1313
|
-
- [ruby] Upgrade rubocop to version 0.84.0 [#1845](https://github.com/AlchemyCMS/alchemy_cms/pull/1845) ([depfu](https://github.com/apps/depfu))
|
1314
|
-
- Always create nested urls [#1844](https://github.com/AlchemyCMS/alchemy_cms/pull/1844) ([tvdeyen](https://github.com/tvdeyen))
|
1315
|
-
- Fix: Add indifferent access to default options in encoded_image [#1840](https://github.com/AlchemyCMS/alchemy_cms/pull/1840) ([mickenorlen](https://github.com/mickenorlen))
|
1316
|
-
- Set proper nested set scope on page [#1837](https://github.com/AlchemyCMS/alchemy_cms/pull/1837) ([tvdeyen](https://github.com/tvdeyen))
|
1317
|
-
- Install Webpacker in install generator [#1835](https://github.com/AlchemyCMS/alchemy_cms/pull/1835) ([mamhoff](https://github.com/mamhoff))
|
1318
|
-
- Fix deleting an EssenceNode from a content [#1834](https://github.com/AlchemyCMS/alchemy_cms/pull/1834) ([mamhoff](https://github.com/mamhoff))
|
1319
|
-
- Use Rails standards for deleting pages from EssencePage [#1833](https://github.com/AlchemyCMS/alchemy_cms/pull/1833) ([mamhoff](https://github.com/mamhoff))
|
1320
|
-
- Scope has one site [#1832](https://github.com/AlchemyCMS/alchemy_cms/pull/1832) ([mamhoff](https://github.com/mamhoff))
|
1321
|
-
- Render nodes [#1831](https://github.com/AlchemyCMS/alchemy_cms/pull/1831) ([mamhoff](https://github.com/mamhoff))
|
1322
|
-
- Add errors when node cant be deleted [#1828](https://github.com/AlchemyCMS/alchemy_cms/pull/1828) ([mamhoff](https://github.com/mamhoff))
|
1323
|
-
- Add error flash to resource controller [#1827](https://github.com/AlchemyCMS/alchemy_cms/pull/1827) ([mamhoff](https://github.com/mamhoff))
|
1324
|
-
- Fix Association between Nodes and EssenceNodes [#1826](https://github.com/AlchemyCMS/alchemy_cms/pull/1826) ([mamhoff](https://github.com/mamhoff))
|
1325
|
-
- Translated root menus [#1825](https://github.com/AlchemyCMS/alchemy_cms/pull/1825) ([mamhoff](https://github.com/mamhoff))
|
1326
|
-
- Use rails root in install generator [#1822](https://github.com/AlchemyCMS/alchemy_cms/pull/1822) ([tvdeyen](https://github.com/tvdeyen))
|
1327
|
-
- Add a quick Node select [#1821](https://github.com/AlchemyCMS/alchemy_cms/pull/1821) ([mamhoff](https://github.com/mamhoff))
|
1328
|
-
- Add has_one association for root page [#1820](https://github.com/AlchemyCMS/alchemy_cms/pull/1820) ([mamhoff](https://github.com/mamhoff))
|
1329
|
-
- [js] Upgrade babel-jest to version 26.0.1 [#1819](https://github.com/AlchemyCMS/alchemy_cms/pull/1819) ([depfu](https://github.com/apps/depfu))
|
1330
|
-
- Make page language mandatory [#1818](https://github.com/AlchemyCMS/alchemy_cms/pull/1818) ([tvdeyen](https://github.com/tvdeyen))
|
1331
|
-
- Remove root page [#1817](https://github.com/AlchemyCMS/alchemy_cms/pull/1817) ([tvdeyen](https://github.com/tvdeyen))
|
1332
|
-
- Fix page unlock page icon replacement [#1816](https://github.com/AlchemyCMS/alchemy_cms/pull/1816) ([tvdeyen](https://github.com/tvdeyen))
|
1333
|
-
- Invoke rake task in upgrader instead of system call [#1815](https://github.com/AlchemyCMS/alchemy_cms/pull/1815) ([tvdeyen](https://github.com/tvdeyen))
|
1334
|
-
- Remove old 4.4 upgrader class [#1814](https://github.com/AlchemyCMS/alchemy_cms/pull/1814) ([tvdeyen](https://github.com/tvdeyen))
|
1335
|
-
- Remove Page.ancestors_for [#1813](https://github.com/AlchemyCMS/alchemy_cms/pull/1813) ([tvdeyen](https://github.com/tvdeyen))
|
1336
|
-
- Remove layout root pages [#1812](https://github.com/AlchemyCMS/alchemy_cms/pull/1812) ([tvdeyen](https://github.com/tvdeyen))
|
1337
|
-
- Use timestamps in migration [#1811](https://github.com/AlchemyCMS/alchemy_cms/pull/1811) ([tvdeyen](https://github.com/tvdeyen))
|
1338
|
-
- Remove legacy element serializer [#1810](https://github.com/AlchemyCMS/alchemy_cms/pull/1810) ([tvdeyen](https://github.com/tvdeyen))
|
1339
|
-
- Remove timestamps from essences and contents [#1809](https://github.com/AlchemyCMS/alchemy_cms/pull/1809) ([tvdeyen](https://github.com/tvdeyen))
|
1340
|
-
- Remove stamper from contents [#1808](https://github.com/AlchemyCMS/alchemy_cms/pull/1808) ([tvdeyen](https://github.com/tvdeyen))
|
1341
|
-
- Remove Site ID from nodes [#1807](https://github.com/AlchemyCMS/alchemy_cms/pull/1807) ([mamhoff](https://github.com/mamhoff))
|
1342
|
-
- Add Alchemy::Language.has_many :nodes [#1806](https://github.com/AlchemyCMS/alchemy_cms/pull/1806) ([mamhoff](https://github.com/mamhoff))
|
1343
|
-
- Drop Rails 5.0 and 5.1 support [#1805](https://github.com/AlchemyCMS/alchemy_cms/pull/1805) ([tvdeyen](https://github.com/tvdeyen))
|
1344
|
-
- Remove enforce_ssl [#1804](https://github.com/AlchemyCMS/alchemy_cms/pull/1804) ([tvdeyen](https://github.com/tvdeyen))
|
1345
|
-
- Make the preview url configurable [#1803](https://github.com/AlchemyCMS/alchemy_cms/pull/1803) ([tvdeyen](https://github.com/tvdeyen))
|
1346
|
-
- Remove stamper from essences [#1802](https://github.com/AlchemyCMS/alchemy_cms/pull/1802) ([tvdeyen](https://github.com/tvdeyen))
|
1347
|
-
- Use Rufo to format all files in a consistent way [#1799](https://github.com/AlchemyCMS/alchemy_cms/pull/1799) ([tvdeyen](https://github.com/tvdeyen))
|
1348
|
-
- Remove acts_as_list from Content [#1798](https://github.com/AlchemyCMS/alchemy_cms/pull/1798) ([tvdeyen](https://github.com/tvdeyen))
|
1349
|
-
- Add EssenceNode [#1792](https://github.com/AlchemyCMS/alchemy_cms/pull/1792) ([mamhoff](https://github.com/mamhoff))
|
1350
|
-
- Use 2.5.7 of code climate coverage reporter GH action [#1790](https://github.com/AlchemyCMS/alchemy_cms/pull/1790) ([tvdeyen](https://github.com/tvdeyen))
|
1351
|
-
- [ruby] Upgrade sassc to version 2.3.0 [#1787](https://github.com/AlchemyCMS/alchemy_cms/pull/1787) ([depfu](https://github.com/apps/depfu))
|
1352
|
-
- [ruby] Upgrade rubocop to version 0.82.0 [#1785](https://github.com/AlchemyCMS/alchemy_cms/pull/1785) ([depfu](https://github.com/apps/depfu))
|
1353
|
-
- Fix regular icons [#1784](https://github.com/AlchemyCMS/alchemy_cms/pull/1784) ([tvdeyen](https://github.com/tvdeyen))
|
1354
|
-
- Convert NodeTree into ES6 [#1782](https://github.com/AlchemyCMS/alchemy_cms/pull/1782) ([tvdeyen](https://github.com/tvdeyen))
|
1355
|
-
- Add Webpacker [#1775](https://github.com/AlchemyCMS/alchemy_cms/pull/1775) ([tvdeyen](https://github.com/tvdeyen))
|
1356
|
-
- Multi language menus [#1774](https://github.com/AlchemyCMS/alchemy_cms/pull/1774) ([rmparr](https://github.com/rmparr))
|
1357
|
-
- On Boarding Flow [#1770](https://github.com/AlchemyCMS/alchemy_cms/pull/1770) ([tvdeyen](https://github.com/tvdeyen))
|
1358
|
-
- Fix bug in language from session w/o site [#1769](https://github.com/AlchemyCMS/alchemy_cms/pull/1769) ([tvdeyen](https://github.com/tvdeyen))
|
1359
|
-
- Fix fontawesome in production [#1765](https://github.com/AlchemyCMS/alchemy_cms/pull/1765) ([mickenorlen](https://github.com/mickenorlen))
|
1360
|
-
- Remove implicit Site and Language creation [#1763](https://github.com/AlchemyCMS/alchemy_cms/pull/1763) ([mamhoff](https://github.com/mamhoff))
|
1361
|
-
- Add content editor data attributes based on name/id and css_classes presenter method [#1761](https://github.com/AlchemyCMS/alchemy_cms/pull/1761) ([mickenorlen](https://github.com/mickenorlen))
|
1362
|
-
- Add alchemy.test to development domains [#1760](https://github.com/AlchemyCMS/alchemy_cms/pull/1760) ([tvdeyen](https://github.com/tvdeyen))
|
1363
|
-
- Update Fontawesome [#1759](https://github.com/AlchemyCMS/alchemy_cms/pull/1759) ([tvdeyen](https://github.com/tvdeyen))
|
1364
|
-
- Fix test coverage reporting [#1757](https://github.com/AlchemyCMS/alchemy_cms/pull/1757) ([tvdeyen](https://github.com/tvdeyen))
|
1365
|
-
- Remove references to nonexistent "scaffold" generator [#1755](https://github.com/AlchemyCMS/alchemy_cms/pull/1755) ([mamhoff](https://github.com/mamhoff))
|
1366
|
-
- Remove Tasks::Helper module [#1754](https://github.com/AlchemyCMS/alchemy_cms/pull/1754) ([mamhoff](https://github.com/mamhoff))
|
1367
|
-
- Update rubocop [#1753](https://github.com/AlchemyCMS/alchemy_cms/pull/1753) ([tvdeyen](https://github.com/tvdeyen))
|
1368
|
-
- chores: use same _old_ Rubo:cop: version as Hound [#1752](https://github.com/AlchemyCMS/alchemy_cms/pull/1752) ([alexanderadam](https://github.com/alexanderadam))
|
1369
|
-
- Fix date comparison in resource feature spec [#1750](https://github.com/AlchemyCMS/alchemy_cms/pull/1750) ([tvdeyen](https://github.com/tvdeyen))
|
1370
|
-
- Fail spec prepare task if sub command fails [#1749](https://github.com/AlchemyCMS/alchemy_cms/pull/1749) ([tvdeyen](https://github.com/tvdeyen))
|
1371
|
-
- Add MySQL service as service [#1748](https://github.com/AlchemyCMS/alchemy_cms/pull/1748) ([mamhoff](https://github.com/mamhoff))
|
1372
|
-
- Allow importing to a different port [#1747](https://github.com/AlchemyCMS/alchemy_cms/pull/1747) ([mamhoff](https://github.com/mamhoff))
|
1373
|
-
- Sortable resources tables [#1744](https://github.com/AlchemyCMS/alchemy_cms/pull/1744) ([tvdeyen](https://github.com/tvdeyen))
|
1374
|
-
- Fix update check spec [#1743](https://github.com/AlchemyCMS/alchemy_cms/pull/1743) ([tvdeyen](https://github.com/tvdeyen))
|
1375
|
-
- Compress migrations [#1657](https://github.com/AlchemyCMS/alchemy_cms/pull/1657) ([tvdeyen](https://github.com/tvdeyen))
|
1376
|
-
- Install Gutentag migrations while installing Alchemy [#1688](https://github.com/AlchemyCMS/alchemy_cms/pull/1688) ([tvdeyen](https://github.com/tvdeyen))
|
1377
|
-
- Remove old upgrade tasks [#1687](https://github.com/AlchemyCMS/alchemy_cms/pull/1687) ([tvdeyen](https://github.com/tvdeyen))
|
1378
|
-
- Remove deprecated features [#1686](https://github.com/AlchemyCMS/alchemy_cms/pull/1686) ([tvdeyen](https://github.com/tvdeyen))
|
1379
|
-
- Remove deprecations [#1656](https://github.com/AlchemyCMS/alchemy_cms/pull/1656) ([tvdeyen](https://github.com/tvdeyen))
|
1380
|
-
- Add element editor decorator [#1653](https://github.com/AlchemyCMS/alchemy_cms/pull/1653) ([tvdeyen](https://github.com/tvdeyen))
|
1381
|
-
- Remove deprecated render_essence_* helpers [#1652](https://github.com/AlchemyCMS/alchemy_cms/pull/1652) ([tvdeyen](https://github.com/tvdeyen))
|
1382
|
-
- Remove deprecated render element editor helpers [#1651](https://github.com/AlchemyCMS/alchemy_cms/pull/1651) ([tvdeyen](https://github.com/tvdeyen))
|
1383
|
-
- Add ContentEditor decorator [#1645](https://github.com/AlchemyCMS/alchemy_cms/pull/1645) ([tvdeyen](https://github.com/tvdeyen))
|
1384
|
-
- Remove local options from essence editors [#1638](https://github.com/AlchemyCMS/alchemy_cms/pull/1638) ([tvdeyen](https://github.com/tvdeyen))
|
1385
|
-
|
1386
|
-
## 4.6.1 (2020-06-04)
|
1387
|
-
|
1388
|
-
- Fix 4.6 upgrader
|
1389
|
-
|
1390
|
-
## 4.6.0 (2020-06-04)
|
1391
|
-
|
1392
|
-
- Use apt update instead of apt-get in GH action [#1865](https://github.com/AlchemyCMS/alchemy_cms/pull/1865) ([tvdeyen](https://github.com/tvdeyen))
|
1393
|
-
- Use depth for page tree serializer root_or_leaf [#1864](https://github.com/AlchemyCMS/alchemy_cms/pull/1864) ([tvdeyen](https://github.com/tvdeyen))
|
1394
|
-
- Fix sitemap wrapper height [#1861](https://github.com/AlchemyCMS/alchemy_cms/pull/1861) ([tvdeyen](https://github.com/tvdeyen))
|
1395
|
-
- Do not return the root page with API responses. [#1860](https://github.com/AlchemyCMS/alchemy_cms/pull/1860) ([tvdeyen](https://github.com/tvdeyen))
|
1396
|
-
- Introduce page.url_path and use it for alchemyPageSelect [#1859](https://github.com/AlchemyCMS/alchemy_cms/pull/1859) ([tvdeyen](https://github.com/tvdeyen))
|
1397
|
-
- Update Urlname translation [#1857](https://github.com/AlchemyCMS/alchemy_cms/pull/1857) ([tvdeyen](https://github.com/tvdeyen))
|
1398
|
-
- Show url name in Page tree [#1856](https://github.com/AlchemyCMS/alchemy_cms/pull/1856) ([tvdeyen](https://github.com/tvdeyen))
|
1399
|
-
- Deprecate Page#visible attribute [#1855](https://github.com/AlchemyCMS/alchemy_cms/pull/1855) ([tvdeyen](https://github.com/tvdeyen))
|
1400
|
-
- 4.6: Re-add `auto_logout_time` configuration option [#1852](https://github.com/AlchemyCMS/alchemy_cms/pull/1852) ([mamhoff](https://github.com/mamhoff))
|
1401
|
-
- Backport ContentEditor to 4.6, deprecate removed methods on `Alchemy::Content` [#1847](https://github.com/AlchemyCMS/alchemy_cms/pull/1847) ([mamhoff](https://github.com/mamhoff))
|
1402
|
-
- Deprecate auto_logout_time (4.6) [#1843](https://github.com/AlchemyCMS/alchemy_cms/pull/1843) ([tvdeyen](https://github.com/tvdeyen))
|
1403
|
-
- Deprecate require_ssl (4.6) [#1842](https://github.com/AlchemyCMS/alchemy_cms/pull/1842) ([tvdeyen](https://github.com/tvdeyen))
|
1404
|
-
- Deprecate url_nesting configuration (4.6) [#1841](https://github.com/AlchemyCMS/alchemy_cms/pull/1841) ([tvdeyen](https://github.com/tvdeyen))
|
1405
|
-
- Allow page visible toggle (4.6) [#1838](https://github.com/AlchemyCMS/alchemy_cms/pull/1838) ([tvdeyen](https://github.com/tvdeyen))
|
1406
|
-
|
1407
|
-
## 4.5.0 (2020-03-30)
|
1408
|
-
|
1409
|
-
- Sortable menus [#1758](https://github.com/AlchemyCMS/alchemy_cms/pull/1758) ([mamhoff](https://github.com/mamhoff))
|
1410
|
-
- Programmatic menus [#1756](https://github.com/AlchemyCMS/alchemy_cms/pull/1756) ([mamhoff](https://github.com/mamhoff))
|
1411
|
-
- Fix syntax in non-erb Menu templates [#1751]((https://github.com/AlchemyCMS/alchemy_cms/pull/1751)) ([Alexander ADAM](https://github.com/alexanderadam))
|
1412
|
-
- Fix `render_menu` for custom controllers [#1746]((https://github.com/AlchemyCMS/alchemy_cms/pull/1746)) ([Alexander ADAM](https://github.com/alexanderadam))
|
1413
|
-
|
1414
|
-
## 4.4.4 (2020-02-28)
|
1415
|
-
|
1416
|
-
- Fix new menu form [#1740](https://github.com/AlchemyCMS/alchemy_cms/pull/1740) ([tvdeyen](https://github.com/tvdeyen))
|
1417
|
-
|
1418
|
-
## 4.4.3 (2020-02-26)
|
1419
|
-
|
1420
|
-
- Scope nodes to sites [#1738](https://github.com/AlchemyCMS/alchemy_cms/pull/1738) ([tvdeyen](https://github.com/tvdeyen))
|
1421
|
-
|
1422
|
-
## 4.4.2 (2020-02-25)
|
1423
|
-
|
1424
|
-
- Do not use deprecated methods [#1737](https://github.com/AlchemyCMS/alchemy_cms/pull/1737) ([tvdeyen](https://github.com/tvdeyen))
|
1425
|
-
- Order contents by their position in its element [#1733](https://github.com/AlchemyCMS/alchemy_cms/pull/1733) ([tvdeyen](https://github.com/tvdeyen))
|
1426
|
-
- Eager load relations in elements trash [#1732](https://github.com/AlchemyCMS/alchemy_cms/pull/1732) ([tvdeyen](https://github.com/tvdeyen))
|
1427
|
-
- Run CI builds with Sprockets 3.7.2 [#1731](https://github.com/AlchemyCMS/alchemy_cms/pull/1731) ([tvdeyen](https://github.com/tvdeyen))
|
1428
|
-
- Re-organize development dependencies [#1730](https://github.com/AlchemyCMS/alchemy_cms/pull/1730) ([tvdeyen](https://github.com/tvdeyen))
|
1429
|
-
- Update pr template [#1729](https://github.com/AlchemyCMS/alchemy_cms/pull/1729) ([tvdeyen](https://github.com/tvdeyen))
|
1430
|
-
- Generate views without _view in the filename [#1728](https://github.com/AlchemyCMS/alchemy_cms/pull/1728) ([tvdeyen](https://github.com/tvdeyen))
|
1431
|
-
- Fix CI Builds [#1727](https://github.com/AlchemyCMS/alchemy_cms/pull/1727) ([tvdeyen](https://github.com/tvdeyen))
|
1432
|
-
- Fix page tagging condition: should_attach_to_menu? [#1725](https://github.com/AlchemyCMS/alchemy_cms/pull/1725) ([mickenorlen](https://github.com/mickenorlen))
|
1433
|
-
- Fix Alchemy.user_class_name constant conflict [#1724](https://github.com/AlchemyCMS/alchemy_cms/pull/1724) ([mickenorlen](https://github.com/mickenorlen))
|
1434
|
-
|
1435
|
-
## 4.4.1 (2020-01-08)
|
1436
|
-
|
1437
|
-
- Fix updating page preview after element create/save [#1710](https://github.com/AlchemyCMS/alchemy_cms/pull/1710) ([tvdeyen](https://github.com/tvdeyen))
|
1438
|
-
- Element editor layout changes [#1709](https://github.com/AlchemyCMS/alchemy_cms/pull/1709) ([tvdeyen](https://github.com/tvdeyen))
|
1439
|
-
- Add Alchemy.user_class_primary_key setting [#1708](https://github.com/AlchemyCMS/alchemy_cms/pull/1708) ([tvdeyen](https://github.com/tvdeyen))
|
1440
|
-
- Add Element views upgrade tasks [#1707](https://github.com/AlchemyCMS/alchemy_cms/pull/1707) ([tvdeyen](https://github.com/tvdeyen))
|
1441
|
-
- Use postMessage to send messages between preview and element windows [#1704](https://github.com/AlchemyCMS/alchemy_cms/pull/1704) ([tvdeyen](https://github.com/tvdeyen))
|
1442
|
-
|
1443
|
-
## 4.4.0 (2020-01-06)
|
1444
|
-
|
1445
|
-
- Use contents settings for size in EssencePicture#picture_url [#1703](https://github.com/AlchemyCMS/alchemy_cms/pull/1703) ([tvdeyen](https://github.com/tvdeyen))
|
1446
|
-
- Remove title tag from preview elements [#1701](https://github.com/AlchemyCMS/alchemy_cms/pull/1701) ([tvdeyen](https://github.com/tvdeyen))
|
1447
|
-
- Remove custom JS logging [#1700](https://github.com/AlchemyCMS/alchemy_cms/pull/1700) ([tvdeyen](https://github.com/tvdeyen))
|
1448
|
-
- Remove demo locale files [#1699](https://github.com/AlchemyCMS/alchemy_cms/pull/1699) ([tvdeyen](https://github.com/tvdeyen))
|
1449
|
-
- Use alchemyPageSelect for Node page select [#1698](https://github.com/AlchemyCMS/alchemy_cms/pull/1698) ([tvdeyen](https://github.com/tvdeyen))
|
1450
|
-
- Cache menu partials [#1697](https://github.com/AlchemyCMS/alchemy_cms/pull/1697) ([tvdeyen](https://github.com/tvdeyen))
|
1451
|
-
- Update page tree to menu nodes Rake task [#1696](https://github.com/AlchemyCMS/alchemy_cms/pull/1696) ([tvdeyen](https://github.com/tvdeyen))
|
1452
|
-
- Validate nodes name if page is absent [#1695](https://github.com/AlchemyCMS/alchemy_cms/pull/1695) ([tvdeyen](https://github.com/tvdeyen))
|
1453
|
-
- Update the application layout installer template [#1691](https://github.com/AlchemyCMS/alchemy_cms/pull/1691) ([tvdeyen](https://github.com/tvdeyen))
|
1454
|
-
- Update note about missing user class [#1690](https://github.com/AlchemyCMS/alchemy_cms/pull/1690) ([tvdeyen](https://github.com/tvdeyen))
|
1455
|
-
- Use a Sprockets 3/4 manifest file [#1689](https://github.com/AlchemyCMS/alchemy_cms/pull/1689) ([tvdeyen](https://github.com/tvdeyen))
|
1456
|
-
- Use select2 for internal page link in link overlay [#1685](https://github.com/AlchemyCMS/alchemy_cms/pull/1685) ([tvdeyen](https://github.com/tvdeyen))
|
1457
|
-
- Do not consider nested elements "orphaned" [#1684](https://github.com/AlchemyCMS/alchemy_cms/pull/1684) ([mamhoff](https://github.com/mamhoff))
|
1458
|
-
- Destroy page-dependent elements [#1683](https://github.com/AlchemyCMS/alchemy_cms/pull/1683) ([mamhoff](https://github.com/mamhoff))
|
1459
|
-
- Add anchor link tab to link overlay [#1682](https://github.com/AlchemyCMS/alchemy_cms/pull/1682) ([tvdeyen](https://github.com/tvdeyen))
|
1460
|
-
- Ensure the apt/cache folder exists while installing [#1678](https://github.com/AlchemyCMS/alchemy_cms/pull/1678) ([tvdeyen](https://github.com/tvdeyen))
|
1461
|
-
- Cache apt packages between CI runs [#1677](https://github.com/AlchemyCMS/alchemy_cms/pull/1677) ([tvdeyen](https://github.com/tvdeyen))
|
1462
|
-
- Use select2 with AJAX search for essence page select [#1675](https://github.com/AlchemyCMS/alchemy_cms/pull/1675) ([tvdeyen](https://github.com/tvdeyen))
|
1463
|
-
- Eager load associated records [#1674](https://github.com/AlchemyCMS/alchemy_cms/pull/1674) ([tvdeyen](https://github.com/tvdeyen))
|
1464
|
-
- Add support for testing with multiple Rails versions [#1673](https://github.com/AlchemyCMS/alchemy_cms/pull/1673) ([tvdeyen](https://github.com/tvdeyen))
|
1465
|
-
- Page api pagination [#1672](https://github.com/AlchemyCMS/alchemy_cms/pull/1672) ([tvdeyen](https://github.com/tvdeyen))
|
1466
|
-
- Adjust select2 loading-more indicator [#1671](https://github.com/AlchemyCMS/alchemy_cms/pull/1671) ([tvdeyen](https://github.com/tvdeyen))
|
1467
|
-
- Test support fixes [#1669](https://github.com/AlchemyCMS/alchemy_cms/pull/1669) ([tvdeyen](https://github.com/tvdeyen))
|
1468
|
-
- Build fixes [#1668](https://github.com/AlchemyCMS/alchemy_cms/pull/1668) ([tvdeyen](https://github.com/tvdeyen))
|
1469
|
-
- Add Menus [#1667](https://github.com/AlchemyCMS/alchemy_cms/pull/1667) ([tvdeyen](https://github.com/tvdeyen))
|
1470
|
-
- Add a label component [#1666](https://github.com/AlchemyCMS/alchemy_cms/pull/1666) ([tvdeyen](https://github.com/tvdeyen))
|
1471
|
-
- Run bundle install on CI even if cache hits [#1665](https://github.com/AlchemyCMS/alchemy_cms/pull/1665) ([tvdeyen](https://github.com/tvdeyen))
|
1472
|
-
- Moves switch_language method into languages_controller. [#1664](https://github.com/AlchemyCMS/alchemy_cms/pull/1664) ([tvdeyen](https://github.com/tvdeyen))
|
1473
|
-
- Cache gems between CI runs [#1663](https://github.com/AlchemyCMS/alchemy_cms/pull/1663) ([tvdeyen](https://github.com/tvdeyen))
|
1474
|
-
- Remove production gems from local Gemfile [#1662](https://github.com/AlchemyCMS/alchemy_cms/pull/1662) ([tvdeyen](https://github.com/tvdeyen))
|
1475
|
-
- Touch contents updated_at column in pure SQL [#1661](https://github.com/AlchemyCMS/alchemy_cms/pull/1661) ([tvdeyen](https://github.com/tvdeyen))
|
1476
|
-
- Convert page editing user methods into AR relations [#1658](https://github.com/AlchemyCMS/alchemy_cms/pull/1658) ([tvdeyen](https://github.com/tvdeyen))
|
1477
|
-
- Ensure the admin locale is only set by available locales [#1655](https://github.com/AlchemyCMS/alchemy_cms/pull/1655) ([tvdeyen](https://github.com/tvdeyen))
|
1478
|
-
- Add a GitHub actions ci.yml [#1654](https://github.com/AlchemyCMS/alchemy_cms/pull/1654) ([tvdeyen](https://github.com/tvdeyen))
|
1479
|
-
- Adjust install generator to latest changes [#1649](https://github.com/AlchemyCMS/alchemy_cms/pull/1649) ([tvdeyen](https://github.com/tvdeyen))
|
1480
|
-
- Deprecate _view suffix of element views [#1648](https://github.com/AlchemyCMS/alchemy_cms/pull/1648) ([tvdeyen](https://github.com/tvdeyen))
|
1481
|
-
- Add a configurable logout method (default: delete) [#1647](https://github.com/AlchemyCMS/alchemy_cms/pull/1647) ([delphaber](https://github.com/delphaber))
|
1482
|
-
- Deprecate render_essence helpers [#1644](https://github.com/AlchemyCMS/alchemy_cms/pull/1644) ([tvdeyen](https://github.com/tvdeyen))
|
1483
|
-
- Deprecate element editors [#1643](https://github.com/AlchemyCMS/alchemy_cms/pull/1643) ([tvdeyen](https://github.com/tvdeyen))
|
1484
|
-
- Deprecate local options in essence editors [#1642](https://github.com/AlchemyCMS/alchemy_cms/pull/1642) ([tvdeyen](https://github.com/tvdeyen))
|
1485
|
-
- Ensure the EssencePage id regexp matches only numbers [#1641](https://github.com/AlchemyCMS/alchemy_cms/pull/1641) ([tvdeyen](https://github.com/tvdeyen))
|
1486
|
-
- Use EssencePage in contact forms [#1640](https://github.com/AlchemyCMS/alchemy_cms/pull/1640) ([tvdeyen](https://github.com/tvdeyen))
|
1487
|
-
- Add Alchemy::EssencePage [#1639](https://github.com/AlchemyCMS/alchemy_cms/pull/1639) ([tvdeyen](https://github.com/tvdeyen))
|
1488
|
-
- FEAT: Render message and warnings in element editor [#1637](https://github.com/AlchemyCMS/alchemy_cms/pull/1637) ([tvdeyen](https://github.com/tvdeyen))
|
1489
|
-
- Tackle Rails 6 deprecations [#1636](https://github.com/AlchemyCMS/alchemy_cms/pull/1636) ([tvdeyen](https://github.com/tvdeyen))
|
1490
|
-
- Preload assets in tests [#1635](https://github.com/AlchemyCMS/alchemy_cms/pull/1635) ([tvdeyen](https://github.com/tvdeyen))
|
1491
|
-
- Allow acts-as-list 1.0 [#1634](https://github.com/AlchemyCMS/alchemy_cms/pull/1634) ([tvdeyen](https://github.com/tvdeyen))
|
1492
|
-
- Add Sprockets manifest file to dummy app [#1632](https://github.com/AlchemyCMS/alchemy_cms/pull/1632) ([tvdeyen](https://github.com/tvdeyen))
|
1493
|
-
- Master now tracks 4.4.0.alpha [#1627](https://github.com/AlchemyCMS/alchemy_cms/pull/1627) ([tvdeyen](https://github.com/tvdeyen))
|
1494
|
-
- Fix Cell Migration to maintain positions [#1625](https://github.com/AlchemyCMS/alchemy_cms/pull/1625) ([mamhoff](https://github.com/mamhoff))
|
1495
|
-
- Cell Upgrader: Match quotation marks in cell name string [#1624](https://github.com/AlchemyCMS/alchemy_cms/pull/1624) ([mamhoff](https://github.com/mamhoff))
|
1496
|
-
- Cell Migrator: Maintain element order in fixed elements [#1623](https://github.com/AlchemyCMS/alchemy_cms/pull/1623) ([mamhoff](https://github.com/mamhoff))
|
1497
|
-
- Enhance cells upgrader to deal with render_elements from_page: x [#1622](https://github.com/AlchemyCMS/alchemy_cms/pull/1622) ([mamhoff](https://github.com/mamhoff))
|
1498
|
-
|
1499
|
-
## 4.3.2 (2019-11-08)
|
1500
|
-
|
1501
|
-
- Allow simple form 5 [#1660](https://github.com/AlchemyCMS/alchemy_cms/pull/1633) ([jkimmeyer](https://github.com/jkimmeyer))
|
1502
|
-
|
1503
|
-
## 4.3.1 (2019-09-27)
|
1504
|
-
|
1505
|
-
- Fix Cell Migration to maintain positions [#1625](https://github.com/AlchemyCMS/alchemy_cms/pull/1625) ([mamhoff](https://github.com/mamhoff))
|
1506
|
-
- Cell Upgrader: Match quotation marks in cell name string [#1624](https://github.com/AlchemyCMS/alchemy_cms/pull/1624) ([mamhoff](https://github.com/mamhoff))
|
1507
|
-
- Cell Migrator: Maintain element order in fixed elements [#1623](https://github.com/AlchemyCMS/alchemy_cms/pull/1623) ([mamhoff](https://github.com/mamhoff))
|
1508
|
-
- Enhance cells upgrader to deal with render_elements from_page: x [#1622](https://github.com/AlchemyCMS/alchemy_cms/pull/1622) ([mamhoff](https://github.com/mamhoff))
|
1509
|
-
|
1510
|
-
## 4.3.0 (2019-08-23)
|
1511
|
-
|
1512
|
-
- Add Rails 6 support [#1616](https://github.com/AlchemyCMS/alchemy_cms/pull/1616) ([tvdeyen](https://github.com/tvdeyen))
|
1513
|
-
- Use media_type over content_type in specs [#1615](https://github.com/AlchemyCMS/alchemy_cms/pull/1615) ([tvdeyen](https://github.com/tvdeyen))
|
1514
|
-
- Remove unused Picture#security_token method [#1614](https://github.com/AlchemyCMS/alchemy_cms/pull/1614) ([tvdeyen](https://github.com/tvdeyen))
|
1515
|
-
- rspec-rails 4 [#1613](https://github.com/AlchemyCMS/alchemy_cms/pull/1613) ([tvdeyen](https://github.com/tvdeyen))
|
1516
|
-
- Update Dummy test app to Rails 5.2 [#1612](https://github.com/AlchemyCMS/alchemy_cms/pull/1612) ([tvdeyen](https://github.com/tvdeyen))
|
1517
|
-
- add default styling for number inputs [#1598](https://github.com/AlchemyCMS/alchemy_cms/pull/1598) ([alexanderadam](https://github.com/alexanderadam))
|
1518
|
-
- Upgrade responders to version 3.0.0 [#1593](https://github.com/AlchemyCMS/alchemy_cms/pull/1593) ([depfu](https://github.com/apps/depfu))
|
1519
|
-
- Update jquery fileupload plugin [#1592](https://github.com/AlchemyCMS/alchemy_cms/pull/1592) ([tvdeyen](https://github.com/tvdeyen))
|
1520
|
-
- Only return visible elements from Pages elements relations [#1590](https://github.com/AlchemyCMS/alchemy_cms/pull/1590) ([tvdeyen](https://github.com/tvdeyen))
|
1521
|
-
- Only return visible elements from Elements nested_elements relation [#1589](https://github.com/AlchemyCMS/alchemy_cms/pull/1589) ([tvdeyen](https://github.com/tvdeyen))
|
1522
|
-
|
1523
|
-
## 4.2.3 (2019-09-27)
|
1524
|
-
|
1525
|
-
- Fix Cell Migration to maintain positions [#1625](https://github.com/AlchemyCMS/alchemy_cms/pull/1625) ([mamhoff](https://github.com/mamhoff))
|
1526
|
-
- Cell Upgrader: Match quotation marks in cell name string [#1624](https://github.com/AlchemyCMS/alchemy_cms/pull/1624) ([mamhoff](https://github.com/mamhoff))
|
1527
|
-
- Cell Migrator: Maintain element order in fixed elements [#1623](https://github.com/AlchemyCMS/alchemy_cms/pull/1623) ([mamhoff](https://github.com/mamhoff))
|
1528
|
-
- Enhance cells upgrader to deal with render_elements from_page: x [#1622](https://github.com/AlchemyCMS/alchemy_cms/pull/1622) ([mamhoff](https://github.com/mamhoff))
|
1529
|
-
|
1530
|
-
## 4.2.2 (2019-08-13)
|
1531
|
-
|
1532
|
-
- Fallback to default locale if unavailable locale requested [#1610](https://github.com/AlchemyCMS/alchemy_cms/pull/1610) ([mamhoff](https://github.com/mamhoff))
|
1533
|
-
|
1534
|
-
## 4.2.1 (2019-08-08)
|
1535
|
-
|
1536
|
-
- Use strings as JSON root keys in API controllers [#1602](https://github.com/AlchemyCMS/alchemy_cms/pull/1602) ([tvdeyen](https://github.com/tvdeyen))
|
1537
|
-
|
1538
|
-
## 4.2.0 (2019-05-30)
|
1539
|
-
|
1540
|
-
- remove unused .teatro.yml [#1585](https://github.com/AlchemyCMS/alchemy_cms/pull/1585) ([kirillshevch](https://github.com/kirillshevch))
|
1541
|
-
- Use Set to collect callbacks in OnPageLayout [#1583](https://github.com/AlchemyCMS/alchemy_cms/pull/1583) ([mamhoff](https://github.com/mamhoff))
|
1542
|
-
- Allow Ransack 1.x [#1580](https://github.com/AlchemyCMS/alchemy_cms/pull/1580) ([tvdeyen](https://github.com/tvdeyen))
|
1543
|
-
- Set a max-width to preview frame [#1578](https://github.com/AlchemyCMS/alchemy_cms/pull/1578) ([tvdeyen](https://github.com/tvdeyen))
|
1544
|
-
- Rebuild locked pages tabs in flexbox [#1577](https://github.com/AlchemyCMS/alchemy_cms/pull/1577) ([tvdeyen](https://github.com/tvdeyen))
|
1545
|
-
- Use where.not instead of Arel [#1576](https://github.com/AlchemyCMS/alchemy_cms/pull/1576) ([tvdeyen](https://github.com/tvdeyen))
|
1546
|
-
- Add missing requires to factories [#1575](https://github.com/AlchemyCMS/alchemy_cms/pull/1575) ([tvdeyen](https://github.com/tvdeyen))
|
1547
|
-
- Upgrade sqlite3 to version 1.4.1 [#1574](https://github.com/AlchemyCMS/alchemy_cms/pull/1574) ([depfu](https://github.com/apps/depfu))
|
1548
|
-
- Fix elements window ajax errors [#1573](https://github.com/AlchemyCMS/alchemy_cms/pull/1573) ([tvdeyen](https://github.com/tvdeyen))
|
1549
|
-
- Use SimpleForm field for datepicker in resources form [#1572](https://github.com/AlchemyCMS/alchemy_cms/pull/1572) ([tvdeyen](https://github.com/tvdeyen))
|
1550
|
-
- Render warning message in warning helper [#1571](https://github.com/AlchemyCMS/alchemy_cms/pull/1571) ([tvdeyen](https://github.com/tvdeyen))
|
1551
|
-
- Prohibit coffee-rails 5.0 [#1570](https://github.com/AlchemyCMS/alchemy_cms/pull/1570) ([tvdeyen](https://github.com/tvdeyen))
|
1552
|
-
- Add Date column support to resources [#1567](https://github.com/AlchemyCMS/alchemy_cms/pull/1567) ([tvdeyen](https://github.com/tvdeyen))
|
1553
|
-
- Fix pluralization of resource table header [#1566](https://github.com/AlchemyCMS/alchemy_cms/pull/1566) ([tvdeyen](https://github.com/tvdeyen))
|
1554
|
-
- Fix compact elements style [#1565](https://github.com/AlchemyCMS/alchemy_cms/pull/1565) ([tvdeyen](https://github.com/tvdeyen))
|
1555
|
-
- Show Ruby and Rails versions in info dialog [#1564](https://github.com/AlchemyCMS/alchemy_cms/pull/1564) ([tvdeyen](https://github.com/tvdeyen))
|
1556
|
-
- Set spinner color to current text color [#1563](https://github.com/AlchemyCMS/alchemy_cms/pull/1563) ([tvdeyen](https://github.com/tvdeyen))
|
1557
|
-
- Update links in post install message [#1562](https://github.com/AlchemyCMS/alchemy_cms/pull/1562) ([tvdeyen](https://github.com/tvdeyen))
|
1558
|
-
- Allow cancancan 3 [#1561](https://github.com/AlchemyCMS/alchemy_cms/pull/1561) ([tvdeyen](https://github.com/tvdeyen))
|
1559
|
-
- Fix Member Page permissions syntax [#1560](https://github.com/AlchemyCMS/alchemy_cms/pull/1560) ([tvdeyen](https://github.com/tvdeyen))
|
1560
|
-
- Update upgrader [#1558](https://github.com/AlchemyCMS/alchemy_cms/pull/1558) ([tvdeyen](https://github.com/tvdeyen))
|
1561
|
-
- Use element name local in generators [#1556](https://github.com/AlchemyCMS/alchemy_cms/pull/1556) ([tvdeyen](https://github.com/tvdeyen))
|
1562
|
-
- Remove invalid bytecode handler [#1555](https://github.com/AlchemyCMS/alchemy_cms/pull/1555) ([tvdeyen](https://github.com/tvdeyen))
|
1563
|
-
- Separate render element calls [#1554](https://github.com/AlchemyCMS/alchemy_cms/pull/1554) ([tvdeyen](https://github.com/tvdeyen))
|
1564
|
-
- Expose the element into partials as local object [#1553](https://github.com/AlchemyCMS/alchemy_cms/pull/1553) ([tvdeyen](https://github.com/tvdeyen))
|
1565
|
-
- Allow admins to switch all languages [#1552](https://github.com/AlchemyCMS/alchemy_cms/pull/1552) ([tvdeyen](https://github.com/tvdeyen))
|
1566
|
-
- Raise targeted Ruby version to 2.3 [#1545](https://github.com/AlchemyCMS/alchemy_cms/pull/1545) ([tvdeyen](https://github.com/tvdeyen))
|
1567
|
-
- Introduces an Elements finder class [#1544](https://github.com/AlchemyCMS/alchemy_cms/pull/1544) ([tvdeyen](https://github.com/tvdeyen))
|
1568
|
-
- Fixate sqlite dep for bug fix [#1543](https://github.com/AlchemyCMS/alchemy_cms/pull/1543) ([tvdeyen](https://github.com/tvdeyen))
|
1569
|
-
- Upgrade shoulda-matchers to version 4.0.0 [#1542](https://github.com/AlchemyCMS/alchemy_cms/pull/1542) ([depfu](https://github.com/apps/depfu))
|
1570
|
-
- Upgrade factory_bot_rails to version 5.0.1 [#1540](https://github.com/AlchemyCMS/alchemy_cms/pull/1540) ([depfu](https://github.com/apps/depfu))
|
1571
|
-
- Use Flatpickr as Datepicker [#1533](https://github.com/AlchemyCMS/alchemy_cms/pull/1533) ([mamhoff](https://github.com/mamhoff))
|
1572
|
-
- Use system tests over feature specs [#1528](https://github.com/AlchemyCMS/alchemy_cms/pull/1528) ([tvdeyen](https://github.com/tvdeyen))
|
1573
|
-
- Flexible width for admin navigation entry labels [#1527](https://github.com/AlchemyCMS/alchemy_cms/pull/1527) ([tvdeyen](https://github.com/tvdeyen))
|
1574
|
-
- Render new page when there is a flash message [#1525](https://github.com/AlchemyCMS/alchemy_cms/pull/1525) ([jedrekdomanski](https://github.com/jedrekdomanski))
|
1575
|
-
- Responsive elements window and sidebar [#1519](https://github.com/AlchemyCMS/alchemy_cms/pull/1519) ([tvdeyen](https://github.com/tvdeyen))
|
1576
|
-
- Change element eye icon on public state [#1517](https://github.com/AlchemyCMS/alchemy_cms/pull/1517) ([oniram88](https://github.com/oniram88))
|
1577
|
-
- Maximize element window if Tinymce is fullscreen [#1515](https://github.com/AlchemyCMS/alchemy_cms/pull/1515) ([tvdeyen](https://github.com/tvdeyen))
|
1578
|
-
- Remove cells in favour of fixed elements [#1514](https://github.com/AlchemyCMS/alchemy_cms/pull/1514) ([tvdeyen](https://github.com/tvdeyen))
|
1579
|
-
- Feature: Autogenerate nestable elements [#1513](https://github.com/AlchemyCMS/alchemy_cms/pull/1513) ([tvdeyen](https://github.com/tvdeyen))
|
1580
|
-
- Allow "data" key for module navigations [#1512](https://github.com/AlchemyCMS/alchemy_cms/pull/1512) ([mamhoff](https://github.com/mamhoff))
|
1581
|
-
- Allow to define layout for page previews [#1500](https://github.com/AlchemyCMS/alchemy_cms/pull/1500) ([westonganger](https://github.com/westonganger))
|
1582
|
-
- Disable page publish/view page buttons according to published_at [#1498](https://github.com/AlchemyCMS/alchemy_cms/pull/1498) ([westonganger](https://github.com/westonganger))
|
1583
|
-
- Fix capitalization for login/logout/leave [#1497](https://github.com/AlchemyCMS/alchemy_cms/pull/1497) ([westonganger](https://github.com/westonganger))
|
1584
|
-
- Verify controller keys within `register_module` [#1495](https://github.com/AlchemyCMS/alchemy_cms/pull/1495) ([westonganger](https://github.com/westonganger))
|
1585
|
-
- Update bundled Tinymce to 4.8.3 [#1491](https://github.com/AlchemyCMS/alchemy_cms/pull/1491) ([tvdeyen](https://github.com/tvdeyen))
|
1586
|
-
- Use dynamic attributes in factories [#1484](https://github.com/AlchemyCMS/alchemy_cms/pull/1484) ([tvdeyen](https://github.com/tvdeyen))
|
1587
|
-
- Migrating to active_model_serializers ~> 0.10.0 [#1478](https://github.com/AlchemyCMS/alchemy_cms/pull/1478) ([pmashchak](https://github.com/pmashchak))
|
1588
|
-
- Replace picture galleries with nestable elements [#1358](https://github.com/AlchemyCMS/alchemy_cms/pull/1358) ([tvdeyen](https://github.com/tvdeyen))
|
1589
|
-
- Add a compact nested element style [#1357](https://github.com/AlchemyCMS/alchemy_cms/pull/1357) by [tvdeyen](https://github.com/tvdeyen)
|
1590
|
-
|
1591
|
-
## 4.1.0 (2018-09-22)
|
1592
|
-
|
1593
|
-
- Use console.warn for Alchemy.debug [#1476](https://github.com/AlchemyCMS/alchemy_cms/pull/1476) ([tvdeyen](https://github.com/tvdeyen))
|
1594
|
-
- Fixes picture per page in overlay [#1475](https://github.com/AlchemyCMS/alchemy_cms/pull/1475) ([tvdeyen](https://github.com/tvdeyen))
|
1595
|
-
- Style adjustments [#1474](https://github.com/AlchemyCMS/alchemy_cms/pull/1474) ([tvdeyen](https://github.com/tvdeyen))
|
1596
|
-
- Simplify pagination implementation [#1471](https://github.com/AlchemyCMS/alchemy_cms/pull/1471) ([mamhoff](https://github.com/mamhoff))
|
1597
|
-
- Try .any? to prevent error in dashboard on online users [#1469](https://github.com/AlchemyCMS/alchemy_cms/pull/1469) ([askl56](https://github.com/askl56))
|
1598
|
-
- Update changelog for 4.0.4 release [#1468](https://github.com/AlchemyCMS/alchemy_cms/pull/1468) ([tvdeyen](https://github.com/tvdeyen))
|
1599
|
-
- Do not cache sitemap in Turbolinks [#1463](https://github.com/AlchemyCMS/alchemy_cms/pull/1463) ([tvdeyen](https://github.com/tvdeyen))
|
1600
|
-
- Fix sorting in Resources controller [#1462](https://github.com/AlchemyCMS/alchemy_cms/pull/1462) ([mamhoff](https://github.com/mamhoff))
|
1601
|
-
- Fix removing picture essences [#1460](https://github.com/AlchemyCMS/alchemy_cms/pull/1460) ([mamhoff](https://github.com/mamhoff))
|
1602
|
-
- Upgrade ransack to version 2.0.0 [#1458](https://github.com/AlchemyCMS/alchemy_cms/pull/1458) ([depfu](https://github.com/marketplace/depfu))
|
1603
|
-
- Toolbar icon vertical alignment fixes [#1450](https://github.com/AlchemyCMS/alchemy_cms/pull/1450) ([tvdeyen](https://github.com/tvdeyen))
|
1604
|
-
- Fix tidy task [#1449](https://github.com/AlchemyCMS/alchemy_cms/pull/1449) ([mamhoff](https://github.com/mamhoff))
|
1605
|
-
- Update changelog [#1448](https://github.com/AlchemyCMS/alchemy_cms/pull/1448) ([tvdeyen](https://github.com/tvdeyen))
|
1606
|
-
- New thumbnail style [#1447](https://github.com/AlchemyCMS/alchemy_cms/pull/1447) ([tvdeyen](https://github.com/tvdeyen))
|
1607
|
-
- Styling fixes [#1446](https://github.com/AlchemyCMS/alchemy_cms/pull/1446) ([tvdeyen](https://github.com/tvdeyen))
|
1608
|
-
- Do not prevent default click handling in Element editor [#1445](https://github.com/AlchemyCMS/alchemy_cms/pull/1445) ([mamhoff](https://github.com/mamhoff))
|
1609
|
-
- Fix content container height [#1443](https://github.com/AlchemyCMS/alchemy_cms/pull/1443) ([tvdeyen](https://github.com/tvdeyen))
|
1610
|
-
- Use max instead of sort.last in update check [#1442](https://github.com/AlchemyCMS/alchemy_cms/pull/1442) ([tvdeyen](https://github.com/tvdeyen))
|
1611
|
-
- Use optional: true for optional belongs_to associations [#1441](https://github.com/AlchemyCMS/alchemy_cms/pull/1441) ([tvdeyen](https://github.com/tvdeyen))
|
1612
|
-
- Set parent element id when pasting from clipboard [#1440](https://github.com/AlchemyCMS/alchemy_cms/pull/1440) ([tvdeyen](https://github.com/tvdeyen))
|
1613
|
-
- Add must_revalidate to cache-control header [#1439](https://github.com/AlchemyCMS/alchemy_cms/pull/1439) ([afdev82](https://github.com/afdev82))
|
1614
|
-
- Update README.md [#1438](https://github.com/AlchemyCMS/alchemy_cms/pull/1438) ([agorneo](https://github.com/agorneo))
|
1615
|
-
- Add a pull request template [#1436](https://github.com/AlchemyCMS/alchemy_cms/pull/1436) ([tvdeyen](https://github.com/tvdeyen))
|
1616
|
-
- Add a feature request template [#1435](https://github.com/AlchemyCMS/alchemy_cms/pull/1435) ([tvdeyen](https://github.com/tvdeyen))
|
1617
|
-
- Add a GitHub issue template [#1434](https://github.com/AlchemyCMS/alchemy_cms/pull/1434) ([tvdeyen](https://github.com/tvdeyen))
|
1618
|
-
- Picture zoom UX enhancements [#1431](https://github.com/AlchemyCMS/alchemy_cms/pull/1431) ([tvdeyen](https://github.com/tvdeyen))
|
1619
|
-
- Fix draggable trash item feature [#1428](https://github.com/AlchemyCMS/alchemy_cms/pull/1428) ([tvdeyen](https://github.com/tvdeyen))
|
1620
|
-
- Load Jcrop selection gif via asset pipeline [#1427](https://github.com/AlchemyCMS/alchemy_cms/pull/1427) ([tvdeyen](https://github.com/tvdeyen))
|
1621
|
-
- Color and styles adjustments [#1426](https://github.com/AlchemyCMS/alchemy_cms/pull/1426) ([tvdeyen](https://github.com/tvdeyen))
|
1622
|
-
- Extract tags css rules into own file [#1424](https://github.com/AlchemyCMS/alchemy_cms/pull/1424) ([tvdeyen](https://github.com/tvdeyen))
|
1623
|
-
- Adjust the welcome screen to new color theme [#1423](https://github.com/AlchemyCMS/alchemy_cms/pull/1423) ([tvdeyen](https://github.com/tvdeyen))
|
1624
|
-
- Fixes menubar layout [#1422](https://github.com/AlchemyCMS/alchemy_cms/pull/1422) ([tvdeyen](https://github.com/tvdeyen))
|
1625
|
-
- Update jquery-ui-rails to 6.0 [#1420](https://github.com/AlchemyCMS/alchemy_cms/pull/1420) ([tvdeyen](https://github.com/tvdeyen))
|
1626
|
-
- Allow CanCanCan 2.x [#1418](https://github.com/AlchemyCMS/alchemy_cms/pull/1418) ([tvdeyen](https://github.com/tvdeyen))
|
1627
|
-
- Add a Heroku Deploy button [#1416](https://github.com/AlchemyCMS/alchemy_cms/pull/1416) ([tvdeyen](https://github.com/tvdeyen))
|
1628
|
-
- Upgrade simple_form to version 4.0 [#1413](https://github.com/AlchemyCMS/alchemy_cms/pull/1413) ([depfu](https://github.com/marketplace/depfu))
|
1629
|
-
- Do not require localeapp gem [#1412](https://github.com/AlchemyCMS/alchemy_cms/pull/1412) ([tvdeyen](https://github.com/tvdeyen))
|
1630
|
-
- Fix all Rubocop offenses and update some config [#1411](https://github.com/AlchemyCMS/alchemy_cms/pull/1411) ([tvdeyen](https://github.com/tvdeyen))
|
1631
|
-
- Upgrade mysql2 to version 0.5.1 [#1410](https://github.com/AlchemyCMS/alchemy_cms/pull/1410) ([depfu](https://github.com/marketplace/depfu))
|
1632
|
-
- Capybara 3.0 support [#1409](https://github.com/AlchemyCMS/alchemy_cms/pull/1409) ([tvdeyen](https://github.com/tvdeyen))
|
1633
|
-
- Handle zero plural resource names [#1407](https://github.com/AlchemyCMS/alchemy_cms/pull/1407) ([dbwinger](https://github.com/dbwinger))
|
1634
|
-
- Update rubocop config [#1404](https://github.com/AlchemyCMS/alchemy_cms/pull/1404) ([tvdeyen](https://github.com/tvdeyen))
|
1635
|
-
- Explicitly set the Rails version in dummy app [#1403](https://github.com/AlchemyCMS/alchemy_cms/pull/1403) ([tvdeyen](https://github.com/tvdeyen))
|
1636
|
-
- Do not reload essence classes in dev mode [#1400](https://github.com/AlchemyCMS/alchemy_cms/pull/1400) ([tvdeyen](https://github.com/tvdeyen))
|
1637
|
-
- Move all translations into `alchemy_i18n` extension [#1398](https://github.com/AlchemyCMS/alchemy_cms/pull/1398) ([tvdeyen](https://github.com/tvdeyen))
|
1638
|
-
- Add `nested_elements` to serialized element json [#1397](https://github.com/AlchemyCMS/alchemy_cms/pull/1397) ([tvdeyen](https://github.com/tvdeyen))
|
1639
|
-
- Fix YAML safe_load [#1395](https://github.com/AlchemyCMS/alchemy_cms/pull/1395) ([tvdeyen](https://github.com/tvdeyen))
|
1640
|
-
- Fix passing html options to form builder submit input [#1394](https://github.com/AlchemyCMS/alchemy_cms/pull/1394) ([tvdeyen](https://github.com/tvdeyen))
|
1641
|
-
- Darker blue dialogs [#1393](https://github.com/AlchemyCMS/alchemy_cms/pull/1393) ([tvdeyen](https://github.com/tvdeyen))
|
1642
|
-
- New orange logo [#1392](https://github.com/AlchemyCMS/alchemy_cms/pull/1392) ([tvdeyen](https://github.com/tvdeyen))
|
1643
|
-
- Use Open Sans for admin font [#1391](https://github.com/AlchemyCMS/alchemy_cms/pull/1391) ([tvdeyen](https://github.com/tvdeyen))
|
1644
|
-
- Use ActiveRecord touching [#1390](https://github.com/AlchemyCMS/alchemy_cms/pull/1390) ([tvdeyen](https://github.com/tvdeyen))
|
1645
|
-
- correct scss typo [#1388](https://github.com/AlchemyCMS/alchemy_cms/pull/1388) ([oniram88](https://github.com/oniram88))
|
1646
|
-
- Add Rails 5.2 support [#1387](https://github.com/AlchemyCMS/alchemy_cms/pull/1387) ([tvdeyen](https://github.com/tvdeyen))
|
1647
|
-
- Update Gutentag [#1386](https://github.com/AlchemyCMS/alchemy_cms/pull/1386) ([tvdeyen](https://github.com/tvdeyen))
|
1648
|
-
- Fix resources search [#1384](https://github.com/AlchemyCMS/alchemy_cms/pull/1384) ([tvdeyen](https://github.com/tvdeyen))
|
1649
|
-
- Fixate Gutentag to 2.1.0 for now [#1383](https://github.com/AlchemyCMS/alchemy_cms/pull/1383) ([tvdeyen](https://github.com/tvdeyen))
|
1650
|
-
- Skip migrate-to-gutentag migration for fresh installs [#1381](https://github.com/AlchemyCMS/alchemy_cms/pull/1381) ([tvdeyen](https://github.com/tvdeyen))
|
1651
|
-
- More prominent active menu color [#1380](https://github.com/AlchemyCMS/alchemy_cms/pull/1380) ([tvdeyen](https://github.com/tvdeyen))
|
1652
|
-
- Use at least jquery-rails 4.0.4 [#1378](https://github.com/AlchemyCMS/alchemy_cms/pull/1378) ([tvdeyen](https://github.com/tvdeyen))
|
1653
|
-
- Give capybara more time to render pictures [#1377](https://github.com/AlchemyCMS/alchemy_cms/pull/1377) ([tvdeyen](https://github.com/tvdeyen))
|
1654
|
-
- A few admin layout refinements [#1374](https://github.com/AlchemyCMS/alchemy_cms/pull/1374) ([tvdeyen](https://github.com/tvdeyen))
|
1655
|
-
- Upgrade cancancan to version 2.1 [#1372](https://github.com/AlchemyCMS/alchemy_cms/pull/1372) ([depfu](https://github.com/apps/depfu))
|
1656
|
-
- Upgrade kaminari to version 1.1 [#1370](https://github.com/AlchemyCMS/alchemy_cms/pull/1370) ([depfu](https://github.com/apps/depfu))
|
1657
|
-
- Remove all old migration files [#1367](https://github.com/AlchemyCMS/alchemy_cms/pull/1367) ([tvdeyen](https://github.com/tvdeyen))
|
1658
|
-
- Upgrade mysql2 to version 0.4.10 [#1366](https://github.com/AlchemyCMS/alchemy_cms/pull/1366) ([depfu](https://github.com/marketplace/depfu))
|
1659
|
-
- Upgrade pg to version 1.0.0 [#1365](https://github.com/AlchemyCMS/alchemy_cms/pull/1365) ([depfu](https://github.com/marketplace/depfu))
|
1660
|
-
- Use Gutentag for tags [#1364](https://github.com/AlchemyCMS/alchemy_cms/pull/1364) ([tvdeyen](https://github.com/tvdeyen))
|
1661
|
-
- Update Rubocop config [#1363](https://github.com/AlchemyCMS/alchemy_cms/pull/1363) ([tvdeyen](https://github.com/tvdeyen))
|
1662
|
-
- Compress 4.0 migrations [#1362](https://github.com/AlchemyCMS/alchemy_cms/pull/1362) ([tvdeyen](https://github.com/tvdeyen))
|
1663
|
-
- Removes 3.x upgraders [#1361](https://github.com/AlchemyCMS/alchemy_cms/pull/1361) ([tvdeyen](https://github.com/tvdeyen))
|
1664
|
-
- Get rid of Rails 5.2 deprecations [#1360](https://github.com/AlchemyCMS/alchemy_cms/pull/1360) ([tvdeyen](https://github.com/tvdeyen))
|
1665
|
-
- Fix API response for users able to edit content [#1356](https://github.com/AlchemyCMS/alchemy_cms/pull/1356) ([tvdeyen](https://github.com/tvdeyen))
|
1666
|
-
- Remove jasmine gems [#1355](https://github.com/AlchemyCMS/alchemy_cms/pull/1355) ([tvdeyen](https://github.com/tvdeyen))
|
1667
|
-
- Remove translations provided by ActiveModel [#1354](https://github.com/AlchemyCMS/alchemy_cms/pull/1354) ([pelargir](https://github.com/pelargir))
|
1668
|
-
- Update bundled TinyMCE to 4.7.5 [#1353](https://github.com/AlchemyCMS/alchemy_cms/pull/1353) ([tvdeyen](https://github.com/tvdeyen))
|
1669
|
-
- New color theme [#1352](https://github.com/AlchemyCMS/alchemy_cms/pull/1352) ([tvdeyen](https://github.com/tvdeyen))
|
1670
|
-
- Only scroll to element if focused from preview [#1351](https://github.com/AlchemyCMS/alchemy_cms/pull/1351) ([tvdeyen](https://github.com/tvdeyen))
|
1671
|
-
- Don't prevent submit event of element save button [#1349](https://github.com/AlchemyCMS/alchemy_cms/pull/1349) ([tvdeyen](https://github.com/tvdeyen))
|
1672
|
-
- Use FA calendar icons for EssenceDate picker [#1348](https://github.com/AlchemyCMS/alchemy_cms/pull/1348) ([tvdeyen](https://github.com/tvdeyen))
|
1673
|
-
- Use headless chrome for feature tests [#1347](https://github.com/AlchemyCMS/alchemy_cms/pull/1347) ([tvdeyen](https://github.com/tvdeyen))
|
1674
|
-
- Refactor the preview window JS code [#1346](https://github.com/AlchemyCMS/alchemy_cms/pull/1346) ([tvdeyen](https://github.com/tvdeyen))
|
1675
|
-
- New table styles [#1344](https://github.com/AlchemyCMS/alchemy_cms/pull/1344) ([tvdeyen](https://github.com/tvdeyen))
|
1676
|
-
- Remove pleaseWait overlay from links with GET requests [#1343](https://github.com/AlchemyCMS/alchemy_cms/pull/1343) by [tvdeyen](https://github.com/tvdeyen)
|
1677
|
-
- Replaces PNG icons with FontAwesome icon font [#1342](https://github.com/AlchemyCMS/alchemy_cms/pull/1342) by [tvdeyen](https://github.com/tvdeyen)
|
1678
|
-
- Ensure to use pg < 1.0 in tests [#1341](https://github.com/AlchemyCMS/alchemy_cms/pull/1341) ([tvdeyen](https://github.com/tvdeyen))
|
1679
|
-
- Add must_revalidate to cache-control header [#1340](https://github.com/AlchemyCMS/alchemy_cms/pull/1340) ([afdev82](https://github.com/afdev82))
|
1680
|
-
- Removed fixed table headers from admin resource tables [#1339](https://github.com/AlchemyCMS/alchemy_cms/pull/1339) by [tvdeyen](https://github.com/tvdeyen)
|
1681
|
-
- Removed Bourbon Sass library [#1339](https://github.com/AlchemyCMS/alchemy_cms/pull/1339) by [tvdeyen](https://github.com/tvdeyen)
|
1682
|
-
- Add possibility to add a suffix to the page title [#1331](https://github.com/AlchemyCMS/alchemy_cms/pull/1331) ([jrieger](https://github.com/jrieger))
|
1683
|
-
- Do not add leading slash to default admin path [#1329](https://github.com/AlchemyCMS/alchemy_cms/pull/1329) ([tvdeyen](https://github.com/tvdeyen))
|
1684
|
-
- Check if file exists on disk before calling identify [#1327](https://github.com/AlchemyCMS/alchemy_cms/pull/1327) ([chalmagean](https://github.com/chalmagean))
|
1685
|
-
- Skip folded deeper levels when rendering page tree [#1324](https://github.com/AlchemyCMS/alchemy_cms/pull/1324) ([pascalj](https://github.com/pascalj))
|
1686
|
-
|
1687
|
-
## 4.0.5 (2018-09-17)
|
1688
|
-
|
1689
|
-
- Do not cache sitemap in Turbolinks [#1463](https://github.com/AlchemyCMS/alchemy_cms/pull/1463) ([tvdeyen](https://github.com/tvdeyen))
|
1690
|
-
- Skip folded deeper levels when rendering page tree [#1324](https://github.com/AlchemyCMS/alchemy_cms/pull/1324) ([pascalj](https://github.com/pascalj))
|
1691
|
-
|
1692
|
-
## 4.0.4 (2018-09-05)
|
1693
|
-
|
1694
|
-
- Allow Kaminari 1.x [#1467](https://github.com/AlchemyCMS/alchemy_cms/pull/1467) ([tvdeyen](https://github.com/tvdeyen))
|
1695
|
-
|
1696
|
-
## 4.0.3 (2018-05-14)
|
1697
|
-
|
1698
|
-
- Add must_revalidate to cache-control header [#1340](https://github.com/AlchemyCMS/alchemy_cms/pull/1340) ([afdev82](https://github.com/afdev82))
|
1699
|
-
|
1700
|
-
## 4.0.2 (2018-05-08)
|
1701
|
-
|
1702
|
-
- Fix draggable trash item feature [#1429](https://github.com/AlchemyCMS/alchemy_cms/pull/1429) ([tvdeyen](https://github.com/tvdeyen))
|
1703
|
-
- Allow CanCanCan 2.x [#1418](https://github.com/AlchemyCMS/alchemy_cms/pull/1418) ([tvdeyen](https://github.com/tvdeyen))
|
1704
|
-
|
1705
|
-
## 4.0.1 (2018-04-23)
|
1706
|
-
|
1707
|
-
- Add more classes to YAML.safe_load [#1414](https://github.com/AlchemyCMS/alchemy_cms/pull/1414) ([tvdeyen](https://github.com/tvdeyen))
|
1708
|
-
|
1709
|
-
## 4.0.0 (2017-11-06)
|
1710
|
-
|
1711
|
-
- Fixes image cropping issues [#1320](https://github.com/AlchemyCMS/alchemy_cms/pull/1320) and [#1321](https://github.com/AlchemyCMS/alchemy_cms/pull/1321) by [tvdeyen](https://github.com/tvdeyen)
|
1712
|
-
This includes the change that images will not be cropped anymore unless `crop: true` is explicitly given in either the contents settings or passed via options to `render_essence`. The former behavior of implicitly cropping only because crop values (`crop_from` or `crop_size`) were present on the `EssencePicture` database record was erroneous and confusing.
|
1713
|
-
- Allow Dragonfly 1.1 and above [#1314](https://github.com/AlchemyCMS/alchemy_cms/pull/1314) by [tvdeyen](https://github.com/tvdeyen)
|
1714
|
-
- Added Rails 5.1 support [#1310](https://github.com/AlchemyCMS/alchemy_cms/pull/1310) by [tvdeyen](https://github.com/tvdeyen)
|
1715
|
-
- Always use `border-box` box model for all CSS components in the admin [#1309](https://github.com/AlchemyCMS/alchemy_cms/pull/1309) by [tvdeyen](https://github.com/tvdeyen)
|
1716
|
-
|
1717
|
-
## 4.0.0.rc2 (2017-08-18)
|
1718
|
-
|
1719
|
-
- Removed deprecated `:image_size` option from `EssencePicture`
|
1720
|
-
Use `:size` instead.
|
1721
|
-
- Remove deprecated `take_me_for_preview` content definition option
|
1722
|
-
Use `as_element_title` instead.
|
1723
|
-
- Removed deprecated picture url helpers `show_alchemy_picture_path` and `show_alchemy_picture_url`
|
1724
|
-
Use `picture.url` instead.
|
1725
|
-
- Removed deprecated pages helper module.
|
1726
|
-
- Removed deprecated translation methods `_t` and `Alchemy::I18n.t`.
|
1727
|
-
Use `Alchemy.t` instead.
|
1728
|
-
- Removed deprecated `redirect_index` configuration
|
1729
|
-
Use `redirect_to_public_child` configuration instead.
|
1730
|
-
|
1731
|
-
## 4.0.0.rc1 (2017-08-17)
|
1732
|
-
|
1733
|
-
- Removed `merge_params` from `Alchemy::Admin::BaseHelper`
|
1734
|
-
Use `ActionController::Parameters#merge` instead
|
1735
|
-
- Removed `merge_params_only` from `Alchemy::Admin::BaseHelper`
|
1736
|
-
Use methods from `ActionController::Parameters` instead
|
1737
|
-
- Removed `merge_params_without` from `Alchemy::Admin::BaseHelper`
|
1738
|
-
Use `ActionController::Parameters#delete_if` instead
|
1739
|
-
- Removed `tag_list_tag_active?` from `Alchemy::Admin::TagsHelper`
|
1740
|
-
Use `filtered_by_tag?` instead
|
1741
|
-
- Removed `add_to_tag_filter` and `remove_from_tag_filter` from `Alchemy::Admin::TagsHelper`
|
1742
|
-
Use `tags_for_filter` and pass the `current` tag instead
|
1743
|
-
- Removes the possibility to pass options param as JSON string. [#1291](https://github.com/AlchemyCMS/alchemy_cms/pull/1291) by [tvdeyen](https://github.com/tvdeyen)
|
1744
|
-
Pass normal params instead.
|
1745
|
-
- Removed `redirect_back_or_to_default` from `Alchemy::Admin::BaseController`
|
1746
|
-
Use Rails' `redirect_back` with a `fallback_location` instead
|
1747
|
-
- Deprecated controller requests test helpers [#1284](https://github.com/AlchemyCMS/alchemy_cms/pull/1284) by [tvdeyen](https://github.com/tvdeyen)
|
1748
|
-
|
1749
|
-
## 4.0.0.beta (2017-06-20)
|
1750
|
-
|
1751
|
-
- Rails 5
|
1752
|
-
|
1753
|
-
## 3.6.5 (2018-05-08)
|
1754
|
-
|
1755
|
-
- Fix draggable trash item feature [#1430](https://github.com/AlchemyCMS/alchemy_cms/pull/1430) ([tvdeyen](https://github.com/tvdeyen))
|
1756
|
-
|
1757
|
-
## 3.6.4 (2018-04-23)
|
1758
|
-
|
1759
|
-
- Add more classes to YAML.safe_load [#1396](https://github.com/AlchemyCMS/alchemy_cms/pull/1396) ([tvdeyen](https://github.com/tvdeyen))
|
1760
|
-
|
1761
|
-
## 3.6.3 (2017-10-24)
|
1762
|
-
|
1763
|
-
- Remove `:display` cancan alias [#1318](https://github.com/AlchemyCMS/alchemy_cms/pull/1318) by [tvdeyen](https://github.com/tvdeyen)
|
1764
|
-
|
1765
|
-
## 3.6.2 (2017-09-01)
|
1766
|
-
|
1767
|
-
- Handle custom errors in `Alchemy::Picture#url` [#1305](https://github.com/AlchemyCMS/alchemy_cms/pull/1305) by [tvdeyen](https://github.com/tvdeyen)
|
1768
|
-
- Do not move elements in tidy cells task [#1303](https://github.com/AlchemyCMS/alchemy_cms/pull/1303) by [tvdeyen](https://github.com/tvdeyen)
|
1769
|
-
- Add a store image file format rake task [#1302](https://github.com/AlchemyCMS/alchemy_cms/pull/1302) by [tvdeyen](https://github.com/tvdeyen)
|
1770
|
-
|
1771
|
-
## 3.6.1 (2017-08-16)
|
1772
|
-
|
1773
|
-
- Do not ask `systempage?` everytime we load the page definition [#1239](https://github.com/AlchemyCMS/alchemy_cms/pull/1283) by [tvdeyen](https://github.com/tvdeyen)
|
1774
|
-
This speeds up rendering large sitemaps by about 6 times.
|
1775
|
-
|
1776
|
-
## 3.6.0 (2017-06-20)
|
1777
|
-
|
1778
|
-
__Notable Changes__
|
1779
|
-
|
1780
|
-
- The seeder does not generate default site and root page anymore (#1239) by tvdeyen
|
1781
|
-
Alchemy handles this auto-magically now. No need to run `Alchemy::Seeder.seed!` any more |o/
|
1782
|
-
- Security: Sanitize ActiveRecord queries in `Alchemy::Element`, `Alchemy::Page` and
|
1783
|
-
`Alchemy::PagesHelper` (#1257) by jessedoyle
|
1784
|
-
- Remove post install message reference to the `alchemy` standalone installer (#1256) by jessedoyle
|
1785
|
-
- Fixes tag filtering for pictures and attachments in overlay (#1266) by robinboening
|
1786
|
-
- Fix js error on page#update with single quote in page name (#1263) by robinboening
|
1787
|
-
- Change meta charset from 'utf8' to 'utf-8' (#1253) by rbjoern84
|
1788
|
-
- Render "text" as type for datepicker input fields (#1246) by robinboening
|
1789
|
-
- Remove unused Page attr_accessors (#1240) by tvdeyen
|
1790
|
-
- Permit search params while redirecting in library (#1236) by tvdeyen
|
1791
|
-
- Only allow floats and ints as fixed ratio for crop (#1234) by tvdeyen
|
1792
|
-
- Use at least dragonfly 1.0.7 (#1225) by tvdeyen
|
1793
|
-
- Add handlebars-assets gem (#1203) by tvdeyen
|
1794
|
-
- Add a new spinner animation (#1202) by tvdeyen
|
1795
|
-
- Re-color the Turbolinks progressbar (#1199) by tvdeyen
|
1796
|
-
- Use normal view for pages sort action (#1197) by tvdeyen
|
1797
|
-
- Add srcset and sizes support for EssencePicture (#1193) by tvdeyen
|
1798
|
-
|
1799
|
-
## 3.5.0 (2016-12-22)
|
1800
|
-
|
1801
|
-
__New Features__
|
1802
|
-
|
1803
|
-
- New API endpoint for retrieving a nested page tree (#1155)
|
1804
|
-
`api/pages/nested` returns a nested JSON tree of all pages.
|
1805
|
-
- Add page and user seeding support (#1160)
|
1806
|
-
- Files of attachments are replaceable now (#1167)
|
1807
|
-
- Add fixed page attributes (#1168)
|
1808
|
-
Page attributes can be defined as fixed_attributes to prevent changes by the user.
|
1809
|
-
- Allow to declare which user role can edit page content on the page layout level.
|
1810
|
-
|
1811
|
-
__Notable Changes__
|
1812
|
-
|
1813
|
-
- Removed the standalone installer (#1206)
|
1814
|
-
- The essence date input field is now 100% width (#1191)
|
1815
|
-
- The essence view partials don't get cached anymore (#1099)
|
1816
|
-
- The essence editor partials don't get cached anymore (#1171)
|
1817
|
-
- Removes update_essence_select_elements (#1103)
|
1818
|
-
- The admin resource form now uses the datetime-picker instead of the date-picker for datetime fields.
|
1819
|
-
- The `preview_mode_code` helper is moved to a partial in `alchemy/preview_mode_code`. (#1110)
|
1820
|
-
- The `render_meta_data` helper is moved to a partial in `alchemy/pages/meta_data` and can be rendered with the same options as before but now passed in as locals. (#1110)
|
1821
|
-
- The view helpers `preview_mode_code`, `render_meta_data`, `render_meta_tag`, `render_page_title`, `render_title_tag` are now deprecated. (#1110)
|
1822
|
-
- An easy way to include several edit mode related partials is now available (#1120):
|
1823
|
-
`render 'alchemy/edit_mode'` loads `menubar` and `preview_mode_code` at once
|
1824
|
-
- Add support for Turbolinks 5.0 (#1095)
|
1825
|
-
- Use Dragonfly middleware to render pictures and remove our custom solution (#1084)
|
1826
|
-
- `image_size` option is now deprecated. Please use just `size` (#1084)
|
1827
|
-
- `show_alchemy_picture_path` helper is now deprecated. Please use `picture.url` instead (#1084)
|
1828
|
-
- Display download information on the Attachment Modal Dialog (#1137)
|
1829
|
-
- Added foreign keys to important associations (#1149)
|
1830
|
-
- Also destroy trashed elements when page gets destroyed (#1149)
|
1831
|
-
- Upgrade tasks can now be run separately (#1152)
|
1832
|
-
- Update to Tinymce 4.4.3
|
1833
|
-
- New sitemap UI (#1172)
|
1834
|
-
- Removed picture cache flushing (#1185)
|
1835
|
-
- Removed Mountpoint class (#1186)
|
1836
|
-
|
1837
|
-
__Fixed Bugs__
|
1838
|
-
|
1839
|
-
- Fix setting of locale when `current_alchemy_user.language` doesn't return a Symbol (#1097)
|
1840
|
-
- Presence validation of EssenceFile is not working (#1096)
|
1841
|
-
- Allow to define unique nestable elements (#852)
|
1842
|
-
|
1843
|
-
## 3.4.2 (2016-12-22)
|
1844
|
-
|
1845
|
-
__Notable Changes__
|
1846
|
-
|
1847
|
-
- Allow users to manually publish changes on global pages
|
1848
|
-
|
1849
|
-
__Fixed Bugs__
|
1850
|
-
|
1851
|
-
- The `language_links` helper now only renders languages from the current site
|
1852
|
-
|
1853
|
-
## 3.4.1 (2016-08-31)
|
1854
|
-
|
1855
|
-
__Fixed Bugs__
|
1856
|
-
|
1857
|
-
- Remove trailing new lines in the AddImageFileFormatToAlchemyPictures migration. (#1107)
|
1858
|
-
If you migrated already, use the `alchemy:upgrade:fix_picture_format` rake task.
|
1859
|
-
- Don't overwrite the fallback options when rendering a picture (#1113)
|
1860
|
-
- Fixes the messages mailer views generator (#1118)
|
1861
|
-
|
1862
|
-
## 3.4.0 (2016-08-02)
|
1863
|
-
|
1864
|
-
__New Features__
|
1865
|
-
|
1866
|
-
- `MessagesMailer` (formerly known as `Messages`) now inherits from `ApplicationMailer`
|
1867
|
-
when it is defined.
|
1868
|
-
- Adds time based published pages: The public status of a page is now made of two time stamps:
|
1869
|
-
`public_on` and `public_until`
|
1870
|
-
- Send page expiration cache headers
|
1871
|
-
- Adds an +EssencePictureView+ class responsible for rendering the `essence_picture_view` partial
|
1872
|
-
- Adds a file type filter to file archive
|
1873
|
-
- Allow setting the type of EssenceText input fields in the elements.yml via `settings[:input_type]`
|
1874
|
-
- Adds support for defining custom searchable attributes in resources
|
1875
|
-
- Automatically add tag management to admin module views, when the resource model
|
1876
|
-
has been set to `acts_as_taggable`.
|
1877
|
-
- Automatically add scope filters to admin module views, when the resource model
|
1878
|
-
has the class method `alchemy_resource_filters` defined.
|
1879
|
-
|
1880
|
-
__Notable Changes__
|
1881
|
-
|
1882
|
-
- `Messages` mailer class has been renamed to `MessagesMailer`
|
1883
|
-
- Removed the auto-magically merge of Ability classes (#1022)
|
1884
|
-
- Replace jQueryUI datepicker with $.datetimepicker
|
1885
|
-
- Thumbnails now render in original file format, but GIFs will always be flattened
|
1886
|
-
- Pictures will be rendered in original file format by default
|
1887
|
-
- Allow SVG files to be rendered as EssencePicture
|
1888
|
-
- When using Alchemy content outside of Alchemy, `current_ability` is no longer
|
1889
|
-
included with `Alchemy::ControllerActions` to prevent method clashes. If you
|
1890
|
-
need access to `current_ability` you also need to include `Alchemy::AbilityHelper`
|
1891
|
-
- Asset manifests are now installed into `vendor/assets` folder in order to provide easy customization
|
1892
|
-
Please don't use alchemy/custom files any more. Instead require your customizations in the manifests.
|
1893
|
-
- Removes the default_scope from Language on_site current while ensuring to load languages by code
|
1894
|
-
from current site only.
|
1895
|
-
- Removes the `Language.get_default` method alias for `Language.default`
|
1896
|
-
- Move site select into pages and languages module to avoid confusion about curent site (#1067)
|
1897
|
-
- List pages from all sites in currently locked pages tabs and Dashboard widget (#1067)
|
1898
|
-
- The locked value on page is now a timestamp (`locked_at`), so we can order locked pages by (#1070)
|
1899
|
-
- Persist user in dummy app
|
1900
|
-
- When publishing a page with the publish button, `Page#public_on` does not get
|
1901
|
-
reset to the current time when it is already set and in the past, and
|
1902
|
-
`Page#public_until` does not get nilled when it is in the future.
|
1903
|
-
|
1904
|
-
__Fixed Bugs__
|
1905
|
-
|
1906
|
-
- Fix table width for attachments and resources on small window sizes.
|
1907
|
-
- Generators don't delete directories any more (#850)
|
1908
|
-
- Some elements crashed the backend's JS when being saved (#1091)
|
1909
|
-
|
1910
|
-
## 3.3.3 (2016-09-11)
|
1911
|
-
|
1912
|
-
- Fix bug that rendered duplicate nested elements within a cell after copying a parent element.
|
1913
|
-
|
1914
|
-
## 3.3.2 (2016-08-02)
|
1915
|
-
|
1916
|
-
- Use relative url for page preview frame in order to prevent cross origin errors (#1076)
|
1917
|
-
|
1918
|
-
## 3.3.1 (2016-06-20)
|
1919
|
-
|
1920
|
-
- Fix use of Alchemy::Resource with namespaced models (#729)
|
1921
|
-
- Allow setting the type of EssenceText input fields in the elements.yml via `settings[:input_type]`
|
1922
|
-
- Admin locale switching does not switch language tree any more (#1065)
|
1923
|
-
- Fixes bug where old site session causes not found errors (#1047)
|
1924
|
-
- Fix inability to add nested elements on pages with cells (#1039)
|
1925
|
-
- Skip upgrader if no element definitions are found (#1060)
|
1926
|
-
- Fix selecting the active cell for elements with nested elements (#1041)
|
1927
|
-
|
1928
|
-
## 3.3.0 (2016-05-18)
|
1929
|
-
|
1930
|
-
__New Features__
|
1931
|
-
|
1932
|
-
- Add support for Sprockets 3
|
1933
|
-
- Add support for jquery-rails 4.1
|
1934
|
-
- Show a welcome page, if no users or pages are present yet
|
1935
|
-
- Namespace spec files
|
1936
|
-
- Image library slideshow
|
1937
|
-
- Global "current locked pages" tabs
|
1938
|
-
- New option `linkable: false` for `EssencePicture`
|
1939
|
-
- Allow custom routing for admin backend
|
1940
|
-
- Resource forms can now have Tinymce enabled by adding `.tinymce` class
|
1941
|
-
- `Alchemy::EssenceFile` now has a `link_text` attribute, so the editor is able to change the linked text of the download link.
|
1942
|
-
- Enable to pass multiple page layout names to `on_page_layout` callbacks
|
1943
|
-
- Client side rendering of the pages admin
|
1944
|
-
- Deprecate `redirect_index` configuration
|
1945
|
-
- Add Nestable elements feature
|
1946
|
-
- Default site in seeder is now configurable
|
1947
|
-
- Frontpage name and page layout are now editable when creating new language trees
|
1948
|
-
|
1949
|
-
__Notable Changes__
|
1950
|
-
|
1951
|
-
- Essence generator does not namespace the model into `Alchemy` namespace anymore
|
1952
|
-
- New simplified uploader that allows to drag and drop images onto the archive everywhere in your app
|
1953
|
-
- Model names in uploader `allowed_filetypes` setting are now namespaced.
|
1954
|
-
Please be sure to run `rake alchemy:upgrade` to update your settings.
|
1955
|
-
- Allow uppercase country codes
|
1956
|
-
- Uses Time.current instead of Time.now for proper timezone support
|
1957
|
-
- Adds year to `created_at` column of attachments table
|
1958
|
-
- Removes "available contents" feature.
|
1959
|
-
- Use Ransack for Admin Resources filtering, sorting and searching
|
1960
|
-
- Renames Alchemy translation helpers from `_t` to `Alchemy.t`
|
1961
|
-
- Do not append geometry string to preprocess option
|
1962
|
-
- Skip the default locale in urls
|
1963
|
-
- Add a proper index route and do not redirect to page anymore
|
1964
|
-
- Updates Tinymce to 4.2.3
|
1965
|
-
- Moves page status info into reusable partial
|
1966
|
-
- Refactors factories into individual requirable files
|
1967
|
-
- Do not raise error if `element_ids` params is missing while ordering elements
|
1968
|
-
- Removes old middleware for rescueing legacy sessions
|
1969
|
-
- Use rails tag helpers instead of plain HTML for meta tags
|
1970
|
-
- Remove the duplication of `#decription` vs. `#definition`
|
1971
|
-
- Resource CSV export now includes ID column and does not truncate large text columns anymore
|
1972
|
-
- `Alchemy::Attachment#urlname` now returns always an escaped urlname w/o format suffix and does not convert the `file_name` once on create anymore
|
1973
|
-
- Speed up the admin interface significantly when handling a large amount of pages
|
1974
|
-
|
1975
|
-
__Fixed Bugs__
|
1976
|
-
|
1977
|
-
- Add `locale` to `Alchemy::Language` to avoid errors for languages with missing locale files #831
|
1978
|
-
- Fixes `Alchemy::PageLayout.get_all_by_attributes`
|
1979
|
-
- Fix tag list display in picture library
|
1980
|
-
- Animated GIFs display correctly
|
1981
|
-
- EssenceSelect grouped options tags
|
1982
|
-
- Add missing element partials for dummy app
|
1983
|
-
- Eliminate an SQL lookup on frontend cached element partials
|
1984
|
-
- Add missing german and spanish translation for element toolbar
|
1985
|
-
- Use the site_id parameter and the session only in the Admin area
|
1986
|
-
- Render 404 if accessing an unpublished index page that has "on page layout" callbacks
|
1987
|
-
|
1988
|
-
[Full Change Log](https://github.com/AlchemyCMS/alchemy_cms/compare/v3.2.1...v3.3.0)
|
1989
|
-
|
1990
|
-
## 3.2.1 (2016-03-31)
|
1991
|
-
|
1992
|
-
__Fixed Bugs__
|
1993
|
-
|
1994
|
-
- Fix constant lookup issues with registered abilites
|
1995
|
-
- Fix: `EssenceSelect` grouped `select_values`
|
1996
|
-
- Respect `:reverse` option when sorting elements
|
1997
|
-
- Directly updates position in database while sorting contents
|
1998
|
-
- Don't show trashed elements when using a fallback
|
1999
|
-
- Fixes wrong week number in datepicker
|
2000
|
-
|
2001
|
-
[Full Change Log](https://github.com/AlchemyCMS/alchemy_cms/compare/v3.2.0...v3.2.1)
|
2002
|
-
|
2003
|
-
## 3.2.0 (2015-07-31)
|
2004
|
-
|
2005
|
-
[Release Notes](https://github.com/AlchemyCMS/alchemy_cms/releases/tag/v3.2.0)
|
2006
|
-
|
2007
|
-
## 3.1.3 (2016-01-21)
|
2008
|
-
|
2009
|
-
[Full Change Log](https://github.com/AlchemyCMS/alchemy_cms/compare/v3.1.1...v3.1.3)
|
2010
|
-
|
2011
|
-
## 3.1.2 (yanked)
|
2012
|
-
|
2013
|
-
No changes
|
2014
|
-
|
2015
|
-
## 3.1.1 (2015-03-17)
|
2016
|
-
|
2017
|
-
[Full Change Log](https://github.com/AlchemyCMS/alchemy_cms/compare/v3.1.0...v3.1.1)
|
2018
|
-
|
2019
|
-
## 3.1.0 (2015-02-24)
|
2020
|
-
|
2021
|
-
[Release Notes](https://github.com/AlchemyCMS/alchemy_cms/releases/tag/v3.1.0)
|
2022
|
-
|
2023
|
-
## 3.0.4 (2015-03-17)
|
2024
|
-
|
2025
|
-
[Full Change Log](https://github.com/AlchemyCMS/alchemy_cms/compare/v3.0.3...v3.0.4)
|
2026
|
-
|
2027
|
-
## 3.0.3 (2014-12-24)
|
2028
|
-
|
2029
|
-
[Full Change Log](https://github.com/AlchemyCMS/alchemy_cms/compare/v3.0.2...v3.0.3)
|
2030
|
-
|
2031
|
-
## 3.0.2 (2014-09-30)
|
2032
|
-
|
2033
|
-
[Full Change Log](https://github.com/AlchemyCMS/alchemy_cms/compare/v3.0.1...v3.0.2)
|
2034
|
-
|
2035
|
-
## 3.0.1 (2014-09-11)
|
2036
|
-
|
2037
|
-
[Full Change Log](https://github.com/AlchemyCMS/alchemy_cms/compare/v3.0.0...v3.0.1)
|
2038
|
-
|
2039
|
-
## 3.0.0 (2014-07-03)
|
2040
|
-
|
2041
|
-
[Release Notes](https://github.com/AlchemyCMS/alchemy_cms/releases/tag/v3.0.0)
|