diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fa903b..a357ff8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ Changelog ========= +## [9.4.0](https://github.com/ckeditor/ckeditor5-react/compare/v9.3.1...v9.4.0) (2024-11-25) + +### Features + +* Align integration to work with the future self-service plan. Read more in the [CKEditor 5 repository](https://github.com/ckeditor/ckeditor5/issues/17317). ([commit](https://github.com/ckeditor/ckeditor5-react/commit/506c297e1e3529d27aa33e79414599629da73edd)) + +### Bug fixes + +* Call `onChangeInitializedEditors` on startup of `CKEditorContext` if there are ready editors. ([commit](https://github.com/ckeditor/ckeditor5-react/commit/130010f0dd9eb90a6cd9b93d0428c6e9732240f5)) + + ## [9.4.0-alpha.0](https://github.com/ckeditor/ckeditor5-react/compare/v9.3.1...v9.4.0-alpha.0) (2024-11-13) ### Features diff --git a/src/cloud/useCKEditorCloud.tsx b/src/cloud/useCKEditorCloud.tsx index 4879b3b..fd8ae75 100644 --- a/src/cloud/useCKEditorCloud.tsx +++ b/src/cloud/useCKEditorCloud.tsx @@ -17,7 +17,6 @@ import { useAsyncValue, type AsyncValueHookResult } from '../hooks/useAsyncValue * @template Config The type of the CKEditor Cloud configuration. * @param config The configuration of the hook. * @returns The state of async operation that resolves to the CKEditor bundles. - * @experimental * @example * * ```ts diff --git a/src/cloud/withCKEditorCloud.tsx b/src/cloud/withCKEditorCloud.tsx index 437996e..3cb7a05 100644 --- a/src/cloud/withCKEditorCloud.tsx +++ b/src/cloud/withCKEditorCloud.tsx @@ -17,7 +17,6 @@ import useCKEditorCloud from './useCKEditorCloud.js'; * @template A The type of the additional resources to load. * @param config The configuration of the CKEditor Cloud integration. * @returns A function that injects the CKEditor Cloud integration into a component. - * @experimental * @example * ```tsx