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.4"
".": "0.1.5"
}
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions sync-storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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__ ) );
Expand Down
Loading