ckeditor5 1.33.0 → 1.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/README.md +8 -8
 - data/lib/ckeditor5/rails/version.rb +2 -2
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: '06689bb968ff5b3aa635e2bfc9e1095d1c239e4704b63d1da22a4da695225ffa'
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 6fad6258e0ae6199f9a29269b2620cb2f30e8b9671aad11da655466d94fe5ae4
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 65a461a6df42312dfcbdfc255c6d1c247da59405b7bcc49be886f22156fd0621d397ef87c617366692b2fdb8c272b99ce79ad62036df243e458862d840cb58bd
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ab6b25123f690831f64f521ad518b2d1bb4e59681086b4e330b2c5a2fc3a7c7a18bafb99e916ac974d3f84f9bd1d96a9e0b5d77cd80235398459a82604ce1a37
         
     | 
    
        data/README.md
    CHANGED
    
    | 
         @@ -96,7 +96,7 @@ CKEditor5::Rails.configure do 
     | 
|
| 
       96 
96 
     | 
    
         | 
| 
       97 
97 
     | 
    
         
             
              # Optionally, you can specify version of CKEditor 5 to use.
         
     | 
| 
       98 
98 
     | 
    
         
             
              # If it's not specified the default version specified in the gem will be used.
         
     | 
| 
       99 
     | 
    
         
            -
              # version '47. 
     | 
| 
      
 99 
     | 
    
         
            +
              # version '47.1.0'
         
     | 
| 
       100 
100 
     | 
    
         | 
| 
       101 
101 
     | 
    
         
             
              # Upload images to the server using the simple upload adapter, instead of Base64 encoding.
         
     | 
| 
       102 
102 
     | 
    
         
             
              # simple_upload_adapter
         
     | 
| 
         @@ -223,7 +223,7 @@ You can create your own by defining it in the `config/initializers/ckeditor5.rb` 
     | 
|
| 
       223 
223 
     | 
    
         | 
| 
       224 
224 
     | 
    
         
             
            CKEditor5::Rails.configure do
         
     | 
| 
       225 
225 
     | 
    
         
             
              # It's possible to override the default preset right in the initializer.
         
     | 
| 
       226 
     | 
    
         
            -
              version '47. 
     | 
| 
      
 226 
     | 
    
         
            +
              version '47.1.0'
         
     | 
| 
       227 
227 
     | 
    
         | 
| 
       228 
228 
     | 
    
         
             
              # New presets inherit properties from the default preset defined in the initializer.
         
     | 
| 
       229 
229 
     | 
    
         
             
              # In this example, the custom preset inherits everything from default but disables the menubar:
         
     | 
| 
         @@ -233,7 +233,7 @@ CKEditor5::Rails.configure do 
     | 
|
| 
       233 
233 
     | 
    
         | 
| 
       234 
234 
     | 
    
         
             
              # In order to define preset from scratch, you can use the `inherit: false` option.
         
     | 
| 
       235 
235 
     | 
    
         
             
              presets.define :blank_preset, inherit: false do
         
     | 
| 
       236 
     | 
    
         
            -
                version '47. 
     | 
| 
      
 236 
     | 
    
         
            +
                version '47.1.0'
         
     | 
| 
       237 
237 
     | 
    
         | 
| 
       238 
238 
     | 
    
         
             
                # It tells the integration to fetch the newest security patches and bug fixes.
         
     | 
| 
       239 
239 
     | 
    
         
             
                # It may be disabled, but it's highly recommended to keep it enabled to avoid
         
     | 
| 
         @@ -355,7 +355,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set 
     | 
|
| 
       355 
355 
     | 
    
         
             
            CKEditor5::Rails.configure do
         
     | 
| 
       356 
356 
     | 
    
         
             
              # ... other configuration
         
     | 
| 
       357 
357 
     | 
    
         | 
| 
       358 
     | 
    
         
            -
              version '47. 
     | 
| 
      
 358 
     | 
    
         
            +
              version '47.1.0'
         
     | 
| 
       359 
359 
     | 
    
         
             
            end
         
     | 
| 
       360 
360 
     | 
    
         
             
            ```
         
     | 
| 
       361 
361 
     | 
    
         | 
| 
         @@ -367,7 +367,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key 
     | 
|
| 
       367 
367 
     | 
    
         
             
            CKEditor5::Rails.configure do
         
     | 
| 
       368 
368 
     | 
    
         
             
              # ... other configuration
         
     | 
| 
       369 
369 
     | 
    
         | 
| 
       370 
     | 
    
         
            -
              version '47. 
     | 
| 
      
 370 
     | 
    
         
            +
              version '47.1.0', apply_patches: false
         
     | 
| 
       371 
371 
     | 
    
         
             
            end
         
     | 
| 
       372 
372 
     | 
    
         
             
            ```
         
     | 
| 
       373 
373 
     | 
    
         | 
| 
         @@ -1347,7 +1347,7 @@ It may be useful when you want to define a preset based on the current user or r 
     | 
|
| 
       1347 
1347 
     | 
    
         
             
            class ApplicationController < ActionController::Base
         
     | 
| 
       1348 
1348 
     | 
    
         
             
              def show
         
     | 
| 
       1349 
1349 
     | 
    
         
             
                @preset = ckeditor5_preset do
         
     | 
| 
       1350 
     | 
    
         
            -
                  version '47. 
     | 
| 
      
 1350 
     | 
    
         
            +
                  version '47.1.0'
         
     | 
| 
       1351 
1351 
     | 
    
         | 
| 
       1352 
1352 
     | 
    
         
             
                  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
         
     | 
| 
       1353 
1353 
     | 
    
         
             
                          :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
         
     | 
| 
         @@ -1382,7 +1382,7 @@ If you want to override the preset defined in the initializer, you can search fo 
     | 
|
| 
       1382 
1382 
     | 
    
         
             
            class ApplicationController < ActionController::Base
         
     | 
| 
       1383 
1383 
     | 
    
         
             
              def show
         
     | 
| 
       1384 
1384 
     | 
    
         
             
                @preset = ckeditor5_preset(:default).override do
         
     | 
| 
       1385 
     | 
    
         
            -
                  version '47. 
     | 
| 
      
 1385 
     | 
    
         
            +
                  version '47.1.0'
         
     | 
| 
       1386 
1386 
     | 
    
         | 
| 
       1387 
1387 
     | 
    
         
             
                  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
         
     | 
| 
       1388 
1388 
     | 
    
         
             
                          :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
         
     | 
| 
         @@ -1555,7 +1555,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w 
     | 
|
| 
       1555 
1555 
     | 
    
         | 
| 
       1556 
1556 
     | 
    
         
             
            CKEditor5::Rails.configure do
         
     | 
| 
       1557 
1557 
     | 
    
         
             
              gpl
         
     | 
| 
       1558 
     | 
    
         
            -
              version '47. 
     | 
| 
      
 1558 
     | 
    
         
            +
              version '47.1.0'
         
     | 
| 
       1559 
1559 
     | 
    
         
             
            end
         
     | 
| 
       1560 
1560 
     | 
    
         
             
            ```
         
     | 
| 
       1561 
1561 
     | 
    
         | 
    
        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.33. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.33.1
         
     | 
| 
       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-10- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2025-10-17 00:00:00.000000000 Z
         
     | 
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: rails
         
     |