From d9385373db9e6e13c7b56256c2032196d25d76da Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 09:17:17 +1000 Subject: [PATCH 01/15] Import version bump script. --- bin/version-bump.sh | 144 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 144 insertions(+) create mode 100755 bin/version-bump.sh diff --git a/bin/version-bump.sh b/bin/version-bump.sh new file mode 100755 index 00000000..1645fa3b --- /dev/null +++ b/bin/version-bump.sh @@ -0,0 +1,144 @@ +#!/usr/bin/env bash + +set -euo pipefail + +required_commands=(awk dirname grep mktemp mv node npm perl) +missing_commands=() + +for required_command in "${required_commands[@]}"; do + if ! command -v "$required_command" >/dev/null 2>&1; then + missing_commands+=("$required_command") + fi +done + +if (( ${#missing_commands[@]} > 0 )); then + echo "Missing required command(s): ${missing_commands[*]}" >&2 + echo "Please install the missing command(s) and try again." >&2 + exit 1 +fi + +if [[ $# -ne 1 ]]; then + echo "Usage: $0 " >&2 + exit 1 +fi + +bump_type="$1" + +case "$bump_type" in + major|minor|patch) + ;; + *) + echo "Invalid bump type: $bump_type" >&2 + echo "Expected one of: major, minor, patch" >&2 + exit 1 + ;; +esac + +script_dir="$(cd "$(dirname "$0")" && pwd)" +repo_dir="$(cd "$script_dir/.." && pwd)" + +cd "$repo_dir" + +for required_file in readme.txt simple-podcasting.php class-simple-podcasting.php package.json package-lock.json CHANGELOG.md; do + if [[ ! -f "$required_file" ]]; then + echo "Missing required file: $required_file" >&2 + exit 1 + fi +done + +current_version="$(node -p "require('./package.json').version")" + +if [[ -z "$current_version" ]]; then + echo "Unable to determine current version from package.json" >&2 + exit 1 +fi + +next_version="$(node -e "const [major, minor, patch] = require('./package.json').version.split('.').map(Number); const bump = process.argv[1]; const next = { major: [major + 1, 0, 0], minor: [major, minor + 1, 0], patch: [major, minor, patch + 1] }[bump]; if (!next || next.some(Number.isNaN)) { process.exit(1); } process.stdout.write(next.join('.'));" "$bump_type")" + +if [[ -z "$next_version" ]]; then + echo "Unable to calculate next version" >&2 + exit 1 +fi + +if grep -Eq "^## \[$next_version\]" CHANGELOG.md; then + echo "Changelog already contains version $next_version" >&2 + exit 1 +fi + +if grep -Eq "^\[$next_version\]: https://github.com/10up/simple-podcasting/compare/" CHANGELOG.md; then + echo "Changelog footer already contains version $next_version" >&2 + exit 1 +fi + +if grep -Eq "^= $next_version( - .*)? =$" readme.txt; then + echo "readme.txt changelog already contains version $next_version" >&2 + exit 1 +fi + +if ! grep -Fq "[View historical changelog details here]" readme.txt; then + echo "Unable to find historical changelog link in readme.txt" >&2 + exit 1 +fi + +npm version "$bump_type" --no-git-tag-version >/dev/null + +new_version="$(node -p "require('./package.json').version")" + +if [[ -z "$new_version" ]]; then + echo "Unable to determine updated version from package.json" >&2 + exit 1 +fi + +perl -0pi -e "s/^(Stable tag:\s+).* +/\${1}$new_version\n/m" readme.txt + +perl -0pi -e "s/^(== Changelog ==\r?\n\r?\n)/\${1}= $new_version - TBD =\n\n/m" readme.txt + +readme_tmp="$(mktemp)" +awk ' + BEGIN { + in_changelog = 0 + release_count = 0 + skipping_old = 0 + } + /^== Changelog ==\r?$/ { + in_changelog = 1 + print + next + } + in_changelog && /^\[View historical changelog details here\]/ { + skipping_old = 0 + in_changelog = 0 + print + next + } + in_changelog { + if ( $0 ~ /^= [0-9]+\.[0-9]+\.[0-9]+( - .*)? =\r?$/ ) { + release_count++ + if ( release_count > 4 ) { + skipping_old = 1 + next + } + skipping_old = 0 + } + if ( skipping_old ) { + next + } + } + { + print + } +' readme.txt > "$readme_tmp" +mv "$readme_tmp" readme.txt + +perl -0pi -e "s/^(\s*\* Version:\s+).* +/\${1}$new_version\n/m" simple-podcasting.php + +perl -0pi -e "s/^(define\( 'SIMPLE_PAGE_ORDERING_VERSION', ')([^']+)('\s*\);) +/\${1}$new_version\${3}\n/m" class-simple-podcasting.php + +perl -0pi -e "s/^(## \[Unreleased\].*\n\n)/\${1}## [$new_version] - TBD\n\n/m" CHANGELOG.md + +perl -0pi -e "s#^(\[Unreleased\]: .*\n)#\${1}[$new_version]: https://github.com/10up/simple-podcasting/compare/$current_version...$new_version\n#m" CHANGELOG.md + +echo "Bumped version to $new_version" From 9e96de7a1443ba406347e644bf2355154a44be41 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 09:23:27 +1000 Subject: [PATCH 02/15] Modify version bump script for this repo. --- bin/version-bump.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/version-bump.sh b/bin/version-bump.sh index 1645fa3b..bdd1bbdd 100755 --- a/bin/version-bump.sh +++ b/bin/version-bump.sh @@ -39,7 +39,7 @@ repo_dir="$(cd "$script_dir/.." && pwd)" cd "$repo_dir" -for required_file in readme.txt simple-podcasting.php class-simple-podcasting.php package.json package-lock.json CHANGELOG.md; do +for required_file in readme.txt simple-podcasting.php package.json package-lock.json CHANGELOG.md; do if [[ ! -f "$required_file" ]]; then echo "Missing required file: $required_file" >&2 exit 1 @@ -134,8 +134,8 @@ mv "$readme_tmp" readme.txt perl -0pi -e "s/^(\s*\* Version:\s+).* /\${1}$new_version\n/m" simple-podcasting.php -perl -0pi -e "s/^(define\( 'SIMPLE_PAGE_ORDERING_VERSION', ')([^']+)('\s*\);) -/\${1}$new_version\${3}\n/m" class-simple-podcasting.php +perl -0pi -e "s/^(define\( 'PODCASTING_VERSION', ')([^']+)('\s*\);) +/\${1}$new_version\${3}\n/m" simple-podcasting.php perl -0pi -e "s/^(## \[Unreleased\].*\n\n)/\${1}## [$new_version] - TBD\n\n/m" CHANGELOG.md From 16557ec1caed8adf78fdd737d8123a95a3116d57 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 09:25:10 +1000 Subject: [PATCH 03/15] Ignore bin directory from export. --- .distignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.distignore b/.distignore index 6bff20c8..d51ec40b 100644 --- a/.distignore +++ b/.distignore @@ -4,6 +4,7 @@ /.husky /.wordpress-org /assets +/bin /gulp-tasks /node_modules /tests From a074648a84b25f927b642ce9d2a6dfd2dfa42142 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 09:28:16 +1000 Subject: [PATCH 04/15] Update release steps to use script. --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4ca84799..11f42953 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -56,8 +56,8 @@ New releases are targeted based on number and severity of changes along with hum ### Release instructions 1. Branch: Starting from `develop`, cut a release branch named `release/X.Y.Z` for your changes. -2. Version bump: Bump the version number in `simple-podcasting.php`, `package-lock.json`, `package.json`, and `readme.txt` if it does not already reflect the version being released. Update both the plugin "Version:" property and the plugin `PODCASTING_VERSION` constant in `simple-podcasting.php`. -3. Changelog: Add/update the changelog in both `CHANGELOG.md` and `readme.txt`. +2. Version bump: Run `bin/version-bump.sh ` to bump the version number in `package.json`, `package-lock.json`, `readme.txt`, and `simple-podcasting.php` if it does not already reflect the version being released. In `simple-podcasting.php` update the plugin `PODCASTING_VERSION` constant. +3. Changelog: Populate the changelog entries in `readme.txt` and `CHANGELOG.md` with the log and to include the date of release. 4. Props: update `CREDITS.md` with any new contributors, confirm maintainers are accurate. 5. New files: Check to be sure any new files/paths that are unnecessary in the production version are included in `.distignore`. 6. Readme updates: Make any other readme changes as necessary. `README.md` is geared toward GitHub and `readme.txt` contains WordPress.org-specific content. The two are slightly different. From 3d2d7c7fdf8c1b2cfd3069d0484dd49f42eb8b29 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 09:44:39 +1000 Subject: [PATCH 05/15] Version bump: 2.0.0. --- CHANGELOG.md | 3 +++ package-lock.json | 4 ++-- package.json | 2 +- readme.txt | 27 +++------------------------ simple-podcasting.php | 4 ++-- 5 files changed, 11 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83b7408d..07e7ac5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD +## [2.0.0] - TBD + ## [1.9.1] - 2025-05-19 **Note that this release bumps the WordPress minimum version from 6.5 to 6.6.** @@ -296,6 +298,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Initial plugin release. [Unreleased]: https://github.com/10up/simple-podcasting/compare/trunk...develop +[2.0.0]: https://github.com/10up/simple-podcasting/compare/1.9.1...2.0.0 [1.9.1]: https://github.com/10up/simple-podcasting/compare/1.9.0...1.9.1 [1.9.0]: https://github.com/10up/simple-podcasting/compare/1.8.0...1.9.0 [1.8.0]: https://github.com/10up/simple-podcasting/compare/1.7.0...1.8.0 diff --git a/package-lock.json b/package-lock.json index 566c761d..be60976b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@10up/simple-podcasting", - "version": "1.9.1", + "version": "2.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@10up/simple-podcasting", - "version": "1.9.1", + "version": "2.0.0", "license": "GPL-2.0-or-later", "dependencies": { "use-debounce": "^8.0.4" diff --git a/package.json b/package.json index 4d86e8ec..f5bfd927 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@10up/simple-podcasting", - "version": "1.9.1", + "version": "2.0.0", "description": "A simple podcasting solution for WordPress. ", "homepage": "https://github.com/10up/simple-podcasting", "bugs": { diff --git a/readme.txt b/readme.txt index 1d32a121..292ace4d 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: podcasting, podcast, apple podcasts, episode, season Requires PHP: 7.4 Requires at least: 6.8 Tested up to: 7.0 -Stable tag: 1.9.1 +Stable tag: 2.0.0 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -131,6 +131,8 @@ Please report security bugs found in the source code of the Simple Podcasting pl == Changelog == += 2.0.0 - TBD = + = 1.9.1 - 2025-05-16 = * **Added:** Screenshots for all new features (props [@gabriel-glo](https://github.com/gabriel-glo), [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9), [@dkotter](https://github.com/dkotter) via [#310](https://github.com/10up/simple-podcasting/pull/310)). * **Changed:** Bump WordPress "tested up to" version to 6.8 (props [@jeffpaul](https://github.com/jeffpaul) via [#335](https://github.com/10up/simple-podcasting/pull/335), [#336](https://github.com/10up/simple-podcasting/pull/336)). @@ -164,29 +166,6 @@ Please report security bugs found in the source code of the Simple Podcasting pl * **Changed:** Upgrade the download-artifact from v3 to v4 (props [@iamdharmesh](https://github.com/iamdharmesh), [@jeffpaul](https://github.com/jeffpaul) via [#285](https://github.com/10up/simple-podcasting/pull/285)). * **Security:** Bumps `ip` from `1.1.8` to `1.1.9` (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#278](https://github.com/10up/simple-podcasting/pull/278)). -= 1.7.0 - 2024-01-16 = -* **Added:** Ability to add a transcript to a podcast episode by utilizing a new Podcast Transcript block. This block is added by clicking the `Add Transcript` button that will now show in the sidebar panel of the Podcast block (props [@nateconley](https://github.com/nateconley), [@peterwilsoncc](https://github.com/peterwilsoncc), [@sksaju](https://github.com/sksaju), [@kirtangajjar](https://github.com/kirtangajjar) via [#221](https://github.com/10up/simple-podcasting/pull/221)). -* **Added:** Support for the WordPress.org plugin preview (props [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#265](https://github.com/10up/simple-podcasting/pull/265)). -* **Fixed:** Ensure we show all Podcasting terms in the Block Editor sidebar (props [@dkotter](https://github.com/dkotter), [@channchetra](https://github.com/channchetra), [@Sidsector9](https://github.com/Sidsector9) via [#268](https://github.com/10up/simple-podcasting/pull/268)). -* **Security:** Bump `axios` from 0.25.0 to 1.6.2 and `@wordpress/scripts` from 26.9.0 to 26.18.0 (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#263](https://github.com/10up/simple-podcasting/pull/263)). -* **Security:** Bump `follow-redirects` from 1.15.3 to 1.15.4 (props [@dependabot](https://github.com/apps/dependabot), [@dkotter](https://github.com/dkotter) via [#269](https://github.com/10up/simple-podcasting/pull/269)). - -= 1.6.1 - 2023-11-21 = -* **Added:** Repo Automator GitHub Action (props [@iamdharmesh](https://github.com/iamdharmesh), [@jeffpaul](https://github.com/jeffpaul) via [#253](https://github.com/10up/simple-podcasting/pull/253)). -* **Changed:** Bump WordPress "tested up to" version to 6.4 (props [@qasumitbagthariya](https://github.com/qasumitbagthariya), [@jeffpaul](https://github.com/jeffpaul) via [#259](https://github.com/10up/simple-podcasting/pull/259), [#260](https://github.com/10up/simple-podcasting/pull/260)). -* **Changed:** Ensure end-to-end tests work on Cypress v13 and bump `cypress` from 11.2.0 to 13.2.0, `@10up/cypress-wp-utils` from 0.1.0 to 0.2.0, `@wordpress/env` from 5.4.0 to 8.7.0, `cypress-localstorage-commands` from 2.2.2 to 2.2.4 and `cypress-mochawesome-reporter` from 3.4.0 to 3.6.0 (props [@iamdharmesh](https://github.com/iamdharmesh), [@Sidsector9](https://github.com/Sidsector9) via [#254](https://github.com/10up/simple-podcasting/pull/254)). -* **Security:** Bump `postcss` from 8.4.27 to 8.4.31 (props [@dependabot](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#256](https://github.com/10up/simple-podcasting/pull/256)). -* **Security:** Bump `@babel/traverse` from 7.22.8 to 7.23.2 (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#257](https://github.com/10up/simple-podcasting/pull/257)). - -= 1.6.0 - 2023-08-31 = -* **Added:** Ability to create a Podcast from within the Block Editor (props [@Sidsector9](https://github.com/Sidsector9), [@iamdharmesh](https://github.com/iamdharmesh) via [#232](https://github.com/10up/simple-podcasting/pull/232)). -* **Added:** New Podcast Platforms block that allows you to display icons and links to multiple podcast platforms (props [@Sidsector9](https://github.com/Sidsector9), [@iamdharmesh](https://github.com/iamdharmesh), [@jeffpaul](https://github.com/jeffpaul) via [#241](https://github.com/10up/simple-podcasting/pull/241)). -* **Added:** Check for minimum required PHP version before loading the plugin (props [@kmgalanakis](https://github.com/kmgalanakis), [@dkotter](https://github.com/dkotter) via [#248](https://github.com/10up/simple-podcasting/pull/248)). -* **Changed:** Rename `TAXONOMY_NAME` constant to `PODCASTING_TAXONOMY_NAME` (props [@jayedul](https://github.com/jayedul), [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#238](https://github.com/10up/simple-podcasting/pull/238)). -* **Changed:** Bump WordPress "tested up to" version to 6.3 (props [@dkotter](https://github.com/dkotter) via [#248](https://github.com/10up/simple-podcasting/pull/248)). -* **Fixed:** Resolved a PHP warning when creating a new podcast (props [@kmgalanakis](https://github.com/kmgalanakis), [@iamdharmesh](https://github.com/iamdharmesh) via [#247](https://github.com/10up/simple-podcasting/pull/247)). -* **Security:** Bump `word-wrap` from 1.2.3 to 1.2.4 (props [@dependabot](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh) via [#243](https://github.com/10up/simple-podcasting/pull/243)). - [View historical changelog details here](https://github.com/10up/simple-podcasting/blob/develop/CHANGELOG.md). == Upgrade Notice == diff --git a/simple-podcasting.php b/simple-podcasting.php index 5ece0bc6..4521012a 100644 --- a/simple-podcasting.php +++ b/simple-podcasting.php @@ -3,7 +3,7 @@ * Plugin Name: Simple Podcasting * Plugin URI: https://github.com/10up/simple-podcasting * Description: Easily set up multiple podcast feeds using built-in WordPress posts. Includes a podcast block for the new WordPress editor. - * Version: 1.9.1 + * Version: 2.0.0 * Author: 10up * Author URI: http://10up.com/ * License: GPLv2 or later @@ -62,7 +62,7 @@ function () { return; } -define( 'PODCASTING_VERSION', '1.9.1' ); +define( 'PODCASTING_VERSION', '2.0.0' ); define( 'PODCASTING_PATH', __DIR__ . '/' ); define( 'PODCASTING_URL', plugin_dir_url( __FILE__ ) ); define( 'PODCASTING_TAXONOMY_NAME', 'podcasting_podcasts' ); From ac1b26fbe7788e289b1f2818d4f70efaa61ccdd1 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 10:26:12 +1000 Subject: [PATCH 06/15] Initial changelog. --- CHANGELOG.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07e7ac5e..3f969b51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,49 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD ## [2.0.0] - TBD +### Added +- Ability to dock podcast player to top or bottom of browser window. (props [@wadebekker](https://github.com/wadebekker), [@sanketio](https://github.com/sanketio), [@peterwilsoncc](https://github.com/peterwilsoncc), [@github-actions[bot]](https://github.com/apps/github-actions), [@jeffpaul](https://github.com/jeffpaul) via [#331](https://github.com/10up/simple-podcasting/pull/331)) + +### Changed +- Bump tested up to header to indicate WordPress 6.9 support. (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#349](https://github.com/10up/simple-podcasting/pull/349)) +- Update NPM dependencies via npm audit fix. (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) +- Bump WordPress "tested up to" version 7.0 (props [@phpbits](https://github.com/phpbits), [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#360](https://github.com/10up/simple-podcasting/pull/360)) + +### Developer +- Add Patchstack security-reporting FAQ. (props [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#350](https://github.com/10up/simple-podcasting/pull/350)) +- Fix issue with attaching release assets during release deploy action. (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#345](https://github.com/10up/simple-podcasting/pull/345)) +- Introduce tests for the plugin meta data. (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@Copilot](https://github.com/apps/copilot-pull-request-reviewer), [@dkotter](https://github.com/dkotter) via [#364](https://github.com/10up/simple-podcasting/pull/364)) +- Update Cypress-WP-Utils to 0.6.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) +- Update WP-Env to 10.37.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) +- Update WP-Scripts to 31.2.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) + +### Security +- Bump @babel/plugin-transform-modules-systemjs from 7.28.5 to 7.29.7 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump @cypress/request from 3.0.1 to 3.0.8 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#344](https://github.com/10up/simple-podcasting/pull/344)) +- Bump @wordpress/env from 9.10.0 to 10.28.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#346](https://github.com/10up/simple-podcasting/pull/346)) +- Bump axios from 1.13.2 to 1.18.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump basic-ftp from 5.1.0 to 5.3.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#357](https://github.com/10up/simple-podcasting/pull/357), [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump compression from 1.7.4 to 1.8.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#343](https://github.com/10up/simple-podcasting/pull/343)) +- Bump fast-uri from 3.1.0 to 3.1.2 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump flatted from 3.3.3 to 3.4.2 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump follow-redirects from 1.15.11 to 1.16.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump form-data from 4.0.0 to 4.0.6 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#344](https://github.com/10up/simple-podcasting/pull/344), [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump immutable from 5.1.4 to 5.1.5 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#358](https://github.com/10up/simple-podcasting/pull/358)) +- Bump ip-address from 10.1.0 to 10.2.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump launch-editor from 2.12.0 to 2.14.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump lodash from 4.17.21 to 4.18.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#353](https://github.com/10up/simple-podcasting/pull/353), [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump lodash-es from 4.17.22 to 4.18.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#354](https://github.com/10up/simple-podcasting/pull/354), [#363](https://github.com/10up/simple-podcasting/pull/363)) +- Bump markdown-it from 13.0.2 to 14.2.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump node-forge from 1.3.3 to 1.4.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump on-headers from 1.0.2 to 1.1.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#343](https://github.com/10up/simple-podcasting/pull/343)) +- Bump phpunit/phpunit from 9.6.20 to 9.6.33 in the composer group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#355](https://github.com/10up/simple-podcasting/pull/355)) +- Bump postcss from 8.5.6 to 8.5.15 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump qs from 6.14.1 to 6.15.2 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#356](https://github.com/10up/simple-podcasting/pull/356), [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump shivammathur/setup-php from 2.32.0 to 2.37.1 in /.github/workflows in the github_actions group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#361](https://github.com/10up/simple-podcasting/pull/361)) +- Bump simple-git from 3.30.0 to 3.36.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump svgo from 3.3.2 to 3.3.3 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump tar-fs from 3.0.8 to 3.0.9 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#341](https://github.com/10up/simple-podcasting/pull/341)) +- Bump tmp from 0.2.3 to 0.2.7 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#346](https://github.com/10up/simple-podcasting/pull/346), [#362](https://github.com/10up/simple-podcasting/pull/362)) ## [1.9.1] - 2025-05-19 **Note that this release bumps the WordPress minimum version from 6.5 to 6.6.** From ea948ff0a556428b4c6e19fc698e66b755024f02 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 10:26:23 +1000 Subject: [PATCH 07/15] Credit dependabot consistently. --- CHANGELOG.md | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f969b51..6fd6af3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,9 +63,9 @@ All notable changes to this project will be documented in this file, per [the Ke - Issue where podcast feed title unexpectedly adding site title (props [@kirtangajjar](https://github.com/kirtangajjar), [@peterwilsoncc](https://github.com/peterwilsoncc), [@dabowman](https://github.com/dabowman) via [#295](https://github.com/10up/simple-podcasting/pull/295)). ### Security -- Bump `@wordpress/scripts` from 27.9.0 to 30.6.0 (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#328](https://github.com/10up/simple-podcasting/pull/328)). -- Bump `cookie` from 0.4.2 to 0.7.1, `express` from 4.21.0 to 4.21.2, `@wordpress/e2e-test-utils-playwright` from 0.26.0 to 1.18.0, `serialize-javascript` from 6.0.0 to 6.0.2 and `mocha` from 10.4.0 to 11.1.0 (props [@dependabot](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#332](https://github.com/10up/simple-podcasting/pull/332)). -- Bump `axios` from 1.7.4 to 1.9.0 and `http-proxy-middleware` from 2.0.6 to 2.0.9 (props [@dependabot](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#338](https://github.com/10up/simple-podcasting/pull/338)). +- Bump `@wordpress/scripts` from 27.9.0 to 30.6.0 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#328](https://github.com/10up/simple-podcasting/pull/328)). +- Bump `cookie` from 0.4.2 to 0.7.1, `express` from 4.21.0 to 4.21.2, `@wordpress/e2e-test-utils-playwright` from 0.26.0 to 1.18.0, `serialize-javascript` from 6.0.0 to 6.0.2 and `mocha` from 10.4.0 to 11.1.0 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#332](https://github.com/10up/simple-podcasting/pull/332)). +- Bump `axios` from 1.7.4 to 1.9.0 and `http-proxy-middleware` from 2.0.6 to 2.0.9 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#338](https://github.com/10up/simple-podcasting/pull/338)). ### Developer - Update all third-party actions our workflows rely on to use versions based on specific commit hashes (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#333](https://github.com/10up/simple-podcasting/pull/333)). @@ -84,11 +84,11 @@ All notable changes to this project will be documented in this file, per [the Ke - Update how we import the `PluginDocumentSettingPanel` component to use the new `@wordpress/editor` package if it exists (props [@gabriel-glo](https://github.com/gabriel-glo), [@dkotter](https://github.com/dkotter) via [#309](https://github.com/10up/simple-podcasting/pull/309)). ### Security -- Bump `express` from 4.18.2 to 4.19.2, `follow-redirects` from 1.15.4 to 1.15.6, and `webpack-dev-middleware` from 5.3.3 to 5.3.4 (props [@dependabot](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh) via [#290](https://github.com/10up/simple-podcasting/pull/290)). -- Bump `braces` from 3.0.2 to 3.0.3, `pac-resolver` from 7.0.0 to 7.0.1, `socks` from 2.7.1 to 2.8.3, `ws` from 7.5.9 to 7.5.10 and removes `ip` (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#297](https://github.com/10up/simple-podcasting/pull/297), [#306](https://github.com/10up/simple-podcasting/pull/306)). -- Bump `axios` from 1.7.2 to 1.7.4 (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#312](https://github.com/10up/simple-podcasting/pull/312)). -- Bump `webpack` from 5.91.0 to 5.94.0 (props [@dependabot](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#315](https://github.com/10up/simple-podcasting/pull/315)). -- Bump `ws` from 7.5.10 to 8.18.0, `serve-static` from 1.15.0 to 1.16.2 and `express` from 4.19.2 to 4.21.0 (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#319](https://github.com/10up/simple-podcasting/pull/319)). +- Bump `express` from 4.18.2 to 4.19.2, `follow-redirects` from 1.15.4 to 1.15.6, and `webpack-dev-middleware` from 5.3.3 to 5.3.4 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh) via [#290](https://github.com/10up/simple-podcasting/pull/290)). +- Bump `braces` from 3.0.2 to 3.0.3, `pac-resolver` from 7.0.0 to 7.0.1, `socks` from 2.7.1 to 2.8.3, `ws` from 7.5.9 to 7.5.10 and removes `ip` (props [@dependabot[bot]](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#297](https://github.com/10up/simple-podcasting/pull/297), [#306](https://github.com/10up/simple-podcasting/pull/306)). +- Bump `axios` from 1.7.2 to 1.7.4 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#312](https://github.com/10up/simple-podcasting/pull/312)). +- Bump `webpack` from 5.91.0 to 5.94.0 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#315](https://github.com/10up/simple-podcasting/pull/315)). +- Bump `ws` from 7.5.10 to 8.18.0, `serve-static` from 1.15.0 to 1.16.2 and `express` from 4.19.2 to 4.21.0 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#319](https://github.com/10up/simple-podcasting/pull/319)). ### Developer - Clean up NPM dependencies and update node to v20 (props [@Sidsector9](https://github.com/Sidsector9), [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#275](https://github.com/10up/simple-podcasting/pull/275)). @@ -114,7 +114,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Upgrade the download-artifact from v3 to v4 (props [@iamdharmesh](https://github.com/iamdharmesh), [@jeffpaul](https://github.com/jeffpaul) via [#285](https://github.com/10up/simple-podcasting/pull/285)). ### Security -- Bumps `ip` from `1.1.8` to `1.1.9` (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#278](https://github.com/10up/simple-podcasting/pull/278)). +- Bumps `ip` from `1.1.8` to `1.1.9` (props [@dependabot[bot]](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#278](https://github.com/10up/simple-podcasting/pull/278)). ## [1.7.0] - 2024-01-16 ### Added @@ -125,8 +125,8 @@ All notable changes to this project will be documented in this file, per [the Ke - Ensure we show all Podcasting terms in the Block Editor sidebar (props [@dkotter](https://github.com/dkotter), [@channchetra](https://github.com/channchetra), [@Sidsector9](https://github.com/Sidsector9) via [#268](https://github.com/10up/simple-podcasting/pull/268)). ### Security -- Bump `axios` from 0.25.0 to 1.6.2 and `@wordpress/scripts` from 26.9.0 to 26.18.0 (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#263](https://github.com/10up/simple-podcasting/pull/263)). -- Bump `follow-redirects` from 1.15.3 to 1.15.4 (props [@dependabot](https://github.com/apps/dependabot), [@dkotter](https://github.com/dkotter) via [#269](https://github.com/10up/simple-podcasting/pull/269)). +- Bump `axios` from 0.25.0 to 1.6.2 and `@wordpress/scripts` from 26.9.0 to 26.18.0 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#263](https://github.com/10up/simple-podcasting/pull/263)). +- Bump `follow-redirects` from 1.15.3 to 1.15.4 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@dkotter](https://github.com/dkotter) via [#269](https://github.com/10up/simple-podcasting/pull/269)). ## [1.6.1] - 2023-11-21 ### Added @@ -137,8 +137,8 @@ All notable changes to this project will be documented in this file, per [the Ke - Ensure end-to-end tests work on Cypress v13 and bump `cypress` from 11.2.0 to 13.2.0, `@10up/cypress-wp-utils` from 0.1.0 to 0.2.0, `@wordpress/env` from 5.4.0 to 8.7.0, `cypress-localstorage-commands` from 2.2.2 to 2.2.4 and `cypress-mochawesome-reporter` from 3.4.0 to 3.6.0 (props [@iamdharmesh](https://github.com/iamdharmesh), [@Sidsector9](https://github.com/Sidsector9) via [#254](https://github.com/10up/simple-podcasting/pull/254)). ### Security -- Bump `postcss` from 8.4.27 to 8.4.31 (props [@dependabot](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#256](https://github.com/10up/simple-podcasting/pull/256)). -- Bump `@babel/traverse` from 7.22.8 to 7.23.2 (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#257](https://github.com/10up/simple-podcasting/pull/257)). +- Bump `postcss` from 8.4.27 to 8.4.31 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#256](https://github.com/10up/simple-podcasting/pull/256)). +- Bump `@babel/traverse` from 7.22.8 to 7.23.2 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9) via [#257](https://github.com/10up/simple-podcasting/pull/257)). ## [1.6.0] - 2023-08-31 ### Added @@ -154,7 +154,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Resolved a PHP warning when creating a new podcast (props [@kmgalanakis](https://github.com/kmgalanakis), [@iamdharmesh](https://github.com/iamdharmesh) via [#247](https://github.com/10up/simple-podcasting/pull/247)). ### Security -- Bump `word-wrap` from 1.2.3 to 1.2.4 (props [@dependabot](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh) via [#243](https://github.com/10up/simple-podcasting/pull/243)). +- Bump `word-wrap` from 1.2.3 to 1.2.4 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh) via [#243](https://github.com/10up/simple-podcasting/pull/243)). ## [1.5.0] - 2023-06-29 ### Added @@ -176,10 +176,10 @@ All notable changes to this project will be documented in this file, per [the Ke - Deprecation notices for `strpos` and `str_replace` on PHP >= 8.1 (props [@bmarshall511](https://github.com/bmarshall511), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#239](https://github.com/10up/simple-podcasting/pull/239)). ### Security -- Bump `simple-git` from 3.15.1 to 3.16.0 (props [@dependabot](https://github.com/apps/dependabot), [@cadic](https://github.com/cadic) via [#215](https://github.com/10up/simple-podcasting/pull/215)). -- Bump `http-cache-semantics` from 4.1.0 to 4.1.1 (props [@dependabot](https://github.com/apps/dependabot), [@cadic](https://github.com/cadic) via [#219](https://github.com/10up/simple-podcasting/pull/219)). -- Bump `@sideway/formula` from 3.0.0 to 3.0.1 (props [@dependabot](https://github.com/apps/dependabot), [@cadic](https://github.com/cadic) via [#220](https://github.com/10up/simple-podcasting/pull/220)). -- Bump `webpack` from 5.75.0 to 5.76.1 (props [@dependabot](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#222](https://github.com/10up/simple-podcasting/pull/222)). +- Bump `simple-git` from 3.15.1 to 3.16.0 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@cadic](https://github.com/cadic) via [#215](https://github.com/10up/simple-podcasting/pull/215)). +- Bump `http-cache-semantics` from 4.1.0 to 4.1.1 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@cadic](https://github.com/cadic) via [#219](https://github.com/10up/simple-podcasting/pull/219)). +- Bump `@sideway/formula` from 3.0.0 to 3.0.1 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@cadic](https://github.com/cadic) via [#220](https://github.com/10up/simple-podcasting/pull/220)). +- Bump `webpack` from 5.75.0 to 5.76.1 (props [@dependabot[bot]](https://github.com/apps/dependabot), [@faisal-alvi](https://github.com/faisal-alvi) via [#222](https://github.com/10up/simple-podcasting/pull/222)). ## [1.4.0] - 2023-01-23 ### Added @@ -231,7 +231,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Incorrect Language value in the Feed (props [@zamanq](https://github.com/zamanq), [@dchucks](https://github.com/dchucks), [@cadic](https://github.com/cadic) via [#176](https://github.com/10up/simple-podcasting/pull/176)). ### Security -- Bump `terser` from 5.12.1 to 5.14.2 (props [@dependabot](https://github.com/apps/dependabot) via [#180](https://github.com/10up/simple-podcasting/pull/180)). +- Bump `terser` from 5.12.1 to 5.14.2 (props [@dependabot[bot]](https://github.com/apps/dependabot) via [#180](https://github.com/10up/simple-podcasting/pull/180)). ## [1.2.3] - 2022-04-28 ### Added @@ -251,9 +251,9 @@ All notable changes to this project will be documented in this file, per [the Ke ### Security - Upgraded node dependencies (props [@cadic](https://github.com/cadic), [@iamdharmesh](https://github.com/iamdharmesh), [@jeffpaul](https://github.com/jeffpaul) via [#158](https://github.com/10up/simple-podcasting/pull/158) and [#163](https://github.com/10up/simple-podcasting/pull/163)). -- Bump async from 2.6.3 to 2.6.4 (props [@dependabot](https://github.com/apps/dependabot) via [#166](https://github.com/10up/simple-podcasting/pull/166)). -- Bump node-forge from 1.2.1 to 1.3.0 (props [@dependabot](https://github.com/apps/dependabot) via [#160](https://github.com/10up/simple-podcasting/pull/160)). -- Bump minimist from 1.2.5 to 1.2.6 (props [@dependabot](https://github.com/apps/dependabot) via [#159](https://github.com/10up/simple-podcasting/pull/159)). +- Bump async from 2.6.3 to 2.6.4 (props [@dependabot[bot]](https://github.com/apps/dependabot) via [#166](https://github.com/10up/simple-podcasting/pull/166)). +- Bump node-forge from 1.2.1 to 1.3.0 (props [@dependabot[bot]](https://github.com/apps/dependabot) via [#160](https://github.com/10up/simple-podcasting/pull/160)). +- Bump minimist from 1.2.5 to 1.2.6 (props [@dependabot[bot]](https://github.com/apps/dependabot) via [#159](https://github.com/10up/simple-podcasting/pull/159)). ## [1.2.2] - 2022-03-01 ### Added @@ -272,7 +272,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Missing and incorrect text-domain (props [@dkotter](https://github.com/dkotter), [@cadic](https://github.com/cadic) via [#131](https://github.com/10up/simple-podcasting/pull/131)). ### Security -- Bump `nanoid` from 3.1.25 to 3.2.0 (props [@dependabot](https://github.com/apps/dependabot) via [#143](https://github.com/10up/simple-podcasting/pull/143)). +- Bump `nanoid` from 3.1.25 to 3.2.0 (props [@dependabot[bot]](https://github.com/apps/dependabot) via [#143](https://github.com/10up/simple-podcasting/pull/143)). ## [1.2.1] - 2021-12-16 ### Added From 5123976d38a0ff537b86f9bf612938d7e9782ed5 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 10:29:36 +1000 Subject: [PATCH 08/15] Wrap package names in backticks. --- CHANGELOG.md | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fd6af3d..d2a95079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,32 +22,32 @@ All notable changes to this project will be documented in this file, per [the Ke - Update WP-Scripts to 31.2.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) ### Security -- Bump @babel/plugin-transform-modules-systemjs from 7.28.5 to 7.29.7 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump @cypress/request from 3.0.1 to 3.0.8 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#344](https://github.com/10up/simple-podcasting/pull/344)) -- Bump @wordpress/env from 9.10.0 to 10.28.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#346](https://github.com/10up/simple-podcasting/pull/346)) -- Bump axios from 1.13.2 to 1.18.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump basic-ftp from 5.1.0 to 5.3.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#357](https://github.com/10up/simple-podcasting/pull/357), [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump compression from 1.7.4 to 1.8.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#343](https://github.com/10up/simple-podcasting/pull/343)) -- Bump fast-uri from 3.1.0 to 3.1.2 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump flatted from 3.3.3 to 3.4.2 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump follow-redirects from 1.15.11 to 1.16.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump form-data from 4.0.0 to 4.0.6 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#344](https://github.com/10up/simple-podcasting/pull/344), [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump immutable from 5.1.4 to 5.1.5 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#358](https://github.com/10up/simple-podcasting/pull/358)) -- Bump ip-address from 10.1.0 to 10.2.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump launch-editor from 2.12.0 to 2.14.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump lodash from 4.17.21 to 4.18.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#353](https://github.com/10up/simple-podcasting/pull/353), [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump lodash-es from 4.17.22 to 4.18.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#354](https://github.com/10up/simple-podcasting/pull/354), [#363](https://github.com/10up/simple-podcasting/pull/363)) -- Bump markdown-it from 13.0.2 to 14.2.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump node-forge from 1.3.3 to 1.4.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump on-headers from 1.0.2 to 1.1.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#343](https://github.com/10up/simple-podcasting/pull/343)) -- Bump phpunit/phpunit from 9.6.20 to 9.6.33 in the composer group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#355](https://github.com/10up/simple-podcasting/pull/355)) -- Bump postcss from 8.5.6 to 8.5.15 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump qs from 6.14.1 to 6.15.2 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#356](https://github.com/10up/simple-podcasting/pull/356), [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump shivammathur/setup-php from 2.32.0 to 2.37.1 in /.github/workflows in the github_actions group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#361](https://github.com/10up/simple-podcasting/pull/361)) -- Bump simple-git from 3.30.0 to 3.36.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump svgo from 3.3.2 to 3.3.3 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) -- Bump tar-fs from 3.0.8 to 3.0.9 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#341](https://github.com/10up/simple-podcasting/pull/341)) -- Bump tmp from 0.2.3 to 0.2.7 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#346](https://github.com/10up/simple-podcasting/pull/346), [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `@babel/plugin-transform-modules-systemjs` from 7.28.5 to 7.29.7 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `@cypress/request` from 3.0.1 to 3.0.8 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#344](https://github.com/10up/simple-podcasting/pull/344)) +- Bump `@wordpress/env` from 9.10.0 to 10.28.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#346](https://github.com/10up/simple-podcasting/pull/346)) +- Bump `axios` from 1.13.2 to 1.18.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `basic-ftp` from 5.1.0 to 5.3.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#357](https://github.com/10up/simple-podcasting/pull/357), [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `compression` from 1.7.4 to 1.8.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#343](https://github.com/10up/simple-podcasting/pull/343)) +- Bump `fast-uri` from 3.1.0 to 3.1.2 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `flatted` from 3.3.3 to 3.4.2 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `follow-redirects` from 1.15.11 to 1.16.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `form-data` from 4.0.0 to 4.0.6 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#344](https://github.com/10up/simple-podcasting/pull/344), [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `immutable` from 5.1.4 to 5.1.5 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#358](https://github.com/10up/simple-podcasting/pull/358)) +- Bump `ip-address` from 10.1.0 to 10.2.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `launch-editor` from 2.12.0 to 2.14.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `lodash` from 4.17.21 to 4.18.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#353](https://github.com/10up/simple-podcasting/pull/353), [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `lodash-es` from 4.17.22 to 4.18.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#354](https://github.com/10up/simple-podcasting/pull/354), [#363](https://github.com/10up/simple-podcasting/pull/363)) +- Bump `markdown-it` from 13.0.2 to 14.2.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `node-forge` from 1.3.3 to 1.4.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `on-headers` from 1.0.2 to 1.1.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#343](https://github.com/10up/simple-podcasting/pull/343)) +- Bump `phpunit/phpunit` from 9.6.20 to 9.6.33 in the composer group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#355](https://github.com/10up/simple-podcasting/pull/355)) +- Bump `postcss` from 8.5.6 to 8.5.15 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `qs` from 6.14.1 to 6.15.2 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#356](https://github.com/10up/simple-podcasting/pull/356), [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `shivammathur/setup-php` from 2.32.0 to 2.37.1 in /.github/workflows in the github_actions group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#361](https://github.com/10up/simple-podcasting/pull/361)) +- Bump `simple-git` from 3.30.0 to 3.36.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `svgo` from 3.3.2 to 3.3.3 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) +- Bump `tar-fs` from 3.0.8 to 3.0.9 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#341](https://github.com/10up/simple-podcasting/pull/341)) +- Bump `tmp` from 0.2.3 to 0.2.7 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#346](https://github.com/10up/simple-podcasting/pull/346), [#362](https://github.com/10up/simple-podcasting/pull/362)) ## [1.9.1] - 2025-05-19 **Note that this release bumps the WordPress minimum version from 6.5 to 6.6.** From d7c42fd1235cbea099cce083d4317ef44d7eab43 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 10:33:17 +1000 Subject: [PATCH 09/15] Combine wp-scripts changelog entries. --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2a95079..61a30ea0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,13 +18,12 @@ All notable changes to this project will be documented in this file, per [the Ke - Fix issue with attaching release assets during release deploy action. (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#345](https://github.com/10up/simple-podcasting/pull/345)) - Introduce tests for the plugin meta data. (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@Copilot](https://github.com/apps/copilot-pull-request-reviewer), [@dkotter](https://github.com/dkotter) via [#364](https://github.com/10up/simple-podcasting/pull/364)) - Update Cypress-WP-Utils to 0.6.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) -- Update WP-Env to 10.37.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) - Update WP-Scripts to 31.2.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) ### Security - Bump `@babel/plugin-transform-modules-systemjs` from 7.28.5 to 7.29.7 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) - Bump `@cypress/request` from 3.0.1 to 3.0.8 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#344](https://github.com/10up/simple-podcasting/pull/344)) -- Bump `@wordpress/env` from 9.10.0 to 10.28.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#346](https://github.com/10up/simple-podcasting/pull/346)) +- Bump `@wordpress/env` from 9.10.0 to 10.37.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh), [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#346](https://github.com/10up/simple-podcasting/pull/346), [#351](https://github.com/10up/simple-podcasting/pull/351)) - Bump `axios` from 1.13.2 to 1.18.0 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362)) - Bump `basic-ftp` from 5.1.0 to 5.3.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#357](https://github.com/10up/simple-podcasting/pull/357), [#362](https://github.com/10up/simple-podcasting/pull/362)) - Bump `compression` from 1.7.4 to 1.8.1 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#343](https://github.com/10up/simple-podcasting/pull/343)) From f614def4ebebdb6e018e9ffa0108b96bffd816b6 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 10:41:23 +1000 Subject: [PATCH 10/15] Update credits to include new users. --- CREDITS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CREDITS.md b/CREDITS.md index 8c45e8c2..f0f03110 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -10,7 +10,7 @@ The following individuals are responsible for curating the list of issues, respo Thank you to all the people who have already contributed to this repository via bug reports, code, design, ideas, project management, translation, testing, etc. -[Adam Silverstein (@adamsilverstein)](https://github.com/adamsilverstein), [Helen Hou-Sandi (@helen)](https://github.com/helen), [Ryan Welcher (@ryanwelcher)](https://github.com/ryanwelcher), [David Chandra Purnama (@turtlepod)](https://github.com/turtlepod), [Oscar Sanchez S. (@oscarssanchez)](https://github.com/oscarssanchez), [Jon Christensen (@Firestorm980)](https://github.com/Firestorm980), [Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul), [Noah Halstead (@nhalstead)](https://github.com/nhalstead), [Matthew Haines-Young (@mattheu)](https://github.com/mattheu), [Tung Du (@dinhtungdu)](https://github.com/dinhtungdu), [David Chabbi](https://www.linkedin.com/in/david-chabbi-985719b4/), [Pablo Amato (@pabamato)](https://github.com/pabamato), [(@monomo111)](https://github.com/monomo111), [Jake Goldman (@jakemgold)](https://github.com/jakemgold), [Mark Jaquith (@markjaquith)](https://github.com/markjaquith), [Riad Benguella (@youknowriad)](https://github.com/youknowriad), [Mészáros Róbert (@meszarosrob)](https://github.com/meszarosrob), [Max Lyuchin (@cadic)](https://github.com/cadic), [Dharmesh Patel (@iamdharmesh)](https://github.com/iamdharmesh), [Darin Kotter (@dkotter)](https://github.com/dkotter), [Peter Wilson (@peterwilsoncc)](https://github.com/peterwilsoncc), [Felipe Elia (@felipeelia)](https://github.com/felipeelia), [Mehidi Hassan (@mehidi258)](https://github.com/mehidi258), [Tom J Nowell (@tomjn)](https://github.com/tomjn), [David Towoju (@davexpression)](https://github.com/davexpression), [Quamruz Zaman (@zamanq)](https://github.com/zamanq), [Debashish (@dchucks)](https://github.com/dchucks), [(@supersmo)](https://github.com/supersmo), [Jayedul Kabir (@jayedul)](https://github.com/jayedul), [Faisal Alvi (@faisal-alvi)](https://github.com/faisal-alvi), [Vikram Mopharty (@vikrampm1)](https://github.com/vikrampm1), [Siddharth Thevaril (@Sidsector9)](https://github.com/Sidsector9), [Nicolas Knight (@Nicolas-knight)](https://github.com/Nicolas-knight), [Jonathan Netek (@jnetek)](https://github.com/jnetek), [Mehul Gohil (@mehul0810)](https://github.com/mehul0810), [Nate Conley (@nateconley)](https://github.com/nateconley), [Ajay Maurya (@ajmaurya99)](https://github.com/ajmaurya99), [Nickolas Kola (@nickolas-kola)](https://github.com/nickolas-kola), [Ahamed Arshad Azmi (@achchu93)](https://github.com/achchu93), [Ivan Ivanić (@Spoygg)](https://github.com/Spoygg), [Garth Gutenberg (@ggutenberg)](https://github.com/ggutenberg), [Ravinder Kumar (@ravinderk)](https://github.com/ravinderk), [Konstantinos Galanakis (@kmgalanakis)](https://github.com/kmgalanakis), [Dependabot (@dependabot)](https://github.com/apps/dependabot), [Sumit Bagthariya (@qasumitbagthariya)](https://github.com/qasumitbagthariya), [Shazahan Kabir Saju (@sksaju)](https://github.com/sksaju), [Kirtan Gajjar (@kirtangajjar)](https://github.com/kirtangajjar), [Chetra Chann (@channchetra)](https://github.com/channchetra), [James Burgos (@jamesburgos)](https://github.com/jamesburgos), [Martin Burch (@martinburch)](https://github.com/martinburch), [Peter Sorensen (@psorensen)](https://github.com/psorensen), [Barney Jeffries (@barneyjeffries)](https://github.com/barneyjeffries), [Gus Austin (@gusaus)](https://github.com/gusaus), [Sonali Desai (@sonali886)](https://github.com/sonali886), [Gabriel Glogoški (@gabriel-glo)](https://github.com/gabriel-glo), [David Godleman (@godleman)](https://github.com/godleman), [Sudar Muthu (@sudar)](https://github.com/sudar), [David Bowman (@dabowman)](https://github.com/dabowman). +[Adam Silverstein (@adamsilverstein)](https://github.com/adamsilverstein), [Helen Hou-Sandi (@helen)](https://github.com/helen), [Ryan Welcher (@ryanwelcher)](https://github.com/ryanwelcher), [David Chandra Purnama (@turtlepod)](https://github.com/turtlepod), [Oscar Sanchez S. (@oscarssanchez)](https://github.com/oscarssanchez), [Jon Christensen (@Firestorm980)](https://github.com/Firestorm980), [Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul), [Noah Halstead (@nhalstead)](https://github.com/nhalstead), [Matthew Haines-Young (@mattheu)](https://github.com/mattheu), [Tung Du (@dinhtungdu)](https://github.com/dinhtungdu), [David Chabbi](https://www.linkedin.com/in/david-chabbi-985719b4/), [Pablo Amato (@pabamato)](https://github.com/pabamato), [(@monomo111)](https://github.com/monomo111), [Jake Goldman (@jakemgold)](https://github.com/jakemgold), [Mark Jaquith (@markjaquith)](https://github.com/markjaquith), [Riad Benguella (@youknowriad)](https://github.com/youknowriad), [Mészáros Róbert (@meszarosrob)](https://github.com/meszarosrob), [Max Lyuchin (@cadic)](https://github.com/cadic), [Dharmesh Patel (@iamdharmesh)](https://github.com/iamdharmesh), [Darin Kotter (@dkotter)](https://github.com/dkotter), [Peter Wilson (@peterwilsoncc)](https://github.com/peterwilsoncc), [Felipe Elia (@felipeelia)](https://github.com/felipeelia), [Mehidi Hassan (@mehidi258)](https://github.com/mehidi258), [Tom J Nowell (@tomjn)](https://github.com/tomjn), [David Towoju (@davexpression)](https://github.com/davexpression), [Quamruz Zaman (@zamanq)](https://github.com/zamanq), [Debashish (@dchucks)](https://github.com/dchucks), [(@supersmo)](https://github.com/supersmo), [Jayedul Kabir (@jayedul)](https://github.com/jayedul), [Faisal Alvi (@faisal-alvi)](https://github.com/faisal-alvi), [Vikram Mopharty (@vikrampm1)](https://github.com/vikrampm1), [Siddharth Thevaril (@Sidsector9)](https://github.com/Sidsector9), [Nicolas Knight (@Nicolas-knight)](https://github.com/Nicolas-knight), [Jonathan Netek (@jnetek)](https://github.com/jnetek), [Mehul Gohil (@mehul0810)](https://github.com/mehul0810), [Nate Conley (@nateconley)](https://github.com/nateconley), [Ajay Maurya (@ajmaurya99)](https://github.com/ajmaurya99), [Nickolas Kola (@nickolas-kola)](https://github.com/nickolas-kola), [Ahamed Arshad Azmi (@achchu93)](https://github.com/achchu93), [Ivan Ivanić (@Spoygg)](https://github.com/Spoygg), [Garth Gutenberg (@ggutenberg)](https://github.com/ggutenberg), [Ravinder Kumar (@ravinderk)](https://github.com/ravinderk), [Konstantinos Galanakis (@kmgalanakis)](https://github.com/kmgalanakis), [Dependabot (@dependabot)](https://github.com/apps/dependabot), [Sumit Bagthariya (@qasumitbagthariya)](https://github.com/qasumitbagthariya), [Shazahan Kabir Saju (@sksaju)](https://github.com/sksaju), [Kirtan Gajjar (@kirtangajjar)](https://github.com/kirtangajjar), [Chetra Chann (@channchetra)](https://github.com/channchetra), [James Burgos (@jamesburgos)](https://github.com/jamesburgos), [Martin Burch (@martinburch)](https://github.com/martinburch), [Peter Sorensen (@psorensen)](https://github.com/psorensen), [Barney Jeffries (@barneyjeffries)](https://github.com/barneyjeffries), [Gus Austin (@gusaus)](https://github.com/gusaus), [Sonali Desai (@sonali886)](https://github.com/sonali886), [Gabriel Glogoški (@gabriel-glo)](https://github.com/gabriel-glo), [David Godleman (@godleman)](https://github.com/godleman), [Sudar Muthu (@sudar)](https://github.com/sudar), [David Bowman (@dabowman)](https://github.com/dabowman), [Ben Marshall (@bmarshall511)](https://github.com/bmarshall511), [Jeffrey Carandang (@phpbits)](https://github.com/phpbits), [Sanket Parmar (@sanketio)](https://github.com/sanketio), [Wade Bekker (@wadebekker)](https://github.com/wadebekker). ## Libraries From 51b40da1e4432f33ebf9ca61255148376c50c175 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 10:49:31 +1000 Subject: [PATCH 11/15] Combine tested up to header bumps in changelog. --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61a30ea0..54876712 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,8 @@ All notable changes to this project will be documented in this file, per [the Ke - Ability to dock podcast player to top or bottom of browser window. (props [@wadebekker](https://github.com/wadebekker), [@sanketio](https://github.com/sanketio), [@peterwilsoncc](https://github.com/peterwilsoncc), [@github-actions[bot]](https://github.com/apps/github-actions), [@jeffpaul](https://github.com/jeffpaul) via [#331](https://github.com/10up/simple-podcasting/pull/331)) ### Changed -- Bump tested up to header to indicate WordPress 6.9 support. (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#349](https://github.com/10up/simple-podcasting/pull/349)) +- Bump tested up to header to indicate WordPress 7.0 support. (props [@phpbits](https://github.com/phpbits), [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#349](https://github.com/10up/simple-podcasting/pull/349), [#360](https://github.com/10up/simple-podcasting/pull/360)) - Update NPM dependencies via npm audit fix. (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) -- Bump WordPress "tested up to" version 7.0 (props [@phpbits](https://github.com/phpbits), [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#360](https://github.com/10up/simple-podcasting/pull/360)) ### Developer - Add Patchstack security-reporting FAQ. (props [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#350](https://github.com/10up/simple-podcasting/pull/350)) From 212b2b8608d090cea23f42a805367c1da3ef657f Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 10:50:07 +1000 Subject: [PATCH 12/15] Add minimum required version note to changelog. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54876712..8c7b69f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD ## [2.0.0] - TBD +**Note that this release bumps the WordPress minimum version from 6.6 to 6.8.** + ### Added - Ability to dock podcast player to top or bottom of browser window. (props [@wadebekker](https://github.com/wadebekker), [@sanketio](https://github.com/sanketio), [@peterwilsoncc](https://github.com/peterwilsoncc), [@github-actions[bot]](https://github.com/apps/github-actions), [@jeffpaul](https://github.com/jeffpaul) via [#331](https://github.com/10up/simple-podcasting/pull/331)) From 54dab5c4cfe6dd6f4e462b65e264c7790f9c707c Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 10:52:33 +1000 Subject: [PATCH 13/15] Duplicate changelog entry in readme.txt. --- readme.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/readme.txt b/readme.txt index 292ace4d..bbf9b031 100644 --- a/readme.txt +++ b/readme.txt @@ -132,6 +132,11 @@ Please report security bugs found in the source code of the Simple Podcasting pl == Changelog == = 2.0.0 - TBD = +**Note that this release bumps the WordPress minimum version from 6.6 to 6.8.** + +* **Added:** Ability to dock podcast player to top or bottom of browser window. (props [@wadebekker](https://github.com/wadebekker), [@sanketio](https://github.com/sanketio), [@peterwilsoncc](https://github.com/peterwilsoncc), [@github-actions[bot]](https://github.com/apps/github-actions), [@jeffpaul](https://github.com/jeffpaul) via [#331](https://github.com/10up/simple-podcasting/pull/331)). +* **Changed:** Bump tested up to header to indicate WordPress 7.0 support. (props [@phpbits](https://github.com/phpbits), [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#349](https://github.com/10up/simple-podcasting/pull/349), [#360](https://github.com/10up/simple-podcasting/pull/360)). +* **Changed:** Update NPM dependencies via npm audit fix. (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)). = 1.9.1 - 2025-05-16 = * **Added:** Screenshots for all new features (props [@gabriel-glo](https://github.com/gabriel-glo), [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9), [@dkotter](https://github.com/dkotter) via [#310](https://github.com/10up/simple-podcasting/pull/310)). From e72f970f68dce53fa246c4d4fa3cb35f65b0a761 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 10:53:23 +1000 Subject: [PATCH 14/15] Add release dates to changelogs. --- CHANGELOG.md | 2 +- readme.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c7b69f8..864481b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD -## [2.0.0] - TBD +## [2.0.0] - 2026-06-25 **Note that this release bumps the WordPress minimum version from 6.6 to 6.8.** ### Added diff --git a/readme.txt b/readme.txt index bbf9b031..ba090c2e 100644 --- a/readme.txt +++ b/readme.txt @@ -131,7 +131,7 @@ Please report security bugs found in the source code of the Simple Podcasting pl == Changelog == -= 2.0.0 - TBD = += 2.0.0 - 2026-06-25 = **Note that this release bumps the WordPress minimum version from 6.6 to 6.8.** * **Added:** Ability to dock podcast player to top or bottom of browser window. (props [@wadebekker](https://github.com/wadebekker), [@sanketio](https://github.com/sanketio), [@peterwilsoncc](https://github.com/peterwilsoncc), [@github-actions[bot]](https://github.com/apps/github-actions), [@jeffpaul](https://github.com/jeffpaul) via [#331](https://github.com/10up/simple-podcasting/pull/331)). From e7dd77ccff67dbb07def605a3f0830d8dedb5fe6 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 25 Jun 2026 10:58:42 +1000 Subject: [PATCH 15/15] Add veresion bump script to developer changelog. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 864481b8..f7ceccdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Introduce tests for the plugin meta data. (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@Copilot](https://github.com/apps/copilot-pull-request-reviewer), [@dkotter](https://github.com/dkotter) via [#364](https://github.com/10up/simple-podcasting/pull/364)) - Update Cypress-WP-Utils to 0.6.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) - Update WP-Scripts to 31.2.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#351](https://github.com/10up/simple-podcasting/pull/351)) +- Introduce version bump script (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter) via [#367](https://github.com/10up/simple-podcasting/pull/351)) ### Security - Bump `@babel/plugin-transform-modules-systemjs` from 7.28.5 to 7.29.7 in the npm_and_yarn group across 1 directory (props [@dependabot[bot]](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#362](https://github.com/10up/simple-podcasting/pull/362))