workerd 1.20260507.1 → 1.20260508.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/workerd CHANGED
@@ -122,7 +122,7 @@ by workerd to install the correct binary executable for your current platform.`)
122
122
  "node_modules",
123
123
  ".cache",
124
124
  "workerd",
125
- `pnpapi-${pkg.replace("/", "-")}-${"1.20260507.1"}-${import_path.default.basename(subpath)}`
125
+ `pnpapi-${pkg.replace("/", "-")}-${"1.20260508.1"}-${import_path.default.basename(subpath)}`
126
126
  );
127
127
  if (!import_fs.default.existsSync(binTargetPath)) {
128
128
  import_fs.default.mkdirSync(import_path.default.dirname(binTargetPath), { recursive: true });
package/install.js CHANGED
@@ -94,10 +94,10 @@ operating system, or missing some shared libraries.`;
94
94
  console.error(msg);
95
95
  return;
96
96
  }
97
- if (stdout !== `workerd ${"2026-05-07"}`) {
97
+ if (stdout !== `workerd ${"2026-05-08"}`) {
98
98
  throw new Error(
99
99
  `Expected ${JSON.stringify(
100
- "2026-05-07"
100
+ "2026-05-08"
101
101
  )} but got ${JSON.stringify(stdout)}`
102
102
  );
103
103
  }
@@ -152,7 +152,7 @@ function installUsingNPM(pkg, subpath, binPath) {
152
152
  try {
153
153
  import_fs.default.writeFileSync(import_path2.default.join(installDir, "package.json"), "{}");
154
154
  import_child_process.default.execSync(
155
- `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"1.20260507.1"}`,
155
+ `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"1.20260508.1"}`,
156
156
  { cwd: installDir, stdio: "pipe", env }
157
157
  );
158
158
  const installedBinPath = import_path2.default.join(
@@ -197,7 +197,7 @@ function maybeOptimizePackage(binPath) {
197
197
  }
198
198
  async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
199
199
  const unscopedPkg = pkg.substring(pkg.indexOf("/") + 1);
200
- const url = `https://registry.npmjs.org/${pkg}/-/${unscopedPkg}-${"1.20260507.1"}.tgz`;
200
+ const url = `https://registry.npmjs.org/${pkg}/-/${unscopedPkg}-${"1.20260508.1"}.tgz`;
201
201
  console.error(`[workerd] Trying to download ${JSON.stringify(url)}`);
202
202
  try {
203
203
  import_fs.default.writeFileSync(
package/lib/main.js CHANGED
@@ -136,7 +136,7 @@ by workerd to install the correct binary executable for your current platform.`)
136
136
  "node_modules",
137
137
  ".cache",
138
138
  "workerd",
139
- `pnpapi-${pkg.replace("/", "-")}-${"1.20260507.1"}-${import_path.default.basename(subpath)}`
139
+ `pnpapi-${pkg.replace("/", "-")}-${"1.20260508.1"}-${import_path.default.basename(subpath)}`
140
140
  );
141
141
  if (!import_fs.default.existsSync(binTargetPath)) {
142
142
  import_fs.default.mkdirSync(import_path.default.dirname(binTargetPath), { recursive: true });
@@ -151,8 +151,8 @@ by workerd to install the correct binary executable for your current platform.`)
151
151
  // npm/lib/node-path.ts
152
152
  var { binPath } = generateBinPath();
153
153
  var node_path_default = binPath;
154
- var compatibilityDate = "2026-05-07";
155
- var version = "1.20260507.1";
154
+ var compatibilityDate = "2026-05-08";
155
+ var version = "1.20260508.1";
156
156
  // Annotate the CommonJS export names for ESM import in node:
157
157
  0 && (module.exports = {
158
158
  compatibilityDate,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workerd",
3
- "version": "1.20260507.1",
3
+ "version": "1.20260508.1",
4
4
  "description": "👷 workerd, Cloudflare's JavaScript/Wasm Runtime",
5
5
  "repository": "https://github.com/cloudflare/workerd",
6
6
  "scripts": {
@@ -14,11 +14,11 @@
14
14
  "workerd": "bin/workerd"
15
15
  },
16
16
  "optionalDependencies": {
17
- "@cloudflare/workerd-darwin-arm64": "1.20260507.1",
18
- "@cloudflare/workerd-darwin-64": "1.20260507.1",
19
- "@cloudflare/workerd-linux-arm64": "1.20260507.1",
20
- "@cloudflare/workerd-linux-64": "1.20260507.1",
21
- "@cloudflare/workerd-windows-64": "1.20260507.1"
17
+ "@cloudflare/workerd-darwin-arm64": "1.20260508.1",
18
+ "@cloudflare/workerd-darwin-64": "1.20260508.1",
19
+ "@cloudflare/workerd-linux-arm64": "1.20260508.1",
20
+ "@cloudflare/workerd-linux-64": "1.20260508.1",
21
+ "@cloudflare/workerd-windows-64": "1.20260508.1"
22
22
  },
23
23
  "license": "Apache-2.0"
24
24
  }
package/worker.mjs CHANGED
@@ -11824,6 +11824,28 @@ interface WorkflowError {
11824
11824
  message: string;
11825
11825
  }
11826
11826
 
11827
+ interface WorkflowInstanceRestartOptions {
11828
+ /**
11829
+ * Restart from a specific step. If omitted, the instance restarts from the beginning.
11830
+ * The step must exist in the instance's execution history.
11831
+ */
11832
+ from?: {
11833
+ /**
11834
+ * The step name as defined in your workflow code.
11835
+ */
11836
+ name: string;
11837
+ /**
11838
+ * 1-indexed occurrence of this step name. Use when the same step name appears multiple times (e.g. in a loop).
11839
+ * @default 1
11840
+ */
11841
+ count?: number;
11842
+ /**
11843
+ * Step type filter. Use when different step types share the same name.
11844
+ */
11845
+ type?: 'do' | 'sleep' | 'waitForEvent';
11846
+ };
11847
+ }
11848
+
11827
11849
  declare abstract class WorkflowInstance {
11828
11850
  public id: string;
11829
11851
 
@@ -11843,9 +11865,11 @@ declare abstract class WorkflowInstance {
11843
11865
  public terminate(): Promise<void>;
11844
11866
 
11845
11867
  /**
11846
- * Restart the instance.
11868
+ * Restart the instance. Optionally restart from a specific step, preserving
11869
+ * cached results for all steps before it.
11870
+ * @param options Options for the restart, including an optional step to restart from.
11847
11871
  */
11848
- public restart(): Promise<void>;
11872
+ public restart(options?: WorkflowInstanceRestartOptions): Promise<void>;
11849
11873
 
11850
11874
  /**
11851
11875
  * Returns the current status of the instance.