diff --git a/projects/packages/forms/CHANGELOG.md b/projects/packages/forms/CHANGELOG.md index 75ab54194a542..42bfdc4d0d8c3 100644 --- a/projects/packages/forms/CHANGELOG.md +++ b/projects/packages/forms/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.31.1] - 2024-05-07 +### Fixed +- Contact Form: Prevent an editor error when using the Classic Editor and contact forms are enabled. [#37270] + ## [0.31.0] - 2024-05-06 ### Added - Add missing package dependencies. [#37141] @@ -564,6 +568,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added a new jetpack/forms package [#28409] - Added a public load_contact_form method for initializing the contact form module. [#28416] +[0.31.1]: https://github.com/automattic/jetpack-forms/compare/v0.31.0...v0.31.1 [0.31.0]: https://github.com/automattic/jetpack-forms/compare/v0.30.18...v0.31.0 [0.30.18]: https://github.com/automattic/jetpack-forms/compare/v0.30.17...v0.30.18 [0.30.17]: https://github.com/automattic/jetpack-forms/compare/v0.30.16...v0.30.17 diff --git a/projects/packages/forms/changelog/fix-contact-form-tiny-mce-editor-min-error b/projects/packages/forms/changelog/fix-contact-form-tiny-mce-editor-min-error deleted file mode 100644 index 164a8824ea0e6..0000000000000 --- a/projects/packages/forms/changelog/fix-contact-form-tiny-mce-editor-min-error +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Contact Form: Prevent an editor error when using the Classic Editor and contact forms are enabled diff --git a/projects/packages/forms/package.json b/projects/packages/forms/package.json index a33a846ed2c5a..1117f036509ac 100644 --- a/projects/packages/forms/package.json +++ b/projects/packages/forms/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-forms", - "version": "0.31.1-alpha", + "version": "0.31.1", "description": "Jetpack Forms", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme", "bugs": { diff --git a/projects/packages/forms/src/class-jetpack-forms.php b/projects/packages/forms/src/class-jetpack-forms.php index 8cf2a62f00784..76463d73581d9 100644 --- a/projects/packages/forms/src/class-jetpack-forms.php +++ b/projects/packages/forms/src/class-jetpack-forms.php @@ -15,7 +15,7 @@ */ class Jetpack_Forms { - const PACKAGE_VERSION = '0.31.1-alpha'; + const PACKAGE_VERSION = '0.31.1'; /** * Load the contact form module. diff --git a/projects/packages/videopress/CHANGELOG.md b/projects/packages/videopress/CHANGELOG.md index 0e1436c002bf1..81ddf04581cd7 100644 --- a/projects/packages/videopress/CHANGELOG.md +++ b/projects/packages/videopress/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.23.20] - 2024-05-07 +### Fixed +- Sanitize the preload value for video shortcodes and blocks. [#37271] + ## [0.23.19] - 2024-05-06 ### Added - Add missing package dependencies. [#37141] @@ -1333,6 +1337,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created empty package [#24952] +[0.23.20]: https://github.com/Automattic/jetpack-videopress/compare/v0.23.19...v0.23.20 [0.23.19]: https://github.com/Automattic/jetpack-videopress/compare/v0.23.18...v0.23.19 [0.23.18]: https://github.com/Automattic/jetpack-videopress/compare/v0.23.17...v0.23.18 [0.23.17]: https://github.com/Automattic/jetpack-videopress/compare/v0.23.16...v0.23.17 diff --git a/projects/packages/videopress/changelog/fix-video-shortcode-preloadcontent-sanitize b/projects/packages/videopress/changelog/fix-video-shortcode-preloadcontent-sanitize deleted file mode 100644 index fcd2617502ed1..0000000000000 --- a/projects/packages/videopress/changelog/fix-video-shortcode-preloadcontent-sanitize +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Sanitize the preload value for video shortcodes and blocks diff --git a/projects/packages/videopress/package.json b/projects/packages/videopress/package.json index 91b16119ce604..ba80ba4b1f6b0 100644 --- a/projects/packages/videopress/package.json +++ b/projects/packages/videopress/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-videopress", - "version": "0.23.20-alpha", + "version": "0.23.20", "description": "VideoPress package", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/videopress/#readme", "bugs": { diff --git a/projects/packages/videopress/src/class-package-version.php b/projects/packages/videopress/src/class-package-version.php index 0c240218936f6..e80f7faccb5b8 100644 --- a/projects/packages/videopress/src/class-package-version.php +++ b/projects/packages/videopress/src/class-package-version.php @@ -11,7 +11,7 @@ * The Package_Version class. */ class Package_Version { - const PACKAGE_VERSION = '0.23.20-alpha'; + const PACKAGE_VERSION = '0.23.20'; const PACKAGE_SLUG = 'videopress';