workerd 1.20221111.3 → 1.20221111.4

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/install.js CHANGED
@@ -115,7 +115,7 @@ function installUsingNPM(pkg, subpath, binPath) {
115
115
  try {
116
116
  import_fs.default.writeFileSync(import_path2.default.join(installDir, "package.json"), "{}");
117
117
  import_child_process.default.execSync(
118
- `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"1.20221111.3"}`,
118
+ `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"1.20221111.4"}`,
119
119
  { cwd: installDir, stdio: "pipe", env }
120
120
  );
121
121
  const installedBinPath = import_path2.default.join(
@@ -161,7 +161,7 @@ function maybeOptimizePackage(binPath) {
161
161
  }
162
162
  }
163
163
  async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
164
- const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"1.20221111.3"}.tgz`;
164
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"1.20221111.4"}.tgz`;
165
165
  console.error(`[workerd] Trying to download ${JSON.stringify(url)}`);
166
166
  try {
167
167
  import_fs.default.writeFileSync(
package/lib/main.js CHANGED
@@ -131,7 +131,7 @@ by workerd to install the correct binary executable for your current platform.`)
131
131
  "node_modules",
132
132
  ".cache",
133
133
  "workerd",
134
- `pnpapi-${pkg}-${"1.20221111.3"}-${import_path.default.basename(subpath)}`
134
+ `pnpapi-${pkg}-${"1.20221111.4"}-${import_path.default.basename(subpath)}`
135
135
  );
136
136
  if (!import_fs.default.existsSync(binTargetPath)) {
137
137
  import_fs.default.mkdirSync(import_path.default.dirname(binTargetPath), { recursive: true });
@@ -147,7 +147,7 @@ by workerd to install the correct binary executable for your current platform.`)
147
147
  var { binPath } = generateBinPath();
148
148
  var node_path_default = binPath;
149
149
  var compatibilityDate = "2022-11-11";
150
- var version = "1.20221111.3";
150
+ var version = "1.20221111.4";
151
151
  // Annotate the CommonJS export names for ESM import in node:
152
152
  0 && (module.exports = {
153
153
  compatibilityDate,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workerd",
3
- "version": "1.20221111.3",
3
+ "version": "1.20221111.4",
4
4
  "description": "👷 workerd, Cloudflare's JavaScript/Wasm Runtime",
5
5
  "repository": "https://github.com/cloudflare/workerd",
6
6
  "scripts": {
@@ -14,10 +14,10 @@
14
14
  "workerd": "bin/workerd"
15
15
  },
16
16
  "optionalDependencies": {
17
- "@cloudflare/workerd-darwin-arm64": "1.20221111.3",
18
- "@cloudflare/workerd-darwin-64": "1.20221111.3",
19
- "@cloudflare/workerd-linux-arm64": "1.20221111.3",
20
- "@cloudflare/workerd-linux-64": "1.20221111.3"
17
+ "@cloudflare/workerd-darwin-arm64": "1.20221111.4",
18
+ "@cloudflare/workerd-darwin-64": "1.20221111.4",
19
+ "@cloudflare/workerd-linux-arm64": "1.20221111.4",
20
+ "@cloudflare/workerd-linux-64": "1.20221111.4"
21
21
  },
22
22
  "license": "Apache-2.0"
23
23
  }