Minor Changes
-
#12431
7aaa2a5Thanks @emily-shen! - Add ability to search KV keys by prefixThe UI and list keys API now lets you search KV keys by prefix.
This is an experimental WIP feature.
Patch Changes
-
#12541
f7fa326Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
Dependency From To workerd 1.20260210.0 1.20260212.0 -
#12025
d06ad09Thanks @petebacondarwin! - Fix potential EBADF error when restarting workerd processPreviously, when the workerd process was restarted (e.g., via
setOptions()or Vite server restart), the stdio pipes from the previous process were not explicitly destroyed. This could lead toEBADF(Bad File Descriptor) errors during spawn on some systems.The
Runtime#dispose()method now explicitly destroys all stdio streams (stdin, stdout, stderr, and the control pipe) before killing the process to ensure file descriptors are properly released.