diff --git a/docs/contributors/code/deprecations.md b/docs/contributors/code/deprecations.md index d2839d21a7b06d..7463a99b319d5c 100644 --- a/docs/contributors/code/deprecations.md +++ b/docs/contributors/code/deprecations.md @@ -2,6 +2,10 @@ For features included in the Gutenberg plugin, the deprecation policy is intended to support backward compatibility for two minor plugin releases, when possible. Features and code included in a stable release of WordPress are not included in this deprecation timeline, and are instead subject to the [versioning policies of the WordPress project](https://make.wordpress.org/core/handbook/about/release-cycle/version-numbering/). The current deprecations are listed below and are grouped by _the version at which they will be removed completely_. If your plugin depends on these behaviors, you must update to the recommended alternative before the noted version. +## Unreleased + +- `wp.blocks.isValidBlockContent` has been removed. Please use `wp.blocks.validateBlock` instead. + ## 11.0.0 - `wp.blocks.registerBlockTypeFromMetadata` method has been removed. Use `wp.blocks.registerBlockType` method instead. diff --git a/packages/blocks/CHANGELOG.md b/packages/blocks/CHANGELOG.md index d8271b5503d0e8..e397f57261b9f0 100644 --- a/packages/blocks/CHANGELOG.md +++ b/packages/blocks/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +- `isValidBlockContent` has been removed. Please use `validateBlock`. + ## 11.2.0 (2022-01-27) ## 11.1.0 (2021-09-09)