Skip to content

Commit 6457dca

Browse files
committed
release: v0.12.28
1 parent 45f541e commit 6457dca

6 files changed

Lines changed: 42 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,42 @@
22

33
All notable changes to this project will be documented in this file. Entries are generated by homeboy from git commits.
44

5+
## [0.12.28] - 2026-07-18
6+
7+
### Changed
8+
- Normalize root extra-plugin source subpaths
9+
- Accept canonical GitHub repository casing
10+
- Serve WordPress through the Cloudflare Worker
11+
- Use MDI constrained runtime for R2 revisions
12+
- Persist canonical MDI revisions in R2
13+
- Probe MDI primary R2 persistence
14+
- Serialize Cloudflare WordPress state revisions
15+
- Boot Cloudflare runtime from streamed WordPress seed
16+
- Probe Cloudflare WordPress short bootstrap
17+
- Skip installer checks for seeded WordPress
18+
- Expose visual explanation controls
19+
- Disable WordPress bootstrap side effects
20+
- Boot Cloudflare WordPress from install seed
21+
- Filter remote WordPress archive entries
22+
- Load PHPUnit dependencies after database install
23+
- Resolve omitted publication base from repository metadata
24+
- Consolidate WordPress runtime inputs
25+
- Split streamed WordPress boot probes
26+
- Stream WordPress server files in Cloudflare boot
27+
- Probe PHP and WordPress archive overlap
28+
- Split Cloudflare archive memory probes
29+
- Instrument Cloudflare WordPress boot phases
30+
- Add stateful block editor mutation steps
31+
- Expose editor actions to fuzz sequences
32+
- Forward runtime environment to PHPUnit
33+
- Raise Cloudflare WordPress boot CPU budget
34+
- Add Cloudflare WordPress runtime gate
35+
36+
### Fixed
37+
- Fix runtime backend boundary enforcement
38+
- Fix runner workspace default branch resolution
39+
- Fix nested mount overlays
40+
541
## [0.12.27] - 2026-07-18
642

743
### Changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-codebox-workspace",
3-
"version": "0.12.27",
3+
"version": "0.12.28",
44
"private": true,
55
"type": "module",
66
"exports": {

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@automattic/wp-codebox-cli",
3-
"version": "0.12.27",
3+
"version": "0.12.28",
44
"description": "WP Codebox CLI — secure WordPress code execution from anywhere. Run disposable Playground sandboxes from any host: CLI, CI, mobile, Node service, or WP plugin.",
55
"type": "module",
66
"bin": {

packages/runtime-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@automattic/wp-codebox-core",
3-
"version": "0.12.27",
3+
"version": "0.12.28",
44
"type": "module",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/runtime-playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@automattic/wp-codebox-playground",
3-
"version": "0.12.27",
3+
"version": "0.12.28",
44
"type": "module",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/wordpress-plugin/wp-codebox.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WP Codebox
44
* Plugin URI: https://github.com/Automattic/wp-codebox
55
* Description: Secure coding environments inside WordPress. WordPress ability surface for launching disposable WP Codebox Playground sandboxes that can't touch your host site.
6-
* Version: 0.12.27
6+
* Version: 0.12.28
77
* Requires at least: 6.9
88
* Requires PHP: 8.2
99
* Author: Automattic
@@ -15,7 +15,7 @@
1515
die;
1616
}
1717

18-
define( 'WP_CODEBOX_PLUGIN_VERSION', '0.12.27' );
18+
define( 'WP_CODEBOX_PLUGIN_VERSION', '0.12.28' );
1919
define( 'WP_CODEBOX_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
2020
define( 'WP_CODEBOX_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
2121

0 commit comments

Comments
 (0)