Skip to content

Commit feb4102

Browse files
committed
release: v0.10.1
1 parent 8cf43ba commit feb4102

6 files changed

Lines changed: 52 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,52 @@
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.10.1] - 2026-06-28
6+
7+
### Changed
8+
- Emit standard fuzz observation artifacts
9+
- Complete browser SDK v1 contract: honor onClientConnected + expose granular ops
10+
- Add runtime-backed fuzz mutation contracts
11+
- Fallback staged input writes through PHP
12+
- Bind staged input materializer calls
13+
- Add public Codebox contract primitives
14+
- Add browser connector SDK primitives
15+
- Clarify Codebox runtime boundary docs
16+
- Clarify staged input materialization
17+
- Add browser runtime task SDK
18+
- Add public runtime descriptor API
19+
- Add contained-site sync facade
20+
- Add public artifact inspection facade
21+
- Preserve host files during VFS materialization
22+
- Create staged VFS directories before persistent writes
23+
- Add WordPress fuzz runtime coverage APIs
24+
- Use persistent writer for staged VFS inputs
25+
- Materialize staged inputs before workflow
26+
- Resolve runtime package sources from task target
27+
- Stage runtime package bundle sources
28+
- Record WordPress query timing observations
29+
- Clarify WordPress page-load command modes
30+
- Normalize runtime package public contract
31+
- Define runtime package task contract
32+
- Add rollback-safe REST mutation artifacts
33+
- Clarify fuzz suite ability runtime semantics
34+
- Record WordPress queries without SAVEQUERIES
35+
- Add runtime-backed fuzz suite CLI mode
36+
- Normalize runtime package task results
37+
- Support source-root PHPUnit extra plugins
38+
- Fallback to direct Playground PHP execution
39+
- Route browser runtime tasks to runtime package ability
40+
- Expose admin bar toggle on browser SDK facade
41+
- Remove legacy resolved tools bridge
42+
- Expose headless agent task result envelope
43+
- Propagate workload wrapper settings
44+
- Harden artifact postprocess host helpers
45+
46+
### Fixed
47+
- harden runtime package result handling
48+
- Fix project bootstrap PHPUnit autoload timing
49+
- default runtime package workflow
50+
551
## [0.10.0] - 2026-06-26
652

753
### Added

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.10.0",
3+
"version": "0.10.1",
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.10.0",
3+
"version": "0.10.1",
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.10.0",
3+
"version": "0.10.1",
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.10.0",
3+
"version": "0.10.1",
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.10.0
6+
* Version: 0.10.1
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.10.0' );
18+
define( 'WP_CODEBOX_PLUGIN_VERSION', '0.10.1' );
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)