Release notes
This is a major releases that introduces two new plugins (autosave and block toolbar), many smaller features, dozens of bug fixes and a couple of infrastructure changes (an upgrade to webpack@4
and simplified structure of build repositories). Additionally, the Editor#element
property was renamed to Editor#sourceElement
and the Editor#updateElement()
method was renamed to Editor#updateSourceElement()
.
If you maintain a custom build of CKEditor 5 or integrate CKEditor 5 from source, we recommend reading the migration guide.
Blog post is coming soon...
Dependencies
New packages:
Major releases (contain breaking changes):
- @ckeditor/ckeditor5-build-balloon: v10.1.0 => v11.0.0
- @ckeditor/ckeditor5-build-classic: v10.1.0 => v11.0.0
- @ckeditor/ckeditor5-build-decoupled-document: v10.1.0 => v11.0.0
- @ckeditor/ckeditor5-build-inline: v10.1.0 => v11.0.0
- @ckeditor/ckeditor5-core: v10.1.0 => v11.0.0
- @ckeditor/ckeditor5-editor-balloon: v10.0.1 => v11.0.0
- @ckeditor/ckeditor5-editor-classic: v10.0.1 => v11.0.0
- @ckeditor/ckeditor5-editor-decoupled: v10.0.2 => v11.0.0
- @ckeditor/ckeditor5-editor-inline: v10.0.1 => v11.0.0
- @ckeditor/ckeditor5-theme-lark: v10.1.0 => v11.0.0
- @ckeditor/ckeditor5-typing: v10.0.1 => v11.0.0
- @ckeditor/ckeditor5-ui: v10.1.0 => v11.0.0
Minor releases:
- @ckeditor/ckeditor5-engine: v10.1.0 => v10.2.0
- @ckeditor/ckeditor5-image: v10.1.0 => v10.2.0
- @ckeditor/ckeditor5-table: v10.0.0 => v10.1.0
- @ckeditor/ckeditor5-utils: v10.1.0 => v10.2.0
- @ckeditor/ckeditor5-widget: v10.1.0 => v10.2.0
Patch releases (bug fixes, internal changes):
- @ckeditor/ckeditor5-adapter-ckfinder: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-alignment: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-autoformat: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-basic-styles: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-block-quote: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-clipboard: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-cloud-services: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-easy-image: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-enter: v10.1.0 => v10.1.1
- @ckeditor/ckeditor5-essentials: v10.1.0 => v10.1.1
- @ckeditor/ckeditor5-font: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-heading: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-highlight: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-link: v10.0.2 => v10.0.3
- @ckeditor/ckeditor5-list: v11.0.0 => v11.0.1
- @ckeditor/ckeditor5-markdown-gfm: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-paragraph: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-undo: v10.0.1 => v10.0.2
- @ckeditor/ckeditor5-upload: v10.0.1 => v10.0.2
Features
Besides new features introduced by the dependencies, this version also introduces the following features:
- Introduced the
@ckeditor/ckeditor5-autosave
package. (bac9671)
Other changes
- Updated
webpack
to version 4. (7390460)
BREAKING CHANGES
If you maintain a custom build or integrate CKEditor 5 from source, we recommend reading the migration guide. Closes ckeditor/ckeditor5#1038.
- CKEditor 5 environment was updated to use
webpack@4
.webpack@4
introduced major changes in its configuration and plugin system. CKEditor 5 tools and build configuration were updated to work withwebpack@4
and will not work withwebpack@3
. - The structure of build repositories was changed. The
build-config.js
files were removed and the build configuration is now kept only in thesrc/ckeditor.js
files.