From c0ec10a91090b1ec6047e9407e7e4676ba4e2113 Mon Sep 17 00:00:00 2001 From: Max Lyuchin Date: Tue, 22 Feb 2022 15:17:56 +0300 Subject: [PATCH 01/11] Plugin version bump 1.2.2 --- package-lock.json | 16 +++++++--------- package.json | 4 ++-- readme.txt | 2 +- simple-podcasting.php | 4 ++-- 4 files changed, 12 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2014192d..ba934334 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@10up/simple-podcasting", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -3033,14 +3033,6 @@ "webpack-cli": "^3.3.11", "webpack-livereload-plugin": "^2.3.0", "webpack-sources": "^2.2.0" - }, - "dependencies": { - "prettier": { - "version": "npm:wp-prettier@2.2.1-beta-1", - "resolved": "https://registry.npmjs.org/wp-prettier/-/wp-prettier-2.2.1-beta-1.tgz", - "integrity": "sha512-+JHkqs9LC/JPp51yy1hzs3lQ7qeuWCwOcSzpQNeeY/G7oSpnF61vxt7hRh87zNRTr6ob2ndy0W8rVzhgrcA+Gw==", - "dev": true - } } }, "@wordpress/stylelint-config": { @@ -12591,6 +12583,12 @@ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true }, + "prettier": { + "version": "npm:wp-prettier@2.2.1-beta-1", + "resolved": "https://registry.npmjs.org/wp-prettier/-/wp-prettier-2.2.1-beta-1.tgz", + "integrity": "sha512-+JHkqs9LC/JPp51yy1hzs3lQ7qeuWCwOcSzpQNeeY/G7oSpnF61vxt7hRh87zNRTr6ob2ndy0W8rVzhgrcA+Gw==", + "dev": true + }, "prettier-linter-helpers": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", diff --git a/package.json b/package.json index 1b0d34a1..e6d11d85 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@10up/simple-podcasting", - "version": "1.2.1", + "version": "1.2.2", "description": "A simple podcasting solution for WordPress. ", "homepage": "https://github.com/10up/simple-podcasting", "bugs": { @@ -22,7 +22,7 @@ "build": "wp-scripts build", "deploy": "npm install && npm run build", "makepot": "wpi18n makepot --domain-path languages --pot-file simple-podcasting.pot --type plugin --main-file simple-podcasting.php --exclude node_modules,tests,docs", - "prebuild": "npm run makepot", + "prebuild": "npm run makepot", "prepare": "husky install", "wp-env": "wp-env", "cypress:open": "cypress open --config-file tests/cypress/config.json", diff --git a/readme.txt b/readme.txt index 82512b87..60782716 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: simple podcasting, podcasting, podcast, apple podcasts, episode, gutenberg Requires at least: 4.6 Tested up to: 5.9 Requires PHP: 5.3 -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 diff --git a/simple-podcasting.php b/simple-podcasting.php index 03d1df46..ece46bbd 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.2.1 + * Version: 1.2.2 * Author: 10up * Author URI: http://10up.com/ * License: GPL v2 or later @@ -15,7 +15,7 @@ namespace tenup_podcasting; -define( 'PODCASTING_VERSION', '1.2.1' ); +define( 'PODCASTING_VERSION', '1.2.2' ); define( 'PODCASTING_PATH', dirname( __FILE__ ) . '/' ); define( 'PODCASTING_URL', plugin_dir_url( __FILE__ ) ); define( 'TAXONOMY_NAME', 'podcasting_podcasts' ); From 90c163b4488df3679731fc2e4e07d6d7c2caa2d0 Mon Sep 17 00:00:00 2001 From: Max Lyuchin Date: Tue, 22 Feb 2022 17:05:25 +0300 Subject: [PATCH 02/11] Changelog --- CHANGELOG.md | 17 +++++++++++++++-- readme.txt | 11 +++++++++++ 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 651d7b73..3c0cc00a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,21 @@ All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/). -## [Unreleased] -- Filter `simple_podcasting_feed_item` to modify RSS feed item data before output (pros [@cadic](https://github.com/cadic)). +## [1.2.2] - 2022-02-22 +### Added +- Filter `simple_podcasting_feed_item` to modify RSS feed item data before output (props (props [@cadic](https://github.com/cadic), [@iamdharmesh](https://github.com/iamdharmesh), [@jeffpaul](https://github.com/jeffpaul) via [#144](https://github.com/10up/simple-podcasting/pull/144)). +- Unit tests (props [@cadic](https://github.com/cadic) via [#142](https://github.com/10up/simple-podcasting/pull/142), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul)). +- GitHub action job to run PHPCS (props [@cadic](https://github.com/cadic), [@dkotter](https://github.com/dkotter) via [#136](https://github.com/10up/simple-podcasting/pull/136)). +- Auto-create pot file in languages folder during the build process (props [@dkotter](https://github.com/dkotter), [@cadic](https://github.com/cadic) via [#131](https://github.com/10up/simple-podcasting/pull/131)). + +### Changed +- Bump WordPress "tested up to" version 5.9 (props [@sudip-10up](https://github.com/sudip-10up), [@cadic](https://github.com/cadic), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#140](https://github.com/10up/simple-podcasting/pull/140)). + +### Fixed +- End-to-end tests with WordPress 5.9 element IDs (props[@cadic](https://github.com/cadic), [@felipeelia](https://github.com/felipeelia), [@dinhtungdu](https://github.com/dinhtungdu) via [#146](https://github.com/10up/simple-podcasting/pull/146)). +- Podcast feed link output on Edit Podcast screen (props [@mehidi258](https://github.com/mehidi258), [@jeffpaul](https://github.com/jeffpaul), [@cadic](https://github.com/cadic) via [#139](https://github.com/10up/simple-podcasting/pull/139)). +- Bug fix for `is_feed` being called too early (props [@tomjn](https://github.com/tomjn), [@jeffpaul](https://github.com/jeffpaul) via [#135](https://github.com/10up/simple-podcasting/pull/135)). +- 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)). ## [1.2.1] - 2021-12-16 ### Added diff --git a/readme.txt b/readme.txt index 60782716..7c55c0ff 100644 --- a/readme.txt +++ b/readme.txt @@ -102,6 +102,17 @@ add_filter( 'simple_podcasting_feed_item', 'podcasting_feed_item_filter', 10, 3 == Changelog == += 1.2.2 = +* **Added:** Filter 'simple_podcasting_feed_item' to modify RSS feed item data before output (props [@cadic](https://profiles.wordpress.org/cadic), [@iamdharmesh](https://profiles.wordpress.org/dharm1025), [@jeffpaul](https://profiles.wordpress.org/jeffpaul)). +* **Added:** Unit tests (props [@cadic](https://profiles.wordpress.org/cadic), [@dkotter](https://profiles.wordpress.org/dkotter), [@jeffpaul](https://profiles.wordpress.org/jeffpaul)). +* **Added:** GitHub action job to run PHPCS (props [@cadic](https://profiles.wordpress.org/cadic), [@dkotter](https://profiles.wordpress.org/dkotter)). +* **Added:** Auto-create pot file in languages folder during the build process (props [@dkotter](https://profiles.wordpress.org/dkotter), [@cadic](https://profiles.wordpress.org/cadic)). +* **Changed:** Bump WordPress "tested up to" version 5.9 (props [@sudip-10up](https://github.com/sudip-10up), [@cadic](https://profiles.wordpress.org/cadic), [@peterwilsoncc](https://profiles.wordpress.org/peterwilsoncc)). +* **Fixed:** End-to-end tests with WordPress 5.9 element IDs (props[@cadic](https://profiles.wordpress.org/cadic), [@felipeelia](https://profiles.wordpress.org/felipeelia), [@dinhtungdu](https://profiles.wordpress.org/dinhtungdu)). +* **Fixed:** Podcast feed link output on Edit Podcast screen (props [@mehidi258](https://profiles.wordpress.org/mehidi258), [@jeffpaul](https://profiles.wordpress.org/jeffpaul), [@cadic](https://profiles.wordpress.org/cadic)). +* **Fixed:** Bug fix for `is_feed` being called too early (props [@tomjn](https://profiles.wordpress.org/tomjn), [@jeffpaul](https://profiles.wordpress.org/jeffpaul)). +* **Fixed:** Missing and incorrect text-domain (props [@dkotter](https://profiles.wordpress.org/dkotter), [@cadic](https://profiles.wordpress.org/cadic)). + = 1.2.1 = * **Added:** Filter 'simple_podcasting_episodes_per_page' to override default of 250 episodes per podcast feed (props [@pabamato](https://profiles.wordpress.org/pabamato), [@dinhtungdu](https://profiles.wordpress.org/dinhtungdu), [@monomo111](https://github.com/monomo111), [@jeffpaul](https://profiles.wordpress.org/jeffpaul/), [@jakemgold](https://profiles.wordpress.org/jakemgold/)). * **Added:** End-to-end testing using Cypress and `wp-env` (props [@dinhtungdu](https://profiles.wordpress.org/dinhtungdu), [@markjaquith](https://profiles.wordpress.org/markjaquith/), [@youknowriad](https://profiles.wordpress.org/youknowriad/), [@helen](https://profiles.wordpress.org/helen/)). From 528378c0cf5bbd8979fe75d040b551afcd1f4398 Mon Sep 17 00:00:00 2001 From: Max Lyuchin Date: Tue, 22 Feb 2022 17:08:59 +0300 Subject: [PATCH 03/11] Credits --- CREDITS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CREDITS.md b/CREDITS.md index 1631a26f..4c5eeb9d 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -4,13 +4,13 @@ The following acknowledges the Maintainers for this repository, those who have C The following individuals are responsible for curating the list of issues, responding to pull requests, and ensuring regular releases happen. -[Jeffrey Paul](https://github.com/jeffpaul) +[Jeffrey Paul](https://github.com/jeffpaul), [@cadic](https://github.com/cadic) ## Contributors 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). +[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), [@cadic](https://github.com/cadic), [@iamdharmesh](https://github.com/iamdharmesh), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc), [@felipeelia](https://github.com/felipeelia), [@mehidi258](https://github.com/mehidi258), [@tomjn](https://github.com/tomjn). ## Libraries From e446f16bc67ae546b39db9dffabdf0228bf4e47e Mon Sep 17 00:00:00 2001 From: Max Lyuchin Date: Tue, 22 Feb 2022 17:19:01 +0300 Subject: [PATCH 04/11] Ignore vendor directory while extracting translation strings --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e6d11d85..e51b61b0 100755 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "start": "wp-scripts start", "build": "wp-scripts build", "deploy": "npm install && npm run build", - "makepot": "wpi18n makepot --domain-path languages --pot-file simple-podcasting.pot --type plugin --main-file simple-podcasting.php --exclude node_modules,tests,docs", + "makepot": "wpi18n makepot --domain-path languages --pot-file simple-podcasting.pot --type plugin --main-file simple-podcasting.php --exclude node_modules,tests,docs,vendor", "prebuild": "npm run makepot", "prepare": "husky install", "wp-env": "wp-env", From 9097abc34e7497c1109701c39718632a4fb50b69 Mon Sep 17 00:00:00 2001 From: Max Lyuchin Date: Tue, 22 Feb 2022 17:19:57 +0300 Subject: [PATCH 05/11] Remove phpunit config and vendor folder from the distribution --- .distignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.distignore b/.distignore index 04086e7c..323dc497 100644 --- a/.distignore +++ b/.distignore @@ -6,6 +6,7 @@ /gulp-tasks /node_modules /tests +/vendor /.babelrc /.distignore @@ -25,5 +26,6 @@ /LICENSE.md /package.json /package-lock.json +/phpunit.xml.dist /README.md /webpack.config.js From 5b30609a8d930c5a0575c520490867ba06a5c7c2 Mon Sep 17 00:00:00 2001 From: Max Lyuchin Date: Tue, 22 Feb 2022 17:22:17 +0300 Subject: [PATCH 06/11] Colorize PHP snippets in README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9f6b306a..3add66c1 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Podcast setup | Podcast in editor | Podcast feed If you want to adjust the default number of episodes included in a podcast RSS feed, then utilize the following to do so... -``` +```php Date: Mon, 28 Feb 2022 12:09:17 +0300 Subject: [PATCH 07/11] Bump 1.2.2 release date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c0cc00a..eb94488f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/). -## [1.2.2] - 2022-02-22 +## [1.2.2] - 2028-02-22 ### Added - Filter `simple_podcasting_feed_item` to modify RSS feed item data before output (props (props [@cadic](https://github.com/cadic), [@iamdharmesh](https://github.com/iamdharmesh), [@jeffpaul](https://github.com/jeffpaul) via [#144](https://github.com/10up/simple-podcasting/pull/144)). - Unit tests (props [@cadic](https://github.com/cadic) via [#142](https://github.com/10up/simple-podcasting/pull/142), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul)). From 014cc0528213d29e7fdda93722dfb37f0c8eab61 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 28 Feb 2022 22:02:24 -0600 Subject: [PATCH 08/11] add date in CHANGELOG.md --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb94488f..de63d2c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/). -## [1.2.2] - 2028-02-22 +## [1.2.2] - 2022-03-01 ### Added - Filter `simple_podcasting_feed_item` to modify RSS feed item data before output (props (props [@cadic](https://github.com/cadic), [@iamdharmesh](https://github.com/iamdharmesh), [@jeffpaul](https://github.com/jeffpaul) via [#144](https://github.com/10up/simple-podcasting/pull/144)). - Unit tests (props [@cadic](https://github.com/cadic) via [#142](https://github.com/10up/simple-podcasting/pull/142), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul)). @@ -85,6 +85,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 +[1.2.2]: https://github.com/10up/simple-podcasting/compare/1.2.1...1.2.2 [1.2.1]: https://github.com/10up/simple-podcasting/compare/1.2.0...1.2.1 [1.2.0]: https://github.com/10up/simple-podcasting/compare/1.1.1...1.2.0 [1.1.1]: https://github.com/10up/simple-podcasting/compare/f8a958c...1.1.1 From 94f3bdee87e52b070cfd96ad09ff467ebfe38ee8 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 28 Feb 2022 22:06:22 -0600 Subject: [PATCH 09/11] Update CHANGELOG.md --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index de63d2c4..5ff1ca33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,9 @@ All notable changes to this project will be documented in this file, per [the Ke - Bug fix for `is_feed` being called too early (props [@tomjn](https://github.com/tomjn), [@jeffpaul](https://github.com/jeffpaul) via [#135](https://github.com/10up/simple-podcasting/pull/135)). - 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)). + ## [1.2.1] - 2021-12-16 ### Added - Filter `simple_podcasting_episodes_per_page` to override default of 250 episodes per podcast feed (props [@pabamato](https://github.com/pabamato), [@dinhtungdu](https://github.com/dinhtungdu), [@monomo111](https://github.com/monomo111), [@jeffpaul](https://github.com/jeffpaul), [@jakemgold](https://github.com/jakemgold) via [#109](https://github.com/10up/simple-podcasting/pull/109)). From cb3576c02df2bc15cf30c4d5cf23d0a54d343847 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 28 Feb 2022 22:09:05 -0600 Subject: [PATCH 10/11] Update CREDITS.md --- CREDITS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CREDITS.md b/CREDITS.md index 4c5eeb9d..81f7d58e 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -4,13 +4,13 @@ The following acknowledges the Maintainers for this repository, those who have C The following individuals are responsible for curating the list of issues, responding to pull requests, and ensuring regular releases happen. -[Jeffrey Paul](https://github.com/jeffpaul), [@cadic](https://github.com/cadic) +[Max Lyuchin (@cadic)](https://github.com/cadic), [Jeffrey Paul](https://github.com/jeffpaul). ## Contributors 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), [@cadic](https://github.com/cadic), [@iamdharmesh](https://github.com/iamdharmesh), [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc), [@felipeelia](https://github.com/felipeelia), [@mehidi258](https://github.com/mehidi258), [@tomjn](https://github.com/tomjn). +[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), [@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). ## Libraries From 68898c14300e71a63a4e78c277096ec0f1da0c45 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 28 Feb 2022 22:10:33 -0600 Subject: [PATCH 11/11] Update readme.txt --- readme.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 7c55c0ff..dbc90d34 100644 --- a/readme.txt +++ b/readme.txt @@ -102,7 +102,7 @@ add_filter( 'simple_podcasting_feed_item', 'podcasting_feed_item_filter', 10, 3 == Changelog == -= 1.2.2 = += 1.2.2 - 2022-03-01 = * **Added:** Filter 'simple_podcasting_feed_item' to modify RSS feed item data before output (props [@cadic](https://profiles.wordpress.org/cadic), [@iamdharmesh](https://profiles.wordpress.org/dharm1025), [@jeffpaul](https://profiles.wordpress.org/jeffpaul)). * **Added:** Unit tests (props [@cadic](https://profiles.wordpress.org/cadic), [@dkotter](https://profiles.wordpress.org/dkotter), [@jeffpaul](https://profiles.wordpress.org/jeffpaul)). * **Added:** GitHub action job to run PHPCS (props [@cadic](https://profiles.wordpress.org/cadic), [@dkotter](https://profiles.wordpress.org/dkotter)). @@ -112,6 +112,7 @@ add_filter( 'simple_podcasting_feed_item', 'podcasting_feed_item_filter', 10, 3 * **Fixed:** Podcast feed link output on Edit Podcast screen (props [@mehidi258](https://profiles.wordpress.org/mehidi258), [@jeffpaul](https://profiles.wordpress.org/jeffpaul), [@cadic](https://profiles.wordpress.org/cadic)). * **Fixed:** Bug fix for `is_feed` being called too early (props [@tomjn](https://profiles.wordpress.org/tomjn), [@jeffpaul](https://profiles.wordpress.org/jeffpaul)). * **Fixed:** Missing and incorrect text-domain (props [@dkotter](https://profiles.wordpress.org/dkotter), [@cadic](https://profiles.wordpress.org/cadic)). +* **Security:** Bump `nanoid` from 3.1.25 to 3.2.0 (props [@dependabot](https://github.com/apps/dependabot)). = 1.2.1 = * **Added:** Filter 'simple_podcasting_episodes_per_page' to override default of 250 episodes per podcast feed (props [@pabamato](https://profiles.wordpress.org/pabamato), [@dinhtungdu](https://profiles.wordpress.org/dinhtungdu), [@monomo111](https://github.com/monomo111), [@jeffpaul](https://profiles.wordpress.org/jeffpaul/), [@jakemgold](https://profiles.wordpress.org/jakemgold/)).