wrangler 3.114.16 → 3.114.17

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.114.16",
3
+ "version": "3.114.17",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -58,8 +58,8 @@
58
58
  "path-to-regexp": "6.3.0",
59
59
  "unenv": "2.0.0-rc.14",
60
60
  "workerd": "1.20250718.0",
61
- "miniflare": "3.20250718.3",
62
- "@cloudflare/kv-asset-handler": "0.3.4"
61
+ "@cloudflare/kv-asset-handler": "0.3.4",
62
+ "miniflare": "3.20250718.3"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@aws-sdk/client-s3": "^3.721.0",
@@ -81450,7 +81450,7 @@ var import_undici3 = __toESM(require_undici());
81450
81450
 
81451
81451
  // package.json
81452
81452
  var name = "wrangler";
81453
- var version = "3.114.16";
81453
+ var version = "3.114.17";
81454
81454
 
81455
81455
  // src/environment-variables/misc-variables.ts
81456
81456
  init_import_meta_url();
@@ -126964,7 +126964,12 @@ Ignoring configuration file for now, and proceeding with project deploy.`
126964
126964
  commitHash = (0, import_node_child_process4.execSync)(`git rev-parse HEAD`).toString().trim();
126965
126965
  }
126966
126966
  if (!commitMessage) {
126967
- commitMessage = (0, import_node_child_process4.execSync)(`git show -s --format=%B ${commitHash}`).toString().trim();
126967
+ commitMessage = (0, import_node_child_process4.execFileSync)("git", [
126968
+ "show",
126969
+ "-s",
126970
+ "--format=%B",
126971
+ commitHash
126972
+ ]).toString().trim();
126968
126973
  }
126969
126974
  } catch (err) {
126970
126975
  }