Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.7"
".": "0.1.8"
}
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions presence-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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__ ) );
Expand Down
10 changes: 9 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
Loading