Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2024

Bumps the ckeditor group with 27 updates:

Package From To
@ckeditor/ckeditor5-alignment 43.1.1 43.3.0
@ckeditor/ckeditor5-autosave 43.1.1 43.3.0
@ckeditor/ckeditor5-basic-styles 43.1.1 43.3.0
@ckeditor/ckeditor5-block-quote 43.1.1 43.3.0
@ckeditor/ckeditor5-code-block 43.1.1 43.3.0
@ckeditor/ckeditor5-editor-classic 43.1.1 43.3.0
@ckeditor/ckeditor5-engine 43.1.1 43.3.0
@ckeditor/ckeditor5-essentials 43.1.1 43.3.0
@ckeditor/ckeditor5-font 43.1.1 43.3.0
@ckeditor/ckeditor5-heading 43.1.1 43.3.0
@ckeditor/ckeditor5-highlight 43.1.1 43.3.0
@ckeditor/ckeditor5-horizontal-line 43.1.1 43.3.0
@ckeditor/ckeditor5-html-embed 43.1.1 43.3.0
@ckeditor/ckeditor5-image 43.1.1 43.3.0
@ckeditor/ckeditor5-indent 43.1.1 43.3.0
@ckeditor/ckeditor5-link 43.1.1 43.3.0
@ckeditor/ckeditor5-list 43.1.1 43.3.0
@ckeditor/ckeditor5-mention 43.1.1 43.3.0
@ckeditor/ckeditor5-paragraph 43.1.1 43.3.0
@ckeditor/ckeditor5-paste-from-office 43.1.1 43.3.0
@ckeditor/ckeditor5-remove-format 43.1.1 43.3.0
@ckeditor/ckeditor5-table 43.1.1 43.3.0
@ckeditor/ckeditor5-theme-lark 43.1.1 43.3.0
@ckeditor/ckeditor5-ui 43.1.1 43.3.0
@ckeditor/ckeditor5-undo 43.1.1 43.3.0
@ckeditor/ckeditor5-utils 43.1.1 43.3.0
@ckeditor/ckeditor5-widget 43.1.1 43.3.0

Updates @ckeditor/ckeditor5-alignment from 43.1.1 to 43.3.0

Release notes

Sourced from @​ckeditor/ckeditor5-alignment's releases.

v43.3.0

We are happy to announce the release of CKEditor 5 v43.3.0.

Release highlights

Performance improvements

We have improved how the editor handles the document structure by making it more reliable and efficient to access specific elements and verify their positions.

  • Node index and offset caching: The Node and NodeList elements now cache index and offset values, reducing the need for recalculations and significantly boosting overall performance during model operations.
  • Selection range validation: The newly implemented Position#isValid() method is also utilized to better validate selection ranges, ensuring more consistent behavior in various editing scenarios.
  • Performance improvements in numbers: The editor now loads content between 3x and, in some cases, up to 6x faster, depending on the type and size of the content. For instance, where a specific 200-page document previously took almost 25 seconds to load, the time has now been reduced to just 3.5 seconds.

We’re committed to ongoing performance enhancements, so you can expect even faster, smoother experience in future updates.

Export to Word watermark support

A new configuration option has been added to include a watermark when exporting documents to Word, providing additional flexibility in document branding and protection.

Notable bug fixes and improvements

  • Suggestions retention on revision restore: Suggestions are no longer lost in specific cases when restoring revisions with changes from multiple users. The revision tracking process has been improved to ensure that all operations, including markers, are handled and saved correctly during synchronization. This fix resolves issues where markers were previously not retained, ensuring consistent data handling in collaborative editing scenarios.
  • Action dropdown visibility fix: Resolved an issue where the action dropdown remained hidden after permission changes on comments. The dropdown now properly reflects updated permissions, allowing users to interact with the available actions seamlessly.
  • AI command enhancements:
    • Custom AI Commands are now correctly applied to individual dropdowns when only one group of comments is present, instead of the entire group.
    • Empty comment groups no longer render, improving UI clarity.
    • Fixed an issue where nested AI command menus would close unexpectedly when used within a balloon toolbar, preventing unintended behavior during selection.

