ckeditor5 1.32.4 → 1.32.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6af082abe532b357713c5721bc2d09ac997b82575ebb489972660a04bd54a8cc
4
- data.tar.gz: 96b3756f2871e601a2d94fee7b219891d797ed68e494febdf2fde55d9e327094
3
+ metadata.gz: a823708453c1259c6aa82e178cf0f3e0f17458f58d46f2bfaaadd71dc4b30b3f
4
+ data.tar.gz: e60257cabef32447ce94e7ebd8b3049af8766d185ffa4efedce1b2e0474fb080
5
5
  SHA512:
6
- metadata.gz: 21253dd14871585157335c197667b4948e602e1e79aba499a3611870ca4051d5f862456cf0cdac575bf6d02ac4dfc143f49a1398065d679d5bc7d4b42f7000ff
7
- data.tar.gz: 63891a4f79289dabea5ba74d2a328fc09b37161078851beb6120ef4a2928d233c7ea0b2921c2df53b5dbb311ac7ecb8268eee3f45867ccb9b078c8d7f5261c6a
6
+ metadata.gz: 9d96855d941c8c01561766d1776c33f93f6fb15f1f0175546e71f46cf95dee4539796b77839c1a11d8cbc6da2859d70a13c719cfdf9f573b7b188d64a588ca63
7
+ data.tar.gz: 1839f5f3cbd1f27ee33f5360e9c5457debbecb898ef0b018b94d75321114d41e2273ec34bb5fc38e46e80c2ec681b9462e881c636299c832e897409ad014c1b6
data/README.md CHANGED
@@ -92,7 +92,7 @@ CKEditor5::Rails.configure do
92
92
 
93
93
  # Optionally, you can specify version of CKEditor 5 to use.
94
94
  # If it's not specified the default version specified in the gem will be used.
95
- # version '46.0.2'
95
+ # version '46.0.3'
96
96
 
97
97
  # Upload images to the server using the simple upload adapter, instead of Base64 encoding.
98
98
  # simple_upload_adapter
@@ -219,7 +219,7 @@ You can create your own by defining it in the `config/initializers/ckeditor5.rb`
219
219
 
220
220
  CKEditor5::Rails.configure do
221
221
  # It's possible to override the default preset right in the initializer.
222
- version '46.0.2'
222
+ version '46.0.3'
223
223
 
224
224
  # New presets inherit properties from the default preset defined in the initializer.
225
225
  # In this example, the custom preset inherits everything from default but disables the menubar:
@@ -229,7 +229,7 @@ CKEditor5::Rails.configure do
229
229
 
230
230
  # In order to define preset from scratch, you can use the `inherit: false` option.
231
231
  presets.define :blank_preset, inherit: false do
232
- version '46.0.2'
232
+ version '46.0.3'
233
233
 
234
234
  # It tells the integration to fetch the newest security patches and bug fixes.
235
235
  # It may be disabled, but it's highly recommended to keep it enabled to avoid
@@ -351,7 +351,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
351
351
  CKEditor5::Rails.configure do
352
352
  # ... other configuration
353
353
 
354
- version '46.0.2'
354
+ version '46.0.3'
355
355
  end
356
356
  ```
357
357
 
@@ -363,7 +363,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key
363
363
  CKEditor5::Rails.configure do
364
364
  # ... other configuration
365
365
 
366
- version '46.0.2', apply_patches: false
366
+ version '46.0.3', apply_patches: false
367
367
  end
368
368
  ```
369
369
 
@@ -1343,7 +1343,7 @@ It may be useful when you want to define a preset based on the current user or r
1343
1343
  class ApplicationController < ActionController::Base
1344
1344
  def show
1345
1345
  @preset = ckeditor5_preset do
1346
- version '46.0.2'
1346
+ version '46.0.3'
1347
1347
 
1348
1348
  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
1349
1349
  :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
@@ -1378,7 +1378,7 @@ If you want to override the preset defined in the initializer, you can search fo
1378
1378
  class ApplicationController < ActionController::Base
1379
1379
  def show
1380
1380
  @preset = ckeditor5_preset(:default).override do
1381
- version '46.0.2'
1381
+ version '46.0.3'
1382
1382
 
1383
1383
  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
1384
1384
  :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
@@ -1551,7 +1551,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
1551
1551
 
1552
1552
  CKEditor5::Rails.configure do
1553
1553
  gpl
1554
- version '46.0.2'
1554
+ version '46.0.3'
1555
1555
  end
1556
1556
  ```
1557
1557
 
@@ -2,8 +2,8 @@
2
2
 
3
3
  module CKEditor5
4
4
  module Rails
5
- VERSION = '1.32.4'
5
+ VERSION = '1.32.5'
6
6
 
7
- DEFAULT_CKEDITOR_VERSION = '46.0.2'
7
+ DEFAULT_CKEDITOR_VERSION = '46.0.3'
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ckeditor5
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.32.4
4
+ version: 1.32.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mateusz Bagiński
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-08-20 00:00:00.000000000 Z
12
+ date: 2025-09-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails