alchemy_cms 7.1.1 → 7.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 158a3b005d476cb225569f0efa198ee7d9a5da5d056ba2125470d7bd21d2b99e
4
- data.tar.gz: 9a5d55fff7333965e9510cb45deab35a4db635f2e98fdde484cf450656fa64bc
3
+ metadata.gz: 63a8036fd5b9c389fabfe14c5df6536ed7855e0718bb8163a61140bbf83673fc
4
+ data.tar.gz: 3921217db9ef5fcd38376239462db3d782de236cc360a15cf4539152346f70fd
5
5
  SHA512:
6
- metadata.gz: 56860b5eaf6cf7915bc90d5d96ac0f9d9e62bab6291a4d6d56f7a5f8e41dd451568c9ace0646c69a64e4541bddeaf45d2378726079012259149ad335cc70e8d1
7
- data.tar.gz: 2d0241d235446e3e9a5058abeb5bbb249e5809b7fdbd1266f851748260d2f877d01a16d338af4f3c974699a2bf03f390e06e1b6d78fe0d2c61047fe1606035c4
6
+ metadata.gz: 8f9198b7c07c9e961f39692f09e69b9534f9a5670e201590cc921588cc170a427091d12715f92626d1084dad5918d208e69872e3912bcb705b4784ee3724d34b
7
+ data.tar.gz: 5574bfca4fa4472e32920d22fab485399492ac7c5b19922c18bb5826ef872375cc10069a7dc1d443af9b91dcc358856c26c13ae5c9383a7e843cabc0c978dd4b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.1.3 (2024-02-19)
4
+
5
+ - Update tinymce to version 6.8.3 [#2727](https://github.com/AlchemyCMS/alchemy_cms/pull/2727) ([depfu](https://github.com/apps/depfu))
6
+ - [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))
7
+
8
+ ## 7.1.2 (2024-02-12)
9
+
10
+ - [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))
11
+ - [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))
12
+
3
13
  ## 7.1.1 (2024-01-31)
4
14
 
5
15
  - Translate collapse all elements button [#2711](https://github.com/AlchemyCMS/alchemy_cms/pull/2711) ([tvdeyen](https://github.com/tvdeyen))
data/alchemy_cms.gemspec CHANGED
@@ -51,7 +51,7 @@ Gem::Specification.new do |gem|
51
51
  gem.add_runtime_dependency "sassc-rails", ["~> 2.1"]
52
52
  gem.add_runtime_dependency "simple_form", [">= 4.0", "< 6"]
53
53
  gem.add_runtime_dependency "sprockets", [">= 3.0", "< 5"]
54
- gem.add_runtime_dependency "turbo-rails", [">= 1.4"]
54
+ gem.add_runtime_dependency "turbo-rails", [">= 1.4", "< 2"]
55
55
  gem.add_runtime_dependency "view_component", ["~> 3.0"]
56
56
 
57
57
  gem.add_development_dependency "capybara", ["~> 3.0"]
@@ -125,6 +125,7 @@
125
125
 
126
126
  display: grid;
127
127
  gap: 2 * $default-margin;
128
+ grid-auto-rows: min-content;
128
129
  grid-template-columns: repeat(
129
130
  auto-fill,
130
131
  minmax(var(--picture-thumbnail-width), auto)
@@ -9,7 +9,7 @@ module Alchemy
9
9
  helper "alchemy/admin/tags"
10
10
 
11
11
  before_action :load_resource,
12
- only: [:show, :edit, :update, :url, :destroy, :info]
12
+ only: [:show, :edit, :update, :url, :destroy]
13
13
 
14
14
  before_action :set_size, only: [:index, :show, :edit_multiple]
15
15
 
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Alchemy
4
- VERSION = "7.1.1"
4
+ VERSION = "7.1.3"
5
5
 
6
6
  def self.version
7
7
  VERSION
data/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "flatpickr": "^4.6.13",
18
18
  "keymaster": "^1.6.2",
19
19
  "sortablejs": "^1.15.2",
20
- "tinymce": "^6.8.2"
20
+ "tinymce": "^6.8.3"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@babel/core": "^7.23.7",