Features

  • engine: Introduced the getChildAtOffset() method for model.Element and model.DocumentFragment. (commit)
  • engine: Introduced the Position#isValid() method to check whether the position exists in the current model tree. (commit)
  • export-word: Added a configuration setting for adding a watermark to generated documents.
  • revision-history: Introduced the RevisionTracker#getRevisionDocumentData() and RevisionTracker#getRevisionRootsAttributes() methods to the public scope of the editor API. You can use them to retrieve document data saved with the revision.
  • utils: Made FocusTracker extendable with other FocusTracker instances to allow logical focus tracking across separate DOM sub-trees (see #17277). (commit)

Bug fixes

  • ai: Empty AI Assistant command groups should not render in the UI.
  • ai: The AI Assistant command list should be flat when only one command group is available.
  • comments: Fixed an issue where the action dropdown remained hidden when permissions allowing actions on a comment changed.
  • engine: The content of an inline object should be handled as a flow root so whitespaces should be trimmed as the content of an inline object element is inside a block element. Closes #17199. (commit)
  • image: Handle existing picture element correctly on sources downcast. (commit)
  • link: No longer crash editor after removing link from image when LinkConfig#addTargetToExternalLinks: true is set. Closes ckeditor/ckeditor5#17252. (commit)
  • list-multi-level: Multi-level lists should display correctly in RTL mode for Decoupled Editor.
  • pagination: Improved pagination of large tables that are followed by block elements.
  • revision-history: Suggestions are no longer lost in some scenarios when restoring revisions in real-time collaboration.
  • ui: The dropdown menu component should not cause editor blur if used in a BalloonToolbar while the user hovers a nested menu. Closes #17277. (commit)
  • ui: Made the page unscrollable while the modal is visible. Closes #17093. (commit)

... (truncated)

Changelog

Sourced from @​ckeditor/ckeditor5-alignment's changelog.

43.3.0 (October 29, 2024)

We are happy to announce the release of CKEditor 5 v43.3.0.

Release highlights

Performance improvements

We have improved how the editor handles the document structure by making it more reliable and efficient to access specific elements and verify their positions.

  • Node index and offset caching: The Node and NodeList elements now cache index and offset values, reducing the need for recalculations and significantly boosting overall performance during model operations.
  • Selection range validation: The newly implemented Position#isValid() method is also utilized to better validate selection ranges, ensuring more consistent behavior in various editing scenarios.
  • Performance improvements in numbers: The editor now loads content between 3x and, in some cases, up to 6x faster, depending on the type and size of the content. For instance, where a specific 200-page document previously took almost 25 seconds to load, the time has now been reduced to just 3.5 seconds.

We’re committed to ongoing performance enhancements, so you can expect even faster, smoother experience in future updates.

Export to Word watermark support

A new configuration option has been added to include a watermark when exporting documents to Word, providing additional flexibility in document branding and protection.

Notable bug fixes and improvements

  • Suggestions retention on revision restore: Suggestions are no longer lost in specific cases when restoring revisions with changes from multiple users. The revision tracking process has been improved to ensure that all operations, including markers, are handled and saved correctly during synchronization. This fix resolves issues where markers were previously not retained, ensuring consistent data handling in collaborative editing scenarios.
  • Action dropdown visibility fix: Resolved an issue where the action dropdown remained hidden after permission changes on comments. The dropdown now properly reflects updated permissions, allowing users to interact with the available actions seamlessly.
  • AI command enhancements:
    • Custom AI Commands are now correctly applied to individual dropdowns when only one group of comments is present, instead of the entire group.
    • Empty comment groups no longer render, improving UI clarity.
    • Fixed an issue where nested AI command menus would close unexpectedly when used within a balloon toolbar, preventing unintended behavior during selection.

Features

  • engine: Introduced the getChildAtOffset() method for model.Element and model.DocumentFragment. (commit)
  • engine: Introduced the Position#isValid() method to check whether the position exists in the current model tree. (commit)
  • export-word: Added a configuration setting for adding a watermark to generated documents.
  • revision-history: Introduced the RevisionTracker#getRevisionDocumentData() and RevisionTracker#getRevisionRootsAttributes() methods to the public scope of the editor API. You can use them to retrieve document data saved with the revision.
  • utils: Made FocusTracker extendable with other FocusTracker instances to allow logical focus tracking across separate DOM sub-trees (see #17277). (commit)

Bug fixes

  • ai: Empty AI Assistant command groups should not render in the UI.
  • ai: The AI Assistant command list should be flat when only one command group is available.
  • comments: Fixed an issue where the action dropdown remained hidden when permissions allowing actions on a comment changed.
  • engine: The content of an inline object should be handled as a flow root so whitespaces should be trimmed as the content of an inline object element is inside a block element. Closes #17199. (commit)
  • image: Handle existing picture element correctly on sources downcast. (commit)
  • link: No longer crash editor after removing link from image when LinkConfig#addTargetToExternalLinks: true is set. Closes ckeditor/ckeditor5#17252. (commit)
  • list-multi-level: Multi-level lists should display correctly in RTL mode for Decoupled Editor.
  • pagination: Improved pagination of large tables that are followed by block elements.
  • revision-history: Suggestions are no longer lost in some scenarios when restoring revisions in real-time collaboration.
  • ui: The dropdown menu component should not cause editor blur if used in a BalloonToolbar while the user hovers a nested menu. Closes #17277. (commit)
  • ui: Made the page unscrollable while the modal is visible. Closes #17093. (commit)

... (truncated)

Commits
  • cce9594 Release: v43.3.0. [skip ci]
  • ccbcb73 Aligned plural forms.
  • 69e2b70 Use the latest ckeditor5-dev-* packages.
  • ee3d774 Align translations to changes in ckeditor5-dev-*.
  • c9f45ee Merge branch 'master' into ci/3825
  • f0fa900 Added missing language files with empty translations.
  • 71c7bf3 Add plugins flags.
  • 9c2f611 Aligned to ckeditor5-dev changes in translations.
  • 07e84bf Use the latest ckeditor5-dev-* packages.
  • 1992828 Merge branch 'master' into i/3772-esm
  • Additional commits viewable in compare view

Updates @ckeditor/ckeditor5-autosave from 43.1.1 to 43.3.0

Release notes

Sourced from @​ckeditor/ckeditor5-autosave's releases.

v43.3.0

We are happy to announce the release of CKEditor 5 v43.3.0.

Release highlights

Performance improvements

We have improved how the editor handles the document structure by making it more reliable and efficient to access specific elements and verify their positions.

  • Node index and offset caching: The Node and NodeList elements now cache index and offset values, reducing the need for recalculations and significantly boosting overall performance during model operations.
  • Selection range validation: The newly implemented Position#isValid() method is also utilized to better validate selection ranges, ensuring more consistent behavior in various editing scenarios.
  • Performance improvements in numbers: The editor now loads content between 3x and, in some cases, up to 6x faster, depending on the type and size of the content. For instance, where a specific 200-page document previously took almost 25 seconds to load, the time has now been reduced to just 3.5 seconds.

We’re committed to ongoing performance enhancements, so you can expect even faster, smoother experience in future updates.

Export to Word watermark support

A new configuration option has been added to include a watermark when exporting documents to Word, providing additional flexibility in document branding and protection.

Notable bug fixes and improvements

  • Suggestions retention on revision restore: Suggestions are no longer lost in specific cases when restoring revisions with changes from multiple users. The revision tracking process has been improved to ensure that all operations, including markers, are handled and saved correctly during synchronization. This fix resolves issues where markers were previously not retained, ensuring consistent data handling in collaborative editing scenarios.
  • Action dropdown visibility fix: Resolved an issue where the action dropdown remained hidden after permission changes on comments. The dropdown now properly reflects updated permissions, allowing users to interact with the available actions seamlessly.
  • AI command enhancements:
    • Custom AI Commands are now correctly applied to individual dropdowns when only one group of comments is present, instead of the entire group.
    • Empty comment groups no longer render, improving UI clarity.
    • Fixed an issue where nested AI command menus would close unexpectedly when used within a balloon toolbar, preventing unintended behavior during selection.

Features

  • engine: Introduced the getChildAtOffset() method for model.Element and model.DocumentFragment. (commit)
  • engine: Introduced the Position#isValid() method to check whether the position exists in the current model tree. (commit)
  • export-word: Added a configuration setting for adding a watermark to generated documents.
  • revision-history: Introduced the RevisionTracker#getRevisionDocumentData() and RevisionTracker#getRevisionRootsAttributes() methods to the public scope of the editor API. You can use them to retrieve document data saved with the revision.
  • utils: Made FocusTracker extendable with other FocusTracker instances to allow logical focus tracking across separate DOM sub-trees (see #17277). (commit)

Bug fixes

  • ai: Empty AI Assistant command groups should not render in the UI.
  • ai: The AI Assistant command list should be flat when only one command group is available.
  • comments: Fixed an issue where the action dropdown remained hidden when permissions allowing actions on a comment changed.
  • engine: The content of an inline object should be handled as a flow root so whitespaces should be trimmed as the content of an inline object element is inside a block element. Closes #17199. (commit)
  • image: Handle existing picture element correctly on sources downcast. (commit)
  • link: No longer crash editor after removing link from image when LinkConfig#addTargetToExternalLinks: true is set. Closes ckeditor/ckeditor5#17252. (commit)
  • list-multi-level: Multi-level lists should display correctly in RTL mode for Decoupled Editor.
  • pagination: Improved pagination of large tables that are followed by block elements.
  • revision-history: Suggestions are no longer lost in some scenarios when restoring revisions in real-time collaboration.
  • ui: The dropdown menu component should not cause editor blur if used in a BalloonToolbar while the user hovers a nested menu. Closes #17277. (commit)
  • ui: Made the page unscrollable while the modal is visible. Closes #17093. (commit)

... (truncated)

Changelog

Sourced from @​ckeditor/ckeditor5-autosave's changelog.

43.3.0 (October 29, 2024)

We are happy to announce the release of CKEditor 5 v43.3.0.

Release highlights

Performance improvements

We have improved how the editor handles the document structure by making it more reliable and efficient to access specific elements and verify their positions.

  • Node index and offset caching: The Node and NodeList elements now cache index and offset values, reducing the need for recalculations and significantly boosting overall performance during model operations.
  • Selection range validation: The newly implemented Position#isValid() method is also utilized to better validate selection ranges, ensuring more consistent behavior in various editing scenarios.
  • Performance improvements in numbers: The editor now loads content between 3x and, in some cases, up to 6x faster, depending on the type and size of the content. For instance, where a specific 200-page document previously took almost 25 seconds to load, the time has now been reduced to just 3.5 seconds.

We’re committed to ongoing performance enhancements, so you can expect even faster, smoother experience in future updates.

Export to Word watermark support

A new configuration option has been added to include a watermark when exporting documents to Word, providing additional flexibility in document branding and protection.

Notable bug fixes and improvements

  • Suggestions retention on revision restore: Suggestions are no longer lost in specific cases when restoring revisions with changes from multiple users. The revision tracking process has been improved to ensure that all operations, including markers, are handled and saved correctly during synchronization. This fix resolves issues where markers were previously not retained, ensuring consistent data handling in collaborative editing scenarios.
  • Action dropdown visibility fix: Resolved an issue where the action dropdown remained hidden after permission changes on comments. The dropdown now properly reflects updated permissions, allowing users to interact with the available actions seamlessly.
  • AI command enhancements:
    • Custom AI Commands are now correctly applied to individual dropdowns when only one group of comments is present, instead of the entire group.
    • Empty comment groups no longer render, improving UI clarity.
    • Fixed an issue where nested AI command menus would close unexpectedly when used within a balloon toolbar, preventing unintended behavior during selection.

Features

  • engine: Introduced the getChildAtOffset() method for model.Element and model.DocumentFragment. (commit)
  • engine: Introduced the Position#isValid() method to check whether the position exists in the current model tree. (commit)
  • export-word: Added a configuration setting for adding a watermark to generated documents.
  • revision-history: Introduced the RevisionTracker#getRevisionDocumentData() and RevisionTracker#getRevisionRootsAttributes() methods to the public scope of the editor API. You can use them to retrieve document data saved with the revision.
  • utils: Made FocusTracker extendable with other FocusTracker instances to allow logical focus tracking across separate DOM sub-trees (see #17277). (commit)

Bug fixes

  • ai: Empty AI Assistant command groups should not render in the UI.
  • ai: The AI Assistant command list should be flat when only one command group is available.
  • comments: Fixed an issue where the action dropdown remained hidden when permissions allowing actions on a comment changed.
  • engine: The content of an inline object should be handled as a flow root so whitespaces should be trimmed as the content of an inline object element is inside a block element. Closes #17199. (commit)
  • image: Handle existing picture element correctly on sources downcast. (commit)
  • link: No longer crash editor after removing link from image when LinkConfig#addTargetToExternalLinks: true is set. Closes ckeditor/ckeditor5#17252. (commit)
  • list-multi-level: Multi-level lists should display correctly in RTL mode for Decoupled Editor.
  • pagination: Improved pagination of large tables that are followed by block elements.
  • revision-history: Suggestions are no longer lost in some scenarios when restoring revisions in real-time collaboration.
  • ui: The dropdown menu component should not cause editor blur if used in a BalloonToolbar while the user hovers a nested menu. Closes #17277. (commit)
  • ui: Made the page unscrollable while the modal is visible. Closes #17093. (commit)

... (truncated)

Commits
  • cce9594 Release: v43.3.0. [skip ci]
  • ccbcb73 Aligned plural forms.
  • 69e2b70 Use the latest ckeditor5-dev-* packages.
  • ee3d774 Align translations to changes in ckeditor5-dev-*.
  • c9f45ee Merge branch 'master' into ci/3825
  • f0fa900 Added missing language files with empty translations.
  • 71c7bf3 Add plugins flags.
  • 9c2f611 Aligned to ckeditor5-dev changes in translations.
  • 07e84bf Use the latest ckeditor5-dev-* packages.
  • 1992828 Merge branch 'master' into i/3772-esm
  • Additional commits viewable in compare view

Updates @ckeditor/ckeditor5-basic-styles from 43.1.1 to 43.3.0

Release notes

Sourced from @​ckeditor/ckeditor5-basic-styles's releases.

v43.3.0

We are happy to announce the release of CKEditor 5 v43.3.0.

Release highlights

Performance improvements

We have improved how the editor handles the document structure by making it more reliable and efficient to access specific elements and verify their positions.

  • Node index and offset caching: The Node and NodeList elements now cache index and offset values, reducing the need for recalculations and significantly boosting overall performance during model operations.
  • Selection range validation: The newly implemented Position#isValid() method is also utilized to better validate selection ranges, ensuring more consistent behavior in various editing scenarios.
  • Performance improvements in numbers: The editor now loads content between 3x and, in some cases, up to 6x faster, depending on the type and size of the content. For instance, where a specific 200-page document previously took almost 25 seconds to load, the time has now been reduced to just 3.5 seconds.

We’re committed to ongoing performance enhancements, so you can expect even faster, smoother experience in future updates.

Export to Word watermark support

A new configuration option has been added to include a watermark when exporting documents to Word, providing additional flexibility in document branding and protection.

Notable bug fixes and improvements

  • Suggestions retention on revision restore: Suggestions are no longer lost in specific cases when restoring revisions with changes from multiple users. The revision tracking process has been improved to ensure that all operations, including markers, are handled and saved correctly during synchronization. This fix resolves issues where markers were previously not retained, ensuring consistent data handling in collaborative editing scenarios.
  • Action dropdown visibility fix: Resolved an issue where the action dropdown remained hidden after permission changes on comments. The dropdown now properly reflects updated permissions, allowing users to interact with the available actions seamlessly.
  • AI command enhancements:
    • Custom AI Commands are now correctly applied to individual dropdowns when only one group of comments is present, instead of the entire group.
    • Empty comment groups no longer render, improving UI clarity.
    • Fixed an issue where nested AI command menus would close unexpectedly when used within a balloon toolbar, preventing unintended behavior during selection.

Features

  • engine: Introduced the getChildAtOffset() method for model.Element and model.DocumentFragment. (commit)
  • engine: Introduced the Position#isValid() method to check whether the position exists in the current model tree. (commit)
  • export-word: Added a configuration setting for adding a watermark to generated documents.
  • revision-history: Introduced the RevisionTracker#getRevisionDocumentData() and RevisionTracker#getRevisionRootsAttributes() methods to the public scope of the editor API. You can use them to retrieve document data saved with the revision.
  • utils: Made FocusTracker extendable with other FocusTracker instances to allow logical focus tracking across separate DOM sub-trees (see #17277). (commit)

Bug fixes

  • ai: Empty AI Assistant command groups should not render in the UI.
  • ai: The AI Assistant command list should be flat when only one command group is available.
  • comments: Fixed an issue where the action dropdown remained hidden when permissions allowing actions on a comment changed.
  • engine: The content of an inline object should be handled as a flow root so whitespaces should be trimmed as the content of an inline object element is inside a block element. Closes #17199. (commit)
  • image: Handle existing picture element correctly on sources downcast. (commit)
  • link: No longer crash editor after removing link from image when LinkConfig#addTargetToExternalLinks: true is set. Closes ckeditor/ckeditor5#17252. (commit)
  • list-multi-level: Multi-level lists should display correctly in RTL mode for Decoupled Editor.
  • pagination: Improved pagination of large tables that are followed by block elements.
  • revision-history: Suggestions are no longer lost in some scenarios when restoring revisions in real-time collaboration.
  • ui: The dropdown menu component should not cause editor blur if used in a BalloonToolbar while the user hovers a nested menu. Closes #17277. (commit)
  • ui: Made the page unscrollable while the modal is visible. Closes #17093. (commit)

... (truncated)

Changelog

Sourced from @​ckeditor/ckeditor5-basic-styles's changelog.

43.3.0 (October 29, 2024)

We are happy to announce the release of CKEditor 5 v43.3.0.

Release highlights

Performance improvements

We have improved how the editor handles the document structure by making it more reliable and efficient to access specific elements and verify their positions.

  • Node index and offset caching: The Node and NodeList elements now cache index and offset values, reducing the need for recalculations and significantly boosting overall performance during model operations.
  • Selection range validation: The newly implemented Position#isValid() method is also utilized to better validate selection ranges, ensuring more consistent behavior in various editing scenarios.
  • Performance improvements in numbers: The editor now loads content between 3x and, in some cases, up to 6x faster, depending on the type and size of the content. For instance, where a specific 200-page document previously took almost 25 seconds to load, the time has now been reduced to just 3.5 seconds.

We’re committed to ongoing performance enhancements, so you can expect even faster, smoother experience in future updates.

Export to Word watermark support

A new configuration option has been added to include a watermark when exporting documents to Word, providing additional flexibility in document branding and protection.

Notable bug fixes and improvements

  • Suggestions retention on revision restore: Suggestions are no longer lost in specific cases when restoring revisions with changes from multiple users. The revision tracking process has been improved to ensure that all operations, including markers, are handled and saved correctly during synchronization. This fix resolves issues where markers were previously not retained, ensuring consistent data handling in collaborative editing scenarios.
  • Action dropdown visibility fix: Resolved an issue where the action dropdown remained hidden after permission changes on comments. The dropdown now properly reflects updated permissions, allowing users to interact with the available actions seamlessly.
  • AI command enhancements:
    • Custom AI Commands are now correctly applied to individual dropdowns when only one group of comments is present, instead of the entire group.
    • Empty comment groups no longer render, improving UI clarity.
    • Fixed an issue where nested AI command menus would close unexpectedly when used within a balloon toolbar, preventing unintended behavior during selection.

Features

  • engine: Introduced the getChildAtOffset() method for model.Element and model.DocumentFragment. (commit)
  • engine: Introduced the Position#isValid() method to check whether the position exists in the current model tree. (commit)
  • export-word: Added a configuration setting for adding a watermark to generated documents.
  • revision-history: Introduced the RevisionTracker#getRevisionDocumentData() and RevisionTracker#getRevisionRootsAttributes() methods to the public scope of the editor API. You can use them to retrieve document data saved with the revision.
  • utils: Made FocusTracker extendable with other FocusTracker instances to allow logical focus tracking across separate DOM sub-trees (see #17277). (commit)

Bug fixes

  • ai: Empty AI Assistant command groups should not render in the UI.
  • ai: The AI Assistant command list should be flat when only one command group is available.
  • comments: Fixed an issue where the action dropdown remained hidden when permissions allowing actions on a comment changed.
  • engine: The content of an inline object should be handled as a flow root so whitespaces should be trimmed as the content of an inline object element is inside a block element. Closes #17199. (commit)
  • image: Handle existing picture element correctly on sources downcast. (commit)
  • link: No longer crash editor after removing link from image when LinkConfig#addTargetToExternalLinks: true is set. Closes ckeditor/ckeditor5#17252. (commit)
  • list-multi-level: Multi-level lists should display correctly in RTL mode for Decoupled Editor.
  • pagination: Improved pagination of large tables that are followed by block elements.
  • revision-history: Suggestions are no longer lost in some scenarios when restoring revisions in real-time collaboration.
  • ui: The dropdown menu component should not cause editor blur if used in a BalloonToolbar while the user hovers a nested menu. Closes #17277. (commit)
  • ui: Made the page unscrollable while the modal is visible. Closes #17093. (commit)

... (truncated)

Commits
  • cce9594 Release: v43.3.0. [skip ci]
  • ccbcb73 Aligned plural forms.
  • 69e2b70 Use the latest ckeditor5-dev-* packages.
  • ee3d774 Align translations to changes in ckeditor5-dev-*.
  • c9f45ee Merge branch 'master' into ci/3825
  • f0fa900 Added missing language files with empty translations.
  • 71c7bf3 Add plugins flags.
  • 9c2f611 Aligned to ckeditor5-dev changes in translations.
  • 07e84bf Use the latest ckeditor5-dev-* packages.
  • 1992828 Merge branch 'master' into i/3772-esm
  • Additional commits viewable in compare view

Updates @ckeditor/ckeditor5-block-quote from 43.1.1 to 43.3.0

Release notes

Sourced from @​ckeditor/ckeditor5-block-quote's releases.

v43.3.0

We are happy to announce the release of CKEditor 5 v43.3.0.

Release highlights

Performance improvements

We have improved how the editor handles the document structure by making it more reliable and efficient to access specific elements and verify their positions.

  • Node index and offset caching: The Node and NodeList elements now cache index and offset values, reducing the need for recalculations and significantly boosting overall performance during model operations.
  • Selection range validation: The newly implemented Position#isValid() method is also utilized to better validate selection ranges, ensuring more consistent behavior in various editing scenarios.
  • Performance improvements in numbers: The editor now loads content between 3x and, in some cases, up to 6x faster, depending on the type and size of the content. For instance, where a specific 200-page document previously took almost 25 seconds to load, the time has now been reduced to just 3.5 seconds.

We’re committed to ongoing performance enhancements, so you can expect even faster, smoother experience in future updates.

Export to Word watermark support

A new configuration option has been added to include a watermark when exporting documents to Word, providing additional flexibility in document branding and protection.

Notable bug fixes and improvements

  • Suggestions retention on revision restore: Suggestions are no longer lost in specific cases when restoring revisions with changes from multiple users. The revision tracking process has been improved to ensure that all operations, including markers, are handled and saved correctly during synchronization. This fix resolves issues where markers were previously not retained, ensuring consistent data handling in collaborative editing scenarios.
  • Action dropdown visibility fix: Resolved an issue where the action dropdown remained hidden after permission changes on comments. The dropdown now properly reflects updated permissions, allowing users to interact with the available actions seamlessly.
  • AI command enhancements:
    • Custom AI Commands are now correctly applied to individual dropdowns when only one group of comments is present, instead of the entire group.
    • Empty comment groups no longer render, improving UI clarity.
    • Fixed an issue where nested AI command menus would close unexpectedly when used within a balloon toolbar, preventing unintended behavior during selection.

Features

  • engine: Introduced the getChildAtOffset() method for model.Element and model.DocumentFragment. (commit)
  • engine: Introduced the Position#isValid() method to check whether the position exists in the current model tree. (commit)
  • export-word: Added a configuration setting for adding a watermark to generated documents.
  • revision-history: Introduced the RevisionTracker#getRevisionDocumentData() and RevisionTracker#getRevisionRootsAttributes() methods to the public scope of the editor API. You can use them to retrieve document data saved with the revision.
  • utils: Made FocusTracker extendable with other FocusTracker instances to allow logical focus tracking across separate DOM sub-trees (see #17277). (commit)

Bug fixes

  • ai: Empty AI Assistant command groups should not render in the UI.
  • ai: The AI Assistant command list should be flat when only one command group is available.
  • comments: Fixed an issue where the action dropdown remained hidden when permissions allowing actions on a comment changed.
  • engine: The content of an inline object should be handled as a flow root so whitespaces should be trimmed as the content of an inline object element is inside a block element. Closes #17199. (commit)
  • image: Handle existing picture element correctly on sources downcast. (commit)
  • link: No longer crash editor after removing link from image when LinkConfig#addTargetToExternalLinks: true is set. Closes ckeditor/ckeditor5#17252. (commit)
  • list-multi-level: Multi-level lists should display correctly in RTL mode for Decoupled Editor.
  • pagination: Improved pagination of large tables that are followed by block elements.
  • revision-history: Suggestions are no longer lost in some scenarios when restoring revisions in real-time collaboration.
  • ui: The dropdown menu component should not cause editor blur if used in a BalloonToolbar while the user hovers a nested menu. Closes #17277. (commit...

    Description has been truncated

Bumps the ckeditor group with 27 updates:

| Package | From | To |
| --- | --- | --- |
| [@ckeditor/ckeditor5-alignment](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-alignment) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-autosave](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-autosave) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-basic-styles](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-basic-styles) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-block-quote](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-block-quote) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-code-block](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-code-block) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-editor-classic](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-editor-classic) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-engine](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-engine) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-essentials](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-essentials) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-font](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-font) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-heading](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-heading) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-highlight](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-highlight) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-horizontal-line](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-horizontal-line) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-html-embed](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-html-embed) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-image](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-image) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-indent](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-indent) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-link](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-link) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-list](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-list) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-mention](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-mention) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-paragraph](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-paragraph) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-paste-from-office](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-paste-from-office) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-remove-format](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-remove-format) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-table](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-table) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-theme-lark](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-theme-lark) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-ui](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-ui) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-undo](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-undo) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-utils](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-utils) | `43.1.1` | `43.3.0` |
| [@ckeditor/ckeditor5-widget](https://github.com/ckeditor/ckeditor5/tree/HEAD/packages/ckeditor5-widget) | `43.1.1` | `43.3.0` |


Updates `@ckeditor/ckeditor5-alignment` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-alignment)

Updates `@ckeditor/ckeditor5-autosave` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-autosave)

Updates `@ckeditor/ckeditor5-basic-styles` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-basic-styles)

Updates `@ckeditor/ckeditor5-block-quote` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-block-quote)

Updates `@ckeditor/ckeditor5-code-block` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-code-block)

Updates `@ckeditor/ckeditor5-editor-classic` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-editor-classic)

Updates `@ckeditor/ckeditor5-engine` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-engine)

Updates `@ckeditor/ckeditor5-essentials` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-essentials)

Updates `@ckeditor/ckeditor5-font` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-font)

Updates `@ckeditor/ckeditor5-heading` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-heading)

Updates `@ckeditor/ckeditor5-highlight` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-highlight)

Updates `@ckeditor/ckeditor5-horizontal-line` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-horizontal-line)

Updates `@ckeditor/ckeditor5-html-embed` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-html-embed)

Updates `@ckeditor/ckeditor5-image` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-image)

Updates `@ckeditor/ckeditor5-indent` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-indent)

Updates `@ckeditor/ckeditor5-link` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-link)

Updates `@ckeditor/ckeditor5-list` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-list)

Updates `@ckeditor/ckeditor5-mention` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-mention)

Updates `@ckeditor/ckeditor5-paragraph` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-paragraph)

Updates `@ckeditor/ckeditor5-paste-from-office` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-paste-from-office)

Updates `@ckeditor/ckeditor5-remove-format` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-remove-format)

Updates `@ckeditor/ckeditor5-table` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-table)

Updates `@ckeditor/ckeditor5-theme-lark` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-theme-lark)

Updates `@ckeditor/ckeditor5-ui` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-ui)

Updates `@ckeditor/ckeditor5-undo` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-undo)

Updates `@ckeditor/ckeditor5-utils` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-utils)

Updates `@ckeditor/ckeditor5-widget` from 43.1.1 to 43.3.0
- [Release notes](https://github.com/ckeditor/ckeditor5/releases)
- [Changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ckeditor/ckeditor5/commits/v43.3.0/packages/ckeditor5-widget)

---
updated-dependencies:
- dependency-name: "@ckeditor/ckeditor5-alignment"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-autosave"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-basic-styles"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-block-quote"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-code-block"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-editor-classic"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-engine"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-essentials"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-font"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-heading"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-highlight"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-horizontal-line"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-html-embed"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-image"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-indent"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-link"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-list"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-mention"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-paragraph"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-paste-from-office"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-remove-format"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-table"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-theme-lark"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-ui"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-undo"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-utils"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
- dependency-name: "@ckeditor/ckeditor5-widget"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ckeditor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 1, 2024
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2024

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Nov 13, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/ckeditor-64e8498e27 branch November 13, 2024 12:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant