48.0.0 (March 31, 2026)
We are happy to announce the release of CKEditor 5 v48.0.0.
Note
CKEditor 5 v47 remains the LTS release. If you are an LTS customer, stay on this version. The next releases in the v47.x line will be published for LTS customers only.
This major release improves CKEditor AI and tables, completes the sunset of old installation methods, changes the default Export to PDF converter API version, and introduces a unified structure for root-related configuration.
With this release, we have officially completed the transition to our modern installation methods — a milestone we are excited to reach! 🎉
First introduced in CKEditor 5 v42.0.0 in June 2024, these new methods were designed to simplify the developer workflow, reduce configuration overhead, and unlock faster, more consistent updates. With the old methods now fully retired, we can focus all our energy on delivering new features, improving performance, and moving the platform forward.
If your project still relies on old installation methods, migrate to the new installation methods to continue updating to this and later versions of CKEditor 5.
If migrating in the near term is not feasible, you can extend support for legacy installation methods with CKEditor 5 Long Term Support (LTS).
The styling of suggestion previews in AI Chat, AI Review, AI Quick Actions, and AI Translate now more closely matches the content in the editing area, providing a more consistent visual experience. Initialization has also been optimized by caching model requests, reducing redundant network calls.
Colors used across the AI package are now available through a shared CSS variable palette, making AI components easier to customize. A new programmatic API guide also describes how to interact with AI features from code.
We are introducing table alignment, giving users and integrators much more control over how tables are positioned relative to surrounding content. Tables can now be aligned left, or right with proper text wrapping — a feature well-known from CKEditor 4 that many users have been requesting.
Table alignment now uses CSS margin-based positioning by default, producing cleaner output. With a configuration option, teams which are migrating from CKEditor 4 can switch the output back to inlinse styles if needed.
We are also introducing the ability to switch table cell types between header (<th>) and data (<td>) in the Cell Properties panel.
Additionally header cells can be associated with related row or column with the scope attribute using the “Row header” or “Column header” options. These options help screen readers understand the table structure.
The editor now recognizes legacy HTML table attributes during upcasting, preserving styling from older HTML content and improving compatibility with CKEditor 4.
- The
<table border="N">attribute is now converted totableBorderWidth. - The
<table cellpadding="N">attribute is now converted totableCellPadding.
Several default table behaviors have also been updated:
- Conversion of
border="0"to borderless tables is now enabled by default. - Table alignment is now output as CSS classes by default. Using inline styles is still possible with the
useInlineStylesoption. - Support for the
scopeattribute in table header cells is now enabled by default. - Added support for table footers, thanks to a community contribution from @star-szr.
The Export to PDF feature now defaults to version 2 of the converter API, so you will enjoy a range of powerful enhancements right out of the box — including advanced header and footer configurations, flexible page sizing, PDF metadata editing, owner password protection, and digital signature support.
Since the new version may produce slightly different output than version 1, we recommend reviewing the new default configuration.
If you need to keep the previous behavior, simply set the version property in the exportPdf configuration object. See the feature documentation for full details on both API versions.
Editor configuration options related to roots, such as initialData, placeholder, and label, are now grouped under config.root for single-root editors and config.roots for multi-root editors. This provides a more consistent structure for configuring editor roots.
The previous top-level configuration options remain functional but are now deprecated. See the update guide for migration details.
Please refer to the update guide to learn more about these changes.
MAJOR BREAKING CHANGES ℹ️
-
ai, uploadcare: Simplified AI and Uploadcare configuration structures by replacing enums with plain string values. Refer to the official updating guide for AI and Uploadcare.
-
ai: Renamed the
checkproperty tocommandIdin theai.chat.shortcutsconfiguration. Refer to the official updating guide. -
ai: Introduced the
labelproperty in place ofdisplayedPromptin theai.quickActions.extraCommandsconfiguration. ThedisplayedPromptproperty is now required only for extra commands with type'chat'. Refer to the official updating guide. -
ai: Changed the
typeproperty values in theai.quickActions.extraCommandsconfiguration from uppercase to lowercase. Refer to the official updating guide. -
editor-multi-root: The
config.rootsAttributesandconfig.lazyRootsmulti-root editor config options have been removed. See #19885.The
config.rootsoption should be used instead to define the editor roots and their attributes.The
config.roots.<rootName>.modelAttributesproperty should be used to define the attributes of a root, while theconfig.roots.<rootName>.lazyLoadproperty should be used to define whether a root should be lazy loaded or not.Note that
config.roots.<rootName>.lazyLoadproperty is now deprecated and will be removed in the future. -
table: Table alignment is now output as CSS classes instead of inline styles by default. See #3225.
It can be reverted to the previous behaviour by setting the
useInlineStylesconfiguration option totrue. -
table: Changed the default value of
table.tableLayout.stripFigureFromContentTablefromtruetofalse. See #19771.As a result, the
<figure>wrapper is now preserved on content tables by default when the layout tables feature is enabled. -
CKEditor 5 DLL builds are no longer available due to the deprecation of legacy installation methods. See the migration path. See #17779.
-
CKEditor 5 packages no longer ship the
src/,theme/andlang/directories on npm due to the deprecation of legacy installation methods. See the migration path. See #17779. -
All styles previously shipped in
@ckeditor/ckeditor5-theme-larkhave been redistributed to the appropriate packages, which now provide those CSS assets directly.
MINOR BREAKING CHANGES ℹ️
-
core, editor-balloon, editor-classic, editor-decoupled, editor-inline, editor-multi-root: The editor no longer updates
config.initialDataduring startup. Useconfig.roots.main.initialDatafor single-root editors andconfig.roots.<rootName>.initialDatafor multi-root editors. See #19885. -
core, editor-balloon, editor-classic, editor-decoupled, editor-inline, editor-multi-root, watchdog: Added support for creating editors and watchdogs using configuration only, without passing a source element or initial data as the first argument. Passing a source element or initial data as the first argument is now deprecated but still supported. Use
config.attachToforClassicEditor,config.root.elementfor single-root editors, andconfig.roots.<rootName>.elementforMultiRootEditor. See #19887. -
ai: Moved the public API from
AIChattoAIChatController. This affects integrations that use theAIChatAPI. -
core: The default word breaking behavior in the content area has been updated to prevent unwanted breaks in tables. If you customized the
--ck-content-word-breakCSS variable in your integration, migrate to the new--ck-content-overflow-wrapvariable to retain the same effect. See #19986. -
engine: Deep schema verification during
model.insertContent()is now enabled by default. It is no longer behind an experimental flag. See #19217.Previously, this behavior required opting in via
config.experimentalFlags.modelInsertContentDeepSchemaVerification: true. Now it is always active, ensuring that all elements and attributes in inserted content follow the schema - including deeply nested structures.If needed, you can temporarily opt out by setting
config.experimentalFlags.modelInsertContentDeepSchemaVerification: false. Note that this option is deprecated and will be removed in a future release. -
export-pdf:
Export to PDFnow uses version2of the converter API by default. This may produce slightly different output, so update any converter options to match the new API. To keep version1, set theversionproperty in theexportPdfconfiguration object. -
import-word: The
ImportWordEditing#getToken()method is now asynchronous and returns a promise. -
mention: Mention elements in the data output now include the
data-mention-uidattribute. This affects only integrations that define custom mention downcast converters. If you defined one, update it to includedata-mention-uidin the output and omit it during clipboard operations; see the update guide. -
table: The improved handling of table heading rows is now enabled by default. Rows are no longer incorrectly marked or moved as header rows when earlier rows are not header rows. See #19431.
-
table: Added new block-level left and right alignment options. The editor also recognizes equivalent inline margin styles and converts them to these alignment types. See #3225.
-
table: The
shallowoption used withTableUtils#setHeadingRowsandTableUtils#setHeadingColumnshas been renamed toupdateCellType. See #19431. -
table: Added support for importing HTML tables with the legacy
border="0"attribute as borderless tables. Closes #19038. -
table: The experimental handling of the legacy
border="0"HTML attribute is now enabled by default. If you hadconfig.experimentalFlags.upcastTableBorderZeroAttributesin your configuration, remove it because the flag is no longer recognized. See #19038. -
track-changes: Moved
TrackChangesEditing#registerBlockAttribute()andTrackChangesEditing#registerInlineAttribute()to theSuggestionConversionplugin in theckeditor5-collaboration-corepackage.The purpose and behavior of these methods remains the same.
-
track-changes: Suggestion marker DOM elements now use the
data-suggestionattribute consistently.This may affect custom code or CSS that relies on
data-suggestion-id. -
ui: The scope of the
.ck-reset_all-excludedclass has been expanded to also include the container wearing that class (e.g. to limit inheritance of font properties).Because of this, elements of the CKEditor user interface excluded from the CSS reset by the usage of the
.ck-reset_all-excludedclass may be prone to unexpected styling. Please make sure to verify the visual styling of such UI elements after updating to this version. -
Updated to TypeScript
5.5.4.
-
ai:
AIChatControllerplugin now firesreplyCreatedandinteractionCreatedevents when a newAIReplyorAIChatInteractionis created. -
ai: Added the
ai.chat.context.alwaysAddSelectionconfiguration option. When enabled, the document selection is added to the AI Chat context automatically. This option is disabled by default. -
export-pdf:
Export to PDFnow uses version2of the converter API by default. To keep version1, set theversionproperty in theexportPdfconfiguration object. -
footnotes: Added support for configuring the items available in the footnotes list styles dropdown. Pass the
listStylesarray in the configuration to choose which list styles are shown. -
footnotes: Added support for the
arabic-indiclist style in footnotes. It is not shown in the dropdown by default, but it can be added to the list of available styles using thelistStylesconfiguration option. -
remove-format: The remove format feature now clears inherited formatting from empty paragraphs and other block elements. Closes #19851.
-
table: Introduced support for changing table cell types between
dataandheader. Closes #16730. -
table: Introduced support for the
scopeattribute in table header cells to improve semantic markup and screen reader accessibility. This feature is enabled by default and can be disabled by settingconfig.table.tableCellProperties.scopedHeaderstofalse. Closes #3175. -
table: Added support for table footers. You can now specify the number of footer rows in a table. The table row context menu has been updated with a new
Footer rowtoggle to control this setting. Closes #12952.This feature is disabled by default and can be enabled by setting
config.table.enableFooterstotrue.Thanks to @star-szr.
-
table: Preserved table borders from legacy HTML content. Closes #19633.
When loading HTML content that uses the deprecated
borderattribute on tables, the editor now keeps the original border width instead of ignoring it. -
table: Preserved table cell padding from legacy HTML content. Closes #19634.
When loading HTML content that uses the deprecated
cellpaddingattribute on tables, the editor now keeps the original cell padding instead of ignoring it.
-
ai: Fixed an issue where new lines were ignored in the user message displayed in the AI Chat feed.
-
ai: Reset the "Show changes" button state after the balloon for an AI Quick Action is displayed.
-
ai: Fixed the incorrect order of user messages and AI agent responses in the AI Chat feed when loading a conversation from history.
-
ai: Fixed an error thrown when the user stopped an ongoing AI Chat interaction and the remaining replies were not flushed to the UI.
-
ai: Fixed a console error that could occur when AI Quick Actions were closed during response streaming.
-
ai: Fixed an error thrown by CKEditor AI features when processing content that contains mentions. See #20010.
-
comments: Fixed inline annotations so they stay attached to the target element when it scrolls inside its parent container.
-
code-block: Fixed inconsistent vertical spacing around code blocks in the content area. Code blocks now use explicit vertical margins that match other block widgets. Closes #19982.
-
core: Fixed excessive word breaking in tables rendered in the content area. Words will now only break when they genuinely overflow their container, preventing awkward splits in narrow table columns. Closes #19986.
-
engine: Removed the unintended public exports
autoParagraphEmptyRoots,isParagraphable, andwrapInParagraph.These utilities were not part of the supported public API.
-
engine: Gradients in background styles are no longer ignored and are properly normalized. Closes #19787.
-
engine: Fixed background normalization so it no longer drops layers from the
backgroundCSS shorthand. Multi-layer backgrounds are now parsed and serialized correctly. See #19787. -
footnotes: Fixed the footnotes configuration typings to use
defaultListStyleinstead ofdefaultStyle. -
import-word: Improved the initialization time of the
ImportWordEditingplugin. Token retrieval now runs in the background, so it does not block editor startup. -
link: Removed the unintended public export
ensureSafeUrl.This utility was not part of the supported public API.
-
real-time-collaboration: Fixed the inconsistent font family in collaboration user markers.
-
show-blocks: Fixed the
Show blocksfeature so block labels render in all editor types when thedirattribute is present either on the editable element itself or on its ancestor wrapper. Closes #19866. -
track-changes: Fixed suggestion marker DOM elements that used
data-suggestion-idinstead ofdata-suggestion. -
ui: Updated the CSS reset rules so
.ck-reset_all-excludedalso applies to the container that uses this class. Closes #19967.This change reduces the impact of the CKEditor's
.ck-reset_allclass in DOM elements that are explicitly excluded from the reset by the.ck-reset_all-excludedclass. -
ui: Disabling a menu bar menu now also closes it if it was open, preventing an open panel from remaining in a non-interactive state. Closes #18214.
-
core, editor-balloon, editor-classic, editor-decoupled, editor-inline, editor-multi-root, watchdog: Reorganized root-related editor configuration under
config.rootfor single-root editors andconfig.rootsfor multi-root editors. Closes #19885.The
config.initialData,config.placeholder, andconfig.labeloptions are deprecated in favor ofconfig.root.initialData,config.root.placeholder, andconfig.root.label. In multi-root editors, define these options per root usingconfig.roots.<rootName>.initialData,config.roots.<rootName>.placeholder, andconfig.roots.<rootName>.label. -
paste-from-office, table: Introduced new table block alignments,
blockLeftandblockRight, allowing tables to be aligned to the left or right without text wrapping. The table properties balloon now includes two new buttons to easily apply these alignments. Closes #3225, #6174, #8412, #8752, #9982, #10867, #14921, #17932, #19337.Added additional spacing between a table and the surrounding text when wrapping is enabled. This prevents issues such as list markers overlapping with the table when placed next to each other.
Added support for pasting to and from MS Word for all table alignment types:
left,right,center,blockLeft, andblockRight. -
collaboration-core, track-changes: Moved
TrackChangesEditing#registerBlockAttribute()andTrackChangesEditing#registerInlineAttribute()to theSuggestionConversionplugin in theckeditor5-collaboration-corepackage. -
ai:
AIChatControlleris now a public class. Moved public API fromAIChattoAIChatControllerto avoid duplication. -
ai: Decreased the line height in the AI Chat prompt input field to match feed messages.
-
ai:
AIChat#addSelectionToChatContext()now returnsvoidinstead ofPromise. -
ai: Suggestion previews in AI features now follow the styling of the content in the editing area more closely.
-
ai: Optimized AI features initialization by caching model requests, reducing redundant network calls and improving load performance.
-
ai: Improved handling of agent responses in the Markdown format.
-
ai: Marked selected AI programmatic APIs as experimental. These APIs are production-ready but may change in minor releases without the standard deprecation policy.
-
ai: Added a shared CSS variable palette for colors used across the
ckeditor5-aipackage.This makes AI components easier to customize.
-
ai: Removed the built-in Amazon Bedrock integration in the legacy AI Assistant. The
AWSTextAdapterclass remains available but now throws an error when used, and this change does not affect CKEditor AI. If you rely on this integration, contact support. -
ckbox: Fixed an issue where the CKBox dialog was not visible in fullscreen mode. Closes #19290.
-
engine:
Model#hasContent()can now checkModelSelectionandModelDocumentSelectioninstances. See #19847. -
markdown-gfm: Enhanced
MarkdownGfmMdToHtmlto support custom plugins and to export the default plugin chain used by the Markdown parser. -
utils: Introduced
Rect.getDomElementRects()method that conveniently retrieves allRectsof a DOM element while preserving their source for further processing (e.g.Rect#getVisible()). -
Replaced string-based soft requirements with plugin constructors across selected packages to improve developer experience and align plugin dependency handling across repositories. This update also adjusts package metadata and dependencies to match the new constructor-based requirements. See #17779. Closes #19747.
The following dependencies no longer rely on soft requirements:
ckeditor5-ai:CloudServices.ckeditor5-ckbox:LinkEditing,PictureEditing,ImageUtils,ImageEditing,ImageUploadEditing,ImageUploadProgress,CloudServices.ckeditor5-ckfinder:Link,LinkEditing,CKFinderUploadAdapter.ckeditor5-easy-image:CloudServices,ImageUpload.ckeditor5-emoji:Mention.ckeditor5-export-pdf:CloudServices.ckeditor5-export-word:CloudServices.ckeditor5-heading:Paragraph.ckeditor5-import-word:CloudServices.ckeditor5-link:ImageEditing,ImageUtils,ImageBlockEditing.ckeditor5-list-multi-level:ListEditing.ckeditor5-merge-fields:ImageUtils,ImageEditing,Mention.ckeditor5-paste-from-office-enhanced:PasteFromOffice.ckeditor5-real-time-collaboration:Comments,CommentsRepository,CloudServices,RevisionHistory,TrackChanges,TrackChangesEditing.ckeditor5-revision-history:Users.ckeditor5-slash-command:Mention.ckeditor5-style:GeneralHtmlSupport.ckeditor5-track-changes:Comments,CommentsRepository,Annotations,EditorAnnotations.ckeditor5-typing:Delete,Input.ckeditor5-uploadcare:PictureEditing,ImageUploadEditing,ImageUploadProgress,ImageEditing,ImageUtils.
-
Updated
es-toolkittov1.45.1. -
Updated translations.
Check out the Versioning policy guide for more information.
Released packages (summary)
Major releases (contain major breaking changes):
- @ckeditor/ckeditor5-ai: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-uploadcare: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-editor-multi-root: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-table: v47.6.1 => v48.0.0
Minor releases (contain minor breaking changes):
- @ckeditor/ckeditor5-core: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-editor-balloon: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-editor-classic: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-editor-decoupled: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-editor-inline: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-engine: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-export-pdf: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-import-word: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-track-changes: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-ui: v47.6.1 => v48.0.0
Releases containing new features:
- @ckeditor/ckeditor5-footnotes: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-remove-format: v47.6.1 => v48.0.0
Other releases:
- @ckeditor/ckeditor5-adapter-ckfinder: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-alignment: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-autoformat: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-autosave: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-basic-styles: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-block-quote: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-bookmark: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-case-change: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-ckbox: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-ckfinder: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-clipboard: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-cloud-services: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-code-block: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-collaboration-core: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-comments: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-document-outline: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-easy-image: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-email: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-emoji: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-enter: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-essentials: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-export-inline-styles: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-export-word: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-find-and-replace: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-font: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-format-painter: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-fullscreen: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-heading: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-highlight: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-horizontal-line: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-html-embed: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-html-support: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-icons: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-image: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-indent: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-language: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-line-height: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-link: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-list: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-list-multi-level: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-markdown-gfm: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-media-embed: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-mention: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-merge-fields: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-minimap: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-operations-compressor: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-page-break: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-pagination: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-paragraph: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-paste-from-office: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-paste-from-office-enhanced: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-real-time-collaboration: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-restricted-editing: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-revision-history: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-select-all: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-show-blocks: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-slash-command: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-source-editing: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-source-editing-enhanced: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-special-characters: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-style: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-template: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-typing: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-undo: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-upload: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-utils: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-watchdog: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-widget: v47.6.1 => v48.0.0
- @ckeditor/ckeditor5-word-count: v47.6.1 => v48.0.0
- ckeditor5: v47.6.1 => v48.0.0
- ckeditor5-premium-features: v47.6.1 => v48.0.0
47.6.2 (April 8, 2026)
We are releasing CKEditor 5 v47.6.2, a patch for the v47 line that removes the no-longer-functional Amazon Bedrock AI integration in the legacy AI Assistant plugin.
- ai: Removed the built-in Amazon Bedrock integration in the legacy AI Assistant. The
AWSTextAdapterclass remains available but now throws an error when used, and this change does not affect CKEditor AI. If you rely on this integration, contact support.
Check out the Versioning policy guide for more information.
Released packages (summary)
Other releases:
- @ckeditor/ckeditor5-adapter-ckfinder: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-ai: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-alignment: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-autoformat: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-autosave: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-basic-styles: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-block-quote: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-bookmark: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-case-change: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-ckbox: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-ckfinder: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-clipboard: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-cloud-services: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-code-block: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-collaboration-core: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-comments: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-core: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-document-outline: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-easy-image: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-editor-balloon: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-editor-classic: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-editor-decoupled: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-editor-inline: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-editor-multi-root: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-email: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-emoji: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-engine: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-enter: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-essentials: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-export-inline-styles: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-export-pdf: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-export-word: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-find-and-replace: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-font: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-footnotes: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-format-painter: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-fullscreen: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-heading: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-highlight: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-horizontal-line: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-html-embed: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-html-support: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-icons: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-image: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-import-word: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-indent: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-language: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-line-height: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-link: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-list: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-list-multi-level: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-markdown-gfm: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-media-embed: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-mention: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-merge-fields: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-minimap: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-operations-compressor: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-page-break: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-pagination: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-paragraph: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-paste-from-office: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-paste-from-office-enhanced: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-real-time-collaboration: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-remove-format: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-restricted-editing: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-revision-history: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-select-all: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-show-blocks: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-slash-command: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-source-editing: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-source-editing-enhanced: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-special-characters: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-style: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-table: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-template: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-theme-lark: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-track-changes: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-typing: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-ui: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-undo: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-upload: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-uploadcare: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-utils: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-watchdog: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-widget: v47.6.1 => v47.6.2
- @ckeditor/ckeditor5-word-count: v47.6.1 => v47.6.2
- ckeditor5: v47.6.1 => v47.6.2
- ckeditor5-collaboration: v47.6.1 => v47.6.2
- ckeditor5-premium-features: v47.6.1 => v47.6.2
47.6.1 (March 11, 2026)
We are releasing CKEditor 5 v47.6.1, a patch that fixed three regressions discovered after v47.6.0.
- engine, undo: Fixed undo marker restoration for markers spanning multiple paragraphs. Previously, comments and suggestions could be restored to incorrect ranges. Closes #19916.
- ai: Resolved an issue where AI Chat would crash when attempting to open a past conversation that was created by a model no longer available.
- widget: Fixed a regression where the caret (
|) jumped over an empty paragraph when navigating with arrow keys near widgets. Closes #19812.
Check out the Versioning policy guide for more information.
Released packages (summary)
Other releases:
- @ckeditor/ckeditor5-adapter-ckfinder: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-ai: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-alignment: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-autoformat: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-autosave: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-basic-styles: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-block-quote: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-bookmark: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-case-change: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-ckbox: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-ckfinder: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-clipboard: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-cloud-services: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-code-block: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-collaboration-core: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-comments: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-core: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-document-outline: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-easy-image: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-editor-balloon: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-editor-classic: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-editor-decoupled: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-editor-inline: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-editor-multi-root: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-email: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-emoji: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-engine: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-enter: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-essentials: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-export-inline-styles: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-export-pdf: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-export-word: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-find-and-replace: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-font: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-footnotes: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-format-painter: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-fullscreen: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-heading: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-highlight: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-horizontal-line: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-html-embed: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-html-support: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-icons: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-image: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-import-word: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-indent: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-language: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-line-height: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-link: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-list: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-list-multi-level: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-markdown-gfm: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-media-embed: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-mention: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-merge-fields: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-minimap: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-operations-compressor: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-page-break: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-pagination: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-paragraph: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-paste-from-office: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-paste-from-office-enhanced: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-real-time-collaboration: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-remove-format: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-restricted-editing: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-revision-history: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-select-all: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-show-blocks: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-slash-command: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-source-editing: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-source-editing-enhanced: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-special-characters: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-style: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-table: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-template: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-theme-lark: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-track-changes: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-typing: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-ui: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-undo: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-upload: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-uploadcare: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-utils: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-watchdog: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-widget: v47.6.0 => v47.6.1
- @ckeditor/ckeditor5-word-count: v47.6.0 => v47.6.1
- ckeditor5: v47.6.0 => v47.6.1
- ckeditor5-collaboration: v47.6.0 => v47.6.1
- ckeditor5-premium-features: v47.6.0 => v47.6.1
47.6.0 (March 4, 2026)
We are excited to announce the release of CKEditor 5 v47.6.0.
A Cross-Site Scripting (XSS) vulnerability has been discovered in the General HTML Support feature (CVE-2026-28343). This vulnerability could be triggered by inserting specially crafted markup, leading to unauthorized JavaScript code execution if the editor instance used an unsafe General HTML Support configuration.
This vulnerability affects only installations where the editor configuration meets the following criteria:
- General HTML Support is enabled,
- General HTML Support configuration allows inserting unsafe markup (see Security section to learn more).
You can read more details in the relevant security advisory and contact us if you have more questions.
This release introduces new list indentation capabilities and expands the customization options for CKEditor AI, giving integrators more control over the AI-powered editing experience.
CKEditor AI is now available as an on-premises deployment, giving you full control over the AI service by running it on your infrastructure. The on-premises version supports everything the cloud option offers, plus:
- Custom AI models and providers — use your models from OpenAI, Google Cloud, Microsoft Azure, or self-hosted solutions.
- MCP (Model Context Protocol) support — extend the AI with custom external tools by connecting MCP servers, enabling use cases like searching internal knowledge bases or querying company databases directly from the AI chat.
Learn more about deployment options and MCP support.
The AI Review feature now supports custom review commands defined by integrators. Until now, the review was limited to built-in commands like proofreading, clarity, readability, and tone adjustment. With this release, you can create review commands tailored to your editorial guidelines, brand voice, or domain-specific quality standards.
Custom commands are registered via config.ai.review.extraCommands and made visible in the UI through config.ai.review.availableCommands. The same option lets you reorder, filter, or shorten the list of built-in commands to match your needs. See the documentation for details.
We are introducing AI Chat Shortcuts, a new opt-in plugin that displays configurable shortcut buttons in the AI Chat panel before the first message is sent. Shortcuts provide clear, actionable entry points that guide users toward the most useful AI capabilities. From launching a predefined prompt to starting a specific review or translation flow to navigating directly to the Review or Translate tab.
Integrators define shortcuts with a name, icon, and an action. Each shortcut can also configure which AI capabilities (model, web search, reasoning) are active for the prompt. Learn more in the documentation.
We are streamlining and standardizing the way list indentation is handled. With improved UX, it is now possible to indent whole lists and also individual list items with consistent styling and no custom implementation required.
This improvement is compatible with Paste from Office, Export to Word, Export to PDF, and Track Changes plugins. It also provides RTL support.
We upgraded @aws-sdk/client-bedrock-runtime to the latest version to address a recently disclosed security vulnerability in the fast-xml-parser dependency. We marked this update as a minor breaking change due to the use of dynamic imports in one of the underlying packages, which may impact certain build environments.
Warning
The action is required only if you use the legacy CKEditor AI Assistant with a dedicated editor bundle.
If you use webpack to build an editor bundle, configure it to bundle dynamic imports eagerly:
module: {
parser: {
javascript: {
dynamicImportMode: 'eager'
}
}
}If you do not use CKEditor AI with a dedicated bundle, no action is required.
Please note that the old installation methods will only remain available up to CKEditor 5 v48.0.0, which is planned for release at the beginning of Q2 2026. For more timeline details, refer to the dedicated GitHub issue.
In CKEditor 5 v42.0.0 in June 2024, we introduced new installation methods designed to improve and simplify the developer workflow. Soon, they will be the only available paths to install and use CKEditor 5.
If your project still relies on old installation methods, now is a good time to plan your next steps. We recommend choosing between these two options:
- Migrate to the new installation methods, which are the recommended path for most users. The new installation methods provide a cleaner setup, easier upgrades, and better alignment with future CKEditor 5 releases.
- Consider CKEditor 5 Long-Term Support (LTS). If migrating in the near term is not feasible, you can extend support for legacy installation methods.
MINOR BREAKING CHANGES ℹ️
-
ai: Simplified the default greeting message shown when starting a new AI Chat conversation. To restore the previous message content, set
config.ai.chat.welcomeMessageto the following:"Hi, I'm your AI assistant. Think of me as your writing buddy, reviewer, or research partner. I can suggest changes to your document, help generate ideas, offer feedback, discuss attached files, and much more!"
-
ai: Updated
@aws-sdk/client-bedrock-runtimeto version3.994.0. This update introduced dynamic imports in a dependency, which may affect some build environments.
-
ai: Added the
config.ai.review.availableCommandsconfiguration option to customize which review commands are shown in the AI Review tab. -
ai: Introduced the
AIChatShortcutsplugin, which displays configurable shortcuts in the AI Chat feed when starting a new conversation. -
ai: Added support for custom AI Review commands. Custom commands can now be configured using
config.ai.review.extraCommands. -
export-pdf: Added the
enable_mirror_marginsoption to the V2 PDF export converter API, allowing margins to alternate between odd and even pages for double-sided layouts. -
html-support: Added support for the
[sandbox]attribute on<iframe>elements rendered in the editing view. Filtering rules can be adjusted using thehtmlSupport.htmlIframeSandboxconfiguration option. -
indent: Added list indentation integration to the
IndentBlockfeature (enabled by default). Closes #19490.Added commands for whole-list indentation (
indentBlockListandoutdentBlockList) and list-item indentation (indentBlockListItemandoutdentBlockListItem). Indentation can be rendered usingmargin-left/margin-rightstyles (offset-based) or CSS classes (class-based). -
list: Added support for the
arabic-indiclist style type in the list properties plugin. Closes #19802.
- ai: Fixed an issue where using DLLs for the
AIpackage together with theTrackChangesplugin could fail due to aSuggestionConversionplugin conflict. - ai: Fixed an issue where AI Quick Actions content overflowed in the preview window.
- ai: Starting or loading an AI chat conversation no longer closes unrelated open dialogs in the editor.
- ai: Displayed the
Selected contentlabel instead of""when theAsk AIaction is used on selections that include non-text content, such as an image without a caption. - ai: Displayed text from all selected table cells in the chat context pill after using
Ask AIon a selection inside a table. - ai: AI Review and AI Translate no longer throw errors when users click "Stop generating" after some changes have already been generated.
- engine: Treated the
[srcdoc]attribute of<iframe>elements as unsafe and sanitized it in the editing pipeline. Restricted the[src]attribute of<iframe>elements to disallowjavascript:anddata:URLs containing whitespace characters. - link: Added support for defining multiple manual link decorators that operate on the same attributes. If an automatic decorator conflicts with a manual one, only the manual one is used. Closes #19695.
- table: Improved accessibility by reflecting table captions in the figure element
aria-labelledbyattribute. This change improves screen reader labeling for tables. Closes #15979. - table: Preserved the
<figure>wrapper on content tables whentable.tableLayout.stripFigureFromContentTableis set tofalseand the layout tables plugin is enabled. Closes #19771. - track-changes: Fixed an issue causing plugin conflicts when using the
TrackChangesDLL together with certain features, such asAI.
- ai: Added the
config.ai.chat.welcomeMessageconfiguration option to customize the greeting message shown in the AI Chat feed when starting a new conversation. - Updated translations.
Check out the Versioning policy guide for more information.
Released packages (summary)
Minor releases (contain minor breaking changes):
- @ckeditor/ckeditor5-ai: v47.5.0 => v47.6.0
Releases containing new features:
- @ckeditor/ckeditor5-export-pdf: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-indent: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-list: v47.5.0 => v47.6.0
Other releases:
- @ckeditor/ckeditor5-adapter-ckfinder: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-alignment: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-autoformat: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-autosave: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-basic-styles: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-block-quote: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-bookmark: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-case-change: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-ckbox: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-ckfinder: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-clipboard: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-cloud-services: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-code-block: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-collaboration-core: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-comments: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-core: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-document-outline: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-easy-image: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-editor-balloon: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-editor-classic: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-editor-decoupled: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-editor-inline: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-editor-multi-root: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-email: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-emoji: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-engine: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-enter: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-essentials: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-export-inline-styles: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-export-word: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-find-and-replace: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-font: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-footnotes: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-format-painter: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-fullscreen: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-heading: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-highlight: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-horizontal-line: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-html-embed: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-html-support: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-icons: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-image: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-import-word: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-language: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-line-height: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-link: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-list-multi-level: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-markdown-gfm: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-media-embed: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-mention: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-merge-fields: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-minimap: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-operations-compressor: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-page-break: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-pagination: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-paragraph: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-paste-from-office: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-paste-from-office-enhanced: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-real-time-collaboration: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-remove-format: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-restricted-editing: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-revision-history: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-select-all: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-show-blocks: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-slash-command: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-source-editing: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-source-editing-enhanced: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-special-characters: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-style: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-table: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-template: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-theme-lark: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-track-changes: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-typing: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-ui: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-undo: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-upload: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-uploadcare: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-utils: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-watchdog: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-widget: v47.5.0 => v47.6.0
- @ckeditor/ckeditor5-word-count: v47.5.0 => v47.6.0
- ckeditor5: v47.5.0 => v47.6.0
- ckeditor5-collaboration: v47.5.0 => v47.6.0
- ckeditor5-premium-features: v47.5.0 => v47.6.0
47.5.0 (February 11, 2026)
We are happy to announce the release of CKEditor 5 v47.5.0.
CKEditor 5 v47.5.0 is a minor update that improves AI-assisted editing workflows and provides access to the new version of the Export to PDF feature.
The AI Translate feature of CKEditor AI allows users to translate entire documents on the go. It provides a user interface similar to AI Review, but with translation-specific actions to streamline the process. The translation view displays the final translated document, with original snippets shown on the side for review and comparison.
We improved how multiple changes proposed by the AI Chat feature are presented. Suggested changes now appear as cards that can be previewed in the content and applied consistently in both single-change and multi-change scenarios. This release also includes several under-the-hood improvements.
The export to PDF feature now supports version 2 of the HTML to PDF converter API, bringing several powerful enhancements to document generation.
Advanced header and footer configurations allow for different content on first, odd, and even pages, with support for images. Page sizes can now be set using predefined formats or custom width and height values. The new converter API also enables editing of PDF metadata fields such as title, subject, and author.
Security capabilities have been expanded with owner password protection for controlling permissions and digital signature support using PKCS#12 certificates for authenticity verification. Additional improvements include compression control for specific use cases, more precise rendering options, and experimental automatic outline generation for creating a table of contents.
Please note that the old installation methods will no longer be available with CKEditor 5 v48.0.0, which is planned for release at the beginning of Q2 2026. For more timeline details, refer to the dedicated GitHub issue.
In CKEditor 5 v42.0.0 in June 2024, we introduced new installation methods designed to improve and simplify the developer workflow. Soon, they will be the only available paths to install and use CKEditor 5.
If your project still relies on old installation methods, now is a good time to plan your next steps. We recommend choosing between these two options:
- Migrate to the new installation methods, which are the recommended path for most users. The new installation methods provide a cleaner setup, easier upgrades, and better alignment with future CKEditor 5 releases.
- Consider CKEditor 5 Long Term Support (LTS). If migrating in the near term is not feasible, you can extend support for legacy installation methods.
Please refer to the update guide to learn more about these changes.
MINOR BREAKING CHANGES ℹ️
-
ai: The
ai.reviewMode.translationsconfiguration option has been moved toai.translate.languages. Theai.reviewModeconfiguration namespace has been removed.Together with the introduction of AI Translate feature and a separate translation tab, the configuration option to define a custom language list has been moved to a related
ai.translatenamespace. -
ai: The
AIEditorIntegrationplugin is now required to preview the changes suggested by the AI Chat feature in a dialog window. Previously, this functionality was enabled by just loading the mainAIChatplugin. Please make sure your integration loads theAIEditorIntegrationplugin in order to use this functionality. -
ai: The DOM structure of the AI Chat suggestions in conversation has been changed, which may affect integrations that customized the UI and/or rely on specific CSS selectors.
Please make sure to update your integrations to use the new DOM structure. Learn more about the changes in the migration guide provided in the project documentation.
-
ai: The DOM structure of the AI Chat suggestion preview dialog window has been changed which may affect integrations that customized the UI and/or rely on specific CSS selectors.
Please make sure to update your integrations to use the new DOM structure. Learn more about the changes in the migration guide provided in the project documentation.
-
ai:
AIChat#sendMessage()takesattributes: Record<string, unknown>as one of its parameters now, in place of formerquickActionData. This affects you only if you provided some customizations for the CKEditor AI chat feature. -
ai: Already existing chat conversations, which were created through AI Quick Action (e.g. "Explain" or "Summarize"), when loaded from chat history, will now display a full prompt instead of the short version. This affects only already created conversations.
-
ai: Replaced
ai.chat.models.modelSelectorAlwaysVisibleconfiguration option withai.chat.models.showModelSelector. The behavior has also been slightly updated. When set totrue(default), the model selector dropdown is shown (when multiple models are available), or the model name is displayed (when only one model is available). When set tofalse, the selector is hidden, regardless of the number of available models. -
ai: The model's configuration options have been moved from
config.ai.chat.modelstoconfig.ai.modelsto ensure consistent model configuration across all AI features. The model configuration is now applied uniformly in both AI Chat and AI Review Mode.
-
ai: Introduced the AI Translation tab.
A new tab dedicated to translating content has been introduced to CKEditor 5 AI. It focuses on working with translated content, streamlining the process of applying translation and making the whole process easier and faster for end users.
-
ai: Introduced a new look and improved operation of the AI Chat sidebar.
- The list of changes proposed by the AI now features a sleeker design and includes a button to apply individual changes.
- You can now preview suggested changes in a dialog window by clicking on a change in the sidebar.
- The AI suggestion preview dialog window has been made more compact for enhanced usability.
- Various bug fixes and other improvements.
-
ai: Introduced
AIChat#registerToolDataCallback(). It allows for handling custom data generated by your AI tools connected to CKEditor AI backend. -
ai: Introduced an API to allow inserting arbitrary HTML into the AI Chat feed, during AI response streaming.
The API is passed as one of the parameters to the callback registered using
AIChat#registerToolDataCallback(). -
ai: Introduced configuration option
ai.chat.initialConversationthat manages whether a new, or an existing past conversation is initially loaded in the AI Chat. -
ai: Added a new configuration option,
ai.chat.context.customItems, that allows using external context providers and custom context items (for example, IDs instead of actual files). -
export-pdf: Add support for version 2 of the HTML to PDF converter API.
-
image, paste-from-office: Images aligned left or right with wrapped text around them should now be correctly pasted and imported from Word into the editor. Previously, such images were incorrectly aligned using block left or block right styles. Closes #19636.
-
ai: The AI Review active suggestion highlight in the editor content no longer disappears due to content changes made by other users in RTC.
-
ai: The AI Review suggestions content in the sidebar is styled the same way as the editor content, giving it a uniform look.
-
ai: Fixed an issue where web search sources were not displayed correctly when loading conversations from chat history.
-
ai: The "Add context" button in AI chat will no longer be disabled if the only available context are external resources.
-
ai: Fixed an error when custom AI Quick Actions used a model that was not available in AI Chat.
-
ai: Accepting suggestions from conversations loaded via chat history no longer throws errors in the console.
-
ai: Fixed an issue where messages loaded from chat history could be incorrectly duplicated in a conversation.
-
ai:
AIQuickActionsUInow requiresAIConnectorto prevent authentication bugs when run standalone. -
comments: Fixed an issue where inline annotations were not displayed correctly when the editor was initialized in a hidden container.
-
email: Table block alignment now behaves as expected in Microsoft Outlook, preventing text from wrapping around the table when it should not.
-
html-support: An inline content (
<img>) should not be stripped out of<div>inside of<dd>tag. Closes #19709. -
table: Resizing the last column of a layout table no longer increases the column size more than expected. Closes #19644.
-
table: Fixed parsing units of deprecated table width attribute. Closes #19665.
-
ui:
BalloonToolbarwill no longer reposition itself when invisible in theContextualBalloonstack. Closes #19696.This prevents interfering with other features that might be using the
ContextualBalloonstack. -
utils:
Rect#getDomRangeRects()now sets the DOM Range as a source for each returnedRect, improving visibility and positioning of floating UIs that depend onRect#getVisible(). Closes #19705. -
utils:
Rect#getVisible()should better discover relationships between positioned and clipping parents. Closes #19707.This avoids issues with floating UIs that depend on
Rect#isVisible()and do not hide when they should.
-
basic-styles, engine, font, highlight, language: Fixed a discrepancy where applying a text attribute (such as bold) to a selection that included empty paragraphs did not set stored selection attributes on those paragraphs. See #19664. Closes #18430.
-
ai: Suggestions shown in AI Review sidebar now include all formatting (bold, italics, etc.) and non-plain text elements (for example, links).
-
ai:
AIChat#sendMessage()now allows passingattributes(arbitrary custom metadata) together with the submitted user message. You can also passattributes.displayedPromptto display a different prompt instead of the one used to query the AI model (userMessage). -
ai: If there is only one source of AI chat context available, it will be automatically selected when the "Add context" button is pressed instead of showing a dropdown with only one option.
-
ai: As more models are supported by the AI feature, only a set of recommended models will be displayed in the AI chat models dropdown. You can configure the list of displayed models via
ai.chat.models.displayedModelsin the config. -
ai: Conversations loaded from chat history are no longer blocked for models that are not recommended or not displayed, as long as the provider supports the model.
-
ai: Replaced
ai.chat.models.modelSelectorAlwaysVisibleconfiguration option withai.chat.models.showModelSelector. When set totrue(default), the model selector dropdown is shown (when multiple models are available), or the model name is displayed (when only one model is available). When set tofalse, the selector is hidden, regardless of the number of available models. -
ai: Added a clear explanation in AI Chat for conversations loaded from history, explaining why AI proposals (document modifications) for past conversations cannot be applied or added as suggestions.
-
ai: The model's configuration options have been moved from
config.ai.chat.modelstoconfig.ai.modelsto ensure consistent model configuration across all AI features. The model configuration is now applied uniformly in both AI Chat and AI Review Mode. -
ai: Upgrade
fast-xml-parserto version5.3.4to address security advisories reported by automated scanners. CKEditor 5 does not rely on the affected code paths and is not impacted. -
icons: Added new icons:
IconBoxWithCheck,IconBoxWithCross,IconBoxWithPin. -
import-word: Added the
undoStepBatchproperty to thedataInsertevent. It allows including custom model changes (side effects) in the same undo step as the import operation. -
Optimized compression and decompression mechanisms used in real-time collaboration to avoid delays when a user joins a document that was heavily edited.
-
Update
diffdependency to address security advisories reported by automated scanners.The affected functions (
parsePatch(),applyPatch()) are not used in this project (we only rely ondiffArrays()), so this change is released primarily to reduce false-positive security alerts.
Check out the Versioning policy guide for more information.
Released packages (summary)
Minor releases (contain minor breaking changes):
- @ckeditor/ckeditor5-ai: v47.4.0 => v47.5.0
Releases containing new features:
- @ckeditor/ckeditor5-export-pdf: v47.4.0 => v47.5.0
Other releases:
- @ckeditor/ckeditor5-adapter-ckfinder: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-alignment: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-autoformat: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-autosave: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-basic-styles: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-block-quote: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-bookmark: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-case-change: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-ckbox: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-ckfinder: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-clipboard: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-cloud-services: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-code-block: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-collaboration-core: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-comments: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-core: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-document-outline: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-easy-image: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-editor-balloon: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-editor-classic: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-editor-decoupled: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-editor-inline: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-editor-multi-root: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-email: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-emoji: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-engine: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-enter: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-essentials: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-export-inline-styles: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-export-word: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-find-and-replace: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-font: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-footnotes: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-format-painter: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-fullscreen: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-heading: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-highlight: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-horizontal-line: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-html-embed: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-html-support: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-icons: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-image: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-import-word: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-indent: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-language: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-line-height: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-link: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-list: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-list-multi-level: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-markdown-gfm: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-media-embed: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-mention: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-merge-fields: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-minimap: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-operations-compressor: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-page-break: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-pagination: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-paragraph: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-paste-from-office: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-paste-from-office-enhanced: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-real-time-collaboration: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-remove-format: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-restricted-editing: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-revision-history: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-select-all: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-show-blocks: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-slash-command: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-source-editing: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-source-editing-enhanced: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-special-characters: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-style: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-table: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-template: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-theme-lark: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-track-changes: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-typing: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-ui: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-undo: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-upload: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-uploadcare: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-utils: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-watchdog: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-widget: v47.4.0 => v47.5.0
- @ckeditor/ckeditor5-word-count: v47.4.0 => v47.5.0
- ckeditor5: v47.4.0 => v47.5.0
- ckeditor5-collaboration: v47.4.0 => v47.5.0
- ckeditor5-premium-features: v47.4.0 => v47.5.0
To see all releases, visit the release page.