wrangler 4.121.0 → 4.123.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.
@@ -342,6 +342,11 @@
342
342
  "description": "Specify the observability behavior of the Worker.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#observability",
343
343
  "markdownDescription": "Specify the observability behavior of the Worker.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#observability"
344
344
  },
345
+ "access": {
346
+ "$ref": "#/definitions/Access",
347
+ "description": "Specify the Cloudflare Access authentication behavior of the Worker.",
348
+ "markdownDescription": "Specify the Cloudflare Access authentication behavior of the Worker."
349
+ },
345
350
  "cache": {
346
351
  "$ref": "#/definitions/CacheOptions",
347
352
  "description": "Specify the cache behavior of the Worker.",
@@ -2103,6 +2108,11 @@
2103
2108
  "description": "Specify the observability behavior of the Worker.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#observability",
2104
2109
  "markdownDescription": "Specify the observability behavior of the Worker.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#observability"
2105
2110
  },
2111
+ "access": {
2112
+ "$ref": "#/definitions/Access",
2113
+ "description": "Specify the Cloudflare Access authentication behavior of the Worker.",
2114
+ "markdownDescription": "Specify the Cloudflare Access authentication behavior of the Worker."
2115
+ },
2106
2116
  "cache": {
2107
2117
  "$ref": "#/definitions/CacheOptions",
2108
2118
  "description": "Specify the cache behavior of the Worker.",
@@ -3965,6 +3975,34 @@
3965
3975
  },
3966
3976
  "additionalProperties": false
3967
3977
  },
