ckeditor5 1.31.2 → 1.31.3

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: fb62c0fd763e7d5ccc1a3d5a7fbfbe7e42f81f695ba3d81600500e797c2bab1d
4
- data.tar.gz: 06cbf3847d081a2c75bd984d775ae878083df87eef76e4b65e1d63df712f1e5a
3
+ metadata.gz: 58036c91a251e598ddaa14625e3590f4dd698617c7a64f7ff626c734555cf6e8
4
+ data.tar.gz: 0da0d610f410ce20f730c29dafa005be87888242097980a57b1d9dcb2ced2e16
5
5
  SHA512:
6
- metadata.gz: 608912e2c16c004ce1b36b388d8a48d3941ff8bda312cd1ba2448786f39ff73f92ed9a46b8d4c7089fc6aec237aaa4088b581fbaf915e5f7953616cd2dc22b78
7
- data.tar.gz: 9c1bdea5fe47703e9b934e763607bc4aecbfffd290b17a04e3122056449f107cb259b166fb8dd9b6173ba00e0fcb423eb397e725ee9f7efa5e988f88e5489145
6
+ metadata.gz: 27446b25e22bc2920180552f7e2b4bf0fff41943c094dd8bbfa8bd3955fbd6260da19e08a5aa2a7d1c01f054f9daf00b8070c8c973fd77f36146f29985d18c5e
7
+ data.tar.gz: c01371e3acd001b2c04e51d771b2e6639fbff4070f5e8855009e35fed6a347b3dc342a5f87b43f78383bb1767c778cfe0460313d2335e1468b4ba9435cd12b09
data/README.md CHANGED
@@ -91,7 +91,7 @@ CKEditor5::Rails.configure do
91
91
 
92
92
  # Optionally, you can specify version of CKEditor 5 to use.
93
93
  # If it's not specified the default version specified in the gem will be used.
94
- # version '45.1.0'
94
+ # version '45.2.0'
95
95
 
96
96
  # Upload images to the server using the simple upload adapter, instead of Base64 encoding.
97
97
  # simple_upload_adapter
@@ -216,7 +216,7 @@ You can create your own by defining it in the `config/initializers/ckeditor5.rb`
216
216
 
217
217
  CKEditor5::Rails.configure do
218
218
  # It's possible to override the default preset right in the initializer.
219
- version '45.1.0'
219
+ version '45.2.0'
220
220
 
221
221
  # New presets inherit properties from the default preset defined in the initializer.
222
222
  # In this example, the custom preset inherits everything from default but disables the menubar:
@@ -226,7 +226,7 @@ CKEditor5::Rails.configure do
226
226
 
227
227
  # In order to define preset from scratch, you can use the `inherit: false` option.
228
228
  presets.define :blank_preset, inherit: false do
229
- version '45.1.0'
229
+ version '45.2.0'
230
230
 
231
231
  # It tells the integration to fetch the newest security patches and bug fixes.
232
232
  # It may be disabled, but it's highly recommended to keep it enabled to avoid
@@ -348,7 +348,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
348
348
  CKEditor5::Rails.configure do
349
349
  # ... other configuration
350
350
 
351
- version '45.1.0'
351
+ version '45.2.0'
352
352
  end
353
353
  ```
354
354
 
@@ -360,7 +360,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key
360
360
  CKEditor5::Rails.configure do
361
361
  # ... other configuration
362
362
 
363
- version '45.1.0', apply_patches: false
363
+ version '45.2.0', apply_patches: false
364
364
  end
365
365
  ```
366
366
 
@@ -1340,7 +1340,7 @@ It may be useful when you want to define a preset based on the current user or r
1340
1340
  class ApplicationController < ActionController::Base
1341
1341
  def show
1342
1342
  @preset = ckeditor5_preset do
1343
- version '45.1.0'
1343
+ version '45.2.0'
1344
1344
 
1345
1345
  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
1346
1346
  :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
@@ -1375,7 +1375,7 @@ If you want to override the preset defined in the initializer, you can search fo
1375
1375
  class ApplicationController < ActionController::Base
1376
1376
  def show
1377
1377
  @preset = ckeditor5_preset(:default).override do
1378
- version '45.1.0'
1378
+ version '45.2.0'
1379
1379
 
1380
1380
  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
1381
1381
  :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
@@ -1548,7 +1548,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
1548
1548
 
1549
1549
  CKEditor5::Rails.configure do
1550
1550
  gpl
1551
- version '45.1.0'
1551
+ version '45.2.0'
1552
1552
  end
1553
1553
  ```
1554
1554
 
@@ -2,8 +2,8 @@
2
2
 
3
3
  module CKEditor5
4
4
  module Rails
5
- VERSION = '1.31.2'
5
+ VERSION = '1.31.3'
6
6
 
7
- DEFAULT_CKEDITOR_VERSION = '45.1.0'
7
+ DEFAULT_CKEDITOR_VERSION = '45.2.0'
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.31.2
4
+ version: 1.31.3
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-05-15 00:00:00.000000000 Z
12
+ date: 2025-06-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails