From 6fdd9e34f8c068090173f4d739f2e5b3bd43982a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 16:42:21 +0000 Subject: [PATCH 1/2] chore(main): release 0.1.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0333593..a4e0c96 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.4" + ".": "0.1.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cd9d1d1..364e90e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [0.1.5](https://github.com/WordPress/sync-storage/compare/v0.1.4...v0.1.5) (2026-08-19) + + +### Bug Fixes + +* activate Gutenberg's real-time-collaboration experiment on plugin load ([230373c](https://github.com/WordPress/sync-storage/commit/230373c02d64ba0ff915b070d03a6e0987b6a963)) +* give CI a .env so REST discovery hits the right wp-env port ([d62a2b8](https://github.com/WordPress/sync-storage/commit/d62a2b88dd0273da323ec341e338759c9894f656)) +* give collaborative Playwright tests enough time on CI ([cec0720](https://github.com/WordPress/sync-storage/commit/cec072000bba874f0d7f52efa4f9e0faaf0ac2ec)) +* give collaborative Playwright tests enough time on CI ([2e1986a](https://github.com/WordPress/sync-storage/commit/2e1986a8f1d50c412410a7da26aeccde9e503233)) +* give release-please branches a real success, not skipped, on required checks ([8d09690](https://github.com/WordPress/sync-storage/commit/8d09690f955499ea5540eb306972cf9fcee1672d)) +* give release-please branches a real success, not skipped, on required checks ([2663fc8](https://github.com/WordPress/sync-storage/commit/2663fc813d9400646de781f26fbfb6cf9e196521)) +* point Playwright readiness check at /wp-json/ to warm REST routes ([728d2c9](https://github.com/WordPress/sync-storage/commit/728d2c9ea5707c0e82ebd3d72cfa6514863feab2)) +* provision e2e collaborator users via WP-CLI instead of REST ([5a0148c](https://github.com/WordPress/sync-storage/commit/5a0148c65077298013b9eb2fe18edeeeb673fec0)) +* reach the editor canvas iframe in the room-creation e2e test ([07459c0](https://github.com/WordPress/sync-storage/commit/07459c0b029e9c6773e8204257a1a5fcaf14c258)) +* remove global-setup REST warm-up that hung CI for 30 minutes ([787f557](https://github.com/WordPress/sync-storage/commit/787f55786046575bc9f10690f68f9724e9b7344c)) +* remove global-setup REST warm-up that hung CI for 30 minutes ([3264a4d](https://github.com/WordPress/sync-storage/commit/3264a4df058a09024e1a5db6cdaf0d40dd0c838f)) +* resolve zizmor code-scanning findings ([8593000](https://github.com/WordPress/sync-storage/commit/8593000bafa665f2eeea8d5e80ed07825830ea2b)) +* resolve zizmor code-scanning findings ([c156871](https://github.com/WordPress/sync-storage/commit/c156871650032ec90b43c22c4c9057bc3e2a3a1e)) +* skip apt-get in Playwright browser install on cache hit ([b33e901](https://github.com/WordPress/sync-storage/commit/b33e901695572e146fd76d8c784876b8935b3ee5)) +* warn when Gutenberg build silently skips sync-storage's filter ([a86520c](https://github.com/WordPress/sync-storage/commit/a86520c9122ca59e622f7fbe6585d667ae0b38e8)) +* warn when Gutenberg build silently skips sync-storage's filter ([4d7df00](https://github.com/WordPress/sync-storage/commit/4d7df00e238ac946d3ae2d28071bad788c599102)) + ## [0.1.4](https://github.com/WordPress/sync-storage/compare/v0.1.3...v0.1.4) (2026-08-18) From 950d8a54416ec4c8844c9bad9481bbed346efb47 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 16:42:32 +0000 Subject: [PATCH 2/2] chore: sync plugin header version --- readme.txt | 2 +- sync-storage.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 78d7216..fd934aa 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: collaboration, real-time, gutenberg, presence, yjs Requires at least: 7.0 Tested up to: 7.0 Requires PHP: 7.4 -Stable tag: 0.1.4 +Stable tag: 0.1.5 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html diff --git a/sync-storage.php b/sync-storage.php index 0bd88a0..395377f 100644 --- a/sync-storage.php +++ b/sync-storage.php @@ -2,7 +2,7 @@ /** * Plugin Name: Sync Storage * Description: WP_Sync_Storage implementation for WordPress collaborative editing. - * Version: 0.1.4 + * Version: 0.1.5 * Requires at least: 7.0 * Requires PHP: 7.4 * Requires Plugins: presence-api, gutenberg @@ -58,7 +58,7 @@ function () { return; } -define( 'WP_SYNC_STORAGE_VERSION', '0.1.4' ); +define( 'WP_SYNC_STORAGE_VERSION', '0.1.5' ); define( 'WP_SYNC_STORAGE_DB_VERSION', 1 ); define( 'WP_SYNC_STORAGE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'WP_SYNC_STORAGE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );