workerd 1.20260529.1 → 1.20260531.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 +1 -1
- package/install.js +4 -4
- package/lib/main.js +3 -3
- package/package.json +6 -6
- package/worker.mjs +32 -0
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.
|
|
125
|
+
`pnpapi-${pkg.replace("/", "-")}-${"1.20260531.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-
|
|
97
|
+
if (stdout !== `workerd ${"2026-05-31"}`) {
|
|
98
98
|
throw new Error(
|
|
99
99
|
`Expected ${JSON.stringify(
|
|
100
|
-
"2026-05-
|
|
100
|
+
"2026-05-31"
|
|
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.
|
|
155
|
+
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"1.20260531.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.
|
|
200
|
+
const url = `https://registry.npmjs.org/${pkg}/-/${unscopedPkg}-${"1.20260531.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.
|
|
139
|
+
`pnpapi-${pkg.replace("/", "-")}-${"1.20260531.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-
|
|
155
|
-
var version = "1.
|
|
154
|
+
var compatibilityDate = "2026-05-31";
|
|
155
|
+
var version = "1.20260531.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.
|
|
3
|
+
"version": "1.20260531.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.
|
|
18
|
-
"@cloudflare/workerd-darwin-64": "1.
|
|
19
|
-
"@cloudflare/workerd-linux-arm64": "1.
|
|
20
|
-
"@cloudflare/workerd-linux-64": "1.
|
|
21
|
-
"@cloudflare/workerd-windows-64": "1.
|
|
17
|
+
"@cloudflare/workerd-darwin-arm64": "1.20260531.1",
|
|
18
|
+
"@cloudflare/workerd-darwin-64": "1.20260531.1",
|
|
19
|
+
"@cloudflare/workerd-linux-arm64": "1.20260531.1",
|
|
20
|
+
"@cloudflare/workerd-linux-64": "1.20260531.1",
|
|
21
|
+
"@cloudflare/workerd-windows-64": "1.20260531.1"
|
|
22
22
|
},
|
|
23
23
|
"license": "Apache-2.0"
|
|
24
24
|
}
|
package/worker.mjs
CHANGED
|
@@ -8895,6 +8895,23 @@ interface RequestInitCfPropertiesImageDraw extends BasicImageTransformations {
|
|
|
8895
8895
|
* (form a line).
|
|
8896
8896
|
*/
|
|
8897
8897
|
repeat?: true | "x" | "y";
|
|
8898
|
+
/**
|
|
8899
|
+
* How to combine the foreground and backdrop pixels to create the result
|
|
8900
|
+
*/
|
|
8901
|
+
composite?:
|
|
8902
|
+
/** Foreground drawn on top of backdrop (default) */
|
|
8903
|
+
| 'over'
|
|
8904
|
+
/** Foreground shown only where backdrop is opaque */
|
|
8905
|
+
| 'in'
|
|
8906
|
+
/** Foreground drawn on top, but clipped to the backdrop's shape */
|
|
8907
|
+
| 'atop'
|
|
8908
|
+
/** Foreground shown only where backdrop is transparent */
|
|
8909
|
+
| 'out'
|
|
8910
|
+
/** Foreground and backdrop visible only where the other is not */
|
|
8911
|
+
| 'xor'
|
|
8912
|
+
/** Foreground and backdrop channels added (brightening) */
|
|
8913
|
+
| 'lighter';
|
|
8914
|
+
|
|
8898
8915
|
/**
|
|
8899
8916
|
* Position of the overlay image relative to a given edge. Each property is
|
|
8900
8917
|
* an offset in pixels. 0 aligns exactly to the edge. For example, left: 10
|
|
@@ -10283,12 +10300,27 @@ type ImageTransform = {
|
|
|
10283
10300
|
type ImageDrawOptions = {
|
|
10284
10301
|
opacity?: number;
|
|
10285
10302
|
repeat?: boolean | string;
|
|
10303
|
+
composite?: ImageCompositeMode;
|
|
10286
10304
|
top?: number;
|
|
10287
10305
|
left?: number;
|
|
10288
10306
|
bottom?: number;
|
|
10289
10307
|
right?: number;
|
|
10290
10308
|
};
|
|
10291
10309
|
|
|
10310
|
+
type ImageCompositeMode =
|
|
10311
|
+
/** Foreground drawn on top of backdrop (default) */
|
|
10312
|
+
| 'over'
|
|
10313
|
+
/** Foreground shown only where backdrop is opaque */
|
|
10314
|
+
| 'in'
|
|
10315
|
+
/** Foreground drawn on top, but clipped to the backdrop's shape */
|
|
10316
|
+
| 'atop'
|
|
10317
|
+
/** Foreground shown only where backdrop is transparent */
|
|
10318
|
+
| 'out'
|
|
10319
|
+
/** Foreground and backdrop visible only where the other is not */
|
|
10320
|
+
| 'xor'
|
|
10321
|
+
/** Foreground and backdrop channels added (brightening) */
|
|
10322
|
+
| 'lighter';
|
|
10323
|
+
|
|
10292
10324
|
type ImageInputOptions = {
|
|
10293
10325
|
encoding?: 'base64';
|
|
10294
10326
|
};
|