Skip to content

Commit 2f0b786

Browse files
committed
Address PR feedback: bump wrangler, fix InlineBadge, add changelog
- Bump wrangler to 4.91.0 (adds artifacts command registry) - Switch artifacts/api/wrangler.mdx to WranglerNamespace component - Fix InlineBadge to use variant="caution" so "Private beta" renders - Remove unused Render import from partial - Add minimum wrangler version note to both pages - Add changelog entry for May 15
1 parent 681cf12 commit 2f0b786

6 files changed

Lines changed: 72 additions & 43 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
"vfile": "6.0.3",
161161
"vite-tsconfig-paths": "5.1.4",
162162
"vitest": "4.1.5",
163-
"wrangler": "4.88.0",
163+
"wrangler": "4.91.0",
164164
"zod": "4.4.3"
165165
},
166166
"devEngines": {

pnpm-lock.yaml

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: Wrangler support for Artifacts
3+
description: Manage Artifacts namespaces, repositories, and repo-scoped tokens from the command line using Wrangler.
4+
products:
5+
- artifacts
6+
date: 2026-05-15
7+
---
8+
9+
You can now manage [Artifacts](/artifacts/) namespaces, repositories, and repo-scoped tokens directly from Wrangler.
10+
11+
Available commands:
12+
13+
- `wrangler artifacts namespaces list` — List Artifacts namespaces in your account.
14+
- `wrangler artifacts namespaces get` — Get metadata for a namespace.
15+
- `wrangler artifacts repos create` — Create a repo in a namespace.
16+
- `wrangler artifacts repos list` — List repos in a namespace.
17+
- `wrangler artifacts repos get` — Get metadata for a repo.
18+
- `wrangler artifacts repos delete` — Delete a repo.
19+
- `wrangler artifacts repos issue-token` — Issue a repo-scoped token for Git access.
20+
21+
To get started, refer to the [Wrangler Artifacts commands documentation](/workers/wrangler/commands/artifacts/).

src/content/docs/artifacts/api/wrangler.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@ products:
88
- artifacts
99
---
1010

11-
import { Render } from "~/components";
11+
import { WranglerNamespace } from "~/components";
1212

1313
Use `wrangler artifacts` commands to manage Artifacts namespaces, repositories, and repo-scoped tokens from the command line.
1414

15-
<Render file="wrangler-commands/artifacts" product="workers" />
15+
:::note
16+
Requires Wrangler version `4.91.0` or later.
17+
:::
18+
19+
<WranglerNamespace namespace="artifacts" />

src/content/docs/workers/wrangler/commands/artifacts.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ products:
88

99
import { Render, InlineBadge } from "~/components";
1010

11-
Manage [Artifacts](/artifacts/) namespaces, repositories, and repo-scoped tokens using Wrangler. <InlineBadge preset="beta" text="Private beta" />
11+
Manage [Artifacts](/artifacts/) namespaces, repositories, and repo-scoped tokens using Wrangler. <InlineBadge text="Private beta" variant="caution" />
12+
13+
:::note
14+
Requires Wrangler version `4.91.0` or later.
15+
:::
1216

1317
All `artifacts` commands support `--json` for machine-readable output. Commands that return tokens use a secret-safe output path so credentials are not persisted to Wrangler debug logs.
1418

src/content/partials/workers/wrangler-commands/artifacts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{}
33
---
44

5-
import { Render, AnchorHeading, Type, MetaInfo } from "~/components";
5+
import { AnchorHeading, Type, MetaInfo } from "~/components";
66

77
## `artifacts namespaces`
88

0 commit comments

Comments
 (0)