3978
+ "Access": {
3979
+ "type": "object",
3980
+ "properties": {
3981
+ "dev": {
3982
+ "type": "object",
3983
+ "properties": {
3984
+ "aud": {
3985
+ "type": "string",
3986
+ "description": "The Access application audience tag (aud)",
3987
+ "markdownDescription": "The Access application audience tag (aud)"
3988
+ },
3989
+ "identity": {
3990
+ "type": "object",
3991
+ "additionalProperties": {},
3992
+ "description": "Mock identity object returned by ctx.access.getIdentity()",
3993
+ "markdownDescription": "Mock identity object returned by ctx.access.getIdentity()"
3994
+ }
3995
+ },
3996
+ "required": [
3997
+ "aud"
3998
+ ],
3999
+ "additionalProperties": false,
4000
+ "description": "Local dev simulation of Cloudflare Access authentication",
4001
+ "markdownDescription": "Local dev simulation of Cloudflare Access authentication"
4002
+ }
4003
+ },
4004
+ "additionalProperties": false
4005
+ },
3968
4006
  "CacheOptions": {
3969
4007
  "type": "object",
3970
4008
  "properties": {
@@ -3989,16 +4027,16 @@
3989
4027
  "additionalProperties": false,
3990
4028
  "properties": {
3991
4029
  "logpush": {
3992
- "$ref": "#/definitions/interface-769040647-10754-20982-769040647-0-539242004818536"
4030
+ "$ref": "#/definitions/interface-769040647-10754-21116-769040647-0-543362004818536"
3993
4031
  },
3994
4032
  "observability": {
3995
- "$ref": "#/definitions/interface-769040647-10754-20982-769040647-0-539242004818536"
4033
+ "$ref": "#/definitions/interface-769040647-10754-21116-769040647-0-543362004818536"
3996
4034
  },
3997
4035
  "limits": {
3998
- "$ref": "#/definitions/interface-769040647-10754-20982-769040647-0-539242004818536"
4036
+ "$ref": "#/definitions/interface-769040647-10754-21116-769040647-0-543362004818536"
3999
4037
  },
4000
4038
  "cache": {
4001
- "$ref": "#/definitions/interface-769040647-10754-20982-769040647-0-539242004818536"
4039
+ "$ref": "#/definitions/interface-769040647-10754-21116-769040647-0-543362004818536"
4002
4040
  },
4003
4041
  "define": {
4004
4042
  "type": "object",
@@ -5270,7 +5308,7 @@
5270
5308
  "description": "Configuration for Worker Previews.\n\nThis defines the settings used when creating Preview deployments. Previews are branches of your Worker's main instance used to test features during feature development outside of production.\n\nThe `previews` block contains any intentionally divergent configuration intended solely for Previews, including:\n- All non-inheritable properties (environment variables and bindings like KV, D1, R2, etc.)\n- Select inheritable properties: `logpush`, `observability`, `limits`, `cache`",
5271
5309
  "markdownDescription": "Configuration for Worker Previews.\n\nThis defines the settings used when creating Preview deployments.\nPreviews are branches of your Worker's main instance used to test features\nduring feature development outside of production.\n\nThe `previews` block contains any intentionally divergent configuration intended solely for Previews, including:\n- All non-inheritable properties (environment variables and bindings like KV, D1, R2, etc.)\n- Select inheritable properties: `logpush`, `observability`, `limits`, `cache`"
5272
5310
  },
5273
- "interface-769040647-10754-20982-769040647-0-539242004818536": {
5311
+ "interface-769040647-10754-21116-769040647-0-543362004818536": {
5274
5312
  "type": "object",
5275
5313
  "properties": {
5276
5314
  "name": {
@@ -5597,6 +5635,11 @@
5597
5635
  "description": "Specify the observability behavior of the Worker.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#observability",
5598
5636
  "markdownDescription": "Specify the observability behavior of the Worker.\n\nFor reference, see https://developers.cloudflare.com/workers/wrangler/configuration/#observability"
5599
5637
  },
5638
+ "access": {
5639
+ "$ref": "#/definitions/Access",
5640
+ "description": "Specify the Cloudflare Access authentication behavior of the Worker.",
5641
+ "markdownDescription": "Specify the Cloudflare Access authentication behavior of the Worker."
5642
+ },
5600
5643
  "cache": {
5601
5644
  "$ref": "#/definitions/CacheOptions",
5602
5645
  "description": "Specify the cache behavior of the Worker.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "4.121.0",
3
+ "version": "4.123.0",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "assembly",
@@ -66,17 +66,17 @@
66
66
  "esbuild": "0.28.1",
67
67
  "path-to-regexp": "6.3.0",
68
68
  "unenv": "2.0.0-rc.24",
69
- "workerd": "1.20260804.1",
69
+ "workerd": "1.20260811.1",
70
70
  "@cloudflare/kv-asset-handler": "0.5.0",
71
71
  "@cloudflare/unenv-preset": "2.16.1",
72
- "miniflare": "5.20260804.1-alpha"
72
+ "miniflare": "5.20260811.1-alpha"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@aws-sdk/client-s3": "^3.721.0",
76
76
  "@aws-sdk/s3-request-presigner": "^3.721.0",
77
77
  "@bomb.sh/tab": "^0.0.12",
78
78
  "@cloudflare/types": "6.18.4",
79
- "@cloudflare/workers-types": "^5.20260804.1",
79
+ "@cloudflare/workers-types": "^5.20260811.1",
80
80
  "@cspotcode/source-map-support": "0.8.1",
81
81
  "@netlify/build-info": "^10.5.1",
82
82
  "@sentry/node": "^7.86.0",
@@ -156,25 +156,25 @@
156
156
  "yaml": "^2.8.1",
157
157
  "yargs": "^17.7.2",
158
158
  "zod": "4.4.3",
159
- "@cloudflare/autoconfig": "0.2.6",
159
+ "@cloudflare/autoconfig": "0.2.7",
160
160
  "@cloudflare/build-output-utils": "0.1.1",
161
- "@cloudflare/cli-shared-helpers": "0.1.22",
161
+ "@cloudflare/cli-shared-helpers": "0.1.23",
162
162
  "@cloudflare/codemod": "1.1.0",
163
163
  "@cloudflare/config": "0.5.0",
164
164
  "@cloudflare/containers-shared": "0.16.0",
165
- "@cloudflare/deploy-helpers": "0.6.8",
165
+ "@cloudflare/deploy-helpers": "0.7.0",
166
166
  "@cloudflare/pages-functions": "0.1.0",
167
- "@cloudflare/remote-bindings": "0.0.10",
168
- "@cloudflare/runtime-types": "0.0.12",
169
- "@cloudflare/pages-shared": "^0.13.167",
167
+ "@cloudflare/pages-shared": "^0.13.169",
168
+ "@cloudflare/remote-bindings": "0.0.12",
169
+ "@cloudflare/runtime-types": "0.0.14",
170
+ "@cloudflare/workers-auth": "0.6.3",
170
171
  "@cloudflare/workers-shared": "0.19.9",
172
+ "@cloudflare/workflows-shared": "0.12.2",
171
173
  "@cloudflare/workers-tsconfig": "0.0.0",
172
- "@cloudflare/workers-auth": "0.6.2",
173
- "@cloudflare/workers-utils": "0.32.0",
174
- "@cloudflare/workflows-shared": "0.12.2"
174
+ "@cloudflare/workers-utils": "0.33.0"
175
175
  },
176
176
  "peerDependencies": {
177
- "@cloudflare/workers-types": "^5.20260804.1"
177
+ "@cloudflare/workers-types": "^5.20260811.1"
178
178
  },
179
179
  "peerDependenciesMeta": {
180
180
  "@cloudflare/workers-types": {
@@ -1878,6 +1878,12 @@ interface EnvironmentInheritable {
1878
1878
  * @inheritable
1879
1879
  */
1880
1880
  observability: Observability | undefined;
1881
+ /**
1882
+ * Specify the Cloudflare Access authentication behavior of the Worker.
1883
+ *
1884
+ * @inheritable
1885
+ */
1886
+ access: Access | undefined;
1881
1887
  /**
1882
1888
  * Specify the cache behavior of the Worker.
1883
1889
  *
@@ -2832,6 +2838,15 @@ interface Observability {
2832
2838
  destinations?: string[];
2833
2839
  };
2834
2840
  }
2841
+ interface Access {
2842
+ /** Local dev simulation of Cloudflare Access authentication */
2843
+ dev?: {
2844
+ /** The Access application audience tag (aud) */
2845
+ aud: string;
2846
+ /** Mock identity object returned by ctx.access.getIdentity() */
2847
+ identity?: Record<string, unknown>;
2848
+ };
2849
+ }
2835
2850
  interface CacheOptions {
2836
2851
  /** If cache is enabled for this Worker */
2837
2852
  enabled: boolean;