Skip to content

Commit c576a82

Browse files
Version Packages (#15154)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 339509d commit c576a82

23 files changed

Lines changed: 149 additions & 77 deletions

File tree

.changeset/access-local-dev.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

.changeset/c3-next-vinext.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.changeset/proud-icons-obey.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/skills-update-prompt.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/tidy-wranglers-cheer.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/create-cloudflare/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# create-cloudflare
22

3+
## 2.72.0
4+
5+
### Minor Changes
6+
7+
- [#14896](https://github.com/cloudflare/workers-sdk/pull/14896) [`7d4565d`](https://github.com/cloudflare/workers-sdk/commit/7d4565ddf8400f596b2c14c12ba62d7b719f77a4) Thanks [@scottbuscemi](https://github.com/scottbuscemi)! - Make vinext the default Next.js scaffold, keep OpenNext as a variant
8+
9+
`create-cloudflare --framework=next` now prompts for a Next.js adapter:
10+
11+
- **vinext** (default / recommended) — scaffolds via `create-vinext-app` (`vinext dev` / `vinext build` / `vinext-cloudflare deploy`)
12+
- **opennext** — keeps the previous OpenNext remote template for projects that need standard `next build` output or a capability vinext does not support yet
13+
14+
Non-interactive usage:
15+
16+
```sh
17+
npm create cloudflare@latest my-app -- --framework=next --variant=vinext
18+
npm create cloudflare@latest my-app -- --framework=next --variant=opennext
19+
```
20+
21+
`-y` / `--accept-defaults` selects vinext. This aligns C3 with the recommended Next.js-on-Workers path in the Cloudflare docs while preserving an opt-in OpenNext path.
22+
23+
### Patch Changes
24+
25+
- [#15126](https://github.com/cloudflare/workers-sdk/pull/15126) [`24ac4fd`](https://github.com/cloudflare/workers-sdk/commit/24ac4fd2afb8a80cdc0f526171703e33187c1da9) Thanks [@edmundhung](https://github.com/edmundhung)! - Use Wrangler 4 when installing Hello World template dependencies
26+
27+
This avoids installing Wrangler 3 during initial scaffolding before Create Cloudflare upgrades the generated project to the latest Wrangler release.
28+
329
## 2.71.1
430

531
### Patch Changes

packages/create-cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-cloudflare",
3-
"version": "2.71.1",
3+
"version": "2.72.0",
44
"description": "A CLI for creating and deploying new applications to Cloudflare.",
55
"keywords": [
66
"cloudflare",

packages/deploy-helpers/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @cloudflare/deploy-helpers
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- [#15152](https://github.com/cloudflare/workers-sdk/pull/15152) [`f0f2054`](https://github.com/cloudflare/workers-sdk/commit/f0f2054a48f5b7536268e8be432148943ba73557) Thanks [@GregBrimble](https://github.com/GregBrimble)! - [private beta]: Updates the `--ignore-defaults` flag to `--ignore-base-config` on `wrangler preview` commands.
8+
9+
`--ignore-base-config` now only takes effect on Preview creation, rather than on each deployment, since Preview base configuration is now copy-on-create rather than inherit-on-deploy.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [[`b8fd112`](https://github.com/cloudflare/workers-sdk/commit/b8fd112136abf4ff17c3d456eaa7b22880bcaf6a)]:
14+
- miniflare@5.20260811.1-alpha
15+
316
## 0.6.9
417

518
### Patch Changes

packages/deploy-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/deploy-helpers",
3-
"version": "0.6.9",
3+
"version": "0.7.0",
44
"description": "Internal deploy helpers for workers-sdk. Not intended for external use — APIs may change without notice.",
55
"homepage": "https://github.com/cloudflare/workers-sdk/tree/main/packages/deploy-helpers#readme",
66
"bugs": {

packages/miniflare/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# miniflare
22

3+
## 5.20260811.1-alpha
4+
5+
### Minor Changes
6+
7+
- [#15113](https://github.com/cloudflare/workers-sdk/pull/15113) [`b8fd112`](https://github.com/cloudflare/workers-sdk/commit/b8fd112136abf4ff17c3d456eaa7b22880bcaf6a) Thanks [@BSFishy](https://github.com/BSFishy)! - Add local dev simulation for Cloudflare Access `ctx.access.getIdentity()`
8+
9+
You can now configure a mock Cloudflare Access identity in `wrangler.json` so that `ctx.access.getIdentity()` returns it during local development.
10+
11+
```jsonc
12+
// wrangler.json
13+
{
14+
"access": {
15+
"dev": {
16+
"aud": "my-app-aud-tag",
17+
"identity": {
18+
"email": "user@example.com",
19+
"name": "Test User"
20+
}
21+
}
22+
}
23+
}
24+
```
25+
326
## 5.20260811.0-alpha
427

528
### Minor Changes

0 commit comments

Comments
 (0)