Release Notes / Version 11.2310
Table Of ContentsThe CoreMedia CKEditor Plugins have been updated from 14.1.1 to 15.0.1.
The update contains the update to CKEditor 37.1.0.
As starting with CKEditor 5 37.x, CKEditor 5 ships with its own type information, some relevant changes had to be applied to the Blueprint workspace integration:
@coremedia-blueprint/studio-client.ckeditor5
:No dependencies on DefinitelyTyped artifacts.
As CKEditor 5 comes with its own type information, typing information shipped via DefinitelyTyped are not required anymore (and may even collide with CKEditor 5 typing information).New
esbuild-loader
dependency required.New
ckeditor5
dependency required.
webpack.config.js
: Remove deprecated usage ofCKEditorWebpackPlugin
.
Instead, now requires:CKEditorTranslationsPlugin
provided by@ckeditor/ckeditor5-dev-translations
andloaders
provided by@ckeditor/ckeditor5-dev-utils
.
Prefer imports from
index.ts
over path imports.
Required for the new module augmentation approach that ships with CKEditor 5 and which has been adapted to CoreMedia CKEditor 5 Plugins.src/
path arc required for imports via full path.
This aligns the package structure with that known from CKEditor 5.Several
@ts-expect-error
can be removed.
Due to better typing information that ship with CKEditor 5 compared to those from DefinitelyTyped, some corresponding ignores can be removed.
For more information on the plugins release, see Release v15.0.1 · CoreMedia/ckeditor-plugins.
(CMS-22911)