diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d5af55d..4a1ef46 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.18" + ".": "0.1.19" } diff --git a/.wordpress-org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json index 66efdbf..d562f35 100644 --- a/.wordpress-org/blueprints/blueprint.json +++ b/.wordpress-org/blueprints/blueprint.json @@ -25,7 +25,7 @@ "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" } }, { @@ -33,7 +33,7 @@ "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" } }, { diff --git a/CHANGELOG.md b/CHANGELOG.md index d91bad4..3efac97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/presence-api.php b/presence-api.php index 00948db..147909c 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.18 + * Version: 0.1.19 * 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.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__ ) ); diff --git a/readme.txt b/readme.txt index 57868c8..fb50800 100644 --- a/readme.txt +++ b/readme.txt @@ -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 @@ -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.