Skip to content

Commit aa8af15

Browse files
committed
test: add warm reuse and waitUntil test coverage, bump runtime-v8 to v0.13.4
- 6 warm reuse tests: timer/interval isolation, state persistence, response state clean, waitUntil + rejected waitUntil - 3 waitUntil conformance tests: multiple promises, rejected promise, mix resolved/rejected - bump runtime-v8 to v0.13.4 (timer leak fix, terminate flag fix, waitUntil rejection guard) - bump to 0.13.7
1 parent 94c4755 commit aa8af15

4 files changed

Lines changed: 443 additions & 8 deletions

File tree

Cargo.lock

Lines changed: 8 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openworkers-runner"
3-
version = "0.13.6"
3+
version = "0.13.7"
44
edition = "2024"
55
license = "MIT"
66
default-run = "openworkers-runner"
@@ -55,14 +55,14 @@ sqlx = { version = "0.8.6", features = [ "runtime-tokio", "postgres", "uuid", "b
5555
reqwest = { version = "0.13.1", default-features = false, features = ["rustls", "json", "stream"] }
5656

5757
# Core types
58-
openworkers-core = { path = "../openworkers-core", features = ["hyper"] }
58+
openworkers-core = { git = "https://github.com/openworkers/openworkers-core", tag = "v0.13.1", features = ["hyper"] }
5959

6060
# Transform (TS strip + export default → globalThis.default)
6161
# openworkers-transform = { path = "../openworkers-transform" }
6262
openworkers-transform = { git = "https://github.com/openworkers/openworkers-transform", tag = "v0.1.0" }
6363

6464
# Runtime backend (v8 only for now, others require older version of core)
65-
openworkers-runtime-v8 = { path = "../openworkers-runtime-v8", optional = true, features = ["ptrcomp"] }
65+
openworkers-runtime-v8 = { git = "https://github.com/openworkers/openworkers-runtime-v8", tag = "v0.13.4", optional = true, features = ["ptrcomp"] }
6666

6767
# WASM runtime (optional)
6868
# openworkers-runtime-wasm = { path = "../openworkers-runtime-wasm", optional = true }

0 commit comments

Comments
 (0)