wrangler 4.46.0 → 4.48.0

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": "4.46.0",
3
+ "version": "4.48.0",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -54,15 +54,15 @@
54
54
  "esbuild": "0.25.4",
55
55
  "path-to-regexp": "6.3.0",
56
56
  "unenv": "2.0.0-rc.24",
57
- "workerd": "1.20251105.0",
57
+ "workerd": "1.20251109.0",
58
58
  "@cloudflare/kv-asset-handler": "0.4.0",
59
- "miniflare": "4.20251105.0",
60
- "@cloudflare/unenv-preset": "2.7.9"
59
+ "@cloudflare/unenv-preset": "2.7.10",
60
+ "miniflare": "4.20251109.1"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@aws-sdk/client-s3": "^3.721.0",
64
64
  "@cloudflare/types": "6.18.4",
65
- "@cloudflare/workers-types": "^4.20251014.0",
65
+ "@cloudflare/workers-types": "^4.20251109.0",
66
66
  "@cspotcode/source-map-support": "0.8.1",
67
67
  "@iarna/toml": "^3.0.0",
68
68
  "@netlify/build-info": "^10.0.9",
@@ -101,6 +101,7 @@
101
101
  "devtools-protocol": "^0.0.1182435",
102
102
  "dotenv": "^16.3.1",
103
103
  "dotenv-expand": "^12.0.2",
104
+ "eslint": "^9.39.1",
104
105
  "execa": "^6.1.0",
105
106
  "find-up": "^6.3.0",
106
107
  "get-port": "^7.0.0",
@@ -148,14 +149,14 @@
148
149
  "@cloudflare/cli": "1.1.3",
149
150
  "@cloudflare/containers-shared": "0.3.0",
150
151
  "@cloudflare/eslint-config-shared": "1.1.0",
152
+ "@cloudflare/pages-shared": "^0.13.85",
151
153
  "@cloudflare/workers-shared": "0.18.8",
152
- "@cloudflare/pages-shared": "^0.13.83",
153
154
  "@cloudflare/workers-tsconfig": "0.0.0",
154
- "@cloudflare/workflows-shared": "0.3.8",
155
- "@cloudflare/workers-utils": "0.0.2"
155
+ "@cloudflare/workers-utils": "0.1.0",
156
+ "@cloudflare/workflows-shared": "0.3.8"
156
157
  },
157
158
  "peerDependencies": {
158
- "@cloudflare/workers-types": "^4.20251014.0"
159
+ "@cloudflare/workers-types": "^4.20251109.0"
159
160
  },
160
161
  "peerDependenciesMeta": {
161
162
  "@cloudflare/workers-types": {
@@ -1143,9 +1143,12 @@ declare abstract class Framework {
1143
1143
  /** Some frameworks (i.e. Nuxt) don't need additional configuration */
1144
1144
  get configured(): boolean;
1145
1145
  abstract configure(outputDir: string): Promise<RawConfig> | RawConfig;
1146
+ configurationDescription?: string;
1146
1147
  }
1147
1148
 
1148
1149
  type AutoConfigDetails = {
1150
+ /** The name of the worker */
1151
+ workerName: string;
1149
1152
  /** The path to the project (defaults to cwd) */
1150
1153
  projectPath: string;
1151
1154
  /** The content of the project's package.json file (if any) */