From 6d628ed5bf293357acb19a54681a8147591f14af Mon Sep 17 00:00:00 2001 From: Joe Fusco Date: Fri, 24 Jul 2026 13:43:12 -0400 Subject: [PATCH 1/2] chore(main): release 0.1.8 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c2f8835..193f420 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.7" + ".": "0.1.8" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 98e0553..f9da151 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.1.8](https://github.com/WordPress/presence-api/compare/v0.1.7...v0.1.8) (2026-07-24) + + +### Bug Fixes + +* add AI Tools disclosure to automated contributor PR body ([17261d4](https://github.com/WordPress/presence-api/commit/17261d450362cdedca898f161e83008630965e70)) +* add concurrency group, use default_branch instead of hardcoded main ([bd4b20e](https://github.com/WordPress/presence-api/commit/bd4b20e93ae1f1855de8507e43338db0ef102772)) +* robot PR body for first contributions, suppress props-bot on contributor PRs ([1990954](https://github.com/WordPress/presence-api/commit/1990954eedb6c5130e3677d89667fa16181829f1)) +* suppress props-bot on release-please PRs ([b2dd9ab](https://github.com/WordPress/presence-api/commit/b2dd9ab4020cfe70eb8d0d5af08c461599dbbed6)) +* suppress props-bot on release-please PRs ([3b9ad69](https://github.com/WordPress/presence-api/commit/3b9ad69471b9cbc3b885cd020de1b4c7a33329cd)) +* use user.type for bot detection, wrap fetch in full try/catch ([840ab72](https://github.com/WordPress/presence-api/commit/840ab720b1ba7901c3f2b8a69b021340abd6b9b3)) + + +### Reverts + +* remove AI disclosure from automated PR body ([2333d5e](https://github.com/WordPress/presence-api/commit/2333d5e29e823b4738ada29654afe63162e1e825)) + ## [0.1.7](https://github.com/WordPress/presence-api/compare/v0.1.6...v0.1.7) (2026-07-24) From 2dca34263c9bdc3d47ab1326eb683f7b3a013b22 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 17:43:23 +0000 Subject: [PATCH 2/2] chore: sync versions across plugin file and readme --- presence-api.php | 4 ++-- readme.txt | 10 +++++++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/presence-api.php b/presence-api.php index cf75ea9..2b45a7a 100644 --- a/presence-api.php +++ b/presence-api.php @@ -2,7 +2,7 @@ /** * Plugin Name: Presence API * Description: System-wide presence and awareness for WordPress. - * Version: 0.1.7 + * Version: 0.1.8 * Requires at least: 7.0 * Requires PHP: 7.4 * Author: WordPress Core Team @@ -45,7 +45,7 @@ function () { return; } -define( 'WP_PRESENCE_VERSION', '0.1.7' ); +define( 'WP_PRESENCE_VERSION', '0.1.8' ); define( 'WP_PRESENCE_DB_VERSION', '1' ); define( 'WP_PRESENCE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'WP_PRESENCE_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); diff --git a/readme.txt b/readme.txt index 4fc63cf..1725566 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: joefusco, intenzi, ashishjii Tags: presence, awareness, heartbeat, real-time Requires at least: 7.0 Tested up to: 7.0 -Stable tag: 0.1.7 +Stable tag: 0.1.8 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -53,6 +53,14 @@ Or [try it in WordPress Playground](https://playground.wordpress.net/?blueprint- == Changelog == += 0.1.8 = +* Add AI Tools disclosure to automated contributor PR body. +* Add concurrency group, use default_branch instead of hardcoded main. +* Robot PR body for first contributions, suppress props-bot on contributor PRs. +* Suppress props-bot on release-please PRs. +* Use user.type for bot detection, wrap fetch in full try/catch. +* Remove AI disclosure from automated PR body. + = 0.1.7 = * Add validate_callback validation check to REST screen_key. * Use correct REST route in PHPUnit tests.