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.18"
".": "0.1.19"
}
4 changes: 2 additions & 2 deletions .wordpress-org/blueprints/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
"path": "/wordpress/wp-content/plugins/presence-api/demo-seeder.php",
"data": {
"resource": "url",
"url": "https://raw.githubusercontent.com/WordPress/presence-api/v0.1.18/tests/e2e/demo-seeder.php"
"url": "https://raw.githubusercontent.com/WordPress/presence-api/v0.1.19/tests/e2e/demo-seeder.php"
}
},
{
"step": "writeFile",
"path": "/wordpress/wp-content/mu-plugins/screen-stale-demo-helper.php",
"data": {
"resource": "url",
"url": "https://raw.githubusercontent.com/WordPress/presence-api/v0.1.18/tests/e2e/screen-stale-demo-helper.php"
"url": "https://raw.githubusercontent.com/WordPress/presence-api/v0.1.19/tests/e2e/screen-stale-demo-helper.php"
}
},
{
Expand Down
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.19](https://github.com/WordPress/presence-api/compare/v0.1.18...v0.1.19) (2026-08-14)


### Bug Fixes

* keyboard users can't reach non-link items in the admin bar presence flyout ([d73bbf7](https://github.com/WordPress/presence-api/commit/d73bbf7a1ac4bf77290e21074749fc5af6055af8))
* let core's focus color show through admin bar group headers ([4eb9fe8](https://github.com/WordPress/presence-api/commit/4eb9fe8da96787272ffddf94c2853ee9cf1738a4))
* make non-link admin bar flyout items reachable by keyboard ([bd77c8e](https://github.com/WordPress/presence-api/commit/bd77c8efe3bf959d7060f2bfa2a545ea287dfbdf))
* preserve focus across heartbeat re-renders in Active Posts widget ([07846f7](https://github.com/WordPress/presence-api/commit/07846f747494a930211625194165c9eea64475e6))
* preserve focus across heartbeat re-renders in dashboard widgets ([8310ba7](https://github.com/WordPress/presence-api/commit/8310ba724d1af7d99c8d8f5ca3f648cbd3959a38))
* preserve focus across heartbeat re-renders in Who's Online widget ([45e4f13](https://github.com/WordPress/presence-api/commit/45e4f13ea83be665a8daa3f98a8e4f73bf9dcec7))


### Dependencies

* **deps-dev:** update phpstan/phpstan requirement from 2.2.7 to 2.2.8 ([1c817f6](https://github.com/WordPress/presence-api/commit/1c817f60acef7d19b1725d8d380e4d18533d2256))

## [0.1.18](https://github.com/WordPress/presence-api/compare/v0.1.17...v0.1.18) (2026-08-11)


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.18
* Version: 0.1.19
* 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.18' );
define( 'WP_PRESENCE_VERSION', '0.1.19' );
define( 'WP_PRESENCE_DB_VERSION', 2 );
define( 'WP_PRESENCE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'WP_PRESENCE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down
8 changes: 7 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, iamchitti, iqbal1hossain, wp24horas,
Tags: presence, awareness, heartbeat, real-time
Requires at least: 7.0
Tested up to: 7.0
Stable tag: 0.1.18
Stable tag: 0.1.19
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,12 @@ Or [try it in WordPress Playground](https://playground.wordpress.net/?blueprint-

== Changelog ==

= 0.1.19 =
* Keyboard users can't reach non-link items in the admin bar presence flyout.
* Let core's focus color show through admin bar group headers.
* Make non-link admin bar flyout items reachable by keyboard.
* Preserve focus across heartbeat re-renders in Active Posts widget.

= 0.1.18 =
* Check table availability in the CLI command and debug viewer.
* Delete expired presence rows by key in bounded passes.
Expand Down