wrangler 3.84.0 → 3.84.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "3.84.0",
3
+ "version": "3.84.1",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -155898,7 +155898,7 @@ var import_undici3 = __toESM(require_undici());
155898
155898
 
155899
155899
  // package.json
155900
155900
  var name = "wrangler";
155901
- var version = "3.84.0";
155901
+ var version = "3.84.1";
155902
155902
 
155903
155903
  // src/user/index.ts
155904
155904
  init_import_meta_url();
@@ -160626,6 +160626,11 @@ var validateBindingsHaveUniqueNames = /* @__PURE__ */ __name((diagnostics, confi
160626
160626
  if (!(bindingName in bindingsGroupedByName)) {
160627
160627
  bindingsGroupedByName[bindingName] = [];
160628
160628
  }
160629
+ if (bindingName === "ASSETS" && isPagesConfig(config)) {
160630
+ diagnostics.errors.push(
160631
+ `The name 'ASSETS' is reserved in Pages projects. Please use a different name for your ${bindingType} binding.`
160632
+ );
160633
+ }
160629
160634
  bindingsGroupedByName[bindingName].push(bindingType);
160630
160635
  }
160631
160636
  }
@@ -182104,6 +182109,7 @@ async function handleModifyCommand(args, config) {
182104
182109
  location,
182105
182110
  ssh_public_key_ids: keys,
182106
182111
  environment_variables: selectedEnvironmentVariables,
182112
+ labels: selectedLabels,
182107
182113
  vcpu: args.vcpu ?? config.cloudchamber.vcpu,
182108
182114
  memory: args.memory ?? config.cloudchamber.memory
182109
182115
  })