From 31b3f071e67dc3359afc6e41abef397d4c5d9275 Mon Sep 17 00:00:00 2001 From: Nate Weller Date: Fri, 18 Oct 2024 03:10:23 -0600 Subject: [PATCH] Changelog and readme.txt edits. (#39814) --- projects/packages/my-jetpack/CHANGELOG.md | 5 +++++ .../fix-my-jetpack-missing-site-connection-notice | 4 ---- projects/packages/my-jetpack/package.json | 2 +- .../packages/my-jetpack/src/class-initializer.php | 2 +- projects/packages/waf/CHANGELOG.md | 5 +++++ .../fix-waf-undefined-entrypoint-in-bootstrap | 4 ---- projects/plugins/protect/CHANGELOG.md | 4 ++++ projects/plugins/protect/composer.json | 2 +- projects/plugins/protect/jetpack-protect.php | 4 ++-- projects/plugins/protect/readme.txt | 15 ++------------- 10 files changed, 21 insertions(+), 26 deletions(-) delete mode 100644 projects/packages/my-jetpack/changelog/fix-my-jetpack-missing-site-connection-notice delete mode 100644 projects/packages/waf/changelog/fix-waf-undefined-entrypoint-in-bootstrap diff --git a/projects/packages/my-jetpack/CHANGELOG.md b/projects/packages/my-jetpack/CHANGELOG.md index 610caade31f74..17be7eed0cca2 100644 --- a/projects/packages/my-jetpack/CHANGELOG.md +++ b/projects/packages/my-jetpack/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). +## [4.35.15] - 2024-10-17 +### Fixed +- Fix the "Missing site connection" notice. [#39809] + ## [4.35.14] - 2024-10-15 ### Changed - Update dependencies. [#38910] @@ -1780,6 +1784,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created package +[4.35.15]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.35.14...4.35.15 [4.35.14]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.35.13...4.35.14 [4.35.13]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.35.12...4.35.13 [4.35.12]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.35.11...4.35.12 diff --git a/projects/packages/my-jetpack/changelog/fix-my-jetpack-missing-site-connection-notice b/projects/packages/my-jetpack/changelog/fix-my-jetpack-missing-site-connection-notice deleted file mode 100644 index d3d0a28308af9..0000000000000 --- a/projects/packages/my-jetpack/changelog/fix-my-jetpack-missing-site-connection-notice +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Fix the "Missing site connection" notice. diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index f7122c7b829bb..39ed4c95969cd 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-my-jetpack", - "version": "4.35.14", + "version": "4.35.15", "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/src/class-initializer.php b/projects/packages/my-jetpack/src/class-initializer.php index eb6c2f7983afe..0fcc2be3e8412 100644 --- a/projects/packages/my-jetpack/src/class-initializer.php +++ b/projects/packages/my-jetpack/src/class-initializer.php @@ -42,7 +42,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.35.14'; + const PACKAGE_VERSION = '4.35.15'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/projects/packages/waf/CHANGELOG.md b/projects/packages/waf/CHANGELOG.md index a4fb0db74287d..dd0ee6e8a2344 100644 --- a/projects/packages/waf/CHANGELOG.md +++ b/projects/packages/waf/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.22.1] - 2024-10-17 +### Fixed +- WAF: Improve backwards compatibility for sites running outdated bootstrap scripts via standalone mode. [#39812] + ## [0.22.0] - 2024-10-14 ### Added - WAF: Add new properties to the WAF feature's REST API endpoint. [#39511] @@ -390,6 +394,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Core: do not ship .phpcs.dir.xml in production builds. +[0.22.1]: https://github.com/Automattic/jetpack-waf/compare/v0.22.0...v0.22.1 [0.22.0]: https://github.com/Automattic/jetpack-waf/compare/v0.21.0...v0.22.0 [0.21.0]: https://github.com/Automattic/jetpack-waf/compare/v0.20.1...v0.21.0 [0.20.1]: https://github.com/Automattic/jetpack-waf/compare/v0.20.0...v0.20.1 diff --git a/projects/packages/waf/changelog/fix-waf-undefined-entrypoint-in-bootstrap b/projects/packages/waf/changelog/fix-waf-undefined-entrypoint-in-bootstrap deleted file mode 100644 index 9c6e1ae4648d4..0000000000000 --- a/projects/packages/waf/changelog/fix-waf-undefined-entrypoint-in-bootstrap +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Firewall: improve backwards compatibility for sites running outdated bootstrap scripts via standalone mode. diff --git a/projects/plugins/protect/CHANGELOG.md b/projects/plugins/protect/CHANGELOG.md index 6e366fa0cc743..5d28f47c723b4 100644 --- a/projects/plugins/protect/CHANGELOG.md +++ b/projects/plugins/protect/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). +## 3.1.1 - 2024-10-17 +### Changed +- Firewall: Fix backwards compatibility for sites running standalone mode with outdated packages autoloaded. + ## 3.1.0 - 2024-10-15 ### Added - Firewall: Adds stat cards showing recent block counts [#35739] diff --git a/projects/plugins/protect/composer.json b/projects/plugins/protect/composer.json index c3585dababfa2..f596dd2a423e3 100644 --- a/projects/plugins/protect/composer.json +++ b/projects/plugins/protect/composer.json @@ -79,6 +79,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_protectâ“¥3_1_0" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_protectâ“¥3_1_1" } } diff --git a/projects/plugins/protect/jetpack-protect.php b/projects/plugins/protect/jetpack-protect.php index c0623268e8a47..b46915aa11def 100644 --- a/projects/plugins/protect/jetpack-protect.php +++ b/projects/plugins/protect/jetpack-protect.php @@ -3,7 +3,7 @@ * Plugin Name: Jetpack Protect * Plugin URI: https://wordpress.org/plugins/jetpack-protect * Description: Security tools that keep your site safe and sound, from posts to plugins. - * Version: 3.1.0 + * Version: 3.1.1 * Author: Automattic - Jetpack Security team * Author URI: https://jetpack.com/protect/ * License: GPLv2 or later @@ -32,7 +32,7 @@ exit; } -define( 'JETPACK_PROTECT_VERSION', '3.1.0' ); +define( 'JETPACK_PROTECT_VERSION', '3.1.1' ); define( 'JETPACK_PROTECT_DIR', plugin_dir_path( __FILE__ ) ); define( 'JETPACK_PROTECT_ROOT_FILE', __FILE__ ); define( 'JETPACK_PROTECT_ROOT_FILE_RELATIVE_PATH', plugin_basename( __FILE__ ) ); diff --git a/projects/plugins/protect/readme.txt b/projects/plugins/protect/readme.txt index 8782bc9feb995..7196aefcbbf88 100644 --- a/projects/plugins/protect/readme.txt +++ b/projects/plugins/protect/readme.txt @@ -178,18 +178,7 @@ The new Jetpack Protect plugin is different from the Jetpack feature formerly kn 4. The Jetpack Firewall is a web application firewall (known as WAF) designed to protect your WordPress site from malicious requests. == Changelog == -### 3.1.0 - 2024-10-15 -#### Added -- Firewall: Adds stat cards showing recent block counts -- Auto-Fixers: Adds handling for long-running fixers - +### 3.1.1 - 2024-10-17 #### Changed -- Firewall: added help text for IP list formatting rules -- Updated package dependencies. - -#### Removed -- Security Scanning: disabled database threat category - -#### Fixed -- Minor fixes and improvements. +- Firewall: Fix backwards compatibility for sites running standalone mode with outdated packages autoloaded.