From c3b18faa591d90f6cbe61a95d7a70c43588765f3 Mon Sep 17 00:00:00 2001 From: Darin Kotter Date: Fri, 31 Jan 2025 11:56:47 -0700 Subject: [PATCH 1/4] Version bump to 1.2.2 --- insecure-content-warning.php | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- readme.txt | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/insecure-content-warning.php b/insecure-content-warning.php index 03ae292..b23fefb 100644 --- a/insecure-content-warning.php +++ b/insecure-content-warning.php @@ -3,7 +3,7 @@ * Plugin Name: Insecure Content Warning * Plugin URI: https://wordpress.org/plugins/insecure-content-warning/ * Description: Prevent editors from adding insecure content in the editor. - * Version: 1.2.1 + * Version: 1.2.2 * Requires at least: 6.6 * Requires PHP: 7.4 * Author: 10up @@ -22,7 +22,7 @@ define( 'INSECURE_CONTENT_TEMPLATE_URL', get_template_directory_uri() ); define( 'INSECURE_CONTENT_PATH', __DIR__ . DIRECTORY_SEPARATOR ); define( 'INSECURE_CONTENT_INC', INSECURE_CONTENT_PATH . 'includes' . DIRECTORY_SEPARATOR ); -define( 'INSECURE_CONTENT_VERSION', '1.2.1' ); +define( 'INSECURE_CONTENT_VERSION', '1.2.2' ); /** * Get the minimum version of PHP required by this plugin. diff --git a/package-lock.json b/package-lock.json index c02f1d6..0a29d75 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "insecure-content-warning", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "insecure-content-warning", - "version": "1.2.1", + "version": "1.2.2", "license": "GPL-2.0-or-later", "dependencies": { "@wordpress/element": "^5.0.0", diff --git a/package.json b/package.json index 71ca361..363f36e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "insecure-content-warning", - "version": "1.2.1", + "version": "1.2.2", "description": "Prevent editors from adding insecure content in the editor.", "homepage": "https://github.com/10up/insecure-content-warning", "license": "GPL-2.0-or-later", diff --git a/readme.txt b/readme.txt index b1a3fbd..d91ea6e 100644 --- a/readme.txt +++ b/readme.txt @@ -2,7 +2,7 @@ Contributors: 10up, psorensen, adamsilverstein, tlovett, davidrgreen, dkotter, jeffpaul Tags: publishing, publishers, secure content, https, ssl Tested up to: 6.6 -Stable tag: 1.2.1 +Stable tag: 1.2.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html From 5011433643b0ed322eaefcd1554a55c4a30e3aed Mon Sep 17 00:00:00 2001 From: Darin Kotter Date: Fri, 31 Jan 2025 12:02:46 -0700 Subject: [PATCH 2/4] Update changelogs --- CHANGELOG.md | 13 +++++++++++++ readme.txt | 11 +++++++++++ 2 files changed, 24 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6caa7fc..567615e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD +## [1.2.2] - 2025-02-03 +### Changed +- Bump WordPress minimum supported version from 6.4 to 6.6 (props [@peterwilsoncc](https://github.com/peterwilsoncc) via [#191](https://github.com/10up/insecure-content-warning/pull/191)). + +### Security +- Bump `webpack` from 5.89.0 to 5.94.0 (props [@dependabot](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#186](https://github.com/10up/insecure-content-warning/pull/186)). +- Bump `@wordpress/scripts` from 27.1.0 to 30.6.0, `express` from 4.19.2 to 4.21.0 and `serve-static` from 1.15.0 to 1.16.2 (props [@dependabot](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#191](https://github.com/10up/insecure-content-warning/pull/191), [#193](https://github.com/10up/insecure-content-warning/pull/193)). +- Bump `ws` from 7.5.10 to 8.18.0 (props [@dependabot](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh) via [#193](https://github.com/10up/insecure-content-warning/pull/193)). + +### Developer +- Add banner image to README and update badges (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#187](https://github.com/10up/insecure-content-warning/pull/187), [#190](https://github.com/10up/insecure-content-warning/pull/190)). + ## [1.2.1] - 2024-08-22 **Note that this release bumps the WordPress minimum version from 5.8 to 6.4.** @@ -118,6 +130,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Initial public release! 🎉 [Unreleased]: https://github.com/10up/insecure-content-warning/compare/trunk...develop +[1.2.2]: https://github.com/10up/insecure-content-warning/compare/1.2.1...1.2.2 [1.2.1]: https://github.com/10up/insecure-content-warning/compare/1.2.0...1.2.1 [1.2.0]: https://github.com/10up/insecure-content-warning/compare/1.1.0...1.2.0 [1.1.0]: https://github.com/10up/insecure-content-warning/compare/1.0.3...1.1.0 diff --git a/readme.txt b/readme.txt index d91ea6e..addbc85 100644 --- a/readme.txt +++ b/readme.txt @@ -65,6 +65,14 @@ Run `wp help icw fix` for more information on the command args. == Changelog == += 1.2.2 - 2025-02-03 = +**Note that this release bumps the WordPress minimum version from 6.4 to 6.6.** + +* **Changed:** Bump WordPress minimum supported version from 6.4 to 6.6 (props [@peterwilsoncc](https://github.com/peterwilsoncc) via [#191](https://github.com/10up/insecure-content-warning/pull/191)). +* **Security:** Bump `webpack` from 5.89.0 to 5.94.0 (props [@dependabot](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#186](https://github.com/10up/insecure-content-warning/pull/186)). +* **Security:** Bump `@wordpress/scripts` from 27.1.0 to 30.6.0, `express` from 4.19.2 to 4.21.0 and `serve-static` from 1.15.0 to 1.16.2 (props [@dependabot](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#191](https://github.com/10up/insecure-content-warning/pull/191), [#193](https://github.com/10up/insecure-content-warning/pull/193)). +* **Security:** Bump `ws` from 7.5.10 to 8.18.0 (props [@dependabot](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh) via [#193](https://github.com/10up/insecure-content-warning/pull/193)). + = 1.2.1 - 2024-08-22 = **Note that this release bumps the WordPress minimum version from 5.8 to 6.4.** @@ -98,6 +106,9 @@ Run `wp help icw fix` for more information on the command args. == Upgrade Notice == += 1.2.2 = +* Note that this version bumps the minimum WordPress version from 6.4 to 6.6. + = 1.2.1 = * Note that this version bumps the minimum WordPress version from 5.8 to 6.4. From b54e734f2d674f8461de99440965d74884610119 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 3 Feb 2025 15:44:38 -0600 Subject: [PATCH 3/4] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 567615e..2d3c7f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file, per [the Ke ## [1.2.2] - 2025-02-03 ### Changed -- Bump WordPress minimum supported version from 6.4 to 6.6 (props [@peterwilsoncc](https://github.com/peterwilsoncc) via [#191](https://github.com/10up/insecure-content-warning/pull/191)). +- Bump WordPress minimum supported version from 6.4 to 6.6 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@jeffpaul](https://github.com/jeffpaul) via [#185](https://github.com/10up/insecure-content-warning/pull/185), [#191](https://github.com/10up/insecure-content-warning/pull/191)). ### Security - Bump `webpack` from 5.89.0 to 5.94.0 (props [@dependabot](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#186](https://github.com/10up/insecure-content-warning/pull/186)). From 73cf290e34b940046ec4d37a2361080e8d41ea35 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 3 Feb 2025 15:45:19 -0600 Subject: [PATCH 4/4] Update readme.txt --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index addbc85..87a01e9 100644 --- a/readme.txt +++ b/readme.txt @@ -68,7 +68,7 @@ Run `wp help icw fix` for more information on the command args. = 1.2.2 - 2025-02-03 = **Note that this release bumps the WordPress minimum version from 6.4 to 6.6.** -* **Changed:** Bump WordPress minimum supported version from 6.4 to 6.6 (props [@peterwilsoncc](https://github.com/peterwilsoncc) via [#191](https://github.com/10up/insecure-content-warning/pull/191)). +* **Changed:** Bump WordPress minimum supported version from 6.4 to 6.6 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@jeffpaul](https://github.com/jeffpaul) via [#185](https://github.com/10up/insecure-content-warning/pull/185), [#191](https://github.com/10up/insecure-content-warning/pull/191)). * **Security:** Bump `webpack` from 5.89.0 to 5.94.0 (props [@dependabot](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#186](https://github.com/10up/insecure-content-warning/pull/186)). * **Security:** Bump `@wordpress/scripts` from 27.1.0 to 30.6.0, `express` from 4.19.2 to 4.21.0 and `serve-static` from 1.15.0 to 1.16.2 (props [@dependabot](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#191](https://github.com/10up/insecure-content-warning/pull/191), [#193](https://github.com/10up/insecure-content-warning/pull/193)). * **Security:** Bump `ws` from 7.5.10 to 8.18.0 (props [@dependabot](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh) via [#193](https://github.com/10up/insecure-content-warning/pull/193)).