Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/drop-provisioning-experimental-header.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@cloudflare/deploy-helpers": patch
"wrangler": patch
---

Drop the "Experimental:" prefix from the resource provisioning header now that automatic provisioning is generally available. The deploy output now reads `The following bindings need to be provisioned:`.
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ export function printBindings(
} else {
let title: string;
if (context.provisioning) {
title = `${chalk.red("Experimental:")} The following bindings need to be provisioned:`;
title = "The following bindings need to be provisioned:";
} else if (context.name && isMultiWorker) {
title = `${chalk.blue(context.name)} has access to the following bindings:`;
} else {
Expand Down
4 changes: 2 additions & 2 deletions packages/wrangler/e2e/provision.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ describe.skipIf(!CLOUDFLARE_ACCOUNT_ID)(
const output = await worker.output;
expect(normalize(output)).toMatchInlineSnapshot(`
"Total Upload: xx KiB / gzip: xx KiB
Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.KV KV Namespace
env.D1 D1 Database
Expand Down Expand Up @@ -204,7 +204,7 @@ describe.skipIf(!CLOUDFLARE_ACCOUNT_ID)(
const output = await worker.output;
expect(normalize(output)).toMatchInlineSnapshot(`
"Total Upload: xx KiB / gzip: xx KiB
Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.KV2 KV Namespace
Provisioning KV2 (KV Namespace)...
Expand Down
18 changes: 9 additions & 9 deletions packages/wrangler/src/__tests__/provision.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ describe("resource provisioning", () => {
──────────────────
Total Upload: xx KiB / gzip: xx KiB

Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.KV KV Namespace
env.D1 D1 Database
Expand Down Expand Up @@ -635,7 +635,7 @@ describe("resource provisioning", () => {
──────────────────
Total Upload: xx KiB / gzip: xx KiB

Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.KV KV Namespace
env.D1 D1 Database
Expand Down Expand Up @@ -768,7 +768,7 @@ describe("resource provisioning", () => {
──────────────────
Total Upload: xx KiB / gzip: xx KiB

Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.KV KV Namespace
env.D1 D1 Database
Expand Down Expand Up @@ -931,7 +931,7 @@ describe("resource provisioning", () => {
──────────────────
Total Upload: xx KiB / gzip: xx KiB

Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.KV KV Namespace
env.D1 D1 Database
Expand Down Expand Up @@ -1081,7 +1081,7 @@ describe("resource provisioning", () => {
──────────────────
Total Upload: xx KiB / gzip: xx KiB

Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.KV KV Namespace
env.PLATFORM_KV KV Namespace
Expand Down Expand Up @@ -1240,7 +1240,7 @@ describe("resource provisioning", () => {
──────────────────
Total Upload: xx KiB / gzip: xx KiB

Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.D1 D1 Database

Expand Down Expand Up @@ -1373,7 +1373,7 @@ describe("resource provisioning", () => {
──────────────────
Total Upload: xx KiB / gzip: xx KiB

Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.D1 D1 Database

Expand Down Expand Up @@ -1454,7 +1454,7 @@ describe("resource provisioning", () => {
──────────────────
Total Upload: xx KiB / gzip: xx KiB

Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.BUCKET R2 Bucket

Expand Down Expand Up @@ -1654,7 +1654,7 @@ describe("resource provisioning", () => {
──────────────────
Total Upload: xx KiB / gzip: xx KiB

Experimental: The following bindings need to be provisioned:
The following bindings need to be provisioned:
Binding Resource
env.BUCKET R2 Bucket

Expand Down
Loading