Files
wehub-resource-sync 70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:30:11 +08:00

5835 lines
369 KiB
Markdown

# create-cloudflare
## 2.70.10
### Patch Changes
- [#14292](https://github.com/cloudflare/workers-sdk/pull/14292) [`21d048f`](https://github.com/cloudflare/workers-sdk/commit/21d048f3efa9aec85822ed7a06e6b11bfa31c624) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.15.4 | 0.16.1 |
- [#14292](https://github.com/cloudflare/workers-sdk/pull/14292) [`21d048f`](https://github.com/cloudflare/workers-sdk/commit/21d048f3efa9aec85822ed7a06e6b11bfa31c624) Thanks [@dependabot](https://github.com/apps/dependabot)! - Fix SvelteKit project creation failing with "Error parsing file: svelte.config.js"
As of `sv` 0.16, newly scaffolded SvelteKit projects no longer include a `svelte.config.js` file, and the adapter is configured in the Vite config instead. C3 now updates the adapter import in `vite.config.ts`/`vite.config.js` rather than `svelte.config.js`, so creating a SvelteKit project succeeds again.
## 2.70.9
### Patch Changes
- [#14567](https://github.com/cloudflare/workers-sdk/pull/14567) [`0852346`](https://github.com/cloudflare/workers-sdk/commit/08523467752daa79f0f8950a01f35797aa6f3052) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "miniflare", "wrangler", "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------------- | ------------ | ------------ |
| workerd | 1.20260702.1 | 1.20260706.1 |
| @cloudflare/workers-types | 4.20260702.1 | 5.20260706.1 |
## 2.70.8
### Patch Changes
- [#14556](https://github.com/cloudflare/workers-sdk/pull/14556) [`318da53`](https://github.com/cloudflare/workers-sdk/commit/318da532b67e03d64f1d80116f1c89be276797e1) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------- |
| create-next-app | 16.2.9 | 16.2.10 |
- [#14557](https://github.com/cloudflare/workers-sdk/pull/14557) [`5d81d19`](https://github.com/cloudflare/workers-sdk/commit/5d81d1977aa00acea4db96a7fc21199caa4a1d7b) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 22.0.4 | 22.0.5 |
- [#14558](https://github.com/cloudflare/workers-sdk/pull/14558) [`c5f79a1`](https://github.com/cloudflare/workers-sdk/commit/c5f79a12835fea0cfe620df55a5ea3ccc1382cf5) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 8.0.1 | 8.1.0 |
- [#14559](https://github.com/cloudflare/workers-sdk/pull/14559) [`93fa704`](https://github.com/cloudflare/workers-sdk/commit/93fa70407459326fd4d9a1c315b1ba1a56e97f06) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 9.1.0 | 9.1.1 |
- [#14560](https://github.com/cloudflare/workers-sdk/pull/14560) [`64fbd69`](https://github.com/cloudflare/workers-sdk/commit/64fbd691e69069c873ffe7f55a2d2d0da279710b) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-astro | 5.2.0 | 5.2.2 |
- [#14544](https://github.com/cloudflare/workers-sdk/pull/14544) [`53f5a59`](https://github.com/cloudflare/workers-sdk/commit/53f5a599a4b91f4caa9ab08c638d3e19e6b702d2) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Fix scaffolding of Qwik projects when `@cloudflare/workers-types` v5 is installed
`@cloudflare/workers-types` v5 removed the date-versioned entrypoints (e.g. `@cloudflare/workers-types/2024-01-01`) in favour of a single bare package import. C3 previously only added a date-versioned entrypoint to `tsconfig.json` and skipped updating the config entirely when none could be found, leaving templates that install workers-types (such as Qwik) without any Cloudflare types.
C3 now falls back to adding the bare `@cloudflare/workers-types` entry when no date-versioned entrypoint is available, so the correct types are always configured regardless of the installed version.
- [#14492](https://github.com/cloudflare/workers-sdk/pull/14492) [`1ac96a1`](https://github.com/cloudflare/workers-sdk/commit/1ac96a14b7fb022acada114ab8793fe8a4ba79a5) Thanks [@penalosa](https://github.com/penalosa)! - Replace the CommonJS `xdg-app-paths` dependency with a vendored pure-ESM implementation
`xdg-app-paths` (and its `xdg-portable`/`os-paths` dependencies) are CommonJS only, which caused "Dynamic require of 'path' is not supported" errors when the surrounding code was bundled to ESM. The global config/cache directory resolution is now provided by a small, dependency-free pure-ESM module in `@cloudflare/workers-utils` that reproduces the previous path resolution exactly (verified against the real package in unit tests), so existing config and credential locations are unchanged. This also drops the transitive `fsevents` optional dependency that `xdg-app-paths` pulled in.
Miniflare and create-cloudflare now consume the shared helpers from `@cloudflare/workers-utils` instead of maintaining their own copies, importing node-only leaf entry points (`@cloudflare/workers-utils/fs-helpers`, `@cloudflare/workers-utils/global-wrangler-config-path`) where ESM bundling is required.
## 2.70.7
### Patch Changes
- [#14490](https://github.com/cloudflare/workers-sdk/pull/14490) [`75d8cb0`](https://github.com/cloudflare/workers-sdk/commit/75d8cb0e32e0f4d66b699e88016d01f1666d8d8a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.654 | 0.0.660 |
- [#14490](https://github.com/cloudflare/workers-sdk/pull/14490) [`75d8cb0`](https://github.com/cloudflare/workers-sdk/commit/75d8cb0e32e0f4d66b699e88016d01f1666d8d8a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.35.2 | 3.36.1 |
- [#14490](https://github.com/cloudflare/workers-sdk/pull/14490) [`75d8cb0`](https://github.com/cloudflare/workers-sdk/commit/75d8cb0e32e0f4d66b699e88016d01f1666d8d8a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 9.0.7 | 9.1.0 |
- [#14490](https://github.com/cloudflare/workers-sdk/pull/14490) [`75d8cb0`](https://github.com/cloudflare/workers-sdk/commit/75d8cb0e32e0f4d66b699e88016d01f1666d8d8a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ------ | ------ |
| @tanstack/cli | 0.69.3 | 0.69.5 |
- [#14490](https://github.com/cloudflare/workers-sdk/pull/14490) [`75d8cb0`](https://github.com/cloudflare/workers-sdk/commit/75d8cb0e32e0f4d66b699e88016d01f1666d8d8a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 22.0.3 | 22.0.4 |
- [#14490](https://github.com/cloudflare/workers-sdk/pull/14490) [`75d8cb0`](https://github.com/cloudflare/workers-sdk/commit/75d8cb0e32e0f4d66b699e88016d01f1666d8d8a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-astro | 5.0.6 | 5.2.0 |
- [#14490](https://github.com/cloudflare/workers-sdk/pull/14490) [`75d8cb0`](https://github.com/cloudflare/workers-sdk/commit/75d8cb0e32e0f4d66b699e88016d01f1666d8d8a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.6.1 | 2.6.2 |
- [#14490](https://github.com/cloudflare/workers-sdk/pull/14490) [`75d8cb0`](https://github.com/cloudflare/workers-sdk/commit/75d8cb0e32e0f4d66b699e88016d01f1666d8d8a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Fix npm installs for Analog projects
Analog's generated Vite overrides can cause npm to fail with `Unable to resolve reference $vite` when dependency resolution changes. `create-cloudflare` now opts npm-generated Analog projects out of those overrides so project creation can complete successfully.
## 2.70.6
### Patch Changes
- [#14377](https://github.com/cloudflare/workers-sdk/pull/14377) [`bc08cfa`](https://github.com/cloudflare/workers-sdk/commit/bc08cfaa9c140ab6965ff8cd6d69a8f000439fba) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.651 | 0.0.654 |
- [#14378](https://github.com/cloudflare/workers-sdk/pull/14378) [`2091f80`](https://github.com/cloudflare/workers-sdk/commit/2091f804396f28a700fb90420e6ecf8c46336702) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 22.0.1 | 22.0.3 |
- [#14379](https://github.com/cloudflare/workers-sdk/pull/14379) [`914bd65`](https://github.com/cloudflare/workers-sdk/commit/914bd65d2b02d6268709c6bc225a95fe33cfdd3e) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 8.0.0 | 8.0.1 |
- [#14380](https://github.com/cloudflare/workers-sdk/pull/14380) [`44a4084`](https://github.com/cloudflare/workers-sdk/commit/44a4084720eefa24bf09ed388a13cfc80e409825) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.22.3 | 3.22.4 |
- [#14381](https://github.com/cloudflare/workers-sdk/pull/14381) [`f927adc`](https://github.com/cloudflare/workers-sdk/commit/f927adc72b06c36237384b68d6289e5415a90e63) Thanks [@dai-shi](https://github.com/dai-shi)! - Scaffold the Cloudflare-specific Waku files in the C3 script instead of relying on an external example
The Waku template now runs the default `create-waku` generator and overlays the Cloudflare-specific files (`wrangler.jsonc`, the Workers entrypoint `src/waku.server.tsx`, the Cloudflare `waku.config.ts`, and the `public/_headers` / `public/404.html` static assets) via `copyFiles`, installing the extra build dependencies and removing the redundant trailing-slash dev middleware in `configure`. This removes the dependency on the external `wakujs/waku-examples` repository for the scaffolded project content.
## 2.70.5
### Patch Changes
- [#14361](https://github.com/cloudflare/workers-sdk/pull/14361) [`df43f59`](https://github.com/cloudflare/workers-sdk/commit/df43f5913342ecf1d0e54fb77678453b3318438c) Thanks [@jamesopstad](https://github.com/jamesopstad)! - Fix infinite loop when running C3 with pnpm 11
When invoked via `pnpm create cloudflare@latest`, C3 checks npm for a newer version and re-launches itself with the latest version if one is available. pnpm 11 enables the `minimumReleaseAge` supply-chain protection by default, so `pnpm create cloudflare@latest` will not resolve a version published in the last 24 hours. When the npm `latest` tag points at a version newer than what pnpm is willing to install, the update check stayed true and C3 re-launched itself forever.
The relaunched process is now marked so it never re-runs the auto-update check, ensuring C3 starts up after at most one relaunch regardless of the package manager's version resolution.
## 2.70.4
### Patch Changes
- [#14347](https://github.com/cloudflare/workers-sdk/pull/14347) [`673b09e`](https://github.com/cloudflare/workers-sdk/commit/673b09e0fa26368125fb527596a8eb5d31c27302) Thanks [@jamesopstad](https://github.com/jamesopstad)! - Update undici from 7.24.8 to 7.28.0
- [#14314](https://github.com/cloudflare/workers-sdk/pull/14314) [`5c3bb11`](https://github.com/cloudflare/workers-sdk/commit/5c3bb118a99da70c5c1efb07df37f685e7044ba6) Thanks [@harryzcy](https://github.com/harryzcy)! - Bump esbuild to 0.28.1
This update includes several bug fixes from esbuild versions 0.27.3 through 0.28.1. See the [esbuild changelog](https://github.com/evanw/esbuild/blob/v0.28.1/CHANGELOG.md) for details.
- [#14349](https://github.com/cloudflare/workers-sdk/pull/14349) [`3eec0f7`](https://github.com/cloudflare/workers-sdk/commit/3eec0f7b8829af28634955f693af53918acf00af) Thanks [@jamesopstad](https://github.com/jamesopstad)! - Upgrade `create-react-router` to `8.0.0` and prevent React Router template overriding v8 dependencies
## 2.70.3
### Patch Changes
- [#14006](https://github.com/cloudflare/workers-sdk/pull/14006) [`6aa6f0e`](https://github.com/cloudflare/workers-sdk/commit/6aa6f0ef1558631123580116f452698967b8f5fd) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.627 | 0.0.651 |
- [#14289](https://github.com/cloudflare/workers-sdk/pull/14289) [`6941222`](https://github.com/cloudflare/workers-sdk/commit/69412229d4b15068a9a7af8391d4d4b5baad158e) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ------ | ------ |
| @tanstack/cli | 0.69.2 | 0.69.3 |
- [#14290](https://github.com/cloudflare/workers-sdk/pull/14290) [`420ac2d`](https://github.com/cloudflare/workers-sdk/commit/420ac2d278ddb8a77e56e24e58e2bfea125d980a) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 22.0.0 | 22.0.1 |
- [#14291](https://github.com/cloudflare/workers-sdk/pull/14291) [`9b1e128`](https://github.com/cloudflare/workers-sdk/commit/9b1e12808a64507e4f576877e07bbada1bf2c951) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.6.0 | 2.6.1 |
- [#14293](https://github.com/cloudflare/workers-sdk/pull/14293) [`d80ff62`](https://github.com/cloudflare/workers-sdk/commit/d80ff62d8c054bd6609ce38f10b116266e3f5d20) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 16.2.7 | 16.2.9 |
## 2.70.2
### Patch Changes
- [#14193](https://github.com/cloudflare/workers-sdk/pull/14193) [`88519f9`](https://github.com/cloudflare/workers-sdk/commit/88519f9d0c3caf9a008a228c31568010477d80c6) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Fix `create cloudflare` exiting with code `0` even after an unhandled error
- [#14235](https://github.com/cloudflare/workers-sdk/pull/14235) [`13abd5a`](https://github.com/cloudflare/workers-sdk/commit/13abd5a1c4e51b264ac9dea02f86024a6cff570c) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ------ | ------ |
| @tanstack/cli | 0.69.1 | 0.69.2 |
- [#14193](https://github.com/cloudflare/workers-sdk/pull/14193) [`88519f9`](https://github.com/cloudflare/workers-sdk/commit/88519f9d0c3caf9a008a228c31568010477d80c6) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Fix `create cloudflare` aborting with `ERR_PNPM_IGNORED_BUILDS` on pnpm 11
pnpm 11 flipped `strictDepBuilds` to `true` by default, which makes the install fail when dependencies have unapproved build scripts. `wrangler` depends on `workerd` and `esbuild`, and (via miniflare) on `sharp` — all three need their postinstall scripts to produce platform binaries.
C3 now writes or merges in a `pnpm-workspace.yaml` in the generated project that approves exactly those three packages. If other packages trigger this error, C3 also now interactively offers to retry with `pnpm approve-builds <pkg>…`
## 2.70.1
### Patch Changes
- [#14205](https://github.com/cloudflare/workers-sdk/pull/14205) [`d6fd677`](https://github.com/cloudflare/workers-sdk/commit/d6fd6770943042bccc996af1ef7cab7b0363df16) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.16.0 | 7.17.0 |
- [#14206](https://github.com/cloudflare/workers-sdk/pull/14206) [`9c07154`](https://github.com/cloudflare/workers-sdk/commit/9c071540314d42a57a03f5240e6fc68e7f6e20bd) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.15.3 | 0.15.4 |
- [#14207](https://github.com/cloudflare/workers-sdk/pull/14207) [`33ab99b`](https://github.com/cloudflare/workers-sdk/commit/33ab99b387a2083c07d337709bbe36556feba881) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.5.2 | 2.6.0 |
- [#14208](https://github.com/cloudflare/workers-sdk/pull/14208) [`82c4d93`](https://github.com/cloudflare/workers-sdk/commit/82c4d9343954d3dcee1bace4bca96ee50b58bc7b) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 16.2.6 | 16.2.7 |
- [#14209](https://github.com/cloudflare/workers-sdk/pull/14209) [`e13b8c0`](https://github.com/cloudflare/workers-sdk/commit/e13b8c02db3b65861cf84faaf276ffb79025079f) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------- | ------ |
| @angular/create | 21.2.13 | 22.0.0 |
- [#14216](https://github.com/cloudflare/workers-sdk/pull/14216) [`6b903e5`](https://github.com/cloudflare/workers-sdk/commit/6b903e5e93f76084417df16764f15cbcc6f1f23a) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ------ | ------ |
| @tanstack/cli | 0.68.0 | 0.69.1 |
## 2.70.0
### Minor Changes
- [#14095](https://github.com/cloudflare/workers-sdk/pull/14095) [`8b4e917`](https://github.com/cloudflare/workers-sdk/commit/8b4e9174a496ede02b97ed81779d1e3f450b7d53) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Hide non-framework categories when `--platform=pages` is specified
When running C3 with `--platform=pages`, the "Hello World example" and "Application Starter" categories are now hidden since they only produce Workers projects. The framework list is also filtered to only show frameworks that support the Pages platform. This makes it clear that C3 can only create Pages projects when using a framework.
### Patch Changes
- [#14128](https://github.com/cloudflare/workers-sdk/pull/14128) [`7868998`](https://github.com/cloudflare/workers-sdk/commit/7868998b047e77b71ff58dabd448434e3612a70b) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------- | ------- |
| @angular/create | 21.2.12 | 21.2.13 |
- [#14129](https://github.com/cloudflare/workers-sdk/pull/14129) [`fe97ff8`](https://github.com/cloudflare/workers-sdk/commit/fe97ff8e8e5c74a03cf040c4fefb425f0cc59467) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.15.1 | 7.16.0 |
- [#14113](https://github.com/cloudflare/workers-sdk/pull/14113) [`063d98e`](https://github.com/cloudflare/workers-sdk/commit/063d98e96e39a4e08cad6d6bccf4f382bc654967) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Switch the `react-router` template to scaffold from the upstream `create-react-router` default template and overlay Cloudflare-specific files locally
Previously, C3 invoked `create-react-router` with `--template <pinned GitHub URL>` pointing at a specific commit of `remix-run/react-router-templates/cloudflare`. This pinning was needed because the upstream Cloudflare template had been deleted before, leaving us reliant on a third-party source we don't control.
We now invoke `create-react-router` without `--template` (using the upstream default template) and overlay all Cloudflare-specific files — `workers/app.ts`, `wrangler.jsonc`, split `tsconfig`s, a Cloudflare-flavored `vite.config.ts`, `entry.server.tsx`, etc. — from `templates/react-router/ts/`. A `configure` step deletes `Dockerfile`/`.dockerignore` and the `@react-router/node`/`@react-router/serve` dependencies and `start` script that ship with the default template.
This brings the `react-router` template in line with how `astro`, `svelte`, and `react` already work and removes our dependency on a deleted upstream template. The scaffolded project is functionally equivalent to before.
## 2.69.0
### Minor Changes
- [#14096](https://github.com/cloudflare/workers-sdk/pull/14096) [`a5b7690`](https://github.com/cloudflare/workers-sdk/commit/a5b76906ec568eb6ad096dc166c5b6228040acb7) Thanks [@MattieTK](https://github.com/MattieTK)! - Migrate TanStack Start scaffolding from `@tanstack/create-start` to `@tanstack/cli`
TanStack has consolidated their project scaffolding into a unified CLI package (`@tanstack/cli`) with a `create` subcommand, replacing the previous `@tanstack/create-start` package. This updates C3 to use the new CLI while preserving the same Cloudflare deployment target and React framework options.
## 2.68.4
### Patch Changes
- [#14007](https://github.com/cloudflare/workers-sdk/pull/14007) [`f25ad99`](https://github.com/cloudflare/workers-sdk/commit/f25ad992f5430f4598257f6ab03a7b7b8f740b26) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------- | ------- |
| @angular/create | 21.2.11 | 21.2.12 |
- [#14030](https://github.com/cloudflare/workers-sdk/pull/14030) [`fe3d193`](https://github.com/cloudflare/workers-sdk/commit/fe3d193d8a939c64b419e4ee47702e4e7a00d1d7) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.5.1 | 2.5.2 |
- [#14031](https://github.com/cloudflare/workers-sdk/pull/14031) [`1cb3dec`](https://github.com/cloudflare/workers-sdk/commit/1cb3dec951d0a8ce16fa9c8eb91c45186f90c6f5) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.19.2 | 1.20.0 |
## 2.68.3
### Patch Changes
- [#13939](https://github.com/cloudflare/workers-sdk/pull/13939) [`efe3567`](https://github.com/cloudflare/workers-sdk/commit/efe356772ea38fb5cf9755ea87c3250ae5a5f6af) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 9.0.6 | 9.0.7 |
- [#13940](https://github.com/cloudflare/workers-sdk/pull/13940) [`f2c1872`](https://github.com/cloudflare/workers-sdk/commit/f2c18721fa7a6439ad1dcd7f9e1b8b4c1494a627) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.625 | 0.0.627 |
- [#13941](https://github.com/cloudflare/workers-sdk/pull/13941) [`c51b8c0`](https://github.com/cloudflare/workers-sdk/commit/c51b8c01660a2d79253f5a146e2987ad895bd203) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.35.1 | 3.35.2 |
- [#13942](https://github.com/cloudflare/workers-sdk/pull/13942) [`78d3b80`](https://github.com/cloudflare/workers-sdk/commit/78d3b8004095862053f90393100d1936e5b493bc) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.5.0 | 2.5.1 |
- [#13943](https://github.com/cloudflare/workers-sdk/pull/13943) [`4eda246`](https://github.com/cloudflare/workers-sdk/commit/4eda2462d3257e8903975fe22af0baeb6f3c5905) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------- | ------- |
| @angular/create | 21.2.10 | 21.2.11 |
- [#13944](https://github.com/cloudflare/workers-sdk/pull/13944) [`dda28c5`](https://github.com/cloudflare/workers-sdk/commit/dda28c51877b65d00dee7a4ed17574451fd97198) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------- | ------- |
| @tanstack/create-start | 0.59.30 | 0.59.32 |
- [#13945](https://github.com/cloudflare/workers-sdk/pull/13945) [`6101c8e`](https://github.com/cloudflare/workers-sdk/commit/6101c8e0eeb80e4f24cce3e4d6e46fc2a40d923c) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.15.0 | 7.15.1 |
## 2.68.2
### Patch Changes
- [#13873](https://github.com/cloudflare/workers-sdk/pull/13873) [`a6914bd`](https://github.com/cloudflare/workers-sdk/commit/a6914bd158d0c582f273c5b7ce586c3ba4051823) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.622 | 0.0.625 |
- [#13874](https://github.com/cloudflare/workers-sdk/pull/13874) [`012e949`](https://github.com/cloudflare/workers-sdk/commit/012e9497cc6f0cfd4f9837b7dd299e0404bc5931) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.15.2 | 0.15.3 |
- [#13875](https://github.com/cloudflare/workers-sdk/pull/13875) [`fb3a42b`](https://github.com/cloudflare/workers-sdk/commit/fb3a42bf0816103a129bb8abfa1b3b5120047755) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------- |
| @angular/create | 21.2.9 | 21.2.10 |
- [#13876](https://github.com/cloudflare/workers-sdk/pull/13876) [`7ec2a93`](https://github.com/cloudflare/workers-sdk/commit/7ec2a937e4743eb9c10507035e329545f0f12965) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.14.2 | 7.15.0 |
- [#13877](https://github.com/cloudflare/workers-sdk/pull/13877) [`e93ab6c`](https://github.com/cloudflare/workers-sdk/commit/e93ab6cfca5903b10a7c69ac81b36ec0375b5c6d) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------- | ------- |
| @tanstack/create-start | 0.59.28 | 0.59.30 |
- [#13878](https://github.com/cloudflare/workers-sdk/pull/13878) [`13abe2b`](https://github.com/cloudflare/workers-sdk/commit/13abe2b3d84a9f4407b1e4fecbc2a4a4dfdfd2d1) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 16.2.4 | 16.2.6 |
- [#13879](https://github.com/cloudflare/workers-sdk/pull/13879) [`3e0dbd6`](https://github.com/cloudflare/workers-sdk/commit/3e0dbd6c39c190837ac97299f57b800bec2147ec) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ---------------------- | ----------------------- |
| create-waku | 0.12.5-1.0.0-alpha.9-0 | 0.12.5-1.0.0-alpha.10-0 |
## 2.68.1
### Patch Changes
- [#13793](https://github.com/cloudflare/workers-sdk/pull/13793) [`e414059`](https://github.com/cloudflare/workers-sdk/commit/e414059eae03ac05b3ecae0054ba431f8132f1d7) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------- | ------- |
| @tanstack/create-start | 0.59.26 | 0.59.28 |
- [#13794](https://github.com/cloudflare/workers-sdk/pull/13794) [`556a58c`](https://github.com/cloudflare/workers-sdk/commit/556a58c6b40020cc5fe7a09ac802dada7a5a9a5e) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ---------------------- | ---------------------- |
| create-waku | 0.12.5-1.0.0-alpha.8-0 | 0.12.5-1.0.0-alpha.9-0 |
- [#13795](https://github.com/cloudflare/workers-sdk/pull/13795) [`7c9161a`](https://github.com/cloudflare/workers-sdk/commit/7c9161a768a26f5d258543a39430be3e76187709) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ------ | ------ |
| create-docusaurus | 3.10.0 | 3.10.1 |
- [#13796](https://github.com/cloudflare/workers-sdk/pull/13796) [`e8496b6`](https://github.com/cloudflare/workers-sdk/commit/e8496b6483017d77340b5e86eb05ae4544955f72) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.2.8 | 21.2.9 |
## 2.68.0
### Minor Changes
- [#13726](https://github.com/cloudflare/workers-sdk/pull/13726) [`b5ac54b`](https://github.com/cloudflare/workers-sdk/commit/b5ac54baa4a6e40b7352f7d3ed0d3531a37a5e8f) Thanks [@penalosa](https://github.com/penalosa)! - Hard fail on Node.js < 22
Wrangler no longer supports Node.js 20.x, as it reached end-of-life on 2026-04-30. The minimum supported Node.js version is now 22.0.0. See https://github.com/nodejs/release?tab=readme-ov-file#end-of-life-releases.
### Patch Changes
- [#13359](https://github.com/cloudflare/workers-sdk/pull/13359) [`fc2d883`](https://github.com/cloudflare/workers-sdk/commit/fc2d8838b3c5395d5d248e8073a393f7dbb9536d) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.2.6 | 21.2.8 |
- [#13729](https://github.com/cloudflare/workers-sdk/pull/13729) [`83a1c7e`](https://github.com/cloudflare/workers-sdk/commit/83a1c7e35045510dd821888fd5aa802fbae552d1) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.34.0 | 3.35.1 |
- [#13730](https://github.com/cloudflare/workers-sdk/pull/13730) [`c5bcdfa`](https://github.com/cloudflare/workers-sdk/commit/c5bcdfa3f2272c8caddb157a6ad53155b36f4ca3) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------- | ------- |
| @tanstack/create-start | 0.59.22 | 0.59.26 |
- [#13731](https://github.com/cloudflare/workers-sdk/pull/13731) [`4d4d2c2`](https://github.com/cloudflare/workers-sdk/commit/4d4d2c25e3a7b677ef1b9aa430e058cad9285558) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.15.1 | 0.15.2 |
- [#13733](https://github.com/cloudflare/workers-sdk/pull/13733) [`60ee337`](https://github.com/cloudflare/workers-sdk/commit/60ee337057b5221498ea7b002f5e3b425a47fd01) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ------ | ----- |
| create-analog | 2.4.10 | 2.5.0 |
## 2.67.4
### Patch Changes
- [#13680](https://github.com/cloudflare/workers-sdk/pull/13680) [`08fa62e`](https://github.com/cloudflare/workers-sdk/commit/08fa62e34e81be6b04b749266e944e1ede2a4107) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 9.0.4 | 9.0.6 |
- [#13681](https://github.com/cloudflare/workers-sdk/pull/13681) [`32cc1b4`](https://github.com/cloudflare/workers-sdk/commit/32cc1b4e71fc9675b35422f11ec3e6bac18f19dc) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.14.1 | 7.14.2 |
- [#13682](https://github.com/cloudflare/workers-sdk/pull/13682) [`c642d18`](https://github.com/cloudflare/workers-sdk/commit/c642d18fbf99b21d3333bc7d917dccd0569925a2) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ------ |
| create-analog | 2.4.8 | 2.4.10 |
- [#13683](https://github.com/cloudflare/workers-sdk/pull/13683) [`a3496fa`](https://github.com/cloudflare/workers-sdk/commit/a3496fa844d26a56b585d20cd3e55831d5ce2635) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------- | ------- |
| @tanstack/create-start | 0.59.21 | 0.59.22 |
- [#13684](https://github.com/cloudflare/workers-sdk/pull/13684) [`02ab1b4`](https://github.com/cloudflare/workers-sdk/commit/02ab1b41ec782cc689df4f04d711fee3c68963f6) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ---------------------- | ---------------------- |
| create-waku | 0.12.5-1.0.0-alpha.7-0 | 0.12.5-1.0.0-alpha.8-0 |
- [#13685](https://github.com/cloudflare/workers-sdk/pull/13685) [`6fc418b`](https://github.com/cloudflare/workers-sdk/commit/6fc418b4473bfc55b394acf4972441047444c1c9) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-astro | 5.0.5 | 5.0.6 |
- [#13686](https://github.com/cloudflare/workers-sdk/pull/13686) [`1d8bad5`](https://github.com/cloudflare/workers-sdk/commit/1d8bad5de8dada14ec78580232e02e7c39e798c1) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.22.2 | 3.22.3 |
- [#13687](https://github.com/cloudflare/workers-sdk/pull/13687) [`2bcfffc`](https://github.com/cloudflare/workers-sdk/commit/2bcfffcf1095b632df982f6710bc05896e21978e) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.12.5 | 0.15.1 |
## 2.67.3
### Patch Changes
- [#13644](https://github.com/cloudflare/workers-sdk/pull/13644) [`377715d`](https://github.com/cloudflare/workers-sdk/commit/377715d9f6ec7f3428e12a6ce56b367984fb0673) Thanks [@MattieTK](https://github.com/MattieTK)! - Update `@clack/core` and `@clack/prompts` to v1.2.0
Bumps the bundled `@clack/core` dependency used internally by `@cloudflare/cli` from `0.3.x` to `1.2.0`, and the `@clack/prompts` dependency in `create-cloudflare` from `0.6.x` to `1.2.0`. Clack v1 includes a number of API changes, but no user-facing prompt behaviour changes are expected.
## 2.67.2
### Patch Changes
- [#13513](https://github.com/cloudflare/workers-sdk/pull/13513) [`f822594`](https://github.com/cloudflare/workers-sdk/commit/f82259422ee943d52adeaf797a4327904c67418f) Thanks [@edmundhung](https://github.com/edmundhung)! - Update the design of the React Workers starter
The React Workers template now follows the latest Vite React starter more closely, so new projects get the refreshed upstream design alongside the existing Cloudflare integration.
## 2.67.1
### Patch Changes
- [#12714](https://github.com/cloudflare/workers-sdk/pull/12714) [`852fb79`](https://github.com/cloudflare/workers-sdk/commit/852fb79327ca525d8cbdc18ed2ffc1a28fad8a0a) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------ | ------- |
| @tanstack/create-start | 0.59.8 | 0.59.21 |
- [#12804](https://github.com/cloudflare/workers-sdk/pull/12804) [`d090818`](https://github.com/cloudflare/workers-sdk/commit/d0908188ddcb909acc8034b2a2ae38e7e3b52c29) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.12.4 | 0.12.5 |
- [#13360](https://github.com/cloudflare/workers-sdk/pull/13360) [`359706d`](https://github.com/cloudflare/workers-sdk/commit/359706d6a5c210de183100c94b20324eba684262) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 16.2.2 | 16.2.4 |
- [#13593](https://github.com/cloudflare/workers-sdk/pull/13593) [`4ca7cc6`](https://github.com/cloudflare/workers-sdk/commit/4ca7cc6afb7a7cbf0e42580801654803b406b1e0) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.4.7 | 2.4.8 |
- [#13594](https://github.com/cloudflare/workers-sdk/pull/13594) [`f406f0b`](https://github.com/cloudflare/workers-sdk/commit/f406f0b885f032e17a580a6e9fef0de01b0194be) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.14.0 | 7.14.1 |
- [#13595](https://github.com/cloudflare/workers-sdk/pull/13595) [`aa1d317`](https://github.com/cloudflare/workers-sdk/commit/aa1d317e33e6cdb1693cff5490e19e93c433b515) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.616 | 0.0.622 |
- [#12705](https://github.com/cloudflare/workers-sdk/pull/12705) [`7329b3f`](https://github.com/cloudflare/workers-sdk/commit/7329b3f1ba11d69ff242e0647d1de6f436b30082) Thanks [@roli-lpci](https://github.com/roli-lpci)! - Replace `glob` with `tinyglobby` in build tooling. Remove unused `glob` dependency from pages-shared.
## 2.67.0
### Minor Changes
- [#13454](https://github.com/cloudflare/workers-sdk/pull/13454) [`bac2311`](https://github.com/cloudflare/workers-sdk/commit/bac23113841d7f1c889a0d9797d5a49abc7542cc) Thanks [@G4brym](https://github.com/G4brym)! - Upgrade OpenAPI template to chanfana 3 and Zod v4
The OpenAPI worker template has been upgraded to use chanfana v3.3 (from v2.6) and Zod v4 (from v3). All removed chanfana parameter helpers (`Str`, `Bool`, `Num`, `DateTime`) have been replaced with native Zod v4 equivalents. Other dependency updates include hono v4.12, wrangler v4, and @cloudflare/workers-types.
Additional template improvements:
- Fix response schemas to match actual handler return values
- Use `NotFoundException` for 404 responses instead of raw `Response.json()`
- Use HTTP 201 status for the create endpoint
- Enable full `strict` mode in tsconfig (previously silently overridden)
- Remove unused `@types/service-worker-mock` dependency
### Patch Changes
- [#12563](https://github.com/cloudflare/workers-sdk/pull/12563) [`a25270e`](https://github.com/cloudflare/workers-sdk/commit/a25270ead94bca51c9d2206b885a63fa9bc9c8e4) Thanks [@irvinebroque](https://github.com/irvinebroque)! - Add best practices documentation links to generated AGENTS.md
The AGENTS.md file generated for new Workers projects now directs AI coding agents to
fetch and understand the latest best practices before writing code, including Workers
best practices, Durable Objects rules, and Workflows rules.
- [#12906](https://github.com/cloudflare/workers-sdk/pull/12906) [`7cf5095`](https://github.com/cloudflare/workers-sdk/commit/7cf509560a482799bdde823d0795e0c6fc7d5910) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 8.3.0 | 9.0.4 |
- [#13277](https://github.com/cloudflare/workers-sdk/pull/13277) [`44dc73a`](https://github.com/cloudflare/workers-sdk/commit/44dc73abba30a9b5576a7e177ec823ad99b28a5b) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.3.1 | 2.4.7 |
- [#13437](https://github.com/cloudflare/workers-sdk/pull/13437) [`fe4101c`](https://github.com/cloudflare/workers-sdk/commit/fe4101c0c441131e56a69198ffd26bf2ddc346f5) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ---------------------- | ---------------------- |
| create-waku | 0.12.5-1.0.0-alpha.6-0 | 0.12.5-1.0.0-alpha.7-0 |
- [#13316](https://github.com/cloudflare/workers-sdk/pull/13316) [`21d0b53`](https://github.com/cloudflare/workers-sdk/commit/21d0b5386568cfa4724e436d2c000cf090db1473) Thanks [@emily-shen](https://github.com/emily-shen)! - Fix Vue project scaffolding failing when `javascript` is selected
## 2.66.5
### Patch Changes
- [#13438](https://github.com/cloudflare/workers-sdk/pull/13438) [`dd4e888`](https://github.com/cloudflare/workers-sdk/commit/dd4e8882c854301c4e984989956f1aa337177637) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.599 | 0.0.616 |
## 2.66.4
### Patch Changes
- [#13358](https://github.com/cloudflare/workers-sdk/pull/13358) [`40b4f11`](https://github.com/cloudflare/workers-sdk/commit/40b4f11b23d78e4850fcc6ae2720d683497eb931) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ------ |
| create-docusaurus | 3.9.2 | 3.10.0 |
## 2.66.3
### Patch Changes
- [#13274](https://github.com/cloudflare/workers-sdk/pull/13274) [`6e62043`](https://github.com/cloudflare/workers-sdk/commit/6e6204361c457545694f63759585612d6604d928) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-astro | 5.0.4 | 5.0.5 |
- [#13275](https://github.com/cloudflare/workers-sdk/pull/13275) [`b221b00`](https://github.com/cloudflare/workers-sdk/commit/b221b00fe3fd96e2850b6b6be053e7762cf1af65) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 16.2.1 | 16.2.2 |
- [#13276](https://github.com/cloudflare/workers-sdk/pull/13276) [`94ea512`](https://github.com/cloudflare/workers-sdk/commit/94ea5124b4d5486bcd97f900aca2444ff70136f6) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.13.2 | 7.14.0 |
- [#13278](https://github.com/cloudflare/workers-sdk/pull/13278) [`8e7074f`](https://github.com/cloudflare/workers-sdk/commit/8e7074f97e6f7629b3d9b14f395aa9aacf347263) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.2.5 | 21.2.6 |
- [#13279](https://github.com/cloudflare/workers-sdk/pull/13279) [`51f784f`](https://github.com/cloudflare/workers-sdk/commit/51f784fdf62a5fd0fcf00e2f3044e7ddc4eadf25) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.22.1 | 3.22.2 |
- [#13243](https://github.com/cloudflare/workers-sdk/pull/13243) [`448fec8`](https://github.com/cloudflare/workers-sdk/commit/448fec88a19cad5a3ab7a4d7ff99e166cd485ea2) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Show a clear error message when running on an unsupported Node.js version
Previously, running `create-cloudflare` on an older Node.js version (e.g. v18) would fail with a confusing syntax error. Now, a dedicated version check runs before loading the CLI and displays a helpful message explaining the minimum required Node.js version and suggesting version managers like Volta or nvm.
## 2.66.2
### Patch Changes
- [#13051](https://github.com/cloudflare/workers-sdk/pull/13051) [`d5bffde`](https://github.com/cloudflare/workers-sdk/commit/d5bffdef00618f1d441837a725779d35b176911e) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Use today's date as the default compatibility date
Previously, when generating a compatibility date for new projects or when no compatibility date was configured, the date was resolved by loading the locally installed `workerd` package via `miniflare`. This approach was unreliable in some package manager environments (notably `pnpm`). The logic now simply uses today's date instead, which is always correct and works reliably across all environments.
## 2.66.1
### Patch Changes
- [#13106](https://github.com/cloudflare/workers-sdk/pull/13106) [`c8c44a7`](https://github.com/cloudflare/workers-sdk/commit/c8c44a708039b8a9cd38fd0e7d45c7dba6e39312) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.13.1 | 7.13.2 |
- [#13107](https://github.com/cloudflare/workers-sdk/pull/13107) [`687f144`](https://github.com/cloudflare/workers-sdk/commit/687f1444ece93d3bf61a3e8b4567cd17065a2449) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-astro | 5.0.3 | 5.0.4 |
- [#13108](https://github.com/cloudflare/workers-sdk/pull/13108) [`3a8a24c`](https://github.com/cloudflare/workers-sdk/commit/3a8a24cbb91b897cc71cc2b135ec702ada4053a7) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.2.3 | 21.2.5 |
- [#13109](https://github.com/cloudflare/workers-sdk/pull/13109) [`9deba25`](https://github.com/cloudflare/workers-sdk/commit/9deba25ff8a7dfbc3d590a98edda8f074fcac271) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ---------------------- | ---------------------- |
| create-waku | 0.12.5-1.0.0-alpha.5-0 | 0.12.5-1.0.0-alpha.6-0 |
- [#13110](https://github.com/cloudflare/workers-sdk/pull/13110) [`71059be`](https://github.com/cloudflare/workers-sdk/commit/71059be812e3d227c26d3a617834272f3394c182) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.22.0 | 3.22.1 |
## 2.66.0
### Minor Changes
- [#12964](https://github.com/cloudflare/workers-sdk/pull/12964) [`e0831c6`](https://github.com/cloudflare/workers-sdk/commit/e0831c6ead822c7a03f10d87ce44e8c4d0f05ef2) Thanks [@ryanking13](https://github.com/ryanking13)! - Update dependencies in Python workers templates
The `workers-runtime-sdk` library is added as a dev dependency and the `webtypy` is removed as a dependency.
## 2.65.0
### Minor Changes
- [#12741](https://github.com/cloudflare/workers-sdk/pull/12741) [`e8f62bb`](https://github.com/cloudflare/workers-sdk/commit/e8f62bbfae6cb2c705a630e0d1252d16399c3660) Thanks [@penalosa](https://github.com/penalosa)! - Enable `upload_source_maps` by default for new projects
All new projects created with C3 now have `upload_source_maps` set to `true` in their Wrangler configuration. This means source maps are automatically uploaded when you deploy, giving you meaningful stack traces in your Worker's logs and error reports without any extra setup.
### Patch Changes
- [#12904](https://github.com/cloudflare/workers-sdk/pull/12904) [`88c9471`](https://github.com/cloudflare/workers-sdk/commit/88c94716ee116fc1790b19e36c20758df14255dc) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.592 | 0.0.599 |
- [#13003](https://github.com/cloudflare/workers-sdk/pull/13003) [`ea13a78`](https://github.com/cloudflare/workers-sdk/commit/ea13a78d61212364956ec21a5c7f6bbc4fe6f6c6) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ----- |
| create-solid | 0.6.13 | 0.7.0 |
- [#13004](https://github.com/cloudflare/workers-sdk/pull/13004) [`44d8f22`](https://github.com/cloudflare/workers-sdk/commit/44d8f221856affe1632a1447c17b069d3588ac1f) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 16.1.6 | 16.2.1 |
- [#13005](https://github.com/cloudflare/workers-sdk/pull/13005) [`9a742b1`](https://github.com/cloudflare/workers-sdk/commit/9a742b174be8a92f4ca23aa9eb93162f9d69dbb8) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.2.2 | 21.2.3 |
- [#13006](https://github.com/cloudflare/workers-sdk/pull/13006) [`554d68b`](https://github.com/cloudflare/workers-sdk/commit/554d68ba19d11c67342ba166b78ba1f39b626e01) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-astro | 5.0.0 | 5.0.3 |
- [#12569](https://github.com/cloudflare/workers-sdk/pull/12569) [`379f2a2`](https://github.com/cloudflare/workers-sdk/commit/379f2a2803e029ff1d2df43973a95b0aea6fba6e) Thanks [@MattieTK](https://github.com/MattieTK)! - Use `qwik add cloudflare-workers` instead of `qwik add cloudflare-pages` for Workers targets
Both the wrangler autoconfig and C3 Workers template for Qwik were running `qwik add cloudflare-pages` even when targeting Cloudflare Workers. This caused the wrong adapter directory structure to be scaffolded (`adapters/cloudflare-pages/` instead of `adapters/cloudflare-workers/`), and required post-hoc cleanup of Pages-specific files like `_routes.json`.
Qwik now provides a dedicated `cloudflare-workers` adapter that generates the correct Workers configuration, including `wrangler.jsonc` with `main` and `assets` fields, a `public/.assetsignore` file, and the correct `adapters/cloudflare-workers/vite.config.ts`.
Also adds `--skipConfirmation=true` to all `qwik add` invocations so the interactive prompt is skipped in automated contexts.
## 2.64.9
### Patch Changes
- [#11639](https://github.com/cloudflare/workers-sdk/pull/11639) [`e9f5f30`](https://github.com/cloudflare/workers-sdk/commit/e9f5f30d536e89d0f182e336a0abc0e246bdc615) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.5.6 | 16.1.6 |
- [#12905](https://github.com/cloudflare/workers-sdk/pull/12905) [`e7ef325`](https://github.com/cloudflare/workers-sdk/commit/e7ef325cd069e55116d35f1fea572a87cb919dab) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.33.1 | 3.34.0 |
- [#12907](https://github.com/cloudflare/workers-sdk/pull/12907) [`92402f6`](https://github.com/cloudflare/workers-sdk/commit/92402f677a9640a08cd7bff4b0d1bb301c52b030) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ----- |
| create-astro | 4.13.2 | 5.0.0 |
- [#12908](https://github.com/cloudflare/workers-sdk/pull/12908) [`eadb0fd`](https://github.com/cloudflare/workers-sdk/commit/eadb0fdc56db7984253dd725c4178c83dd70d948) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.2.1 | 21.2.2 |
- [#12909](https://github.com/cloudflare/workers-sdk/pull/12909) [`75fa04b`](https://github.com/cloudflare/workers-sdk/commit/75fa04bf029a730513a58c1c1b26f33e93227137) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.19.1 | 1.19.2 |
## 2.64.8
### Patch Changes
- [#12837](https://github.com/cloudflare/workers-sdk/pull/12837) [`2363d48`](https://github.com/cloudflare/workers-sdk/commit/2363d485a67b8c5abdffd01eee1bd3eb6bd53b10) Thanks [@edmundhung](https://github.com/edmundhung)! - Update Astro Workers template for Astro v6
The Astro Workers template now scaffolds projects using Astro v6. The adapter uses the Cloudflare Vite plugin under the hood, so `astro dev` runs on the workerd runtime locally and `wrangler.jsonc` fields like `main` and `assets` are no longer needed in the template.
For existing projects, see the [Astro Cloudflare adapter migration guide](https://docs.astro.build/en/guides/integrations-guide/cloudflare/#upgrading-to-v13-and-astro-6).
- [#12866](https://github.com/cloudflare/workers-sdk/pull/12866) [`077c4d5`](https://github.com/cloudflare/workers-sdk/commit/077c4d54cbf068aeca86927620332b9aeceec762) Thanks [@edmundhung](https://github.com/edmundhung)! - Fix React app creation flow skipping Cloudflare setup
Creating a React app with create-cloudflare no longer allows the Cloudflare setup step to be skipped by accepting create-vite's `Install and start now` prompt.
## 2.64.7
### Patch Changes
- [#12805](https://github.com/cloudflare/workers-sdk/pull/12805) [`9e78285`](https://github.com/cloudflare/workers-sdk/commit/9e78285c84b11dfbc6e2d031a2f59dfcf11c5df1) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.2.0 | 21.2.1 |
- [#12806](https://github.com/cloudflare/workers-sdk/pull/12806) [`56986b9`](https://github.com/cloudflare/workers-sdk/commit/56986b95eea536a27f27c3177e37d675c5c5850b) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.591 | 0.0.592 |
- [#12512](https://github.com/cloudflare/workers-sdk/pull/12512) [`01f252d`](https://github.com/cloudflare/workers-sdk/commit/01f252db83daff52ede0c582443548833f02caf1) Thanks [@thebeyondr](https://github.com/thebeyondr)! - Fix C3 success summary dashboard link to point to Workers service production view
The "Dash:" URL now includes `/production` so it opens the correct Workers & Pages service view in the Cloudflare dashboard.
- [#12820](https://github.com/cloudflare/workers-sdk/pull/12820) [`556bce0`](https://github.com/cloudflare/workers-sdk/commit/556bce0acd78e42b84b25247d73699513c2cf1aa) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Generate `app/env.d.ts` and `server/env.d.ts` for Nuxt applications
Previously, only a top-level `env.d.ts` was created, which meant server files didn't receive Cloudflare types. Now the CLI generates separate `app/env.d.ts` and `server/env.d.ts` files, both importing from a shared `_cloudflare/env.d.ts` to avoid duplication.
This ensures Cloudflare types are available in both app and server directories.
## 2.64.6
### Patch Changes
- [#12790](https://github.com/cloudflare/workers-sdk/pull/12790) [`5451a7f`](https://github.com/cloudflare/workers-sdk/commit/5451a7fbf9e08cdc7731aaed43de1e0e241c944f) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Bump glob to ^10.5.0 to address command injection vulnerability in glob CLI
- [#12787](https://github.com/cloudflare/workers-sdk/pull/12787) [`d6d75a7`](https://github.com/cloudflare/workers-sdk/commit/d6d75a773e76d04a5d53d30c4bb771ebf1daccd2) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Bump `create-qwik` from 1.19.0 to 1.19.1
This update fixes an upstream issue where `create-qwik` installed `@eslint/js` at "latest", which resolved to v10 and conflicted with the project's eslint 9.x.
## 2.64.5
### Patch Changes
- [#12713](https://github.com/cloudflare/workers-sdk/pull/12713) [`f498237`](https://github.com/cloudflare/workers-sdk/commit/f498237074b00d97874cb145b4daf5e5556bbdae) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.1.4 | 21.2.0 |
- [#12715](https://github.com/cloudflare/workers-sdk/pull/12715) [`8d0c835`](https://github.com/cloudflare/workers-sdk/commit/8d0c8350f49638413d1a2359c07fef9b4745619d) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.21.1 | 3.22.0 |
- [#12716](https://github.com/cloudflare/workers-sdk/pull/12716) [`1c2d93d`](https://github.com/cloudflare/workers-sdk/commit/1c2d93d28d0e9dac9d98442387686e37b7505b94) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.13.0 | 7.13.1 |
- [#12717](https://github.com/cloudflare/workers-sdk/pull/12717) [`8e738f8`](https://github.com/cloudflare/workers-sdk/commit/8e738f82f4e16f29eb08854f9576ee3132933e00) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.2.3 | 2.3.1 |
- [#12718](https://github.com/cloudflare/workers-sdk/pull/12718) [`62e20c1`](https://github.com/cloudflare/workers-sdk/commit/62e20c19abcb32c6affb8c840a325fbbc2391c71) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.12.2 | 0.12.4 |
- [#12719](https://github.com/cloudflare/workers-sdk/pull/12719) [`554c5f3`](https://github.com/cloudflare/workers-sdk/commit/554c5f3e68170a86a4b77da875b2c33be4151822) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.581 | 0.0.591 |
- [#12720](https://github.com/cloudflare/workers-sdk/pull/12720) [`a3ff7d4`](https://github.com/cloudflare/workers-sdk/commit/a3ff7d48b186a15915859f2069372e96a5cf8707) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ---------------------- | ---------------------- |
| create-waku | 0.12.5-1.0.0-alpha.4-0 | 0.12.5-1.0.0-alpha.5-0 |
- [#12728](https://github.com/cloudflare/workers-sdk/pull/12728) [`bbe09b6`](https://github.com/cloudflare/workers-sdk/commit/bbe09b619f9509fb9d392b6984dd066f93217b2f) Thanks [@jamesopstad](https://github.com/jamesopstad)! - Update SolidStart template for compatibility with v2.
SolidStart v2 uses the `nitro` Vite plugin so we now update the Nitro config in `vite.config.ts` rather than `app.config.ts`.
- [#12692](https://github.com/cloudflare/workers-sdk/pull/12692) [`f671934`](https://github.com/cloudflare/workers-sdk/commit/f671934de19985285453af15f396b228b4a0858b) Thanks [@roli-lpci](https://github.com/roli-lpci)! - Remove unused `chalk` dependency from create-cloudflare.
## 2.64.4
### Patch Changes
- [#12657](https://github.com/cloudflare/workers-sdk/pull/12657) [`294297e`](https://github.com/cloudflare/workers-sdk/commit/294297e8e5bb90e71a6db15278e3ab0a9345cacf) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ---------------------- | ---------------------- |
| create-waku | 0.12.5-1.0.0-alpha.3-0 | 0.12.5-1.0.0-alpha.4-0 |
- [#12648](https://github.com/cloudflare/workers-sdk/pull/12648) [`3d6e421`](https://github.com/cloudflare/workers-sdk/commit/3d6e421dcd03fad1837c52c0e677d91678c6eed7) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Fix Angular scaffolding to allow localhost SSR in development mode
Recent versions of Angular's `AngularAppEngine` block serving SSR on `localhost` by default. This caused `wrangler dev` / `wrangler pages dev` to fail with `URL with hostname "localhost" is not allowed.`
The fix passes `allowedHosts: ["localhost"]` to the `AngularAppEngine` constructor in `server.ts`, which is safe to do even in production since Cloudflare will already restrict which host is allowed.
## 2.64.3
### Patch Changes
- [#12630](https://github.com/cloudflare/workers-sdk/pull/12630) [`e8fddc5`](https://github.com/cloudflare/workers-sdk/commit/e8fddc58fb99892f2ce5d1bb8c940b29acbe6c2a) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.21.0 | 3.21.1 |
- [#12631](https://github.com/cloudflare/workers-sdk/pull/12631) [`5641c52`](https://github.com/cloudflare/workers-sdk/commit/5641c525bf65395918de0495fed2dd0c42f56d85) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.575 | 0.0.581 |
- [#12633](https://github.com/cloudflare/workers-sdk/pull/12633) [`35c8ebd`](https://github.com/cloudflare/workers-sdk/commit/35c8ebd688e7d4aaf30b3a147fa5b65e405f740f) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------ | ------ |
| @tanstack/create-start | 0.59.3 | 0.59.8 |
- [#12634](https://github.com/cloudflare/workers-sdk/pull/12634) [`11ace96`](https://github.com/cloudflare/workers-sdk/commit/11ace963bd195792bd53f7eec444c35fbbb27ec9) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.12.1 | 0.12.2 |
- [#12635](https://github.com/cloudflare/workers-sdk/pull/12635) [`4cee91e`](https://github.com/cloudflare/workers-sdk/commit/4cee91e87edddf6decfded0ef6fb503d36d25961) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-solid | 0.6.11 | 0.6.13 |
- [#12609](https://github.com/cloudflare/workers-sdk/pull/12609) [`1714b9b`](https://github.com/cloudflare/workers-sdk/commit/1714b9bbc834d6eac5982a41daf91026c1ad44b1) Thanks [@Hari-07](https://github.com/Hari-07)! - Fix --variant flag being ignored for pages
When creating a Pages project using `npm create cloudflare -- --type pages --variant <variant>`,
the `--variant` flag was being ignored, causing users to be prompted for variant selection
or defaulting to an unexpected variant. This now correctly passes the variant to the project setup.
- [#12602](https://github.com/cloudflare/workers-sdk/pull/12602) [`58a4020`](https://github.com/cloudflare/workers-sdk/commit/58a4020eaafcb56cb81dd7d08c58d3d75da08603) Thanks [@anonrig](https://github.com/anonrig)! - Optimize filesystem operations by using Node.js's throwIfNoEntry: false option
This reduces the number of system calls made when checking for file existence by avoiding the overhead of throwing and catching errors for missing paths. This is an internal performance optimization with no user-visible behavioral changes.
## 2.64.2
### Patch Changes
- [#12564](https://github.com/cloudflare/workers-sdk/pull/12564) [`98e2627`](https://github.com/cloudflare/workers-sdk/commit/98e2627f340c33eb321222bfa32fb0d28e03c5b5) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.16.0 | 5.16.1 |
- [#12565](https://github.com/cloudflare/workers-sdk/pull/12565) [`aefb2a0`](https://github.com/cloudflare/workers-sdk/commit/aefb2a0422068ef47920f01b5028b41faf416317) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.1.2 | 21.1.4 |
- [#12566](https://github.com/cloudflare/workers-sdk/pull/12566) [`3cd9d21`](https://github.com/cloudflare/workers-sdk/commit/3cd9d21206e42c6b88a71be76cbc69a24c212cd6) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------- | ------ |
| @tanstack/create-start | 0.48.10 | 0.59.3 |
## 2.64.1
### Patch Changes
- [#12529](https://github.com/cloudflare/workers-sdk/pull/12529) [`3777bcd`](https://github.com/cloudflare/workers-sdk/commit/3777bcdc9b9e8c6d6e1c4ffd4d812e02d713c9be) Thanks [@ascorbic](https://github.com/ascorbic)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------ | ------- |
| @tanstack/create-start | 0.40.0 | 0.48.10 |
- [#12531](https://github.com/cloudflare/workers-sdk/pull/12531) [`93b177f`](https://github.com/cloudflare/workers-sdk/commit/93b177fb423749f55bccd88a86e4857c27b0aa78) Thanks [@ascorbic](https://github.com/ascorbic)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 7.1.1 | 8.3.0 |
- [#12482](https://github.com/cloudflare/workers-sdk/pull/12482) [`cef3278`](https://github.com/cloudflare/workers-sdk/commit/cef3278a19b27206a1208c66d7b1c036faaea1fb) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.11.4 | 0.12.1 |
- [#11725](https://github.com/cloudflare/workers-sdk/pull/11725) [`be9745f`](https://github.com/cloudflare/workers-sdk/commit/be9745fc2a663f6da2addf2f784392a21dab9475) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Fix the experimental SvelteKit implementation incorrectly including the `"@sveltejs/adapter-auto"` dependency in the project's `package.json` file
- [#12528](https://github.com/cloudflare/workers-sdk/pull/12528) [`73e5aa8`](https://github.com/cloudflare/workers-sdk/commit/73e5aa8205fb6310bc780e9952e1a3cae3dca3cf) Thanks [@ascorbic](https://github.com/ascorbic)! - Bump nuxi from 3.30.0 to 3.33.1
## 2.64.0
### Minor Changes
- [#12286](https://github.com/cloudflare/workers-sdk/pull/12286) [`5ddd276`](https://github.com/cloudflare/workers-sdk/commit/5ddd2769e3ed50774f5742eb645355806f410fb2) Thanks [@elithrar](https://github.com/elithrar)! - Add AGENTS.md to Workers templates for AI coding agent guidance
New Workers projects created via `create-cloudflare` now include an `AGENTS.md` file that provides AI coding agents with retrieval-led guidance for Cloudflare APIs. This helps agents avoid using outdated knowledge from their training data and instead consult current documentation.
The file includes:
- Links to Cloudflare documentation and MCP servers
- Essential wrangler commands (`dev`, `deploy`, `types`)
- Pointers to product-specific documentation for limits and APIs
- [#12454](https://github.com/cloudflare/workers-sdk/pull/12454) [`c99c437`](https://github.com/cloudflare/workers-sdk/commit/c99c4370dfdc7f4252eea590528bbd90e8dcc8f8) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Respect `CLOUDFLARE_ACCOUNT_ID` environment variable for account selection
When the `CLOUDFLARE_ACCOUNT_ID` environment variable is set, C3 will now use it directly
instead of prompting for account selection. This matches wrangler's behavior and enables
seamless CI/CD workflows where the account is pre-configured via environment variables.
Previously, C3 would always call `wrangler whoami` and prompt for account selection when
multiple accounts were available, ignoring the environment variable.
### Patch Changes
- [#12365](https://github.com/cloudflare/workers-sdk/pull/12365) [`9eca052`](https://github.com/cloudflare/workers-sdk/commit/9eca0522e5540c76e4c56c8ed7dbc9c934a5a32a) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.1.1 | 21.1.2 |
- [#12366](https://github.com/cloudflare/workers-sdk/pull/12366) [`96d1605`](https://github.com/cloudflare/workers-sdk/commit/96d160561065e50c6a4426520460f4c8bd70e5c4) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.20.0 | 3.21.0 |
- [#12367](https://github.com/cloudflare/workers-sdk/pull/12367) [`9244501`](https://github.com/cloudflare/workers-sdk/commit/9244501b7b8191a977e20dc1cab8e2da7661a352) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.15.0 | 5.16.0 |
- [#12481](https://github.com/cloudflare/workers-sdk/pull/12481) [`0ac76d5`](https://github.com/cloudflare/workers-sdk/commit/0ac76d5260c78fcb8c1908a5ff013ab77b9eccec) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.572 | 0.0.575 |
## 2.63.0
### Minor Changes
- [#8310](https://github.com/cloudflare/workers-sdk/pull/8310) [`fed18f9`](https://github.com/cloudflare/workers-sdk/commit/fed18f9d72fbc35c8270591ca8b8829e1524416b) Thanks [@irvinebroque](https://github.com/irvinebroque)! - Enable `nodejs_compat` by default for new projects
New projects created with C3 will now have the `nodejs_compat` compatibility flag automatically enabled. This makes it easier to get started with Workers, as many npm packages require Node.js compatibility to work correctly.
If you don't want `nodejs_compat` enabled, you can remove it from your `wrangler.json` or `wrangler.toml` configuration file:
```json
{
"compatibility_flags": []
}
```
## 2.62.6
### Patch Changes
- [#12269](https://github.com/cloudflare/workers-sdk/pull/12269) [`a1450ca`](https://github.com/cloudflare/workers-sdk/commit/a1450cadf0ce0319220a5fb3ebd4ee4cb4de5c96) Thanks [@penalosa](https://github.com/penalosa)! - Handle git commit failures gracefully
When creating the initial commit fails (for example, when GPG signing is cancelled or misconfigured), the setup process now continues instead of crashing. A message is displayed informing the user that the commit was skipped and they can commit manually later.
- [#12339](https://github.com/cloudflare/workers-sdk/pull/12339) [`ff3bf9d`](https://github.com/cloudflare/workers-sdk/commit/ff3bf9db1dc9335a37303c7ae2c93c194c95a14e) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.2.2 | 2.2.3 |
- [#12340](https://github.com/cloudflare/workers-sdk/pull/12340) [`1d12aef`](https://github.com/cloudflare/workers-sdk/commit/1d12aef47576ad70a2d77aba1d9ba69f4853571a) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.19.0 | 3.20.0 |
- [#12341](https://github.com/cloudflare/workers-sdk/pull/12341) [`4a563bd`](https://github.com/cloudflare/workers-sdk/commit/4a563bd581b0199e60ed046741a799bcaad65c16) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.18.0 | 1.19.0 |
- [#12342](https://github.com/cloudflare/workers-sdk/pull/12342) [`6d79ade`](https://github.com/cloudflare/workers-sdk/commit/6d79ade70d11c0f1d3e796785d9c3b25b94c552b) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.11.3 | 0.11.4 |
- [#12343](https://github.com/cloudflare/workers-sdk/pull/12343) [`10eb094`](https://github.com/cloudflare/workers-sdk/commit/10eb094cb21ac0ef2e8ccc677ac45eaa9554059e) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.566 | 0.0.572 |
- [#12344](https://github.com/cloudflare/workers-sdk/pull/12344) [`8a01a1c`](https://github.com/cloudflare/workers-sdk/commit/8a01a1c20fea55852913ce07512cf738ecb8c7c4) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ---------------------- | ---------------------- |
| create-waku | 0.12.5-1.0.0-alpha.2-0 | 0.12.5-1.0.0-alpha.3-0 |
- [#12291](https://github.com/cloudflare/workers-sdk/pull/12291) [`75062fe`](https://github.com/cloudflare/workers-sdk/commit/75062fe733f0a2af2b52417c424ab8a4aa7b7fe6) Thanks [@vicb](https://github.com/vicb)! - Simplify creating a new Astro app
The Astro CLI should not ask users whether they want to use git as create-cloudflare handles that already
## 2.62.5
### Patch Changes
- [#11860](https://github.com/cloudflare/workers-sdk/pull/11860) [`4a4007d`](https://github.com/cloudflare/workers-sdk/commit/4a4007df2eb41ea535f45bfbf934748ef73f64e0) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.0.4 | 21.1.1 |
- [#12156](https://github.com/cloudflare/workers-sdk/pull/12156) [`abd2b71`](https://github.com/cloudflare/workers-sdk/commit/abd2b716a526d2ae33b3dfab478f3ab4bdea840d) Thanks [@irvinebroque](https://github.com/irvinebroque)! - Fix compatibility date detection failing when creating new projects
Previously, `getLocalWorkerdCompatibilityDate()` would fail to find the locally installed `miniflare` and `workerd` packages, causing `npm create cloudflare@latest` to fall back to a hardcoded date (2025-09-27) instead of using the current workerd compatibility date.
The issue was that `module.createRequire()` was called with a directory path. Node.js treats this as a filename at that location and looks for `node_modules` in the parent directory rather than the intended directory. This is now fixed by appending `package.json` to the path, which ensures module resolution starts from the correct location.
Fixes #12155
## 2.62.4
### Patch Changes
- [#12114](https://github.com/cloudflare/workers-sdk/pull/12114) [`efac63d`](https://github.com/cloudflare/workers-sdk/commit/efac63d265bee91b3610dd07ab0bd845ddd0797a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.18.5 | 3.19.0 |
- [#12115](https://github.com/cloudflare/workers-sdk/pull/12115) [`ade4ac2`](https://github.com/cloudflare/workers-sdk/commit/ade4ac2de4eae6c4c07872ac4a50cdf984268633) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.12.0 | 7.13.0 |
- [#12116](https://github.com/cloudflare/workers-sdk/pull/12116) [`dd3e1d7`](https://github.com/cloudflare/workers-sdk/commit/dd3e1d7a099070d8a1c14755a8e687df52b8cde6) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.11.2 | 0.11.3 |
- [#12117](https://github.com/cloudflare/workers-sdk/pull/12117) [`88e352b`](https://github.com/cloudflare/workers-sdk/commit/88e352b15b4d411376da27a19dd43cc8657a979b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.564 | 0.0.566 |
- [#12062](https://github.com/cloudflare/workers-sdk/pull/12062) [`5658448`](https://github.com/cloudflare/workers-sdk/commit/56584481f0ab02225434a3aa5f3ae73597002453) Thanks [@jamesopstad](https://github.com/jamesopstad)! - Skip modifying the root `tsconfig.json` in projects that use TypeScript project references.
- [#12046](https://github.com/cloudflare/workers-sdk/pull/12046) [`99454f0`](https://github.com/cloudflare/workers-sdk/commit/99454f030043317b2465021a8f6e080339bf1196) Thanks [@jamesopstad](https://github.com/jamesopstad)! - Remove duplicate references to `./worker-configuration.d.ts` in the React template's `tsconfig.worker.json` file.
## 2.62.3
### Patch Changes
- [#11861](https://github.com/cloudflare/workers-sdk/pull/11861) [`27ea230`](https://github.com/cloudflare/workers-sdk/commit/27ea230b036e262c692c438405c477afb50e02a6) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.558 | 0.0.564 |
- [#11862](https://github.com/cloudflare/workers-sdk/pull/11862) [`6bd2ab4`](https://github.com/cloudflare/workers-sdk/commit/6bd2ab491cda9e18c2315bbf0564658692ab36fe) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.1.3 | 2.2.1 |
- [#11864](https://github.com/cloudflare/workers-sdk/pull/11864) [`283a9e4`](https://github.com/cloudflare/workers-sdk/commit/283a9e4671020ad5db3a943d943d576efdb87450) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-rwsdk | 3.1.2 | 3.1.3 |
- [#11865](https://github.com/cloudflare/workers-sdk/pull/11865) [`8522a8b`](https://github.com/cloudflare/workers-sdk/commit/8522a8b48ccff3da14a42c3413b6adcdacca79dc) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ------ | ------ |
| create-react-router | 7.11.0 | 7.12.0 |
- [#11915](https://github.com/cloudflare/workers-sdk/pull/11915) [`20467fd`](https://github.com/cloudflare/workers-sdk/commit/20467fda188c70237805b00dafcb5e2acc9dc259) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ---------------------- | ---------------------- |
| create-waku | 0.12.5-1.0.0-alpha.1-0 | 0.12.5-1.0.0-alpha.2-0 |
- [#11961](https://github.com/cloudflare/workers-sdk/pull/11961) [`844975f`](https://github.com/cloudflare/workers-sdk/commit/844975fac1d46fabd2573f209fbb029f21097b8f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 2.2.1 | 2.2.2 |
- [#11952](https://github.com/cloudflare/workers-sdk/pull/11952) [`c09dbd7`](https://github.com/cloudflare/workers-sdk/commit/c09dbd7e43d934c19a5daafa62936603f2e3bfec) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Bump the version of `@cloudflare/vitest-pool-workers` in the hello-world templates from `^0.8.19` to `^0.12.4`
The version of the `@cloudflare/vitest-pool-workers` in the hello-world templates is currently `^0.8.19`, since the package is pre v1, the Caret syntax only installs the latest `0.8.x` version of the package, which is a bit outdated. So the changes here manually keep the package more up to date.
- [#11967](https://github.com/cloudflare/workers-sdk/pull/11967) [`202c59e`](https://github.com/cloudflare/workers-sdk/commit/202c59e4f4f28419fb6ac0aa8c7dc3960a0c8d3e) Thanks [@emily-shen](https://github.com/emily-shen)! - chore: update undici
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| undici | 7.14.0 | 7.18.2 |
## 2.62.2
### Patch Changes
- [#11541](https://github.com/cloudflare/workers-sdk/pull/11541) [`707dee0`](https://github.com/cloudflare/workers-sdk/commit/707dee055a9401f163d07241201fee11dcfb81ba) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------- | ------- |
| create-vike | 0.0.528 | 0.0.558 |
- [#11843](https://github.com/cloudflare/workers-sdk/pull/11843) [`ab3859c`](https://github.com/cloudflare/workers-sdk/commit/ab3859c597fe30cdcd9ffa67f9fb7865539bf592) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | --------------- | ---------------------- |
| create-waku | 0.12.5-0.27.1-0 | 0.12.5-1.0.0-alpha.1-0 |
- [#11866](https://github.com/cloudflare/workers-sdk/pull/11866) [`fe3e955`](https://github.com/cloudflare/workers-sdk/commit/fe3e9552dba58122cc37a4c0179be0bea9e631a8) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.18.3 | 3.18.5 |
- [#11541](https://github.com/cloudflare/workers-sdk/pull/11541) [`707dee0`](https://github.com/cloudflare/workers-sdk/commit/707dee055a9401f163d07241201fee11dcfb81ba) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update vike template to add `cf-typegen` script
## 2.62.1
### Patch Changes
- [#11540](https://github.com/cloudflare/workers-sdk/pull/11540) [`3f2d2c9`](https://github.com/cloudflare/workers-sdk/commit/3f2d2c959a738dc6ed4218adaad859c48305380a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.19.3 | 0.19.4 |
- [#11542](https://github.com/cloudflare/workers-sdk/pull/11542) [`01b8c2b`](https://github.com/cloudflare/workers-sdk/commit/01b8c2bfbde1160b9192ba99ad4cd20d87a7c4d6) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.10.5 | 0.11.2 |
- [#11546](https://github.com/cloudflare/workers-sdk/pull/11546) [`d7112b6`](https://github.com/cloudflare/workers-sdk/commit/d7112b69e127dfac7b2376cf35c13ba7d1645c4c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.0.1 | 21.0.4 |
- [#11638](https://github.com/cloudflare/workers-sdk/pull/11638) [`7ce9240`](https://github.com/cloudflare/workers-sdk/commit/7ce9240f36a89ce9a2025209942fc7dae350c855) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ------ |
| create-react-router | 7.9.6 | 7.11.0 |
- [#11762](https://github.com/cloudflare/workers-sdk/pull/11762) [`835bf59`](https://github.com/cloudflare/workers-sdk/commit/835bf59e17db12754741dcdecc8553650ce77fe9) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare"
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.17.2 | 1.18.0 |
- [#11778](https://github.com/cloudflare/workers-sdk/pull/11778) [`c3b8268`](https://github.com/cloudflare/workers-sdk/commit/c3b8268a6a066d512d7ee5e301f384c6175d33ff) Thanks [@rmarscher](https://github.com/rmarscher)! - Update Waku framework template wrangler.jsonc main entry path
Waku changed the worker main entry build path for v1.0. https://github.com/wakujs/waku/pull/1758
Removed not_found_handling so the worker will be invoked when no asset is found. This avoids 404 errors Waku server-side routes when assets_navigation_prefers_asset_serving is enabled. https://developers.cloudflare.com/workers/configuration/compatibility-flags/#navigation-requests-prefer-asset-serving
## 2.62.0
### Minor Changes
- [#11549](https://github.com/cloudflare/workers-sdk/pull/11549) [`d059f69`](https://github.com/cloudflare/workers-sdk/commit/d059f69706bcb6c2fc4c3e65bad4f8effeffcb6a) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Support Vike in `--experimental` mode
- [#11692](https://github.com/cloudflare/workers-sdk/pull/11692) [`df1f9c9`](https://github.com/cloudflare/workers-sdk/commit/df1f9c914524b7a20396aaa4476200501ea05fc1) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Support Waku in `--experimental` mode
### Patch Changes
- [#11812](https://github.com/cloudflare/workers-sdk/pull/11812) [`faf8d27`](https://github.com/cloudflare/workers-sdk/commit/faf8d275d04e75e88ec90328b440e0f83c0fcdba) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Remove redundant output present for the experimental setup of frameworks (by using new CLI flags of `wrangler setup`).
## 2.61.0
### Minor Changes
- [#11684](https://github.com/cloudflare/workers-sdk/pull/11684) [`f1f036c`](https://github.com/cloudflare/workers-sdk/commit/f1f036cf2191c1b043495e195c9cc4ac7be98529) Thanks [@ascorbic](https://github.com/ascorbic)! - Add `--variant` CLI argument to select framework variants non-interactively. This allows users to skip the variant selection prompt when creating React projects by specifying the variant directly, for example: `npm create cloudflare my-app -- --framework=react --platform=workers --variant=react-ts`.
### Patch Changes
- [#11662](https://github.com/cloudflare/workers-sdk/pull/11662) [`1be6bfe`](https://github.com/cloudflare/workers-sdk/commit/1be6bfea48b8ab7bc0860dc77e929e0019a937ac) Thanks [@pombosilva](https://github.com/pombosilva)! - Generate Workflow name based on worker name in hello-world-workflows template.
Previously, the hello-world-workflows template defaulted to the workflow name
`workflows-hello-world`. This caused deployments to overwrite existing workflows when
users forgot to change the name, since workflow names must be unique. The workflow
name is now generated from the worker name.
## 2.60.0
### Minor Changes
- [#11301](https://github.com/cloudflare/workers-sdk/pull/11301) [`6c590a0`](https://github.com/cloudflare/workers-sdk/commit/6c590a0c3392bb2b32ff5b7388114066d39e03da) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Support Next.js (via OpenNext) in `--experimental` mode
### Patch Changes
- [#11597](https://github.com/cloudflare/workers-sdk/pull/11597) [`3122607`](https://github.com/cloudflare/workers-sdk/commit/312260751a27f6be75c67a1b345edf1e431438ee) Thanks [@vicb](https://github.com/vicb)! - make sure comments are always added to the end of `wrangler.jsonc`
## 2.59.0
### Minor Changes
- [#11560](https://github.com/cloudflare/workers-sdk/pull/11560) [`2d9a30c`](https://github.com/cloudflare/workers-sdk/commit/2d9a30c843a0a73d572974b3aa6ff50ccafb7721) Thanks [@vicb](https://github.com/vicb)! - Support `<PACKAGE_NAME>` as a placeholder for the package name in `package.json`
`"name": "<PACKAGE_NAME>"` is replaced with the project name when c3 updates a `package.json` using `updatePackageName`.
Previously only `"<TBD>"`, `"TBD"`, and `""` were supported placeholder names.
- [#11551](https://github.com/cloudflare/workers-sdk/pull/11551) [`f261472`](https://github.com/cloudflare/workers-sdk/commit/f26147263b2ed5763a0e771b2693d2d223a9863f) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Support RedwoodSDK in `--experimental` mode
- [#11520](https://github.com/cloudflare/workers-sdk/pull/11520) [`85ec269`](https://github.com/cloudflare/workers-sdk/commit/85ec26985a05b2cc5e0dd3c4904f5b96b9e2de80) Thanks [@vicb](https://github.com/vicb)! - Add placeholder substitution in wrangler config files.
When c3 updates the config file:
- The value `"<WORKER_NAME>"` is replaced with the worker name.
- The value `"<COMPATIBILITY_DATE>"` is replaced with the latest worked compatibility date.
- [#11576](https://github.com/cloudflare/workers-sdk/pull/11576) [`bb47e20`](https://github.com/cloudflare/workers-sdk/commit/bb47e2090cd4c0c4c56abe97fffb35f3101414bf) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Support Analog in `--experimental` mode
### Patch Changes
- [#11557](https://github.com/cloudflare/workers-sdk/pull/11557) [`632fb6d`](https://github.com/cloudflare/workers-sdk/commit/632fb6dd7753daf1d771f15144baf8f1a451d9fa) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-rwsdk | 3.1.0 | 3.1.2 |
- [#11577](https://github.com/cloudflare/workers-sdk/pull/11577) [`85d70c8`](https://github.com/cloudflare/workers-sdk/commit/85d70c8b143579aab236d647f0e4ded1a487fe3b) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Update help message not to recommend non-applicable `--ts` create-next-app argument
C3 uses it's own template when running create-next-app, so providing a `--ts` argument to it doesn't have any effect, the C3 help message however shows that as an example on how to pass arguments to underlying framework CLIs. The changes here update the error message to instead use svelte's `--types=ts` as the example
- [#11563](https://github.com/cloudflare/workers-sdk/pull/11563) [`df7cd47`](https://github.com/cloudflare/workers-sdk/commit/df7cd47b38f4f86a1da5065e20867c1040d09c01) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix analog template and tests - bumping to 2.1.3
- [#11558](https://github.com/cloudflare/workers-sdk/pull/11558) [`d53462c`](https://github.com/cloudflare/workers-sdk/commit/d53462c9ff9a44761207f75041a0c854bea36029) Thanks [@vicb](https://github.com/vicb)! - fix: make sure c3 does not add duplicated types
## 2.58.0
### Minor Changes
- [#11477](https://github.com/cloudflare/workers-sdk/pull/11477) [`9988cc9`](https://github.com/cloudflare/workers-sdk/commit/9988cc9b9b157e453bb5eade439a8e69bfa0c7bd) Thanks [@ascorbic](https://github.com/ascorbic)! - Support Nuxt in autoconfig `--experimental` flow
- [#11472](https://github.com/cloudflare/workers-sdk/pull/11472) [`ce295bf`](https://github.com/cloudflare/workers-sdk/commit/ce295bffdc7a45494b6683ee5fef04dbfca54345) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Support Qwik in `--experimental` mode
- [#11485](https://github.com/cloudflare/workers-sdk/pull/11485) [`f1b76f7`](https://github.com/cloudflare/workers-sdk/commit/f1b76f70fa6f4a25dd607333fef104f0392332e7) Thanks [@penalosa](https://github.com/penalosa)! - Add React & Vue to C3's experimental mode
- [#11442](https://github.com/cloudflare/workers-sdk/pull/11442) [`a75352b`](https://github.com/cloudflare/workers-sdk/commit/a75352bb717663a902a0c156fbe424e7b558ca97) Thanks [@brillout](https://github.com/brillout)! - add Vike framework template
- [#11498](https://github.com/cloudflare/workers-sdk/pull/11498) [`ac861f8`](https://github.com/cloudflare/workers-sdk/commit/ac861f8ec24357c0238fa939b33da71236df7095) Thanks [@penalosa](https://github.com/penalosa)! - Add React Router support in autoconfig
- [#11506](https://github.com/cloudflare/workers-sdk/pull/11506) [`79d30d4`](https://github.com/cloudflare/workers-sdk/commit/79d30d4321b057f3cb4451ab43fa67653f1a8ee5) Thanks [@vicb](https://github.com/vicb)! - Set the target JS version to ES2024
### Patch Changes
- [#11472](https://github.com/cloudflare/workers-sdk/pull/11472) [`ce295bf`](https://github.com/cloudflare/workers-sdk/commit/ce295bffdc7a45494b6683ee5fef04dbfca54345) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: remove unnecessary step in qwik templates
The step that modifies the `src/entry.cloudflare-pages.tsx` file doesn't seem to change the file in any way anymore, so it's been removed
- [#11483](https://github.com/cloudflare/workers-sdk/pull/11483) [`f550b62`](https://github.com/cloudflare/workers-sdk/commit/f550b62fd4fdd60c2600390754631d713140afd3) Thanks [@edmundhung](https://github.com/edmundhung)! - stop running `npm install` with `--legacy-peer-deps` flag when setting up a project
## 2.57.1
### Patch Changes
- [#11507](https://github.com/cloudflare/workers-sdk/pull/11507) [`7b24eb0`](https://github.com/cloudflare/workers-sdk/commit/7b24eb0bfbc0adb5c56d634dac9156fa5b2d3701) Thanks [@jamesopstad](https://github.com/jamesopstad)! - fix: React Router configuration mismatch with v7.10.0
## 2.57.0
### Minor Changes
- [#11478](https://github.com/cloudflare/workers-sdk/pull/11478) [`2aec2b4`](https://github.com/cloudflare/workers-sdk/commit/2aec2b4e0ef710ec7e3897f823eca38d22991662) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Support SolidStart in autoconfig `--experimental` flow
- [#11375](https://github.com/cloudflare/workers-sdk/pull/11375) [`9a1de61`](https://github.com/cloudflare/workers-sdk/commit/9a1de617412f610a332f2516f4d61bec12556919) Thanks [@penalosa](https://github.com/penalosa)! - Support TanStack Start in autoconfig `--experimental` flow
- [#11330](https://github.com/cloudflare/workers-sdk/pull/11330) [`5a873bb`](https://github.com/cloudflare/workers-sdk/commit/5a873bbb0f018b02cf26a48da59c5389ef306589) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Support Angular in autoconfig `--experimental` flow
### Patch Changes
- [#11448](https://github.com/cloudflare/workers-sdk/pull/11448) [`2b4813b`](https://github.com/cloudflare/workers-sdk/commit/2b4813b18076817bb739491246313c32b403651f) Thanks [@edmundhung](https://github.com/edmundhung)! - Builds package with esbuild `v0.27.0`
- [#11385](https://github.com/cloudflare/workers-sdk/pull/11385) [`e51aa7a`](https://github.com/cloudflare/workers-sdk/commit/e51aa7a5573d602c43762331fae8b4f1e75cfb20) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------ | ------ |
| @tanstack/create-start | 0.36.2 | 0.37.2 |
- [#11386](https://github.com/cloudflare/workers-sdk/pull/11386) [`8e8ab6f`](https://github.com/cloudflare/workers-sdk/commit/8e8ab6f2ce0cb3acf0545d72d86b3a5280b033a3) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.9.14 | 0.10.5 |
- [#11473](https://github.com/cloudflare/workers-sdk/pull/11473) [`efac6c5`](https://github.com/cloudflare/workers-sdk/commit/efac6c58f9fadba777d584f20dfbea56ea9e772d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.18.2 | 3.18.3 |
- [#11474](https://github.com/cloudflare/workers-sdk/pull/11474) [`b4dc50b`](https://github.com/cloudflare/workers-sdk/commit/b4dc50b1f761982dfcbbd4ec3432f114d7f84978) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 21.0.0 | 21.0.1 |
- [#11475](https://github.com/cloudflare/workers-sdk/pull/11475) [`452a300`](https://github.com/cloudflare/workers-sdk/commit/452a3009c16d2838a15b784c31d749018987ca4f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------ | ------ |
| @tanstack/create-start | 0.37.2 | 0.40.0 |
- [#11478](https://github.com/cloudflare/workers-sdk/pull/11478) [`2aec2b4`](https://github.com/cloudflare/workers-sdk/commit/2aec2b4e0ef710ec7e3897f823eca38d22991662) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Remove unnecessary nitropack installation
- [#11480](https://github.com/cloudflare/workers-sdk/pull/11480) [`86d1e25`](https://github.com/cloudflare/workers-sdk/commit/86d1e257a58a1c9d98879c2deafa90a23f989d81) Thanks [@Hypercookie](https://github.com/Hypercookie)! - fix typos in `hello-world-durable-object` templates
- [#11330](https://github.com/cloudflare/workers-sdk/pull/11330) [`5a873bb`](https://github.com/cloudflare/workers-sdk/commit/5a873bbb0f018b02cf26a48da59c5389ef306589) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Update the Angular starter to set a `preview` script instead of a `start` one
## 2.56.0
### Minor Changes
- [#11221](https://github.com/cloudflare/workers-sdk/pull/11221) [`6701036`](https://github.com/cloudflare/workers-sdk/commit/67010366c5c2aeb20eb7d11262a8e8fd07b783c5) Thanks [@peterp](https://github.com/peterp)! - Add RedwoodSDK as a framework option
- [#11345](https://github.com/cloudflare/workers-sdk/pull/11345) [`d524e55`](https://github.com/cloudflare/workers-sdk/commit/d524e5524cf701e33b367d33616db5430a126fa9) Thanks [@penalosa](https://github.com/penalosa)! - Enable experimental support for autoconfig-powered Astro projects
### Patch Changes
- [#11384](https://github.com/cloudflare/workers-sdk/pull/11384) [`f607ea4`](https://github.com/cloudflare/workers-sdk/commit/f607ea431e13738d4ef97125d2a53e901c8ccab1) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------- | ------ |
| @angular/create | 20.3.10 | 21.0.0 |
- [#11387](https://github.com/cloudflare/workers-sdk/pull/11387) [`03be5b8`](https://github.com/cloudflare/workers-sdk/commit/03be5b83d34954810b8be28d70640e71e5a647f5) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | --------------- | --------------- |
| create-waku | 0.12.5-0.27.0-0 | 0.12.5-0.27.1-0 |
- [#11395](https://github.com/cloudflare/workers-sdk/pull/11395) [`e9d4db4`](https://github.com/cloudflare/workers-sdk/commit/e9d4db4bc422248c05b0d515c022c4fd3e40ebf5) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Fix step 2 saying that the will be configured using `wrangler setup` when it is not
## 2.55.1
### Patch Changes
- [#11298](https://github.com/cloudflare/workers-sdk/pull/11298) [`2b6f423`](https://github.com/cloudflare/workers-sdk/commit/2b6f4230a12d318ae64fce777345a136e0673f38) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------- | ------ |
| @tanstack/create-start | 0.34.15 | 0.36.2 |
## 2.55.0
### Minor Changes
- [#11251](https://github.com/cloudflare/workers-sdk/pull/11251) [`7035804`](https://github.com/cloudflare/workers-sdk/commit/7035804a859b90fcaaebe8d774cd98fcf57def5b) Thanks [@penalosa](https://github.com/penalosa)! - When the `--experimental` flag is passed to `create-cloudflare`, use `wrangler setup` for configuring a project to work on Cloudflare rather than the existing `create-cloudflare` logic. Only Gatsby is supported right now, with more frameworks to be added in future. There should be no functional change to applications created via `create-cloudflare` when using the `--experimental` flag.
### Patch Changes
- [#11013](https://github.com/cloudflare/workers-sdk/pull/11013) [`1b4a08c`](https://github.com/cloudflare/workers-sdk/commit/1b4a08c2a72d5fb9c60bfb68c92505424acbd09f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.9.8 | 0.9.9 |
- [#11015](https://github.com/cloudflare/workers-sdk/pull/11015) [`220f608`](https://github.com/cloudflare/workers-sdk/commit/220f608fd3385e8c10a4b0668c7f89a9c9a9037a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.9.1 | 3.9.2 |
- [#11222](https://github.com/cloudflare/workers-sdk/pull/11222) [`32a88d2`](https://github.com/cloudflare/workers-sdk/commit/32a88d2a41aa9e76c55e1be5b2e243d4c21daebb) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.29.3 | 3.30.0 |
- [#11294](https://github.com/cloudflare/workers-sdk/pull/11294) [`632cdc3`](https://github.com/cloudflare/workers-sdk/commit/632cdc3fe10d0cde0b21f351677d20368aa36934) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------- |
| @angular/create | 20.3.9 | 20.3.10 |
- [#11295](https://github.com/cloudflare/workers-sdk/pull/11295) [`4e5ac89`](https://github.com/cloudflare/workers-sdk/commit/4e5ac89e4b73a290da401c8c057225bc545629ee) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.9.5 | 7.9.6 |
- [#11297](https://github.com/cloudflare/workers-sdk/pull/11297) [`4a03bd6`](https://github.com/cloudflare/workers-sdk/commit/4a03bd6641d1d00628dbb516f5eb8bcf20eac6a8) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ------ |
| sv | 0.9.9 | 0.9.14 |
- [#11302](https://github.com/cloudflare/workers-sdk/pull/11302) [`7dfce98`](https://github.com/cloudflare/workers-sdk/commit/7dfce9823e792793fefc0fcbb4c4bcd70adf0ca1) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Support Docusaurus in `--experimental` mode
- [#11184](https://github.com/cloudflare/workers-sdk/pull/11184) [`a8efcc8`](https://github.com/cloudflare/workers-sdk/commit/a8efcc8babebb399c70b17e688166a4052d4ac0c) Thanks [@dom96](https://github.com/dom96)! - Create-cloudflare now filters out options that don't exist for specified language
- [#11268](https://github.com/cloudflare/workers-sdk/pull/11268) [`15b8460`](https://github.com/cloudflare/workers-sdk/commit/15b846037dc9853e0fef1cf0bc576b8c460be188) Thanks [@penalosa](https://github.com/penalosa)! - Support SvelteKit in `--experimental` mode
- [#11266](https://github.com/cloudflare/workers-sdk/pull/11266) [`09cb720`](https://github.com/cloudflare/workers-sdk/commit/09cb720182dbdd5e403af2c9eae75461c4058682) Thanks [@penalosa](https://github.com/penalosa)! - Use the smol-toml library for parsing TOML instead of @iarna/toml
- [#11170](https://github.com/cloudflare/workers-sdk/pull/11170) [`c6d33cf`](https://github.com/cloudflare/workers-sdk/commit/c6d33cfee2a83fdf311d9b89e3748addcd75f450) Thanks [@dom96](https://github.com/dom96)! - Fixes hello-world-with-assets python template
## 2.54.5
### Patch Changes
- [#11223](https://github.com/cloudflare/workers-sdk/pull/11223) [`bff5f16`](https://github.com/cloudflare/workers-sdk/commit/bff5f1662e77be79ef5ba4b6b0b3bf10685f7d06) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | --------------- | --------------- |
| create-waku | 0.12.5-0.26.1-0 | 0.12.5-0.27.0-0 |
- [#11224](https://github.com/cloudflare/workers-sdk/pull/11224) [`60a9890`](https://github.com/cloudflare/workers-sdk/commit/60a9890df196717a0562e166466c27cbe2f09f3f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.17.1 | 1.17.2 |
- [#11226](https://github.com/cloudflare/workers-sdk/pull/11226) [`da07a10`](https://github.com/cloudflare/workers-sdk/commit/da07a10f3592211640067135cf82fa5c5c11fd0b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.3.8 | 20.3.9 |
## 2.54.4
### Patch Changes
- [#11014](https://github.com/cloudflare/workers-sdk/pull/11014) [`4937e85`](https://github.com/cloudflare/workers-sdk/commit/4937e85a0df6ffd86b1730623012dcb9ee31127c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.4.6 | 15.5.6 |
- [#11132](https://github.com/cloudflare/workers-sdk/pull/11132) [`0acaa5a`](https://github.com/cloudflare/workers-sdk/commit/0acaa5add98506b84bb71ddfd65a0992f4232563) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - use the Cloudflare maintained Next.js template
## 2.54.3
### Patch Changes
- [#11155](https://github.com/cloudflare/workers-sdk/pull/11155) [`6d3b49f`](https://github.com/cloudflare/workers-sdk/commit/6d3b49f3d6092972b469dadbf6396a6bcb28bf6e) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.17.0 | 1.17.1 |
## 2.54.2
### Patch Changes
- [#11154](https://github.com/cloudflare/workers-sdk/pull/11154) [`206b308`](https://github.com/cloudflare/workers-sdk/commit/206b3085d2ebfc3a0d1f434416613e54124bf947) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.19.2 | 0.19.3 |
- [#11156](https://github.com/cloudflare/workers-sdk/pull/11156) [`95a1629`](https://github.com/cloudflare/workers-sdk/commit/95a1629b542b2cb14a69b62f385626624e69ca64) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------ | ------- |
| @tanstack/create-start | 0.34.6 | 0.34.15 |
- [#11157](https://github.com/cloudflare/workers-sdk/pull/11157) [`a82e350`](https://github.com/cloudflare/workers-sdk/commit/a82e350218b943ac221a74877e14427aa123e2a5) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.9.4 | 7.9.5 |
- [#11158](https://github.com/cloudflare/workers-sdk/pull/11158) [`687f8bc`](https://github.com/cloudflare/workers-sdk/commit/687f8bc56094af8cfb4ca9c6aeacb89900bec871) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.3.7 | 20.3.8 |
## 2.54.1
### Patch Changes
- [#11016](https://github.com/cloudflare/workers-sdk/pull/11016) [`9cef26a`](https://github.com/cloudflare/workers-sdk/commit/9cef26a1e736d33794006a67179b50fcdcd88afc) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-astro | 4.13.1 | 4.13.2 |
- [#11101](https://github.com/cloudflare/workers-sdk/pull/11101) [`0856306`](https://github.com/cloudflare/workers-sdk/commit/08563062f99e2f69818934e422bbeccaf0be593c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.18.1 | 3.18.2 |
- [#11102](https://github.com/cloudflare/workers-sdk/pull/11102) [`ac527a8`](https://github.com/cloudflare/workers-sdk/commit/ac527a85c7053a409040ab675890f84825fabaa3) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.3.6 | 20.3.7 |
- [#11103](https://github.com/cloudflare/workers-sdk/pull/11103) [`3a39370`](https://github.com/cloudflare/workers-sdk/commit/3a39370dde4e52707ff685fbe60e2f5a056ca4bf) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------------------- | ------ | ------ |
| @tanstack/create-start | 0.34.2 | 0.34.6 |
## 2.54.0
### Minor Changes
- [#10842](https://github.com/cloudflare/workers-sdk/pull/10842) [`af18b48`](https://github.com/cloudflare/workers-sdk/commit/af18b483c37d13b33df5dfff5cefc32e5e5bee2d) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - add TanStack Start framework template
### Patch Changes
- [#10991](https://github.com/cloudflare/workers-sdk/pull/10991) [`0372e86`](https://github.com/cloudflare/workers-sdk/commit/0372e863ec0e9f8da79fb655f61e5f69504c324d) Thanks [@dom96](https://github.com/dom96)! - Adds submodule to Python hello world template
- [#11043](https://github.com/cloudflare/workers-sdk/pull/11043) [`5d9cf0d`](https://github.com/cloudflare/workers-sdk/commit/5d9cf0d097951adc15c294c02d4958ae731c47ac) Thanks [@dom96](https://github.com/dom96)! - Remove lockfiles from Python C3 templates
## 2.53.0
### Minor Changes
- [#10989](https://github.com/cloudflare/workers-sdk/pull/10989) [`da37501`](https://github.com/cloudflare/workers-sdk/commit/da37501a6375c599a4deeac9a5d1445aca1bdf6c) Thanks [@dom96](https://github.com/dom96)! - Fixes generation of 'name' in Python uv.lock template
- [#10943](https://github.com/cloudflare/workers-sdk/pull/10943) [`9d843fe`](https://github.com/cloudflare/workers-sdk/commit/9d843fe1f6a329f43d54e95fb15d9d9546efa600) Thanks [@valfz](https://github.com/valfz)! - fixed creating index.js with wrong extension when Vue project is created with JavaScript
- [#10990](https://github.com/cloudflare/workers-sdk/pull/10990) [`c07036b`](https://github.com/cloudflare/workers-sdk/commit/c07036b7740dbeb9d48d71221755d71374725b46) Thanks [@dom96](https://github.com/dom96)! - Python templates' package.json scripts now use pywrangler
### Patch Changes
- [#10948](https://github.com/cloudflare/workers-sdk/pull/10948) [`04c5dc7`](https://github.com/cloudflare/workers-sdk/commit/04c5dc7b611bea475eb82a9d683011a76a52f6b7) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.16.1 | 1.17.0 |
- [#10949](https://github.com/cloudflare/workers-sdk/pull/10949) [`44dc255`](https://github.com/cloudflare/workers-sdk/commit/44dc25554fe1b2f3bd1b18f76753190e93e533a3) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.3.4 | 20.3.6 |
- [#10950](https://github.com/cloudflare/workers-sdk/pull/10950) [`39dbb39`](https://github.com/cloudflare/workers-sdk/commit/39dbb397ef07f629018a8bbd0f9b33831445c6ca) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.9.7 | 0.9.8 |
- [#10951](https://github.com/cloudflare/workers-sdk/pull/10951) [`46c31e1`](https://github.com/cloudflare/workers-sdk/commit/46c31e18e17f21a019e65beb58b482020290d24c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.28.0 | 3.29.3 |
- [#10952](https://github.com/cloudflare/workers-sdk/pull/10952) [`dcda100`](https://github.com/cloudflare/workers-sdk/commit/dcda100ccdf703cd5b002f3b48da64dfdd6fd5c9) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.9.3 | 7.9.4 |
- [#10914](https://github.com/cloudflare/workers-sdk/pull/10914) [`890a606`](https://github.com/cloudflare/workers-sdk/commit/890a606a196e62e1f56f3982e71c3d97246b9a34) Thanks [@devin-ai-integration](https://github.com/apps/devin-ai-integration)! - Fix git commit failures when global pre-commit hooks are configured. When initializing projects, create-cloudflare now uses git commit --no-verify to bypass any globally configured git hooks that might fail and block project initialization.
## 2.52.3
### Patch Changes
- [#10875](https://github.com/cloudflare/workers-sdk/pull/10875) [`63ddc27`](https://github.com/cloudflare/workers-sdk/commit/63ddc279aa9935f53772c9255624f4c5fdd1f1ce) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.18.0 | 3.18.1 |
- [#10876](https://github.com/cloudflare/workers-sdk/pull/10876) [`dd95f7f`](https://github.com/cloudflare/workers-sdk/commit/dd95f7f0f3d95b7c2285b23c57a19216ec4ec027) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.9.6 | 0.9.7 |
- [#10877](https://github.com/cloudflare/workers-sdk/pull/10877) [`f4a92fd`](https://github.com/cloudflare/workers-sdk/commit/f4a92fd014b7d82d32bcef78b612f4f227d12a86) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.3.3 | 20.3.4 |
## 2.52.2
### Patch Changes
- [#10457](https://github.com/cloudflare/workers-sdk/pull/10457) [`862034c`](https://github.com/cloudflare/workers-sdk/commit/862034c6a64bef8d45fe6adb2a3fab76207a7f24) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ------ |
| create-solid | 0.6.7 | 0.6.11 |
## 2.52.1
### Patch Changes
- [#10641](https://github.com/cloudflare/workers-sdk/pull/10641) [`cc47218`](https://github.com/cloudflare/workers-sdk/commit/cc47218b8ce3e0aac075ef13c1e4b0c5a8c2b6c3) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.8.2 | 7.9.3 |
- [#10642](https://github.com/cloudflare/workers-sdk/pull/10642) [`a6cfc06`](https://github.com/cloudflare/workers-sdk/commit/a6cfc06d5dc23c9f098221608fe1dc0521cdb0b2) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.3.0 | 20.3.3 |
- [#10766](https://github.com/cloudflare/workers-sdk/pull/10766) [`bd5b720`](https://github.com/cloudflare/workers-sdk/commit/bd5b720c44f8bc04ac153154c1f8b8a291af7139) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - Do not override any `.env` settings in `.gitignore` files
Previously we only looked for `.env*` in the `gitignore` but now we cover more cases such as:
- `.env`
- `.env\*`
- `.env.<local|production|staging|...>`
- `.env\*.<local|production|staging|...>`
## 2.52.0
### Minor Changes
- [#10700](https://github.com/cloudflare/workers-sdk/pull/10700) [`8e05701`](https://github.com/cloudflare/workers-sdk/commit/8e05701f9b350612ba58e0883035b1fb1651787d) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Remove the Remix option since the framework is no longer recommended by the Remix team for new applications
- [#8314](https://github.com/cloudflare/workers-sdk/pull/8314) [`7e0d750`](https://github.com/cloudflare/workers-sdk/commit/7e0d750edcf8dc3e0cd7f8acdbb8af6fb68f67f4) Thanks [@rmarscher](https://github.com/rmarscher)! - feat(create-cloudflare): Add Waku Workers template
- [#10781](https://github.com/cloudflare/workers-sdk/pull/10781) [`8eb7197`](https://github.com/cloudflare/workers-sdk/commit/8eb7197572d46703850ca0425e4b85ded0f07beb) Thanks [@dom96](https://github.com/dom96)! - Adds Python-specific folders to gitignore in Python templates
- [#10699](https://github.com/cloudflare/workers-sdk/pull/10699) [`2acbdbe`](https://github.com/cloudflare/workers-sdk/commit/2acbdbe2a09be15ccd7962e5b6c48280744df4f6) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Remove the next-on-pages (Next.js on the Pages platform) option since the package has been deprecated
### Patch Changes
- [#10567](https://github.com/cloudflare/workers-sdk/pull/10567) [`64e403b`](https://github.com/cloudflare/workers-sdk/commit/64e403ba8cfc1c2ea53ef2405787cd1bf64d064a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.9.2 | 0.9.6 |
- [#10793](https://github.com/cloudflare/workers-sdk/pull/10793) [`aed5fa0`](https://github.com/cloudflare/workers-sdk/commit/aed5fa09df83bcc7fd5a448c2216626fabe94214) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.16.0 | 1.16.1 |
- [#10794](https://github.com/cloudflare/workers-sdk/pull/10794) [`6e56107`](https://github.com/cloudflare/workers-sdk/commit/6e56107dac78b9f1cb584a5313121a5ec8ced887) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.8.1 | 3.9.1 |
- [#10790](https://github.com/cloudflare/workers-sdk/pull/10790) [`c563ebe`](https://github.com/cloudflare/workers-sdk/commit/c563ebeb49612f1d38835c59b6552afecf0d8171) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - pin the URL for the react-router template since it was deleted from the project
- [#10780](https://github.com/cloudflare/workers-sdk/pull/10780) [`89125b3`](https://github.com/cloudflare/workers-sdk/commit/89125b3f681afa0806ff35a87696e85bf8c7b899) Thanks [@dom96](https://github.com/dom96)! - Python templates now create valid pyproject.toml/uv.lock files
## 2.51.7
### Patch Changes
- [#10695](https://github.com/cloudflare/workers-sdk/pull/10695) [`bde8ef2`](https://github.com/cloudflare/workers-sdk/commit/bde8ef250836d923b9c14b23ba4fb5c176a2b11c) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Error when an unsupported platform is specified for a framework
## 2.51.6
### Patch Changes
- [#10458](https://github.com/cloudflare/workers-sdk/pull/10458) [`7aa31dc`](https://github.com/cloudflare/workers-sdk/commit/7aa31dc0c32bc1aaa5e1ca7cdb85a1604472cd22) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.1.6 | 20.3.0 |
- [#10510](https://github.com/cloudflare/workers-sdk/pull/10510) [`3657383`](https://github.com/cloudflare/workers-sdk/commit/3657383e184754b602eb7e45176c7954b82d4b5c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.14.6 | 5.15.0 |
## 2.51.5
### Patch Changes
- [#10575](https://github.com/cloudflare/workers-sdk/pull/10575) [`443d1f1`](https://github.com/cloudflare/workers-sdk/commit/443d1f1e625226595d901d91bc930ffb464f100d) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: ensure that pinned versions are not converted to ranges when using npm
- [#10554](https://github.com/cloudflare/workers-sdk/pull/10554) [`75d737d`](https://github.com/cloudflare/workers-sdk/commit/75d737db401881354d9f6940bd7a09ebbced46f0) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Pin the `vercel` and `next` dependencies to their latest supported for next-on-pages applications
## 2.51.4
### Patch Changes
- [#10497](https://github.com/cloudflare/workers-sdk/pull/10497) [`3bdf86c`](https://github.com/cloudflare/workers-sdk/commit/3bdf86c655d32faf356163f59d4149800e813b3c) Thanks [@hoodmane](https://github.com/hoodmane)! - Added workers-py to the pyproject.toml dev requirements
## 2.51.3
### Patch Changes
- [#10455](https://github.com/cloudflare/workers-sdk/pull/10455) [`17ee8e6`](https://github.com/cloudflare/workers-sdk/commit/17ee8e6d58056543a099270ba08d79957420aca8) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.15.0 | 1.16.0 |
- [#10456](https://github.com/cloudflare/workers-sdk/pull/10456) [`0df683f`](https://github.com/cloudflare/workers-sdk/commit/0df683fc2a69ae6bc54b162264cff7492e7180e0) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.8.1 | 7.8.2 |
## 2.51.2
### Patch Changes
- [#10477](https://github.com/cloudflare/workers-sdk/pull/10477) [`30716ed`](https://github.com/cloudflare/workers-sdk/commit/30716edd572c9a8348c04f9cecf58f3808270120) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix outdated Remix template url being used
## 2.51.1
### Patch Changes
- [#10419](https://github.com/cloudflare/workers-sdk/pull/10419) [`7d314b1`](https://github.com/cloudflare/workers-sdk/commit/7d314b1b1591ef2e1b81093a228148c88dfdbed7) Thanks [@joshthoward](https://github.com/joshthoward)! - Update create-cloudflare hello-world Durable Objects templates to use `getByName()`
## 2.51.0
### Minor Changes
- [#10357](https://github.com/cloudflare/workers-sdk/pull/10357) [`565c3a3`](https://github.com/cloudflare/workers-sdk/commit/565c3a3ddf381945b0bea6c99029d8783e68f6bb) Thanks [@dom96](https://github.com/dom96)! - Use new default entrypoint handlers for Python examples
### Patch Changes
- [#10384](https://github.com/cloudflare/workers-sdk/pull/10384) [`839b8f0`](https://github.com/cloudflare/workers-sdk/commit/839b8f00fdce30b66986d7d9b233863aaa2dd0d7) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.9.0 | 0.9.2 |
- [#10385](https://github.com/cloudflare/workers-sdk/pull/10385) [`f0f995d`](https://github.com/cloudflare/workers-sdk/commit/f0f995da7ef22cc72294d1c2d9e149eb31d69c63) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 7.1.0 | 7.1.1 |
- [#10386](https://github.com/cloudflare/workers-sdk/pull/10386) [`516dc20`](https://github.com/cloudflare/workers-sdk/commit/516dc20be624042533af0cd0b4205f92e256bb3f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.27.0 | 3.28.0 |
- [#10387](https://github.com/cloudflare/workers-sdk/pull/10387) [`4390c9f`](https://github.com/cloudflare/workers-sdk/commit/4390c9f3974f0a5db90e71cd1f70dc6a6ab49b93) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.1.5 | 20.1.6 |
- [#10388](https://github.com/cloudflare/workers-sdk/pull/10388) [`6778d0f`](https://github.com/cloudflare/workers-sdk/commit/6778d0f1038066b3669a8b4edf0c8d93fc78bce8) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.8.0 | 7.8.1 |
## 2.50.9
### Patch Changes
- [#9940](https://github.com/cloudflare/workers-sdk/pull/9940) [`46df88c`](https://github.com/cloudflare/workers-sdk/commit/46df88caeae7a7dad04da3bc88201964451b6352) Thanks [@stof](https://github.com/stof)! - Enable the nodejs_als in the svelte template to work out of the box
- [#10299](https://github.com/cloudflare/workers-sdk/pull/10299) [`eb712ef`](https://github.com/cloudflare/workers-sdk/commit/eb712ef16164ea9c81910bc1c0baf6c5292c461a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-solid | 0.6.5 | 0.6.7 |
- [#10300](https://github.com/cloudflare/workers-sdk/pull/10300) [`031edad`](https://github.com/cloudflare/workers-sdk/commit/031edad285916c90d3532a533d886b30d26f8d4a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.14.5 | 5.14.6 |
- [#10301](https://github.com/cloudflare/workers-sdk/pull/10301) [`c4fa63c`](https://github.com/cloudflare/workers-sdk/commit/c4fa63c97ead878774cc2442b33e768f552f41fd) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 7.0.3 | 7.1.0 |
- [#10302](https://github.com/cloudflare/workers-sdk/pull/10302) [`17e32a5`](https://github.com/cloudflare/workers-sdk/commit/17e32a5e10a1426bb5afcbef1c787d1e74176702) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.7.1 | 7.8.0 |
- [#10303](https://github.com/cloudflare/workers-sdk/pull/10303) [`151b3ce`](https://github.com/cloudflare/workers-sdk/commit/151b3ceeca4048bcb7227e7dd3f0ec14b236ad55) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.3.5 | 15.4.6 |
- [#10304](https://github.com/cloudflare/workers-sdk/pull/10304) [`2915f42`](https://github.com/cloudflare/workers-sdk/commit/2915f42b7a6996b480e158087cee5906eb6b01a6) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.1.4 | 20.1.5 |
## 2.50.8
### Patch Changes
- [#10127](https://github.com/cloudflare/workers-sdk/pull/10127) [`65f0ef2`](https://github.com/cloudflare/workers-sdk/commit/65f0ef26a511ba810ceddeb8f1d459cdcea8e54f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.17.0 | 3.18.0 |
- [#10197](https://github.com/cloudflare/workers-sdk/pull/10197) [`11225f9`](https://github.com/cloudflare/workers-sdk/commit/11225f9b44163e38bfe8ad1dbf6950faca2fa4b5) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-astro | 4.13.0 | 4.13.1 |
- [#10198](https://github.com/cloudflare/workers-sdk/pull/10198) [`626b226`](https://github.com/cloudflare/workers-sdk/commit/626b2269803fa24da19a06ae16cb72bb8b9e91c4) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ----- |
| sv | 0.8.20 | 0.9.0 |
- [#10199](https://github.com/cloudflare/workers-sdk/pull/10199) [`53a685f`](https://github.com/cloudflare/workers-sdk/commit/53a685f88855c66991f8ebd89ed6fc16fba37060) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.1.3 | 20.1.4 |
- [#9956](https://github.com/cloudflare/workers-sdk/pull/9956) [`b70a702`](https://github.com/cloudflare/workers-sdk/commit/b70a70266c5f2c9be8717d798394ab02afaf4c65) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.25.1 | 3.27.0 |
- [#10189](https://github.com/cloudflare/workers-sdk/pull/10189) [`69e2114`](https://github.com/cloudflare/workers-sdk/commit/69e2114880afe259b92de116779a80248f605d6a) Thanks [@fjararibet](https://github.com/fjararibet)! - add .gitignore to hello-world-assets-only template
- [#10176](https://github.com/cloudflare/workers-sdk/pull/10176) [`07c8611`](https://github.com/cloudflare/workers-sdk/commit/07c8611b69721e8aa1300ba209dc45a75173e1d7) Thanks [@devin-ai-integration](https://github.com/apps/devin-ai-integration)! - Add macOS version validation to prevent EPIPE errors on unsupported macOS versions (below 13.5). Miniflare and C3 fail hard while Wrangler shows warnings but continues execution.
- [#10192](https://github.com/cloudflare/workers-sdk/pull/10192) [`f5854a9`](https://github.com/cloudflare/workers-sdk/commit/f5854a97ede2d083ac2c351a28ccfbf7e097229a) Thanks [@devin-ai-integration](https://github.com/apps/devin-ai-integration)! - Preserve comments in wrangler.json files when C3 updates them during project generation. Previously, comments were stripped when updating configuration files from templates.
## 2.50.7
### Patch Changes
- [#10109](https://github.com/cloudflare/workers-sdk/pull/10109) [`d983f2b`](https://github.com/cloudflare/workers-sdk/commit/d983f2be011e94204a1e6a3978c7228842de8524) Thanks [@alan-agius4](https://github.com/alan-agius4)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 20.0.5 | 20.1.3 |
## 2.50.6
### Patch Changes
- [#10081](https://github.com/cloudflare/workers-sdk/pull/10081) [`defea6f`](https://github.com/cloudflare/workers-sdk/commit/defea6f2e2fb048bcb58105db6e546035b038e78) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.7.0 | 7.7.1 |
- [#10082](https://github.com/cloudflare/workers-sdk/pull/10082) [`2f3f090`](https://github.com/cloudflare/workers-sdk/commit/2f3f090fd4f998e6f54f8adf6103198f834e8e2a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.14.1 | 1.15.0 |
- [#10083](https://github.com/cloudflare/workers-sdk/pull/10083) [`6d83a87`](https://github.com/cloudflare/workers-sdk/commit/6d83a8724ad15fdbe2b279e6af44a906914fa114) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-astro | 4.12.1 | 4.13.0 |
- [#10085](https://github.com/cloudflare/workers-sdk/pull/10085) [`99b8eab`](https://github.com/cloudflare/workers-sdk/commit/99b8eabaad301649912708b244335a3d608e59a9) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.8.18 | 0.8.20 |
## 2.50.5
### Patch Changes
- [#10027](https://github.com/cloudflare/workers-sdk/pull/10027) [`26186a5`](https://github.com/cloudflare/workers-sdk/commit/26186a58ca5da7b7c6eaa3579a2cc62de583f9b0) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.6.3 | 7.7.0 |
## 2.50.4
### Patch Changes
- [#9941](https://github.com/cloudflare/workers-sdk/pull/9941) [`e1c183a`](https://github.com/cloudflare/workers-sdk/commit/e1c183aaf238394255f33f82ef7e8a997d0ea91d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 7.0.0 | 7.0.3 |
- [#9942](https://github.com/cloudflare/workers-sdk/pull/9942) [`56cf197`](https://github.com/cloudflare/workers-sdk/commit/56cf197228fc4612bb38c9f447cadb0736b5653b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.8.15 | 0.8.18 |
## 2.50.3
### Patch Changes
- [#9756](https://github.com/cloudflare/workers-sdk/pull/9756) [`afb0246`](https://github.com/cloudflare/workers-sdk/commit/afb024617b034c8130b95d690f010272564c59ca) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.8.12 | 0.8.15 |
- [#9790](https://github.com/cloudflare/workers-sdk/pull/9790) [`08cc0fe`](https://github.com/cloudflare/workers-sdk/commit/08cc0fea0ab018b497812a39d5336a6c6f213d70) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.6.2 | 7.6.3 |
- [#9863](https://github.com/cloudflare/workers-sdk/pull/9863) [`f1f6daf`](https://github.com/cloudflare/workers-sdk/commit/f1f6daf2e06ab2cb833d76593dfe5c8dac6e8e7d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.19.1 | 0.19.2 |
- [#9864](https://github.com/cloudflare/workers-sdk/pull/9864) [`ccda844`](https://github.com/cloudflare/workers-sdk/commit/ccda844629c2ed171d7d61f2046770e48edc99fd) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.3.4 | 15.3.5 |
## 2.50.2
### Patch Changes
- [#9742](https://github.com/cloudflare/workers-sdk/pull/9742) [`9b85137`](https://github.com/cloudflare/workers-sdk/commit/9b851378e291ee8eefc06172588721635c529f2c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.16.4 | 3.17.0 |
- [#9743](https://github.com/cloudflare/workers-sdk/pull/9743) [`8c71de1`](https://github.com/cloudflare/workers-sdk/commit/8c71de1b21e9a0f17ca25e3d44afc99c82fb49cd) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 6.5.0 | 7.0.0 |
## 2.50.1
### Patch Changes
- [#9700](https://github.com/cloudflare/workers-sdk/pull/9700) [`bb8b987`](https://github.com/cloudflare/workers-sdk/commit/bb8b987d22b1386cf33b85125addd500866ec6ab) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.3.3 | 15.3.4 |
- [#9701](https://github.com/cloudflare/workers-sdk/pull/9701) [`9bc830c`](https://github.com/cloudflare/workers-sdk/commit/9bc830c0e630fd15e9c6a71cd28cd05195abc822) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.14.4 | 5.14.5 |
- [#9702](https://github.com/cloudflare/workers-sdk/pull/9702) [`9f449be`](https://github.com/cloudflare/workers-sdk/commit/9f449beb3f7b610190fcd79580ebdc53ae079176) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ------ |
| sv | 0.8.7 | 0.8.12 |
## 2.50.0
### Minor Changes
- [#9305](https://github.com/cloudflare/workers-sdk/pull/9305) [`f116623`](https://github.com/cloudflare/workers-sdk/commit/f116623d561a7a4375e0ed3372bc41c021ddd118) Thanks [@dom96](https://github.com/dom96)! - Add @handler to Python templates.
## 2.49.4
### Patch Changes
- [#9524](https://github.com/cloudflare/workers-sdk/pull/9524) [`93d9fd2`](https://github.com/cloudflare/workers-sdk/commit/93d9fd268591a7a8d87c9df1d852ac4b970c7fdc) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.14.3 | 5.14.4 |
- [#9525](https://github.com/cloudflare/workers-sdk/pull/9525) [`0d32f47`](https://github.com/cloudflare/workers-sdk/commit/0d32f47129b3243d2efd02d9400d9f248a97a93f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-remix | 2.16.6 | 2.16.8 |
- [#9526](https://github.com/cloudflare/workers-sdk/pull/9526) [`e9a34f5`](https://github.com/cloudflare/workers-sdk/commit/e9a34f518131986d27967f47a4bcdb673dcc88df) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.6.1 | 7.6.2 |
- [#9527](https://github.com/cloudflare/workers-sdk/pull/9527) [`351657e`](https://github.com/cloudflare/workers-sdk/commit/351657e59353a9a93e80d021b606c5f424bf84d2) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.8.0 | 3.8.1 |
## 2.49.3
### Patch Changes
- [#9608](https://github.com/cloudflare/workers-sdk/pull/9608) Thanks [@penalosa](https://github.com/penalosa)! - Install Opennext v1.3.0
## 2.49.2
### Patch Changes
- [#9439](https://github.com/cloudflare/workers-sdk/pull/9439) [`8d648e7`](https://github.com/cloudflare/workers-sdk/commit/8d648e7c2f94cf315cdfffad6ee43e01e82a0947) Thanks [@edmundhung](https://github.com/edmundhung)! - update vitest version on hello-world and hello-world-with-assets templates
## 2.49.1
### Patch Changes
- [#9499](https://github.com/cloudflare/workers-sdk/pull/9499) [`7bde13c`](https://github.com/cloudflare/workers-sdk/commit/7bde13c97287cb9d1de2ad0959ee5a6cf1db58ed) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - configure images processing to use "cloudflare" strategy in Astro projects
- [#9478](https://github.com/cloudflare/workers-sdk/pull/9478) [`9b66c33`](https://github.com/cloudflare/workers-sdk/commit/9b66c33e4d20245fca4e0652e557347e916846bd) Thanks [@avenceslau](https://github.com/avenceslau)! - fix: replace placeholder workflow name with valid name
## 2.49.0
### Minor Changes
- [#9442](https://github.com/cloudflare/workers-sdk/pull/9442) [`4996b88`](https://github.com/cloudflare/workers-sdk/commit/4996b88e7cac5cdb43418a8fcf8455f36a070a37) Thanks [@vicb](https://github.com/vicb)! - add \_headers file for immutable asset caching in nextjs template
### Patch Changes
- [#9426](https://github.com/cloudflare/workers-sdk/pull/9426) [`0dc5992`](https://github.com/cloudflare/workers-sdk/commit/0dc599216648ed66a1418cb897b7592228a12fe9) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-solid | 0.6.2 | 0.6.5 |
## 2.48.0
### Minor Changes
- [#9104](https://github.com/cloudflare/workers-sdk/pull/9104) [`8096b5f`](https://github.com/cloudflare/workers-sdk/commit/8096b5f3e1121119646d897adc48510146d51c1d) Thanks [@avenceslau](https://github.com/avenceslau)! - Add Hello World Workflows template.
For multi-step applications that automatically retry, persist state, and run for minutes, hours, days or weeks.
### Patch Changes
- [#9424](https://github.com/cloudflare/workers-sdk/pull/9424) [`52398c7`](https://github.com/cloudflare/workers-sdk/commit/52398c77cd5edc7d0d11cbbfb502bda7ad95f0b7) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.6.0 | 7.6.1 |
- [#9425](https://github.com/cloudflare/workers-sdk/pull/9425) [`678170f`](https://github.com/cloudflare/workers-sdk/commit/678170fe3cc93d8cd32a8e062ad1c2b80195264b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.8.6 | 0.8.7 |
- [#9427](https://github.com/cloudflare/workers-sdk/pull/9427) [`5231b0e`](https://github.com/cloudflare/workers-sdk/commit/5231b0ed3ae9bd38229414342f328babaf2e902c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-astro | 4.11.4 | 4.12.1 |
- [#9428](https://github.com/cloudflare/workers-sdk/pull/9428) [`f312396`](https://github.com/cloudflare/workers-sdk/commit/f3123962361640aaf6fa6ff77dfc0dea968be63a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.7.0 | 3.8.0 |
- [#9429](https://github.com/cloudflare/workers-sdk/pull/9429) [`4e7345e`](https://github.com/cloudflare/workers-sdk/commit/4e7345e132a45acbf8759e447552785dc1234903) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.3.2 | 15.3.3 |
- [#9430](https://github.com/cloudflare/workers-sdk/pull/9430) [`00ebdd9`](https://github.com/cloudflare/workers-sdk/commit/00ebdd9dc4402a2a1d1193d0d7be4d345adcd875) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.13.0 | 1.14.1 |
## 2.47.3
### Patch Changes
- [#9332](https://github.com/cloudflare/workers-sdk/pull/9332) [`a3496bf`](https://github.com/cloudflare/workers-sdk/commit/a3496bf33a57035d7a5fe54d90589049cc36a3e1) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - add extra information about asset serving to hello-world templates
## 2.47.2
### Patch Changes
- [#9291](https://github.com/cloudflare/workers-sdk/pull/9291) [`40040de`](https://github.com/cloudflare/workers-sdk/commit/40040de6dde0df3f182cdff31d1fed263f3721f7) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.25.0 | 3.25.1 |
- [#9292](https://github.com/cloudflare/workers-sdk/pull/9292) [`14c7d04`](https://github.com/cloudflare/workers-sdk/commit/14c7d04ff69ebae59bd58e7c57afc9f9eed5e4dc) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------- | ------- |
| @angular/create | 19.2.11 | 19.2.12 |
- [#9293](https://github.com/cloudflare/workers-sdk/pull/9293) [`fa4dd47`](https://github.com/cloudflare/workers-sdk/commit/fa4dd479d02197d60d2cc2af5075470eaa7f6d7d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.8.3 | 0.8.6 |
- [#9294](https://github.com/cloudflare/workers-sdk/pull/9294) [`625aeca`](https://github.com/cloudflare/workers-sdk/commit/625aeca3f47cdfadd06c16250920f45aa1a17e3a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.18.0 | 0.19.1 |
- [#9274](https://github.com/cloudflare/workers-sdk/pull/9274) [`14dc393`](https://github.com/cloudflare/workers-sdk/commit/14dc3937b9bc1d5fe45cbc08b1a47c04b3e0f0a9) Thanks [@vicb](https://github.com/vicb)! - fix the env interface name in Next
## 2.47.1
### Patch Changes
- [#9244](https://github.com/cloudflare/workers-sdk/pull/9244) [`f0f1055`](https://github.com/cloudflare/workers-sdk/commit/f0f10559ca7126c8fb8f902d2865cc91adf11872) Thanks [@emily-shen](https://github.com/emily-shen)! - fix: set `compilerOptions.types` to `./worker-configuration.d.ts` instead of `worker-configuration.d.ts` in tsconfig.json
## 2.47.0
### Minor Changes
- [#8886](https://github.com/cloudflare/workers-sdk/pull/8886) [`e1df3d8`](https://github.com/cloudflare/workers-sdk/commit/e1df3d831466e38f3db019dbecc4067dc60fe4ea) Thanks [@emily-shen](https://github.com/emily-shen)! - use `wrangler types` to generate types instead of using the `@cloudflare/workers-types` package
### Patch Changes
- [#9201](https://github.com/cloudflare/workers-sdk/pull/9201) [`6d8a346`](https://github.com/cloudflare/workers-sdk/commit/6d8a34677439a31d21859fe59170fe1b0a677f88) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.3.1 | 15.3.2 |
- [#9202](https://github.com/cloudflare/workers-sdk/pull/9202) [`da7a0a6`](https://github.com/cloudflare/workers-sdk/commit/da7a0a60921f236d1add767fbde2d95b2cfa9812) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.5.3 | 7.6.0 |
- [#9203](https://github.com/cloudflare/workers-sdk/pull/9203) [`0e215b0`](https://github.com/cloudflare/workers-sdk/commit/0e215b0cb4a960e8a4f50dbff3d53e4fe9e87086) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 6.4.1 | 6.5.0 |
- [#9204](https://github.com/cloudflare/workers-sdk/pull/9204) [`85b3458`](https://github.com/cloudflare/workers-sdk/commit/85b3458276af6873506f9aa33cfd1f0e2b3f61fc) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-remix | 2.16.5 | 2.16.6 |
- [#9205](https://github.com/cloudflare/workers-sdk/pull/9205) [`b7ce2bb`](https://github.com/cloudflare/workers-sdk/commit/b7ce2bbc6506e134f365d8ce0fad89e977e89bee) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------- | ------- |
| @angular/create | 19.2.10 | 19.2.11 |
- [#9147](https://github.com/cloudflare/workers-sdk/pull/9147) [`822e103`](https://github.com/cloudflare/workers-sdk/commit/822e103f2e5ef7b36c469d46596778b25f9e7679) Thanks [@vicb](https://github.com/vicb)! - Add the `global_fetch_strictly_public` flag to workers template
- [#9190](https://github.com/cloudflare/workers-sdk/pull/9190) [`616adf1`](https://github.com/cloudflare/workers-sdk/commit/616adf1b9a467e8adefaa4abcd285e3248552547) Thanks [@vicb](https://github.com/vicb)! - Bump `@opennextjs/cloudflare` to `^1.0.2`
- [#9209](https://github.com/cloudflare/workers-sdk/pull/9209) [`22177c8`](https://github.com/cloudflare/workers-sdk/commit/22177c8d8077f81700d07e11add05b859bba693e) Thanks [@vicb](https://github.com/vicb)! - Use the latest release of create-next-app for Next on Workers
## 2.46.2
### Patch Changes
- [#9136](https://github.com/cloudflare/workers-sdk/pull/9136) [`5b0c9c9`](https://github.com/cloudflare/workers-sdk/commit/5b0c9c9485e6801241f4bedcf2bca026c8baa585) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-astro | 4.11.3 | 4.11.4 |
- [#9137](https://github.com/cloudflare/workers-sdk/pull/9137) [`81163a3`](https://github.com/cloudflare/workers-sdk/commit/81163a399f05260711a804a40fd1a022e315b391) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------- |
| @angular/create | 19.2.9 | 19.2.10 |
- [#9138](https://github.com/cloudflare/workers-sdk/pull/9138) [`c2d249d`](https://github.com/cloudflare/workers-sdk/commit/c2d249d698fabc6249d2b400d175f7549e2c4e92) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.5.2 | 7.5.3 |
## 2.46.1
### Patch Changes
- [#9159](https://github.com/cloudflare/workers-sdk/pull/9159) [`c6b3f10`](https://github.com/cloudflare/workers-sdk/commit/c6b3f10f5adf4e6d62bcc9fe89574a2cbcce3870) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - bump esbuild version to fix regression in 0.25.0
## 2.46.0
### Minor Changes
- [#9035](https://github.com/cloudflare/workers-sdk/pull/9035) [`3f8f1a1`](https://github.com/cloudflare/workers-sdk/commit/3f8f1a1487931a5cea95b4914638d37718d2cf34) Thanks [@dom96](https://github.com/dom96)! - Add DO templates for Python Workers and update to use SDK
### Patch Changes
- [#9070](https://github.com/cloudflare/workers-sdk/pull/9070) [`c8a5a60`](https://github.com/cloudflare/workers-sdk/commit/c8a5a602b2cc1296b67f7d40a4b43bc71d863569) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.8.1 | 0.8.3 |
- [#9071](https://github.com/cloudflare/workers-sdk/pull/9071) [`db300ef`](https://github.com/cloudflare/workers-sdk/commit/db300ef98609b1d868b26d61b00e05689f587de3) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.2.8 | 19.2.9 |
- [#9072](https://github.com/cloudflare/workers-sdk/pull/9072) [`b0da6e9`](https://github.com/cloudflare/workers-sdk/commit/b0da6e9b2714f5e622fea19c1b9ce7166c9f124c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.17.0 | 0.18.0 |
- [#9073](https://github.com/cloudflare/workers-sdk/pull/9073) [`be558ba`](https://github.com/cloudflare/workers-sdk/commit/be558ba5fa135b4df23c0aefccbb7cf024b1b163) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.5.1 | 7.5.2 |
- [#9074](https://github.com/cloudflare/workers-sdk/pull/9074) [`8fc3418`](https://github.com/cloudflare/workers-sdk/commit/8fc3418028f9c5e80f2e854c836e450f1b4362db) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-astro | 4.11.2 | 4.11.3 |
- [#8994](https://github.com/cloudflare/workers-sdk/pull/8994) [`478d79d`](https://github.com/cloudflare/workers-sdk/commit/478d79d5bc2192c58567a2329e9c565b432d6617) Thanks [@vicb](https://github.com/vicb)! - Install `@opennextjs/cloudflare` as regular dependency
- [#9087](https://github.com/cloudflare/workers-sdk/pull/9087) [`79593e6`](https://github.com/cloudflare/workers-sdk/commit/79593e603d7e1f73f5c76e8d2d22df0f4b11d167) Thanks [@vicb](https://github.com/vicb)! - Add the `global_fetch_strictly_public` flag to the Next template for workers
## 2.45.3
### Patch Changes
- [#9033](https://github.com/cloudflare/workers-sdk/pull/9033) [`2c50115`](https://github.com/cloudflare/workers-sdk/commit/2c501151d3d1a563681cdb300a298b83862b60e2) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - chore: convert wrangler.toml files into wrangler.jsonc ones
## 2.45.2
### Patch Changes
- [#9031](https://github.com/cloudflare/workers-sdk/pull/9031) [`38ee9e4`](https://github.com/cloudflare/workers-sdk/commit/38ee9e43b682e72eb65ce0c1fc912403a6468d93) Thanks [@jsparkdev](https://github.com/jsparkdev)! - update react template to fix type errors
- [#9032](https://github.com/cloudflare/workers-sdk/pull/9032) [`7749f42`](https://github.com/cloudflare/workers-sdk/commit/7749f42c3cf41ddd3fc2efee9acff69cea6b9e97) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Removed `await` keyword used in non asynchronous function calls
## 2.45.1
### Patch Changes
- [#7796](https://github.com/cloudflare/workers-sdk/pull/7796) [`d16f1c6`](https://github.com/cloudflare/workers-sdk/commit/d16f1c6a11a5c52c8efe91513e17264becb62142) Thanks [@G4brym](https://github.com/G4brym)! - Update openapi C3 template to include better ts types and lint command
## 2.45.0
### Minor Changes
- [#8978](https://github.com/cloudflare/workers-sdk/pull/8978) [`0afae8f`](https://github.com/cloudflare/workers-sdk/commit/0afae8f8c3e8fc1984523f2bb9355aec81f52e8a) Thanks [@edmundhung](https://github.com/edmundhung)! - updated the qwik cloudflare workers template to keep the default \_headers and \_redirects files
### Patch Changes
- [#9012](https://github.com/cloudflare/workers-sdk/pull/9012) [`cd542df`](https://github.com/cloudflare/workers-sdk/commit/cd542dfb242d8bac48abb3c1cc37859942fc968a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.2.7 | 19.2.8 |
- [#9013](https://github.com/cloudflare/workers-sdk/pull/9013) [`27de5a0`](https://github.com/cloudflare/workers-sdk/commit/27de5a0aae4f836905dbf846ffe5f18eea9b5cbc) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 6.3.1 | 6.4.1 |
- [#9014](https://github.com/cloudflare/workers-sdk/pull/9014) [`4969932`](https://github.com/cloudflare/workers-sdk/commit/49699320964d7ae32f165a839a3bea20a96bf84d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.24.1 | 3.25.0 |
- [#9015](https://github.com/cloudflare/workers-sdk/pull/9015) [`fd6ac07`](https://github.com/cloudflare/workers-sdk/commit/fd6ac07ef1821bdf8497319a18712e8dcb27a044) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.3.0 | 15.3.1 |
- [#9016](https://github.com/cloudflare/workers-sdk/pull/9016) [`729732c`](https://github.com/cloudflare/workers-sdk/commit/729732cb7b214914d63359292faaa1ef6107aa9d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-astro | 4.11.1 | 4.11.2 |
- [#9017](https://github.com/cloudflare/workers-sdk/pull/9017) [`c49e8a4`](https://github.com/cloudflare/workers-sdk/commit/c49e8a4edb543f85186970def52e1632cf6ece3b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.5.0 | 7.5.1 |
## 2.44.1
### Patch Changes
- [#8919](https://github.com/cloudflare/workers-sdk/pull/8919) [`3a83ff1`](https://github.com/cloudflare/workers-sdk/commit/3a83ff196886b68417c9412953cd86272c5235f0) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.2.1 | 15.3.0 |
- [#8946](https://github.com/cloudflare/workers-sdk/pull/8946) [`5cffdec`](https://github.com/cloudflare/workers-sdk/commit/5cffdec307f214bb952ad2c4a35a1710d105f1bb) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.8.0 | 0.8.1 |
- [#8947](https://github.com/cloudflare/workers-sdk/pull/8947) [`b0c1179`](https://github.com/cloudflare/workers-sdk/commit/b0c11793a9ace0bb49264161559043e697d0d6c5) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.2.6 | 19.2.7 |
- [#8948](https://github.com/cloudflare/workers-sdk/pull/8948) [`cba4713`](https://github.com/cloudflare/workers-sdk/commit/cba4713e8b1b711c3954192dfb8188fe7101870c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.14.1 | 5.14.3 |
- [#8949](https://github.com/cloudflare/workers-sdk/pull/8949) [`5777b33`](https://github.com/cloudflare/workers-sdk/commit/5777b33c8598d8fd394e6a50661ed0bcc7918334) Thanks [@vicb](https://github.com/vicb)! - bump create-next-app to 15.3.0 for the Workers template
## 2.44.0
### Minor Changes
- [#8708](https://github.com/cloudflare/workers-sdk/pull/8708) [`f4c37bb`](https://github.com/cloudflare/workers-sdk/commit/f4c37bb0e4bf6664dd946a7acf1e26b5780b832d) Thanks [@royvandewater](https://github.com/royvandewater)! - Add --template-mode argument to create-cloudflare to support templating from private repositories
create-cloudflare uses degit under the hood to clone template git repositories. degit will attempt to download a tar file of the HEAD of a repository if it is served up on one of several allow listed repository hosting services including GitHub. However, the tar support does not support templating from private repositories. To support that, we needed to create the ability to tell degit to use "git" mode to download the template using the user's git credentials.
### Patch Changes
- [#8950](https://github.com/cloudflare/workers-sdk/pull/8950) [`bab1724`](https://github.com/cloudflare/workers-sdk/commit/bab1724229974c545084c31df3731e7c2271ee49) Thanks [@edmundhung](https://github.com/edmundhung)! - fix: include telemetry-related environment variables in release builds
## 2.43.8
### Patch Changes
- [#8814](https://github.com/cloudflare/workers-sdk/pull/8814) [`de209c2`](https://github.com/cloudflare/workers-sdk/commit/de209c2355f8f6840dd7e11e4609150b8ba430e1) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-remix | 2.15.3 | 2.16.5 |
- [#8815](https://github.com/cloudflare/workers-sdk/pull/8815) [`2fddcc8`](https://github.com/cloudflare/workers-sdk/commit/2fddcc86a081c3b4ea7c65f4d467ff5fd61a5315) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.15.3 | 0.17.0 |
- [#8816](https://github.com/cloudflare/workers-sdk/pull/8816) [`06ffd1a`](https://github.com/cloudflare/workers-sdk/commit/06ffd1ae009c69fb276a25db6f3c937d9c45b16f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.12.0 | 1.13.0 |
- [#8818](https://github.com/cloudflare/workers-sdk/pull/8818) [`618d052`](https://github.com/cloudflare/workers-sdk/commit/618d052090f84b4d52f349bc770d41b8a2238e54) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.4.1 | 7.5.0 |
- [#8820](https://github.com/cloudflare/workers-sdk/pull/8820) [`2053392`](https://github.com/cloudflare/workers-sdk/commit/2053392c48e2e5832425788a2afc8c904ff90c3b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ----- |
| sv | 0.6.23 | 0.8.0 |
- [#8834](https://github.com/cloudflare/workers-sdk/pull/8834) [`f984ca3`](https://github.com/cloudflare/workers-sdk/commit/f984ca305c8f9719716fb8c814d0b4f66059e268) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.15.1 | 3.16.4 |
- [#8835](https://github.com/cloudflare/workers-sdk/pull/8835) [`34168b3`](https://github.com/cloudflare/workers-sdk/commit/34168b39f185f37f447794f342bba53b1a05436d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.2.5 | 19.2.6 |
## 2.43.7
### Patch Changes
- [#8874](https://github.com/cloudflare/workers-sdk/pull/8874) [`5ace43b`](https://github.com/cloudflare/workers-sdk/commit/5ace43b2d4426b08030eae5fc790e51711224861) Thanks [@emily-shen](https://github.com/emily-shen)! - rename hello world templates with assets
Worker + Assets -> SSR / full-stack app
Assets only -> Static site
## 2.43.6
### Patch Changes
- [#8846](https://github.com/cloudflare/workers-sdk/pull/8846) [`22b51e3`](https://github.com/cloudflare/workers-sdk/commit/22b51e3e21419650e66db0e06af363a8eba744df) Thanks [@emily-shen](https://github.com/emily-shen)! - Use the latest version of Wrangler when using c3 to init from dash
## 2.43.5
### Patch Changes
- [#8822](https://github.com/cloudflare/workers-sdk/pull/8822) [`22b8a80`](https://github.com/cloudflare/workers-sdk/commit/22b8a807f2703ef7586093645fa3f9e7a750056c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.23.1 | 3.24.1 |
- [#8844](https://github.com/cloudflare/workers-sdk/pull/8844) [`0a9a260`](https://github.com/cloudflare/workers-sdk/commit/0a9a260993079e10883122e5560461a06064f0ff) Thanks [@vicb](https://github.com/vicb)! - Disable incremental cache in the c3 Next.js template
## 2.43.4
### Patch Changes
- [#8698](https://github.com/cloudflare/workers-sdk/pull/8698) [`1ba9e97`](https://github.com/cloudflare/workers-sdk/commit/1ba9e9787effd2012b65500eb78b39d46243c5b0) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - remove BETA label from Workers+Assets templates and hide Pages templates
## 2.43.3
### Patch Changes
- [#8070](https://github.com/cloudflare/workers-sdk/pull/8070) [`9b469e2`](https://github.com/cloudflare/workers-sdk/commit/9b469e213e9139eb883e298f46cb018e1a679477) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 6.1.1 | 6.3.1 |
- [#8733](https://github.com/cloudflare/workers-sdk/pull/8733) [`857a550`](https://github.com/cloudflare/workers-sdk/commit/857a55000d4175d314acac7b56e09c8a0188bc50) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.21.1 | 3.23.1 |
- [#8769](https://github.com/cloudflare/workers-sdk/pull/8769) [`efda570`](https://github.com/cloudflare/workers-sdk/commit/efda570d7d98dce8bdbc6e8eff0ff920b6bbe985) Thanks [@emily-shen](https://github.com/emily-shen)! - remove unnecessary ASSETS binding call in SPA templates
With SPA mode now enabled by default for compat dates since 2025-04-01, the Workers in the React and Vue templates no longer need this fallback ASSETS binding.
- [#7894](https://github.com/cloudflare/workers-sdk/pull/7894) [`15a7618`](https://github.com/cloudflare/workers-sdk/commit/15a761893c32f3a1c7df4c0f41c21b4fad594547) Thanks [@juanmirocks](https://github.com/juanmirocks)! - fix scheduled TS template to include a fetch handler like the JS one
- [#8765](https://github.com/cloudflare/workers-sdk/pull/8765) [`95fc93f`](https://github.com/cloudflare/workers-sdk/commit/95fc93f266a80c6aa82f3bf053937e1ac639d564) Thanks [@vicb](https://github.com/vicb)! - Update the Next on Workers template to use `@opennextjs/cloudflare` 1.0.0-beta releases
## 2.43.2
### Patch Changes
- [#8731](https://github.com/cloudflare/workers-sdk/pull/8731) [`5eb6e1b`](https://github.com/cloudflare/workers-sdk/commit/5eb6e1bd9908835d11a800bfe59f631b6cc866ae) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.1.6 | 19.2.5 |
- [#8732](https://github.com/cloudflare/workers-sdk/pull/8732) [`5fc7fe6`](https://github.com/cloudflare/workers-sdk/commit/5fc7fe6c7092fa089111d4a5e5b4a6c667b49463) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------------- | ----- | ----- |
| create-react-router | 7.4.0 | 7.4.1 |
- [#8734](https://github.com/cloudflare/workers-sdk/pull/8734) [`e4e7296`](https://github.com/cloudflare/workers-sdk/commit/e4e7296fd2bcb00b511f9d48fb199c71540916ef) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-solid | 0.6.1 | 0.6.2 |
- [#8741](https://github.com/cloudflare/workers-sdk/pull/8741) [`56637e3`](https://github.com/cloudflare/workers-sdk/commit/56637e3b2ca2c4aa86e07863a5b903503ee1c25a) Thanks [@emily-shen](https://github.com/emily-shen)! - Graduate Next.js + Workers Assets template from experimental
You no longer need the `--experimental` flag to access this template.
- [#8738](https://github.com/cloudflare/workers-sdk/pull/8738) [`da1ec13`](https://github.com/cloudflare/workers-sdk/commit/da1ec13e730065169dfbcf24103728e5c04dd9a1) Thanks [@emily-shen](https://github.com/emily-shen)! - fix: remove `main` field in wrangler.jsonc of Hono Pages template
## 2.43.1
### Patch Changes
- [#8395](https://github.com/cloudflare/workers-sdk/pull/8395) [`3f41730`](https://github.com/cloudflare/workers-sdk/commit/3f41730ca62890dd19804e65da78ad82af54126c) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Remove categories in C3 that have no templates
The `Application Starter` category doesn't contain any entries in experimental mode so we shouldn't show it.
This change updates C3 to automatically exclude categories that have no templates.
## 2.43.0
### Minor Changes
- [#8553](https://github.com/cloudflare/workers-sdk/pull/8553) [`dfbf03f`](https://github.com/cloudflare/workers-sdk/commit/dfbf03f87e491a57a9ad3d2fa9de1816d9553a75) Thanks [@emily-shen](https://github.com/emily-shen)! - feat: add React Router + Workers assets template
Also hide the Remix template in the interactive menu, although it is still accessible via CLI with `--framework=remix`.
### Patch Changes
- [#8516](https://github.com/cloudflare/workers-sdk/pull/8516) [`82f35b8`](https://github.com/cloudflare/workers-sdk/commit/82f35b8796ce9fbd1a87a0a49cb84fe63e24a4de) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.14.2 | 3.15.1 |
- [#8518](https://github.com/cloudflare/workers-sdk/pull/8518) [`8b71224`](https://github.com/cloudflare/workers-sdk/commit/8b7122440f334289187238361c4d976c17e953ee) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-astro | 4.11.0 | 4.11.1 |
- [#8656](https://github.com/cloudflare/workers-sdk/pull/8656) [`1f27e26`](https://github.com/cloudflare/workers-sdk/commit/1f27e267ff2cd389e6fce9041f52ff40ff4cefd8) Thanks [@Cherry](https://github.com/Cherry)! - Improves minor HTML semantics of the default index.html included in various templates with Workers Assets
- [#8610](https://github.com/cloudflare/workers-sdk/pull/8610) [`6a958df`](https://github.com/cloudflare/workers-sdk/commit/6a958df17944eaf340796ebf0310ed3564423e37) Thanks [@emily-shen](https://github.com/emily-shen)! - The Hello World DO templates were previously updated to use SQLite - this just also updates the DO + Assets template.
- [#8651](https://github.com/cloudflare/workers-sdk/pull/8651) [`fc66a2b`](https://github.com/cloudflare/workers-sdk/commit/fc66a2b6b591a245e4c30e2731e7573f179e1b54) Thanks [@emily-shen](https://github.com/emily-shen)! - fix: provide type for `env` in c3 when vitest is included in template
## 2.42.1
### Patch Changes
- [#8598](https://github.com/cloudflare/workers-sdk/pull/8598) [`e5dbedd`](https://github.com/cloudflare/workers-sdk/commit/e5dbedd78297d25cb8c8b1bd7c6cb70e2e9a626a) Thanks [@emily-shen](https://github.com/emily-shen)! - graduate Qwik + Workers Assets templates from experimental
You no longer need to include the `--experimental` flag to access this template.
## 2.42.0
### Minor Changes
- [#8460](https://github.com/cloudflare/workers-sdk/pull/8460) [`31332ca`](https://github.com/cloudflare/workers-sdk/commit/31332ca461cea5fbbe8a6c56fe598962c94eae65) Thanks [@joshthoward](https://github.com/joshthoward)! - Update the C3 Durable Objects example to use SQLite
### Patch Changes
- [#8593](https://github.com/cloudflare/workers-sdk/pull/8593) [`36ae02c`](https://github.com/cloudflare/workers-sdk/commit/36ae02c575a6a2e806565a17cf16a5a80f3e45ad) Thanks [@emily-shen](https://github.com/emily-shen)! - Graduate Hono + Workers assets template from experimental.
You will no longer need to include the --experimental flag to access this template.
Also creates a hono template that uses the cloudflare-pages adapter.
- [#8402](https://github.com/cloudflare/workers-sdk/pull/8402) [`03ec951`](https://github.com/cloudflare/workers-sdk/commit/03ec9510c5ebb0fceed7df64d90383cdac861b3e) Thanks [@emily-shen](https://github.com/emily-shen)! - graduate Astro Workers + Assets template from experimental
You no longer need to pass in --experimental to access the Workers + Assets version of the template.
- [#8552](https://github.com/cloudflare/workers-sdk/pull/8552) [`0fe3260`](https://github.com/cloudflare/workers-sdk/commit/0fe32607199c9fa3b68e4cacab9522379b6704e0) Thanks [@emily-shen](https://github.com/emily-shen)! - Graduate remix Workers + Assets template from experimental
You will no longer need to pass in the `--experimental` flag to access this template.
- [#8574](https://github.com/cloudflare/workers-sdk/pull/8574) [`9b86dba`](https://github.com/cloudflare/workers-sdk/commit/9b86dba81929db3c8216fdfc8aea62ccf69ef32f) Thanks [@emily-shen](https://github.com/emily-shen)! - Graduate sveltekit + workers assets template from experimental
You no longer need to pass in the --experimental flag to access this template.
## 2.41.2
### Patch Changes
- [#8379](https://github.com/cloudflare/workers-sdk/pull/8379) [`2b37abe`](https://github.com/cloudflare/workers-sdk/commit/2b37abe10dac9df6c0cc91114ea68b40b6c0991d) Thanks [@emily-shen](https://github.com/emily-shen)! - Graduate Workers + Assets hello world templates from experimental status
- [#8541](https://github.com/cloudflare/workers-sdk/pull/8541) [`cfa525d`](https://github.com/cloudflare/workers-sdk/commit/cfa525dba45a6d678270216e1679e1ce32f62163) Thanks [@GregBrimble](https://github.com/GregBrimble)! - fix: Fixes the Cloudflare logo in the Vite React starter to support both dark and light mode
## 2.41.1
### Patch Changes
- [#8418](https://github.com/cloudflare/workers-sdk/pull/8418) [`736bd4f`](https://github.com/cloudflare/workers-sdk/commit/736bd4fd87ec41c05b080996cd9ebd8e0951e08d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.1.6 | 15.2.1 |
- [#8420](https://github.com/cloudflare/workers-sdk/pull/8420) [`db987de`](https://github.com/cloudflare/workers-sdk/commit/db987dec97284ce05e9e5d382c26a2a5bad35b73) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ----- |
| create-solid | 0.5.14 | 0.6.1 |
- [#8451](https://github.com/cloudflare/workers-sdk/pull/8451) [`fd2cb21`](https://github.com/cloudflare/workers-sdk/commit/fd2cb2112739d322e49fcec8b00343e68d62e141) Thanks [@vicb](https://github.com/vicb)! - Update the Next experimental template to use version ~15.2.2
## 2.41.0
### Minor Changes
- [#8372](https://github.com/cloudflare/workers-sdk/pull/8372) [`3536670`](https://github.com/cloudflare/workers-sdk/commit/35366708d36f82b3c51e3e5cc153a2c14b0d35c3) Thanks [@emily-shen](https://github.com/emily-shen)! - feat: update nitro config in nuxt templates to use generated wrangler config
### Patch Changes
- [#8440](https://github.com/cloudflare/workers-sdk/pull/8440) [`af1c5c3`](https://github.com/cloudflare/workers-sdk/commit/af1c5c36e751dc452055f75fc30f28fa3e68beab) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - tighten up .gitignore processing
- [#8372](https://github.com/cloudflare/workers-sdk/pull/8372) [`3536670`](https://github.com/cloudflare/workers-sdk/commit/35366708d36f82b3c51e3e5cc153a2c14b0d35c3) Thanks [@emily-shen](https://github.com/emily-shen)! - Graduate Angular, Gatsby, Vue and Nuxt templates (Workers + Assets) from experimental
You no longer need to pass in the --experimental flag to access these templates.
## 2.40.3
### Patch Changes
- [#8358](https://github.com/cloudflare/workers-sdk/pull/8358) [`5875adb`](https://github.com/cloudflare/workers-sdk/commit/5875adb87317184122075c5ba3dce1c302dc2f80) Thanks [@emily-shen](https://github.com/emily-shen)! - feat: add Worker + Vite plugin to Vue experimental template
- [#8291](https://github.com/cloudflare/workers-sdk/pull/8291) [`8461f9b`](https://github.com/cloudflare/workers-sdk/commit/8461f9b6ab582b75d752c860d412fa75849b3746) Thanks [@edmundhung](https://github.com/edmundhung)! - update vitest packages version on hello-world template
## 2.40.2
### Patch Changes
- [#8371](https://github.com/cloudflare/workers-sdk/pull/8371) [`b24497d`](https://github.com/cloudflare/workers-sdk/commit/b24497daf70fc9f32f14060223dbef338f7d2ec0) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - graduate C3 React (Workers) template
- [#8349](https://github.com/cloudflare/workers-sdk/pull/8349) [`ca60010`](https://github.com/cloudflare/workers-sdk/commit/ca6001066586e0c549e63016aed0b18f0c546220) Thanks [@emily-shen](https://github.com/emily-shen)! - Add type generation command to React + Vite + Workers with Assets template and use `wrangler.jsonc` instead of `.json`.
## 2.40.1
### Patch Changes
- [#8311](https://github.com/cloudflare/workers-sdk/pull/8311) [`f379635`](https://github.com/cloudflare/workers-sdk/commit/f379635a338f546f72fe8208df00cb7801b1263f) Thanks [@p-glynn](https://github.com/p-glynn)! - use tabs for indentation in generated wrangler.json
- [#7752](https://github.com/cloudflare/workers-sdk/pull/7752) [`595f170`](https://github.com/cloudflare/workers-sdk/commit/595f17092e332bfee92ac888556dc3e3d4232273) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - feat: graduate Docusaurus Workers + Assets template from experimental
## 2.40.0
### Minor Changes
- [#8197](https://github.com/cloudflare/workers-sdk/pull/8197) [`acd42a8`](https://github.com/cloudflare/workers-sdk/commit/acd42a849b31b0d2ef30b0443678e775ebe69fa2) Thanks [@dom96](https://github.com/dom96)! - Python Workers template now includes package for autocomplete and type hints
### Patch Changes
- [#8324](https://github.com/cloudflare/workers-sdk/pull/8324) [`94729a6`](https://github.com/cloudflare/workers-sdk/commit/94729a6916e2a8b2bb8177d322cd8c8916f57d10) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.6.16 | 0.6.23 |
- [#8290](https://github.com/cloudflare/workers-sdk/pull/8290) [`5b047e4`](https://github.com/cloudflare/workers-sdk/commit/5b047e4af0ffaab65b9fb0a491982727cd1232bd) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - ensure that git commits are generated
- [#8013](https://github.com/cloudflare/workers-sdk/pull/8013) [`bc62d24`](https://github.com/cloudflare/workers-sdk/commit/bc62d2405c42bf41666983f13dfac2f75506b82c) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - add experimental React templates using the Cloudflare Vite plugin
- [#8232](https://github.com/cloudflare/workers-sdk/pull/8232) [`59cb914`](https://github.com/cloudflare/workers-sdk/commit/59cb914ee4c0939d1b29421e857e16b8e4599300) Thanks [@emily-shen](https://github.com/emily-shen)! - fix: stop c3 adding a duplicate `./wrangler.jsonc` when using --existing-script
This should mean dev and deploy on projects initialised using `create-cloudflare --existing-script` start working again. Note there will still be an extraneous `./src/wrangler.toml`, which will require a separate fix in the dashboard. This file can be manually deleted in the meantime.
## 2.39.0
### Minor Changes
- [#8264](https://github.com/cloudflare/workers-sdk/pull/8264) [`1f3af77`](https://github.com/cloudflare/workers-sdk/commit/1f3af77c7920189b9360357bf3dc054b2cebdf00) Thanks [@dcartertwo](https://github.com/dcartertwo)! - Create Cloudflare will no longer ask if the developer would like to use git if already in a git repository.
## 2.38.2
### Patch Changes
- [#8233](https://github.com/cloudflare/workers-sdk/pull/8233) [`74a808f`](https://github.com/cloudflare/workers-sdk/commit/74a808f0a7bdd2af7526b3c73d1c7c27c03b85a3) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.14.0 | 3.14.2 |
- [#8241](https://github.com/cloudflare/workers-sdk/pull/8241) [`708de7f`](https://github.com/cloudflare/workers-sdk/commit/708de7f0cb1cd6bd2488922f129ca26b6690b962) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - update experimental Next.js template to work on `@opennextjs/cloudflare@0.5.x`
- [#8240](https://github.com/cloudflare/workers-sdk/pull/8240) [`47f56a2`](https://github.com/cloudflare/workers-sdk/commit/47f56a2a4dcfa216d768fec974c2fa8c5bb3c21c) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: remove unnecessary flags passed to `create-next-app` when creating Next.js apps in experimental mode
This change removes a set of flags that get passed to `create-next-app` that force the generated Next.js
application to have specific settings (e.g. typescript, tailwind, src directory, etc...) which are not
actually mandatory/recommended for the use of the open-next Cloudflare adapter
- [#8215](https://github.com/cloudflare/workers-sdk/pull/8215) [`eb0912d`](https://github.com/cloudflare/workers-sdk/commit/eb0912d54abe7c7dd192ccc5b5de738dfb2bfadf) Thanks [@CarmenPopoviciu](https://github.com/CarmenPopoviciu)! - This change makes the user facing message C3 displays while waiting for DNS propagation, more friendly/informative. The idea is to inform users that DNS propagation might sometimes take even up to 2 minutes. This will hopefully prevent confusion around whether how long the process will take, or whether the process is stuck, etc.
- [#8243](https://github.com/cloudflare/workers-sdk/pull/8243) [`c62973b`](https://github.com/cloudflare/workers-sdk/commit/c62973b4cc148a8bf9616008f9c0f8176db9408f) Thanks [@CarmenPopoviciu](https://github.com/CarmenPopoviciu)! - fix: Ensure we exit the process on "SIGINT" and "SIGTERM"
Currently C3 does not explicitly exit the process if an error is thrown, or if a "SIGINT" or "SIGTERM" signal is received. This leads to situations when, if `ctrl+C` is pressed while there are still tasks in the stack/microtask queues (think in flight async xhr calls, or polling, or long running
`while` loops), the current process will continue running until all those tasks are run to completion, and the queues are empty.
This commit fixes this by explicitly calling `process.exit()` when an error is thrown (our internal "SIGINT"/"SIGTERM" handlers will throw a `CancelError`), thus ensuring we always exit the process.
## 2.38.1
### Patch Changes
- [#8152](https://github.com/cloudflare/workers-sdk/pull/8152) [`ed3bc2f`](https://github.com/cloudflare/workers-sdk/commit/ed3bc2f3be45be55d20299ed3f481e75c63ba285) Thanks [@Cherry](https://github.com/Cherry)! - fix: generated wrangler.json and wrangler.jsonc files will now be formatted with tabs, to match the rest of the generated files
## 2.38.0
### Minor Changes
- [#8024](https://github.com/cloudflare/workers-sdk/pull/8024) [`e8272b0`](https://github.com/cloudflare/workers-sdk/commit/e8272b08ee54894af3e5e33fb86380908d3ff68a) Thanks [@emily-shen](https://github.com/emily-shen)! - Output wrangler.jsonc instead of wrangler.json
The JSONC format allows comments, but otherwise uses standard JSON syntax.
Note that Wrangler is still happy to parse `.json` files with comments (along the lines of `tsconfig.json`), but to prevent confusion and for default compatibility with all IDEs, create-cloudflare will now output `wrangler.jsonc`.
- [#8024](https://github.com/cloudflare/workers-sdk/pull/8024) [`e8272b0`](https://github.com/cloudflare/workers-sdk/commit/e8272b08ee54894af3e5e33fb86380908d3ff68a) Thanks [@emily-shen](https://github.com/emily-shen)! - Include a .vscode/settings.json file with a 'jsonc' file association for templates that use `wrangler.json`
## 2.37.6
### Patch Changes
- [#7917](https://github.com/cloudflare/workers-sdk/pull/7917) [`6a500d6`](https://github.com/cloudflare/workers-sdk/commit/6a500d6bb81a8d1355dcc91ca73bbd19a5cd6769) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.1.2 | 19.1.5 |
| create-hono | 0.15.2 | 0.15.3 |
| create-remix | 2.15.2 | 2.15.3 |
| nuxi | 3.20.0 | 3.21.1 |
- [#7918](https://github.com/cloudflare/workers-sdk/pull/7918) [`88ea196`](https://github.com/cloudflare/workers-sdk/commit/88ea196b274ce2ec72a05a30385f303e8ca30a6c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.13.0 | 3.14.0 |
- [#7919](https://github.com/cloudflare/workers-sdk/pull/7919) [`5ed2744`](https://github.com/cloudflare/workers-sdk/commit/5ed27444da2de4614856c29dd4e1e1d595e43ea2) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.1.2 | 19.1.5 |
| create-hono | 0.15.2 | 0.15.3 |
| create-remix | 2.15.2 | 2.15.3 |
| nuxi | 3.20.0 | 3.21.1 |
- [#7978](https://github.com/cloudflare/workers-sdk/pull/7978) [`5bcb204`](https://github.com/cloudflare/workers-sdk/commit/5bcb20463e359ed86cd9eeee3ad9c1b3f3958098) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.1.2 | 19.1.5 |
- [#8076](https://github.com/cloudflare/workers-sdk/pull/8076) [`9cfe0d8`](https://github.com/cloudflare/workers-sdk/commit/9cfe0d8ed883eb1df275f9bd0137b96e1263c43b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.1.5 | 19.1.6 |
- [#7854](https://github.com/cloudflare/workers-sdk/pull/7854) [`bff209d`](https://github.com/cloudflare/workers-sdk/commit/bff209d853ae081ec692c41a080071956bf4ae2d) Thanks [@beratbayram](https://github.com/beratbayram)! - Update the Next.js template
- Removed top-level `await` in `next.config.ts` as it is not allowed there and not required.
- Improved `setupDevPlatform()` comment
- [#8033](https://github.com/cloudflare/workers-sdk/pull/8033) [`e62b097`](https://github.com/cloudflare/workers-sdk/commit/e62b097bb202e91452c2f87b1cec2bd84bd56400) Thanks [@edmundhung](https://github.com/edmundhung)! - update vitest version in templates to ~2.1.9
## 2.37.5
### Patch Changes
- [#8005](https://github.com/cloudflare/workers-sdk/pull/8005) [`b889b16`](https://github.com/cloudflare/workers-sdk/commit/b889b1655bdcc1888e0558307bee3f7490827edc) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.20.0 | 3.21.1 |
- [#8006](https://github.com/cloudflare/workers-sdk/pull/8006) [`4ecabf1`](https://github.com/cloudflare/workers-sdk/commit/4ecabf17784ea696662cbe1c0821ca21abe70e05) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.15.2 | 0.15.3 |
- [#8007](https://github.com/cloudflare/workers-sdk/pull/8007) [`76156a4`](https://github.com/cloudflare/workers-sdk/commit/76156a4950ed6ac71f6b745a9deeb09e919a09fb) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-remix | 2.15.2 | 2.15.3 |
## 2.37.4
### Patch Changes
- [#7903](https://github.com/cloudflare/workers-sdk/pull/7903) [`ce8bfbd`](https://github.com/cloudflare/workers-sdk/commit/ce8bfbdada90d1eac99f3a35dfdf1707e88eb73f) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - update experimental Next.js template to work on `@opennextjs/cloudflare@0.4.x`
- [#7972](https://github.com/cloudflare/workers-sdk/pull/7972) [`7112347`](https://github.com/cloudflare/workers-sdk/commit/7112347e7de80857d2515892e9620700486b7a84) Thanks [@andyjessop](https://github.com/andyjessop)! - chore: bumps create-hono version to ensure correct Wrangler config file. Fixes the issue where C3 was generating both a `wrangler.toml` and a `wrangler.json` file.
## 2.37.3
### Patch Changes
- [#7891](https://github.com/cloudflare/workers-sdk/pull/7891) [`a7965c7`](https://github.com/cloudflare/workers-sdk/commit/a7965c7c1c4b74a9e7415bbb3b086e8849ed2f3b) Thanks [@jahands](https://github.com/jahands)! - fix: Use today's date for compat date when the latest workerd release date is in the future
Fixes an issue where deployments would fail when there is a workerd release on the same day due to workerd releases having a date in the future because Workers does not allow using a compat date in the future.
## 2.37.2
### Patch Changes
- [#7822](https://github.com/cloudflare/workers-sdk/pull/7822) [`c6e8a1c`](https://github.com/cloudflare/workers-sdk/commit/c6e8a1cccd6355fc2c4864fb1bc7b6da1c97704d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.6.11 | 0.6.13 |
- [#7823](https://github.com/cloudflare/workers-sdk/pull/7823) [`4f84172`](https://github.com/cloudflare/workers-sdk/commit/4f84172314d217cce94f1e071bb0a300f8d787c1) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.1.4 | 15.1.5 |
- [#7824](https://github.com/cloudflare/workers-sdk/pull/7824) [`794b446`](https://github.com/cloudflare/workers-sdk/commit/794b44606dc1e157ad2447a9e580578b79567678) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.0.7 | 19.1.2 |
- [#7827](https://github.com/cloudflare/workers-sdk/pull/7827) [`6c2e943`](https://github.com/cloudflare/workers-sdk/commit/6c2e94318dd079f9cba3f763e67ba6698ef597f6) Thanks [@edmundhung](https://github.com/edmundhung)! - fix: bump `vitest-pool-workers` version range in templates
This resolves [#7815](https://github.com/cloudflare/workers-sdk/issues/7815), where users encountered an error about missing `nodejs_compat` or `nodejs_compat_v2` compatibility flags when running Vitest on a fresh Hello World project created with `create-cloudflare`.
## 2.37.1
### Patch Changes
- [#7774](https://github.com/cloudflare/workers-sdk/pull/7774) [`f9344a0`](https://github.com/cloudflare/workers-sdk/commit/f9344a076de5904ac073a3bee33c582c53a2dadc) Thanks [@CarmenPopoviciu](https://github.com/CarmenPopoviciu)! - Fix regression in C3's `next` template
[#7676](https://github.com/cloudflare/workers-sdk/pull/7676) switched C3 templates to default to `wrangler.json` instead of `wrangler.toml`. Unfortunately, this unintendedly broke the `next` template, which was still attempting to read `wrangler.toml` specifically. This commit fixes the regression.
Fixes #7770
## 2.37.0
### Minor Changes
- [#7676](https://github.com/cloudflare/workers-sdk/pull/7676) [`ab92f83`](https://github.com/cloudflare/workers-sdk/commit/ab92f837a995b2d3229609ba798dfc322a8ed171) Thanks [@penalosa](https://github.com/penalosa)! - Output the `wrangler.json` config format when running `create-cloudflare`
### Patch Changes
- [#7746](https://github.com/cloudflare/workers-sdk/pull/7746) [`836b316`](https://github.com/cloudflare/workers-sdk/commit/836b3165e416312d246e67c28a43345339da9485) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.1.3 | 15.1.4 |
- [#7747](https://github.com/cloudflare/workers-sdk/pull/7747) [`e747ddf`](https://github.com/cloudflare/workers-sdk/commit/e747ddf6a47319dbb6d361e6d0046749759949c0) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.0.6 | 19.0.7 |
- [#7748](https://github.com/cloudflare/workers-sdk/pull/7748) [`d13e288`](https://github.com/cloudflare/workers-sdk/commit/d13e288428c675ffb27860502749adb12664cb48) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| sv | 0.6.10 | 0.6.11 |
- [#7749](https://github.com/cloudflare/workers-sdk/pull/7749) [`7f94b9d`](https://github.com/cloudflare/workers-sdk/commit/7f94b9dc1b36d782b8853a4b8e9170cc15689a3e) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.17.2 | 3.20.0 |
- [#7743](https://github.com/cloudflare/workers-sdk/pull/7743) [`5955dac`](https://github.com/cloudflare/workers-sdk/commit/5955dac5ef2c6a0b6eea6dc28d11491966c07c2b) Thanks [@vicb](https://github.com/vicb)! - Update the Next.js experimental template
- Use create-next-app@^14.2.23
- Rename wrangler types output to cloudflare-env.d.ts
- [#7742](https://github.com/cloudflare/workers-sdk/pull/7742) [`8fb0f25`](https://github.com/cloudflare/workers-sdk/commit/8fb0f25e70cd43ffc947ded9a0d7c0ce88e7b359) Thanks [@threepointone](https://github.com/threepointone)! - chore: update wrangler versions in templates
## 2.36.0
### Minor Changes
- [#7388](https://github.com/cloudflare/workers-sdk/pull/7388) [`78c1649`](https://github.com/cloudflare/workers-sdk/commit/78c1649a1e072d5db101c8939890a98c4533b4c0) Thanks [@andyjessop](https://github.com/andyjessop)! - chore: remove nodejs_compat flag from basic C3 templates
## 2.35.2
### Patch Changes
- [#7617](https://github.com/cloudflare/workers-sdk/pull/7617) [`75393d6`](https://github.com/cloudflare/workers-sdk/commit/75393d67d04fae1d674b7b2fc0b751384b02103b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 6.0.1 | 6.1.0 |
- [#7618](https://github.com/cloudflare/workers-sdk/pull/7618) [`e5b9a9a`](https://github.com/cloudflare/workers-sdk/commit/e5b9a9a9d7363acf8ac7fa45f88294d879a3e996) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.6.7 | 0.6.9 |
- [#7619](https://github.com/cloudflare/workers-sdk/pull/7619) [`9989022`](https://github.com/cloudflare/workers-sdk/commit/998902238552c860cf9dd9f629e8f351352ae3c4) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.14.0 | 5.14.1 |
- [#7620](https://github.com/cloudflare/workers-sdk/pull/7620) [`4a38b9b`](https://github.com/cloudflare/workers-sdk/commit/4a38b9b1f9d4249f0d6756c22593a168ab4149bc) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.16.0 | 3.17.1 |
- [#7621](https://github.com/cloudflare/workers-sdk/pull/7621) [`05cc188`](https://github.com/cloudflare/workers-sdk/commit/05cc18889d604145d68ff0a306926ebb9380ea3b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.0.5 | 19.0.6 |
- [#7622](https://github.com/cloudflare/workers-sdk/pull/7622) [`a29b1c2`](https://github.com/cloudflare/workers-sdk/commit/a29b1c2c58f59a0e9891f1d30eb1c2c0fd68e42d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-remix | 2.15.1 | 2.15.2 |
- [#7623](https://github.com/cloudflare/workers-sdk/pull/7623) [`c448a57`](https://github.com/cloudflare/workers-sdk/commit/c448a57a23052d0fb75f06a282b735f452ddb8c5) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.11.0 | 1.12.0 |
- [#7624](https://github.com/cloudflare/workers-sdk/pull/7624) [`d4d8df1`](https://github.com/cloudflare/workers-sdk/commit/d4d8df1356df66b09f18abff09b201537373b839) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.1.0 | 15.1.2 |
- [#7643](https://github.com/cloudflare/workers-sdk/pull/7643) [`ab7204a`](https://github.com/cloudflare/workers-sdk/commit/ab7204a6eb8f5bab00172a6a2623251ba2d757ba) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.12.2 | 3.13.0 |
- [#7644](https://github.com/cloudflare/workers-sdk/pull/7644) [`42e8ba1`](https://github.com/cloudflare/workers-sdk/commit/42e8ba1d5a130742d7d94ee9b0b42e0cba78a352) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 6.1.0 | 6.1.1 |
- [#7645](https://github.com/cloudflare/workers-sdk/pull/7645) [`8b6f6e6`](https://github.com/cloudflare/workers-sdk/commit/8b6f6e633eda4c85f7e84144846bb83f0450d955) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.1.2 | 15.1.3 |
- [#7646](https://github.com/cloudflare/workers-sdk/pull/7646) [`b9533a3`](https://github.com/cloudflare/workers-sdk/commit/b9533a375e25407251145dd94a0496faf5a16a4a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.17.1 | 3.17.2 |
- [#7647](https://github.com/cloudflare/workers-sdk/pull/7647) [`df06a95`](https://github.com/cloudflare/workers-sdk/commit/df06a9592e8ce721da9b9b048f1db759826a6983) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ------ |
| sv | 0.6.9 | 0.6.10 |
- [#7673](https://github.com/cloudflare/workers-sdk/pull/7673) [`8ab13b2`](https://github.com/cloudflare/workers-sdk/commit/8ab13b2d7b397010532939bb9ba804c7dc84ea37) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.6.3 | 3.7.0 |
- [#7638](https://github.com/cloudflare/workers-sdk/pull/7638) [`acbea32`](https://github.com/cloudflare/workers-sdk/commit/acbea32c6df82269b435e34d8c51fe8a26c973f1) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix and update experimental Next.js template to work on `@opennextjs/cloudflare@0.3.x`
- [#7664](https://github.com/cloudflare/workers-sdk/pull/7664) [`5cc3bb1`](https://github.com/cloudflare/workers-sdk/commit/5cc3bb10ae3027fa40c77f42e94e6fb0eae710ce) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Consistently use full official full stack framework names
Rename the `Solid` framework entry to `SolidStart` and `Next` to `Next.js` so that these alongside `SvelteKit` present the full official unshortened names of full stack frameworks
## 2.35.1
### Patch Changes
- [#7511](https://github.com/cloudflare/workers-sdk/pull/7511) [`5addedf`](https://github.com/cloudflare/workers-sdk/commit/5addedf5d85aba56c16978700b7bf16929568d60) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 15.0.3 | 15.1.0 |
- [#7557](https://github.com/cloudflare/workers-sdk/pull/7557) [`01b5451`](https://github.com/cloudflare/workers-sdk/commit/01b54518471ae4602dbdc3c3da6eedd991cc10a8) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.0.4 | 19.0.5 |
- [#7497](https://github.com/cloudflare/workers-sdk/pull/7497) [`fb30983`](https://github.com/cloudflare/workers-sdk/commit/fb30983134ed767bb0ba43de84ce493d0353aa20) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: make sure C3 works with the latest Astro versions
- [#7390](https://github.com/cloudflare/workers-sdk/pull/7390) [`0e9499e`](https://github.com/cloudflare/workers-sdk/commit/0e9499e7388fda6d212c341fe21a1fcb1797d8aa) Thanks [@penalosa](https://github.com/penalosa)! - Bump Nuxt C3 template to Node 18
- [#7565](https://github.com/cloudflare/workers-sdk/pull/7565) [`8ad5be9`](https://github.com/cloudflare/workers-sdk/commit/8ad5be9452b018ce2ab7ca33f6aded4df4e15786) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - update the astro experimental template not to unnecessarily specify `v2` for `nodejs_compat`
## 2.35.0
### Minor Changes
- [#7484](https://github.com/cloudflare/workers-sdk/pull/7484) [`4fe93de`](https://github.com/cloudflare/workers-sdk/commit/4fe93de10b58d0202b1cc825d458ab0f79518d3d) Thanks [@maxwellpeterson](https://github.com/maxwellpeterson)! - feature: Add support for wrangler.json(c) in templates
### Patch Changes
- [#7504](https://github.com/cloudflare/workers-sdk/pull/7504) [`8371748`](https://github.com/cloudflare/workers-sdk/commit/83717482eca2ac8167f9e58da1ccdad1156edb9c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 19.0.0 | 19.0.4 |
- [#7512](https://github.com/cloudflare/workers-sdk/pull/7512) [`21ceca4`](https://github.com/cloudflare/workers-sdk/commit/21ceca425417b782e7bce45f9efd0b7d2cc0a678) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.14.2 | 0.14.3 |
- [#7513](https://github.com/cloudflare/workers-sdk/pull/7513) [`0808c9a`](https://github.com/cloudflare/workers-sdk/commit/0808c9a49cc023e2914ef560659479f05df3b82d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-astro | 4.10.0 | 4.11.0 |
- [#7530](https://github.com/cloudflare/workers-sdk/pull/7530) [`14ddd30`](https://github.com/cloudflare/workers-sdk/commit/14ddd30f8a6bab5f4f6d64edc3cf942ff18f541f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.12.1 | 3.12.2 |
- [#7531](https://github.com/cloudflare/workers-sdk/pull/7531) [`ee98fd4`](https://github.com/cloudflare/workers-sdk/commit/ee98fd444f39ab68a422ed209833ae1b2f24a8d7) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ----- |
| sv | 0.6.2 | 0.6.7 |
- [#7526](https://github.com/cloudflare/workers-sdk/pull/7526) [`0117820`](https://github.com/cloudflare/workers-sdk/commit/01178200cac928292488b77942b43c7b19966414) Thanks [@WalshyDev](https://github.com/WalshyDev)! - fix: update create-remix to fix creating a Remix project failing with "Cannot find module 'fs-extra'"
- [#7241](https://github.com/cloudflare/workers-sdk/pull/7241) [`d8e96b2`](https://github.com/cloudflare/workers-sdk/commit/d8e96b24f32cf5461e702d597f445f06da7946b1) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - update Next.js template to use Next.js v.15
## 2.34.0
### Minor Changes
- [#7506](https://github.com/cloudflare/workers-sdk/pull/7506) [`8ca9533`](https://github.com/cloudflare/workers-sdk/commit/8ca9533f85b5cd1ca72eeab211c3cf6a62a84660) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Notify users when they are running C3 in experimental mode
### Patch Changes
- [#7248](https://github.com/cloudflare/workers-sdk/pull/7248) [`6d29319`](https://github.com/cloudflare/workers-sdk/commit/6d293192204996dc03005501e3ca06054221453a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------- | ------ |
| @angular/create | 18.2.11 | 19.0.0 |
| create-qwik | 1.9.1 | 1.11.0 |
| create-remix | 2.14.0 | 2.15.0 |
| create-solid | 0.5.13 | 0.5.14 |
| nuxi | 3.15.0 | 3.16.0 |
| sv | 0.6.2 | 0.6.2 |
- [#7503](https://github.com/cloudflare/workers-sdk/pull/7503) [`5f6e9c1`](https://github.com/cloudflare/workers-sdk/commit/5f6e9c1d1c16cf25ac54c3f98789d95e12123da6) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.6.1 | 3.6.3 |
- [#7505](https://github.com/cloudflare/workers-sdk/pull/7505) [`5f80241`](https://github.com/cloudflare/workers-sdk/commit/5f80241320c1705d1f67c097f2ecf2b8ccf495f2) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 5.5.5 | 6.0.1 |
- [#7457](https://github.com/cloudflare/workers-sdk/pull/7457) [`75be0d5`](https://github.com/cloudflare/workers-sdk/commit/75be0d54abdd3593b98ac4064f1ca50bde61f7a6) Thanks [@syumai](https://github.com/syumai)! - fix(create-cloudflare): add a newline character to the line prepended to wrangler.toml
## 2.33.4
### Patch Changes
- [#7257](https://github.com/cloudflare/workers-sdk/pull/7257) [`0920d13`](https://github.com/cloudflare/workers-sdk/commit/0920d132b3a9b900ed27999542c5d603198a7a97) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------- | ------ |
| @angular/create | 18.2.11 | 19.0.0 |
| create-qwik | 1.9.1 | 1.11.0 |
| create-remix | 2.14.0 | 2.15.0 |
- [#7419](https://github.com/cloudflare/workers-sdk/pull/7419) [`51fb982`](https://github.com/cloudflare/workers-sdk/commit/51fb9824c760420aaa193ff9bf72269efe968586) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.15.0 | 3.16.0 |
- [#7489](https://github.com/cloudflare/workers-sdk/pull/7489) [`90fa58b`](https://github.com/cloudflare/workers-sdk/commit/90fa58b5b838b3a7e7befd529dc2b6368d887bb7) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-remix | 2.14.0 | 2.15.0 |
- [#7480](https://github.com/cloudflare/workers-sdk/pull/7480) [`9ea45b4`](https://github.com/cloudflare/workers-sdk/commit/9ea45b491e0ba94ddbb7966023d34dc385285be0) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - update Vue C3 experimental template to work with Worker Assets
## 2.33.3
### Patch Changes
- [#7384](https://github.com/cloudflare/workers-sdk/pull/7384) [`55ec38a`](https://github.com/cloudflare/workers-sdk/commit/55ec38ae32ea28c080ca053274742240a06c44e8) Thanks [@Cherry](https://github.com/Cherry)! - chore: bump vitest in templates
- [#7428](https://github.com/cloudflare/workers-sdk/pull/7428) [`f463dd2`](https://github.com/cloudflare/workers-sdk/commit/f463dd299dc6f28d348b8c782304c65f2c569d4b) Thanks [@Oreoezi](https://github.com/Oreoezi)! - Use correct port in playwright config file for generated SvelteKit apps
- [#7343](https://github.com/cloudflare/workers-sdk/pull/7343) [`a3d5aad`](https://github.com/cloudflare/workers-sdk/commit/a3d5aad66aaa8f72bc371aeba7ea9cb5c6688042) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: C3 experimental template for Solid now uses correct preset
- [#7332](https://github.com/cloudflare/workers-sdk/pull/7332) [`a068672`](https://github.com/cloudflare/workers-sdk/commit/a068672bc9264794d5b22b717db5fe53345ee174) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: C3 experimental template for Nuxt now uses correct preset
## 2.33.2
### Patch Changes
- [#7359](https://github.com/cloudflare/workers-sdk/pull/7359) [`515174e`](https://github.com/cloudflare/workers-sdk/commit/515174e7e9059d3bc19bedb9a2444dad4db57f0c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-qwik | 1.10.0 | 1.11.0 |
- [#7409](https://github.com/cloudflare/workers-sdk/pull/7409) [`5739015`](https://github.com/cloudflare/workers-sdk/commit/57390152300517f339eb910cf561430316a33622) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: update Angular experimental Workers + Assets template
- [#7342](https://github.com/cloudflare/workers-sdk/pull/7342) [`499e12d`](https://github.com/cloudflare/workers-sdk/commit/499e12d17ca349d3fdeea977c5cceeed062c8b06) Thanks [@neomax7](https://github.com/neomax7)! - fix: Angular template should call `handle()` method on `AngularAppEngine` not 'render()'
Fixes #7341
## 2.33.1
### Patch Changes
- [#7235](https://github.com/cloudflare/workers-sdk/pull/7235) [`8246c45`](https://github.com/cloudflare/workers-sdk/commit/8246c45883cfc8092bef68a05fadf7376d1f5b5f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ------ |
| create-qwik | 1.9.1 | 1.10.0 |
- [#6410](https://github.com/cloudflare/workers-sdk/pull/6410) [`c808590`](https://github.com/cloudflare/workers-sdk/commit/c8085903678099335e91fd3d7e5d555d9f911a5b) Thanks [@stof](https://github.com/stof)! - Fix the test tsconfig file in the hello-world typescript template
## 2.33.0
### Minor Changes
- [#6960](https://github.com/cloudflare/workers-sdk/pull/6960) [`3e52c7c`](https://github.com/cloudflare/workers-sdk/commit/3e52c7c609a1aee13830bb42e4439bf80ea30bf3) Thanks [@alan-agius4](https://github.com/alan-agius4)! - Update Angular template to version 19
## 2.32.2
### Patch Changes
- [#6831](https://github.com/cloudflare/workers-sdk/pull/6831) [`0fe018c`](https://github.com/cloudflare/workers-sdk/commit/0fe018c7b85d767de60e9cc88f256f99f17046e3) Thanks [@Cherry](https://github.com/Cherry)! - Adds support for new upcoming bun.lock lockfile
## 2.32.1
### Patch Changes
- [#7217](https://github.com/cloudflare/workers-sdk/pull/7217) [`f76da8d`](https://github.com/cloudflare/workers-sdk/commit/f76da8d61f0d4fa02c3de132363b95699c0a80c9) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.6.0 | 3.6.1 |
- [#7218](https://github.com/cloudflare/workers-sdk/pull/7218) [`39675b5`](https://github.com/cloudflare/workers-sdk/commit/39675b517c9f8ad35023137ca3f52fe486e25107) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-remix | 2.13.1 | 2.14.0 |
- [#7219](https://github.com/cloudflare/workers-sdk/pull/7219) [`287a5d0`](https://github.com/cloudflare/workers-sdk/commit/287a5d0e4d73fd1fc4e17aed5596436dbca1aae0) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.12.0 | 3.12.1 |
- [#6569](https://github.com/cloudflare/workers-sdk/pull/6569) [`7be8f76`](https://github.com/cloudflare/workers-sdk/commit/7be8f763967d0f50a2cced0520db8f7a7b691fe4) Thanks [@penalosa](https://github.com/penalosa)! - Make sure `wrangler deploy` and `wrangler pages deploy` are run in an interactive context in C3, so that users are able to respond to interactive prompts
## 2.32.0
### Minor Changes
- [#7170](https://github.com/cloudflare/workers-sdk/pull/7170) [`f292294`](https://github.com/cloudflare/workers-sdk/commit/f292294ba2e545742d8801f2f3060763547b7ccb) Thanks [@edmundhung](https://github.com/edmundhung)! - feat: update experimental remix template to be based on its worker template
### Patch Changes
- [#7179](https://github.com/cloudflare/workers-sdk/pull/7179) [`a4f5647`](https://github.com/cloudflare/workers-sdk/commit/a4f5647a368c3d6857fa425bee2827493eda2dd1) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.5.2 | 3.6.0 |
- [#7188](https://github.com/cloudflare/workers-sdk/pull/7188) [`28edf9b`](https://github.com/cloudflare/workers-sdk/commit/28edf9b2eb08a978e016bc1d320459f33d5590b8) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.13.7 | 5.14.0 |
- [#7109](https://github.com/cloudflare/workers-sdk/pull/7109) [`492533f`](https://github.com/cloudflare/workers-sdk/commit/492533f19e4840b8f93d9e29c0c267ce742f2fc5) Thanks [@jsparkdev](https://github.com/jsparkdev)! - Rename the framework name
The name currently displayed in the CLI is `Svelte`. However, all of the options actually create a `SvelteKit` app, and the name `SvelteKit` is also used in the [documentation](https://developers.cloudflare.com/pages/framework-guides/deploy-a-svelte-site/).
## 2.31.2
### Patch Changes
- [#6973](https://github.com/cloudflare/workers-sdk/pull/6973) [`afe9850`](https://github.com/cloudflare/workers-sdk/commit/afe9850931b7730989e005a612ea74887f5d5e72) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ------ |
| create-astro | 4.8.0 | 4.10.0 |
- [#7146](https://github.com/cloudflare/workers-sdk/pull/7146) [`d31a902`](https://github.com/cloudflare/workers-sdk/commit/d31a9021681b0d053bd441826849510dc97c5321) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.11.1 | 3.11.2 |
- [#7148](https://github.com/cloudflare/workers-sdk/pull/7148) [`f46330a`](https://github.com/cloudflare/workers-sdk/commit/f46330a4dc8b6a21b0dc629682148e0ed399e8ae) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.12.0 | 3.15.0 |
- [#7161](https://github.com/cloudflare/workers-sdk/pull/7161) [`6948b70`](https://github.com/cloudflare/workers-sdk/commit/6948b7045d40dcd40ad0bc88d480056f2a9c9732) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ----- |
| sv | 0.5.11 | 0.6.1 |
- [#7167](https://github.com/cloudflare/workers-sdk/pull/7167) [`251e49a`](https://github.com/cloudflare/workers-sdk/commit/251e49a7a325e8d4fad8e01f693391e9cb101e37) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.11.2 | 3.12.0 |
- [#7177](https://github.com/cloudflare/workers-sdk/pull/7177) [`f992c90`](https://github.com/cloudflare/workers-sdk/commit/f992c90311d400669f5c451b24fd732d77c1667d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------- |
| @angular/create | 18.2.8 | 18.2.11 |
- [#7171](https://github.com/cloudflare/workers-sdk/pull/7171) [`5a712e7`](https://github.com/cloudflare/workers-sdk/commit/5a712e70ffa7aac02ae0765d4b2c2b0b38621b11) Thanks [@edmundhung](https://github.com/edmundhung)! - fix: missing nodejs_compact flag on astro template
- [#7155](https://github.com/cloudflare/workers-sdk/pull/7155) [`edef523`](https://github.com/cloudflare/workers-sdk/commit/edef523b71d1efd123d7b3e9743cd30f4e396855) Thanks [@flashblaze](https://github.com/flashblaze)! - fix invalid preset config on the experimental solid template
## 2.31.1
### Patch Changes
- [#7139](https://github.com/cloudflare/workers-sdk/pull/7139) [`2222578`](https://github.com/cloudflare/workers-sdk/commit/222257826073360a403e6026c472c716985785f1) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 5.5.4 | 5.5.5 |
## 2.31.0
### Minor Changes
- [#7031](https://github.com/cloudflare/workers-sdk/pull/7031) [`eec2a70`](https://github.com/cloudflare/workers-sdk/commit/eec2a707492d563df62f0b126c1e7ddf354d46b3) Thanks [@codenoid](https://github.com/codenoid)! - create-svelte is soon be deprecated, use the new official replacement npx sv instead.
- [#7055](https://github.com/cloudflare/workers-sdk/pull/7055) [`a034aa1`](https://github.com/cloudflare/workers-sdk/commit/a034aa1f60c62c30be7ee878b222899b67d2935c) Thanks [@edmundhung](https://github.com/edmundhung)! - feat: prompt user to correct the answer if the arg value is invalid
### Patch Changes
- [#7085](https://github.com/cloudflare/workers-sdk/pull/7085) [`3e7cafc`](https://github.com/cloudflare/workers-sdk/commit/3e7cafc743c03faf7c219e789ef54fea22efacf1) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 5.5.3 | 5.5.4 |
- [#7126](https://github.com/cloudflare/workers-sdk/pull/7126) [`07b5b25`](https://github.com/cloudflare/workers-sdk/commit/07b5b25f9564d73d14e706243e400cbbd5306ac4) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ------ |
| sv | 0.5.7 | 0.5.11 |
- [#7093](https://github.com/cloudflare/workers-sdk/pull/7093) [`6cf64de`](https://github.com/cloudflare/workers-sdk/commit/6cf64de0c72f15acc4f4a8c001666aed4db0c55a) Thanks [@lrapoport-cf](https://github.com/lrapoport-cf)! - Added link to where to file issues
## 2.30.1
### Patch Changes
- [#7016](https://github.com/cloudflare/workers-sdk/pull/7016) [`381d04f`](https://github.com/cloudflare/workers-sdk/commit/381d04f8c2f1e56c686e36d86c1fce7cdc4046dd) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.10.4 | 3.11.1 |
- [#7052](https://github.com/cloudflare/workers-sdk/pull/7052) [`7874ed2`](https://github.com/cloudflare/workers-sdk/commit/7874ed2cdffe52548f5d139bcae8255e8942406d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.14.1 | 0.14.2 |
- [#7034](https://github.com/cloudflare/workers-sdk/pull/7034) [`0e91d42`](https://github.com/cloudflare/workers-sdk/commit/0e91d420ab2f2c2bf0cb629737a6cc2ec68ebbe0) Thanks [@andyjessop](https://github.com/andyjessop)! - fix: ensure that user is logged in before trying to choose account during pre-existing Worker C3 flow
## 2.30.0
### Minor Changes
- [#6846](https://github.com/cloudflare/workers-sdk/pull/6846) [`ae4bfea`](https://github.com/cloudflare/workers-sdk/commit/ae4bfead3ad9911823ec154476cb1c49ea3a02bf) Thanks [@edmundhung](https://github.com/edmundhung)! - feat: allow users going back to the project name prompt
### Patch Changes
- [#6993](https://github.com/cloudflare/workers-sdk/pull/6993) [`616801c`](https://github.com/cloudflare/workers-sdk/commit/616801cc387e2e6a0a20c752a3c420767140442e) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-vite | 5.2.3 | 5.5.3 |
- [#6994](https://github.com/cloudflare/workers-sdk/pull/6994) [`ef3af25`](https://github.com/cloudflare/workers-sdk/commit/ef3af253dfde6c0b1bb34e572a5c0f41cb44ddbf) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-qwik | 1.9.0 | 1.9.1 |
- [#7006](https://github.com/cloudflare/workers-sdk/pull/7006) [`284c962`](https://github.com/cloudflare/workers-sdk/commit/284c962fdbd92d3a9f05ac9c5727ae9067948476) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.12.0 | 0.14.1 |
- [#7007](https://github.com/cloudflare/workers-sdk/pull/7007) [`cebc9ea`](https://github.com/cloudflare/workers-sdk/commit/cebc9ea58bc4b4b1a7e56de92e9d08100c0da27b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-remix | 2.12.0 | 2.13.1 |
- [#6982](https://github.com/cloudflare/workers-sdk/pull/6982) [`59c66a4`](https://github.com/cloudflare/workers-sdk/commit/59c66a49b845c8734ed11cd17351ac2531e2bf7e) Thanks [@emily-shen](https://github.com/emily-shen)! - fix: astro + Workers static assets template now has the correct `main` file in wrangler.toml
## 2.29.3
### Patch Changes
- [#6880](https://github.com/cloudflare/workers-sdk/pull/6880) [`be88a62`](https://github.com/cloudflare/workers-sdk/commit/be88a62ad147c5e33da5a295d35693a62eef7943) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-solid | 0.5.12 | 0.5.13 |
- [#6977](https://github.com/cloudflare/workers-sdk/pull/6977) [`3555cdb`](https://github.com/cloudflare/workers-sdk/commit/3555cdb8122912955f2cc71a37a9de4f88eb26aa) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-svelte | 6.3.8 | 6.4.0 |
- [#6978](https://github.com/cloudflare/workers-sdk/pull/6978) [`26b32fa`](https://github.com/cloudflare/workers-sdk/commit/26b32fa8d5cd6f47527298427e50cad3c8c03abe) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 18.2.0 | 18.2.8 |
- [#6957](https://github.com/cloudflare/workers-sdk/pull/6957) [`f996409`](https://github.com/cloudflare/workers-sdk/commit/f99640948bb8d37224ab934da70ac973f2d7e5cf) Thanks [@vicb](https://github.com/vicb)! - refactor: simplify tsconfig.json templates
## 2.29.2
### Patch Changes
- [#6848](https://github.com/cloudflare/workers-sdk/pull/6848) [`291e5f3`](https://github.com/cloudflare/workers-sdk/commit/291e5f33584e73ceb90a9b7b74e08454b7b55fda) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 1.3.1 | 1.8.1 |
- [#6839](https://github.com/cloudflare/workers-sdk/pull/6839) [`b0d514e`](https://github.com/cloudflare/workers-sdk/commit/b0d514ea5c43ad2325709a6576c6b39b67e81ca4) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: remove invalid `ctx` import from hello-world experimental templates
- [#6882](https://github.com/cloudflare/workers-sdk/pull/6882) [`20a1750`](https://github.com/cloudflare/workers-sdk/commit/20a17502b2b091b24189e9b32d309c088487fcf6) Thanks [@andyjessop](https://github.com/andyjessop)! - chore: Capitalises GitHub correctly
## 2.29.1
### Patch Changes
- [#6836](https://github.com/cloudflare/workers-sdk/pull/6836) [`a67cdbf`](https://github.com/cloudflare/workers-sdk/commit/a67cdbfc4db2e9f94dd159481fc900b4d2e7d2cb) Thanks [@edmundhung](https://github.com/edmundhung)! - fix: prevent the cli from crashing by silently ignoring network errors during telemetry collection
## 2.29.0
### Minor Changes
- [#6820](https://github.com/cloudflare/workers-sdk/pull/6820) [`b098256`](https://github.com/cloudflare/workers-sdk/commit/b098256e9ed315aa265d52ab10c208049c16a8ca) Thanks [@zebp](https://github.com/zebp)! - chore: enable observability by default for Workers templates
Workers created with `create-cloudflare` will now have [Workers Observability](https://developers.cloudflare.com/workers/observability/logs/workers-logs) enabled by default.
### Patch Changes
- [#6827](https://github.com/cloudflare/workers-sdk/pull/6827) [`66ad6df`](https://github.com/cloudflare/workers-sdk/commit/66ad6dfdc110384cfab5a1b6923b7bfd621c3f97) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: add missing hono with assets experimental template
- [#6830](https://github.com/cloudflare/workers-sdk/pull/6830) [`0195621`](https://github.com/cloudflare/workers-sdk/commit/01956212410d6cd43419754028b018cfa5039add) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - feat: add experimental Next.js, with Workers assets, template
## 2.28.1
### Patch Changes
- [#6815](https://github.com/cloudflare/workers-sdk/pull/6815) [`ffe8d10`](https://github.com/cloudflare/workers-sdk/commit/ffe8d10cb30c749616d61341501b8096ec0b99fe) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: experimental Angular template using Workers with Assets was broken
## 2.28.0
### Minor Changes
- [#6484](https://github.com/cloudflare/workers-sdk/pull/6484) [`5632968`](https://github.com/cloudflare/workers-sdk/commit/5632968383d9079bb1ae4dba5c83c10d43e72341) Thanks [@edmundhung](https://github.com/edmundhung)! - feat: telemetry collection
Cloudflare will collect telemetry about your usage of `create-cloudflare` to improve the experience.
If you would like to disable telemetry, you can run:
```sh
npm create cloudflare telemetry disable
```
Alternatively, you can set an environment variable:
```sh
export CREATE_CLOUDFLARE_TELEMETRY_DISABLED=1
```
Read more about our data policy at https://github.com/cloudflare/workers-sdk/blob/main/packages/create-cloudflare/telemetry.md.
### Patch Changes
- [#6760](https://github.com/cloudflare/workers-sdk/pull/6760) [`ba4ac82`](https://github.com/cloudflare/workers-sdk/commit/ba4ac8239589543372c53352c4c90db6071ca3d7) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: add missing experimental templates to C3 for asset Workers
- [#6790](https://github.com/cloudflare/workers-sdk/pull/6790) [`9e44d88`](https://github.com/cloudflare/workers-sdk/commit/9e44d88ac047a021f86db851e926a14a5a01781c) Thanks [@penalosa](https://github.com/penalosa)! - fix: Remove `Env` from index.ts in the Hello World Durable Objects & Hello World Durable Objects w/ assets templates
## 2.27.3
### Patch Changes
- [#6536](https://github.com/cloudflare/workers-sdk/pull/6536) [`baa29db`](https://github.com/cloudflare/workers-sdk/commit/baa29dbd365c33c0740339caff7bd07a9fb161b5) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 18.1.4 | 18.2.0 |
- [#6766](https://github.com/cloudflare/workers-sdk/pull/6766) [`fe0253d`](https://github.com/cloudflare/workers-sdk/commit/fe0253d34c69de72baf634b97abd5ab2ab075375) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-remix | 2.11.1 | 2.12.0 |
- [#6755](https://github.com/cloudflare/workers-sdk/pull/6755) [`a602de0`](https://github.com/cloudflare/workers-sdk/commit/a602de088c1b450ea62e84d48df7189f2443f127) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: add missing `nodejs_compat` flag to c3 qwik template
The c3 qwik template doesn't include the `nodejs_compat` but qwik seems to be using
AsyncLocalStorage, so newly created applications do display a warning regarding it
missing, fix the above issue by adding the missing compat flag
- [#6755](https://github.com/cloudflare/workers-sdk/pull/6755) [`a602de0`](https://github.com/cloudflare/workers-sdk/commit/a602de088c1b450ea62e84d48df7189f2443f127) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-qwik | 1.5.7 | 1.9.0 |
## 2.27.2
### Patch Changes
- [#6732](https://github.com/cloudflare/workers-sdk/pull/6732) [`e4fe35c`](https://github.com/cloudflare/workers-sdk/commit/e4fe35cc52c3eb01dfb81fd44c83397f06db4597) Thanks [@penalosa](https://github.com/penalosa)! - chore: trigger re-release
## 2.27.1
### Patch Changes
- [#6626](https://github.com/cloudflare/workers-sdk/pull/6626) [`3628814`](https://github.com/cloudflare/workers-sdk/commit/3628814d001a349a6576a02bee4a65f043f156f4) Thanks [@elithrar](https://github.com/elithrar)! - fix: Changes the default for "Do you want to deploy your application" in create cloudflare (C3) to a resounding "No".
## 2.27.0
### Minor Changes
- [#6678](https://github.com/cloudflare/workers-sdk/pull/6678) [`40ecf47`](https://github.com/cloudflare/workers-sdk/commit/40ecf4796860fd45ec593c1d143406a90a92c793) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - feat: add experimental mode and associated workers + assets templates
### Patch Changes
- [#6678](https://github.com/cloudflare/workers-sdk/pull/6678) [`40ecf47`](https://github.com/cloudflare/workers-sdk/commit/40ecf4796860fd45ec593c1d143406a90a92c793) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: do not crash if the chosen framework does not exist
## 2.26.0
### Minor Changes
- [#6573](https://github.com/cloudflare/workers-sdk/pull/6573) [`3ff6506`](https://github.com/cloudflare/workers-sdk/commit/3ff6506cc5f1d79e5df6530673cb600507c7da1b) Thanks [@santraez](https://github.com/penalosa)! - feature: Use `create-vite` instead of `create-react-app` for React projects.
[React's documentation](https://react.dev/learn/start-a-new-react-project#can-i-use-react-without-a-framework) now recommends using `create-vite` over `create-react-app`, as the latter has been deprecated. To align with these best practices, React projects created with C3 will now use [Vite](https://vitejs.dev/).
With this change, the default development command will switch from using `create-react-app` to `create-vite`, providing a more modern and efficient development experience.
Additionally, selection of variants for React projects created by Vite has been added, allowing users to choose different configurations based on their needs. The test suite has also been adapted to accommodate the new configuration, ensuring all tests run without errors.
## 2.25.2
### Patch Changes
- [#6557](https://github.com/cloudflare/workers-sdk/pull/6557) [`2e9aa53`](https://github.com/cloudflare/workers-sdk/commit/2e9aa53751c575128dc513dabc3878426a6f4c5a) Thanks [@edmundhung](https://github.com/edmundhung)! - fix: renamed the "Demo Application" category to "Application Starter"
## 2.25.1
### Patch Changes
- [#6496](https://github.com/cloudflare/workers-sdk/pull/6496) [`3f229ce`](https://github.com/cloudflare/workers-sdk/commit/3f229ceb45e16d4d2b7ba611c12d0e8b4b7c9984) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 18.1.3 | 18.1.4 |
- [#6501](https://github.com/cloudflare/workers-sdk/pull/6501) [`87c8f2d`](https://github.com/cloudflare/workers-sdk/commit/87c8f2dc702035106622628c5585c6c9d8166f67) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.5.1 | 3.5.2 |
- [#6523](https://github.com/cloudflare/workers-sdk/pull/6523) [`0c4d10a`](https://github.com/cloudflare/workers-sdk/commit/0c4d10a5f1b63c6b6a565e2f87a44b40fea503e0) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-svelte | 6.3.5 | 6.3.8 |
## 2.25.0
### Minor Changes
- [#6428](https://github.com/cloudflare/workers-sdk/pull/6428) [`37dc86f`](https://github.com/cloudflare/workers-sdk/commit/37dc86ff436aacadd7c0bab6a76293408f4c417f) Thanks [@edmundhung](https://github.com/edmundhung)! - feat: allow users to change prompt answer
It is now possible to change the answer for category and type while the project has not been created locally.
### Patch Changes
- [#6475](https://github.com/cloudflare/workers-sdk/pull/6475) [`dfe8c0d`](https://github.com/cloudflare/workers-sdk/commit/dfe8c0d5134407ac6a6539eefcb17fba0ec2c6ce) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.10.1 | 0.12.0 |
- [#6476](https://github.com/cloudflare/workers-sdk/pull/6476) [`1d4a36f`](https://github.com/cloudflare/workers-sdk/commit/1d4a36f179cadf14a00458a1d5c4e489bbf1b75b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.4.0 | 3.5.1 |
- [#6495](https://github.com/cloudflare/workers-sdk/pull/6495) [`3516faa`](https://github.com/cloudflare/workers-sdk/commit/3516faaed25ed60903272af18d7c5d4c8da8c208) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-remix | 2.10.3 | 2.11.1 |
- [#6481](https://github.com/cloudflare/workers-sdk/pull/6481) [`83083d7`](https://github.com/cloudflare/workers-sdk/commit/83083d7f3e672bc0726d0c65d72a4a1b032eb516) Thanks [@roottool](https://github.com/roottool)! - fix: Update `hono` template to remove binding type snippet.
## 2.24.0
### Minor Changes
- [#6418](https://github.com/cloudflare/workers-sdk/pull/6418) [`5d771c2`](https://github.com/cloudflare/workers-sdk/commit/5d771c287e6edd077d7be8edabdf17629163b4e6) Thanks [@edmundhung](https://github.com/edmundhung)! - feat: guiding user template selection with description for each options
- [#6412](https://github.com/cloudflare/workers-sdk/pull/6412) [`71882ee`](https://github.com/cloudflare/workers-sdk/commit/71882ee9a58eccb8332dd34c0f7dd96ec55bdcdd) Thanks [@edmundhung](https://github.com/edmundhung)! - feat: update welcome and summary message
### Patch Changes
- [#6395](https://github.com/cloudflare/workers-sdk/pull/6395) [`3aa7463`](https://github.com/cloudflare/workers-sdk/commit/3aa7463dffe62651dce3a7dca261d4ebe6fb5a39) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 18.1.2 | 18.1.3 |
- [#6396](https://github.com/cloudflare/workers-sdk/pull/6396) [`7dcaa3e`](https://github.com/cloudflare/workers-sdk/commit/7dcaa3e834a58b9baff649229b6db3c401c7a8e9) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-svelte | 6.3.4 | 6.3.5 |
## 2.23.0
### Minor Changes
- [#6320](https://github.com/cloudflare/workers-sdk/pull/6320) [`5aa4753`](https://github.com/cloudflare/workers-sdk/commit/5aa4753a12dde28e91e85a2f9e4eae17ead62fb0) Thanks [@edmundhung](https://github.com/edmundhung)! - feat: update submenu userflow
Now, we will first prompt for the kind of templates that should be created and show a different set of templates depending on the category. If the template selected supports different languages, we will also ask for the language user preferred.
Two new arguments are also added to support the new structure: `--category` and `--lang`. For more details, please refer to our [docs](https://developers.cloudflare.com/pages/get-started/c3#cli-arguments).
### Patch Changes
- [#6307](https://github.com/cloudflare/workers-sdk/pull/6307) [`4998c54`](https://github.com/cloudflare/workers-sdk/commit/4998c54371109e87feaa8cd1800ea2cb3f49fdd4) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| create-next-app | 14.1.0 | 14.2.5 |
- [#6334](https://github.com/cloudflare/workers-sdk/pull/6334) [`6968d91`](https://github.com/cloudflare/workers-sdk/commit/6968d91065d0de2e2a3f542f17223aaacf90c687) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-svelte | 6.3.3 | 6.3.4 |
- [#6335](https://github.com/cloudflare/workers-sdk/pull/6335) [`5e4fd26`](https://github.com/cloudflare/workers-sdk/commit/5e4fd26fe5da1ff768d95d438d10e046e9a9de33) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 18.1.1 | 18.1.2 |
- [#6373](https://github.com/cloudflare/workers-sdk/pull/6373) [`0ffe17d`](https://github.com/cloudflare/workers-sdk/commit/0ffe17d0f734cb2e43528f3d2ac491670d6173fe) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: make sure to always warn developers trying to use git when their git instance is not properly configured
## 2.22.3
### Patch Changes
- [#6333](https://github.com/cloudflare/workers-sdk/pull/6333) [`affdc56`](https://github.com/cloudflare/workers-sdk/commit/affdc56d77b86357fc474c6b729bcaa8edd8237d) Thanks [@penalosa](https://github.com/penalosa)! - fix: Prevent `@types/node` from being erroneously included in the Hello World Worker typing environment.
## 2.22.2
### Patch Changes
- [#6308](https://github.com/cloudflare/workers-sdk/pull/6308) [`d947d72`](https://github.com/cloudflare/workers-sdk/commit/d947d72ea518358bb11df94ede76c9aef7646ea4) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.13.6 | 5.13.7 |
- [#6309](https://github.com/cloudflare/workers-sdk/pull/6309) [`a04796d`](https://github.com/cloudflare/workers-sdk/commit/a04796db7f618999c04c9a7b5ddc30d310ea3644) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ------ | ------ |
| create-solid | 0.5.11 | 0.5.12 |
- [#6316](https://github.com/cloudflare/workers-sdk/pull/6316) [`7e421fb`](https://github.com/cloudflare/workers-sdk/commit/7e421fb75ddd4f21786c479da1beaf85ba3cdb56) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ------ | ------ |
| create-hono | 0.10.0 | 0.10.1 |
- [#6306](https://github.com/cloudflare/workers-sdk/pull/6306) [`819eed9`](https://github.com/cloudflare/workers-sdk/commit/819eed9cc577517c8289f49916929996a069a85b) Thanks [@edmundhung](https://github.com/edmundhung)! - fix: creating an application from a non-existent or private repository will now be prompted for the username/password if required
- [#6310](https://github.com/cloudflare/workers-sdk/pull/6310) [`20c0bf1`](https://github.com/cloudflare/workers-sdk/commit/20c0bf1cae81fdcc188aee4e87130bfdb8151543) Thanks [@edmundhung](https://github.com/edmundhung)! - fix: support GitHub URL with subdirectory
You can now copy+paste the URL directly from your address bar when you find a template within a (mono)repo on github.com.
## 2.22.1
### Patch Changes
- [#6283](https://github.com/cloudflare/workers-sdk/pull/6283) [`30a1e9c`](https://github.com/cloudflare/workers-sdk/commit/30a1e9cac2c7204c6172208105ba4a4452333a8f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ------ |
| create-remix | 2.9.2 | 2.10.3 |
- [#6284](https://github.com/cloudflare/workers-sdk/pull/6284) [`f1596d7`](https://github.com/cloudflare/workers-sdk/commit/f1596d7d7e720a3f37116894de30f99d1128542d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 18.0.4 | 18.1.1 |
- [#6292](https://github.com/cloudflare/workers-sdk/pull/6292) [`5d2e0f7`](https://github.com/cloudflare/workers-sdk/commit/5d2e0f75f80ca084d90d30dc766d4b46281181f2) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-svelte | 6.3.2 | 6.3.3 |
- [#6293](https://github.com/cloudflare/workers-sdk/pull/6293) [`821f020`](https://github.com/cloudflare/workers-sdk/commit/821f0201e89d1052125db0601055c038019022da) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ------ |
| create-hono | 0.9.0 | 0.10.0 |
## 2.22.0
### Minor Changes
- [#6106](https://github.com/cloudflare/workers-sdk/pull/6106) [`286cdd6`](https://github.com/cloudflare/workers-sdk/commit/286cdd68a36c063c606545d42a0274c81398d6b9) Thanks [@G4brym](https://github.com/G4brym)! - Update c3 openapi template to use chanfana and Hono
## 2.21.9
### Patch Changes
- [#6069](https://github.com/cloudflare/workers-sdk/pull/6069) [`91c7ce2`](https://github.com/cloudflare/workers-sdk/commit/91c7ce262e43be075198f20b0fd5d8a7cd2494c1) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-hono | 0.8.1 | 0.9.0 |
- [#6070](https://github.com/cloudflare/workers-sdk/pull/6070) [`bcb7acd`](https://github.com/cloudflare/workers-sdk/commit/bcb7acda0389f0851eb052369ef70082ab09eaf8) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-svelte | 6.3.1 | 6.3.2 |
- [#6086](https://github.com/cloudflare/workers-sdk/pull/6086) [`820d6d2`](https://github.com/cloudflare/workers-sdk/commit/820d6d2191a8bac9bee91c97b2c4fc588e643a58) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.10.3 | 3.10.4 |
## 2.21.8
### Patch Changes
- [#6034](https://github.com/cloudflare/workers-sdk/pull/6034) [`b4ea661`](https://github.com/cloudflare/workers-sdk/commit/b4ea661ed227db97422e4bae81ac1c204292f579) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-svelte | 6.3.0 | 6.3.1 |
- [#6035](https://github.com/cloudflare/workers-sdk/pull/6035) [`e70806f`](https://github.com/cloudflare/workers-sdk/commit/e70806f101fb38ff9455c6ad576f4514ebf7f525) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 18.0.3 | 18.0.4 |
- [#6029](https://github.com/cloudflare/workers-sdk/pull/6029) [`f5ad1d3`](https://github.com/cloudflare/workers-sdk/commit/f5ad1d3e562ce63b59f6ab136f1cdd703605bca4) Thanks [@threepointone](https://github.com/threepointone)! - chore: Normalize some dependencies in workers-sdk
This is the first of a few expected patches that normalize dependency versions, This normalizes `undici`, `concurrently`, `@types/node`, `react`, `react-dom`, `@types/react`, `@types/react-dom`, `eslint`, `typescript`. There are no functional code changes (but there are a couple of typecheck fixes).
- [#6046](https://github.com/cloudflare/workers-sdk/pull/6046) [`c643a81`](https://github.com/cloudflare/workers-sdk/commit/c643a8193a3c0739b33d3c0072ae716bc8f1565b) Thanks [@threepointone](https://github.com/threepointone)! - chore: Normalize more dependencies.
Follow up to https://github.com/cloudflare/workers-sdk/pull/6029, this normalizes some more dependencies : `get-port`, `chalk`, `yargs`, `toucan-js`, `@typescript-eslint/parser`, `@typescript-eslint/eslint-plugin`, `esbuild-register`, `hono`, `glob-to-regexp`, `@cloudflare/workers-types`
- [#5944](https://github.com/cloudflare/workers-sdk/pull/5944) [`cfa7de5`](https://github.com/cloudflare/workers-sdk/commit/cfa7de510d131a29baa11d5098ddc154988970bc) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: add missing `pre-existing` type and `--existing-script` to help message
- [#6076](https://github.com/cloudflare/workers-sdk/pull/6076) [`9487179`](https://github.com/cloudflare/workers-sdk/commit/9487179c8db0cb3ba13f3b9b1495e37121a3927d) Thanks [@threepointone](https://github.com/threepointone)! - chore: use latest dependencies for hello-world templates
When generating a plain hello world worker, we're picking up older versions of vitest/pool-workers. this updates the package.jsons to pick up newer versions instead. Ideally we should automate this, but we can do that later. I also updated the wrangler deps to the current version so it's clearer for developers what they're using (still not accurate, but better than showing 3.0.0). Again, this should be automated, but we can do that later.
## 2.21.7
### Patch Changes
- [#5883](https://github.com/cloudflare/workers-sdk/pull/5883) [`c8f25f1`](https://github.com/cloudflare/workers-sdk/commit/c8f25f1535286bd9183d105bc799a517aa3c9a60) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| create-vue | 3.10.2 | 3.10.3 |
- [#5993](https://github.com/cloudflare/workers-sdk/pull/5993) [`402affd`](https://github.com/cloudflare/workers-sdk/commit/402affda6ecb90cfa59b5cd60199111c1c63164b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.13.5 | 5.13.6 |
- [#5994](https://github.com/cloudflare/workers-sdk/pull/5994) [`919c9ed`](https://github.com/cloudflare/workers-sdk/commit/919c9ed4f7183c2cb319db14fc2675685b3abbeb) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.3.2 | 3.4.0 |
- [#6015](https://github.com/cloudflare/workers-sdk/pull/6015) [`9111f00`](https://github.com/cloudflare/workers-sdk/commit/9111f0012b5e10393b703ae64f2349a2ffd1cd0d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-hono | 0.7.3 | 0.8.1 |
- [#6016](https://github.com/cloudflare/workers-sdk/pull/6016) [`62db9b0`](https://github.com/cloudflare/workers-sdk/commit/62db9b02dc4c96e7bdfbb5090874c7b0bdc0da9d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 17.3.7 | 18.0.3 |
- [#6017](https://github.com/cloudflare/workers-sdk/pull/6017) [`709ec35`](https://github.com/cloudflare/workers-sdk/commit/709ec35dbc99be849e557e0a7f18aa62ae188637) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.11.1 | 3.12.0 |
- [#6027](https://github.com/cloudflare/workers-sdk/pull/6027) [`88ca59b`](https://github.com/cloudflare/workers-sdk/commit/88ca59b594b3a9eb4f8425f711bf0aac61dbd46c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-qwik | 1.5.5 | 1.5.7 |
- [#5607](https://github.com/cloudflare/workers-sdk/pull/5607) [`1e939cb`](https://github.com/cloudflare/workers-sdk/commit/1e939cbd451aad70cda4c3e5b6f38def743004c1) Thanks [@morinokami](https://github.com/morinokami)! - feature: use `satisfies ExportedHandler` for handlers in C3 templates
## 2.21.6
### Patch Changes
- [#5954](https://github.com/cloudflare/workers-sdk/pull/5954) [`3b99e63`](https://github.com/cloudflare/workers-sdk/commit/3b99e6349a75f64bcdbc9b2968866b3d059dd9cf) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: make sure that C3 doesn't delete pre-existing options in the `defineConfig` call
## 2.21.5
### Patch Changes
- [#5894](https://github.com/cloudflare/workers-sdk/pull/5894) [`314f7c4`](https://github.com/cloudflare/workers-sdk/commit/314f7c45f70e8def8302daa8f6dfcce38baa7395) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-qwik | 1.5.4 | 1.5.5 |
- [#5981](https://github.com/cloudflare/workers-sdk/pull/5981) [`2a05ede`](https://github.com/cloudflare/workers-sdk/commit/2a05edeff6c63462273a17c9e42c5d4409f78588) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ------ |
| create-solid | 0.5.5 | 0.5.11 |
- [#5982](https://github.com/cloudflare/workers-sdk/pull/5982) [`0c03316`](https://github.com/cloudflare/workers-sdk/commit/0c03316e5d5283f2ddc010b0c3af0031d5f42599) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-svelte | 6.1.2 | 6.3.0 |
- [#5250](https://github.com/cloudflare/workers-sdk/pull/5250) [`cfde058`](https://github.com/cloudflare/workers-sdk/commit/cfde0587c40cbcdfcb5e7981e8105e1b99f031fa) Thanks [@elithrar](https://github.com/elithrar)! - fix: updated the name of the Durable Object template in C3.
Makes it clearer what a "Durable Object" is. A user using c3 or Cloudflare for the first time will have no idea.
Also moved it down the list so that "web application" (a far more common use-case) is higher.
## 2.21.4
### Patch Changes
- [#5925](https://github.com/cloudflare/workers-sdk/pull/5925) [`e51a43c`](https://github.com/cloudflare/workers-sdk/commit/e51a43c724cbb5174bde4f02fecc468a906a2c8e) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: commit changes when framework cli initialized the git repository
Currently if a framework CLI initializes the git repository then
C3 fails to commit its changes, fix such erroneous behavior
- [#5892](https://github.com/cloudflare/workers-sdk/pull/5892) [`9a804b9`](https://github.com/cloudflare/workers-sdk/commit/9a804b9061006f2c2d508151d86246400055e4fd) Thanks [@megaconfidence](https://github.com/megaconfidence)! - fix: Updates DO Template Entry point
## 2.21.3
### Patch Changes
- [#5834](https://github.com/cloudflare/workers-sdk/pull/5834) [`cc341d8`](https://github.com/cloudflare/workers-sdk/commit/cc341d8ae2f718169c675320c47c9772ee6d9f06) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------------- | ----- | ----- |
| create-docusaurus | 3.1.1 | 3.3.2 |
- [#5852](https://github.com/cloudflare/workers-sdk/pull/5852) [`c744403`](https://github.com/cloudflare/workers-sdk/commit/c74440335ded744f25dbe5138cc4a8cb4fc95325) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-hono | 0.7.0 | 0.7.3 |
- [#5853](https://github.com/cloudflare/workers-sdk/pull/5853) [`c80c4e1`](https://github.com/cloudflare/workers-sdk/commit/c80c4e159ce069ccae4257cb730d2937734fea1f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-astro | 4.7.5 | 4.8.0 |
- [#5854](https://github.com/cloudflare/workers-sdk/pull/5854) [`674cf88`](https://github.com/cloudflare/workers-sdk/commit/674cf88c15fd7127c9d3a4fe1dd16ad3c3a1795c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ----- |
| create-analog | 1.2.0 | 1.3.1 |
- [#5871](https://github.com/cloudflare/workers-sdk/pull/5871) [`a1171eb`](https://github.com/cloudflare/workers-sdk/commit/a1171eb50dace59599e39ed3422e910a03644fa4) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-remix | 2.8.1 | 2.9.2 |
- [#5872](https://github.com/cloudflare/workers-sdk/pull/5872) [`5c8fabb`](https://github.com/cloudflare/workers-sdk/commit/5c8fabb1ec14feb8457276fdc309edef4e001293) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ------ | ----- |
| create-svelte | 6.0.10 | 6.1.2 |
- [#5873](https://github.com/cloudflare/workers-sdk/pull/5873) [`7780a8c`](https://github.com/cloudflare/workers-sdk/commit/7780a8c69f48b14440019c754f17583cfc9bc6f8) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.13.4 | 5.13.5 |
## 2.21.2
### Patch Changes
- [#5602](https://github.com/cloudflare/workers-sdk/pull/5602) [`93cd7ae`](https://github.com/cloudflare/workers-sdk/commit/93cd7ae5a0c59ecb85df3890e4e49f461bb8563c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| gatsby | 5.13.3 | 5.13.4 |
- [#5835](https://github.com/cloudflare/workers-sdk/pull/5835) [`717e13e`](https://github.com/cloudflare/workers-sdk/commit/717e13e12365be01d2b825f6b27a23c8949b4bf7) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| --------------- | ------ | ------ |
| @angular/create | 17.2.3 | 17.3.7 |
- [#5836](https://github.com/cloudflare/workers-sdk/pull/5836) [`b3b4d3a`](https://github.com/cloudflare/workers-sdk/commit/b3b4d3a432878ca334d65f0cc8c7e6d326be80e9) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ----------- | ----- | ----- |
| create-qwik | 1.4.5 | 1.5.4 |
- [#5547](https://github.com/cloudflare/workers-sdk/pull/5547) [`e6ecf8c`](https://github.com/cloudflare/workers-sdk/commit/e6ecf8c86dd4638fe90bc7d92b01af659408fff1) Thanks [@connorads](https://github.com/connorads)! - fix: provide a simple fetch handler to the scheduled template to avoid confusing error messages.
Fixes #4560
- [#5855](https://github.com/cloudflare/workers-sdk/pull/5855) [`3a65060`](https://github.com/cloudflare/workers-sdk/commit/3a65060eb8b044b060186c2c219ac06d52b2d3bc) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - chore: bump undici to 5.28.4
## 2.21.1
### Patch Changes
- [#5687](https://github.com/cloudflare/workers-sdk/pull/5687) [`906c39a`](https://github.com/cloudflare/workers-sdk/commit/906c39a37094e86eea069315843c213cfea56e5c) Thanks [@jculvey](https://github.com/jculvey)! - fix: Fixes an issue with the `Bindings` type genereated by C3 being too permissive.
## 2.21.0
### Minor Changes
- [#5675](https://github.com/cloudflare/workers-sdk/pull/5675) [`235c439`](https://github.com/cloudflare/workers-sdk/commit/235c4398268322b6c0c13060bc3da91f52b4b066) Thanks [@jculvey](https://github.com/jculvey)! - feat: Improvements to `hono` template.
The `hono` template has been updated as follows:
- Bumps `create-hono` to `0.7.0`
- Automatically installs dependencies and specifies the detected package manager to avoid interactive prompts
- Adds a `wrangler.toml` file with commented out examples of all available bindings to match other templates.
- Adds a `cf-typegen` package script to automatically regenerate types for `Bindings` from `wrangler.toml`
- [#5637](https://github.com/cloudflare/workers-sdk/pull/5637) [`b41c4ed`](https://github.com/cloudflare/workers-sdk/commit/b41c4edc2e4bf1da11ebff98c38f92f8057d5c59) Thanks [@joshthoward](https://github.com/joshthoward)! - feat: change Durable Objects "Hello, World!" template to use RPC methods
### Patch Changes
- [#5483](https://github.com/cloudflare/workers-sdk/pull/5483) [`a55314c`](https://github.com/cloudflare/workers-sdk/commit/a55314cb34c123ec141db10dcd2df455ea523d93) Thanks [@DaniFoldi](https://github.com/DaniFoldi)! - fix: make sure that using the current directory doesn't generate an `undefined undefined` log in the output summary.
- [#5482](https://github.com/cloudflare/workers-sdk/pull/5482) [`1b7739e`](https://github.com/cloudflare/workers-sdk/commit/1b7739e0af99860aa063f01c0a6e7712ac072fdb) Thanks [@DaniFoldi](https://github.com/DaniFoldi)! - docs: show new Discord url everywhere for consistency. The old URL still works, but https://discord.cloudflare.com is preferred.
- [#5684](https://github.com/cloudflare/workers-sdk/pull/5684) [`c81fa65`](https://github.com/cloudflare/workers-sdk/commit/c81fa65cbc4b1749ab31afb114cc3cb40e22fef9) Thanks [@jculvey](https://github.com/jculvey)! - docs: Add Smart Placement example to `wrangler.toml` of templates.
## 2.20.1
### Patch Changes
- [#5652](https://github.com/cloudflare/workers-sdk/pull/5652) [`ccb9d3d`](https://github.com/cloudflare/workers-sdk/commit/ccb9d3d4efba73a720945df4e1212a010fe40739) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - chore: re-release due to broken build
## 2.20.0
### Minor Changes
- [#5562](https://github.com/cloudflare/workers-sdk/pull/5562) [`b7c1c51`](https://github.com/cloudflare/workers-sdk/commit/b7c1c51738abb9b4f2b53151b1aab3bee94ec704) Thanks [@jculvey](https://github.com/jculvey)! - feat: Update full-stack templates to use `wrangler.toml` for preview and deployment.
- [#5597](https://github.com/cloudflare/workers-sdk/pull/5597) [`baac0e1`](https://github.com/cloudflare/workers-sdk/commit/baac0e1a52b178a289b44d2949a955a49d3d6a52) Thanks [@jculvey](https://github.com/jculvey)! - feat: Add a `cf-typegen` script to workers templates to dynamically generate a type definition from `wrangler.toml`.
This also updates the full-stack templates to rename the `build-cf-types` script to `cf-typegen` for consistency. Inline type definitons that previously existed in the `index.ts` of worker scripts have been removed and replaced with a comment informing the user of the `cf-typegen` script.
### Patch Changes
- [#5597](https://github.com/cloudflare/workers-sdk/pull/5597) [`baac0e1`](https://github.com/cloudflare/workers-sdk/commit/baac0e1a52b178a289b44d2949a955a49d3d6a52) Thanks [@jculvey](https://github.com/jculvey)! - chore: Update example `wrangler.toml` files to include a link to secrets documentation.
## 2.19.0
### Minor Changes
- [#5529](https://github.com/cloudflare/workers-sdk/pull/5529) [`ad1d056`](https://github.com/cloudflare/workers-sdk/commit/ad1d056cb2710b790ff5d4532e9f694e099c27e2) Thanks [@jculvey](https://github.com/jculvey)! - feat: Adds a new template for [Analog.js](https://analogjs.org/), a full-stack Angular meta-framework.
## 2.18.1
### Patch Changes
- [#5333](https://github.com/cloudflare/workers-sdk/pull/5333) [`d5f3c13`](https://github.com/cloudflare/workers-sdk/commit/d5f3c1346cd75d2c4388082efa12ac558c806d71) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ----- | ------ |
| create-vue | 3.9.2 | 3.10.2 |
- [#5576](https://github.com/cloudflare/workers-sdk/pull/5576) [`c9c68d8`](https://github.com/cloudflare/workers-sdk/commit/c9c68d81ae6b667c7b0664bf862744f1b9d3f5b4) Thanks [@jculvey](https://github.com/jculvey)! - chore: Update the wrangler.toml of the Python Workers template to include commented out bindings definitions.
## 2.18.0
### Minor Changes
- [#5550](https://github.com/cloudflare/workers-sdk/pull/5550) [`4f47f74`](https://github.com/cloudflare/workers-sdk/commit/4f47f7422786e537eaefd034153998f848bcd573) Thanks [@penalosa](https://github.com/penalosa)! - feat: Generate a JSON schema for the Wrangler package & use it in templates
### Patch Changes
- [#5355](https://github.com/cloudflare/workers-sdk/pull/5355) [`e18f18b`](https://github.com/cloudflare/workers-sdk/commit/e18f18b28a9cface804be1c3ff0630f57404522f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-astro | 4.7.4 | 4.7.5 |
- [#5411](https://github.com/cloudflare/workers-sdk/pull/5411) [`a13a0c3`](https://github.com/cloudflare/workers-sdk/commit/a13a0c36857eb3fef34cc45cb2dffa134b04fcc4) Thanks [@mrbbot](https://github.com/mrbbot)! - fix: display helpful error message when no accounts found during deployment
Previously, C3 would display `TypeError: Cannot read properties of undefined (reading 'value')` if you were logged in as a user without access to any accounts. This change ensures a more appropriate error message is displayed in this case.
- [#5517](https://github.com/cloudflare/workers-sdk/pull/5517) [`3c2eba8`](https://github.com/cloudflare/workers-sdk/commit/3c2eba80aed5dd70eb7e96dc3a17dd1d0c03097b) Thanks [@admah](https://github.com/admah)! - fix: update failing test and add test command to package.json in C3 Hello World JS template.
## 2.17.1
### Patch Changes
- [#5376](https://github.com/cloudflare/workers-sdk/pull/5376) [`bd00dc8`](https://github.com/cloudflare/workers-sdk/commit/bd00dc827769145df8d42a677393173bd751e643) Thanks [@jculvey](https://github.com/jculvey)! - feat: Improve the output of `--help`.
## 2.17.0
### Minor Changes
- [#5475](https://github.com/cloudflare/workers-sdk/pull/5475) [`80b8fcb`](https://github.com/cloudflare/workers-sdk/commit/80b8fcb96be30c18560fc038a0ea1d127096312b) Thanks [@garrettgu10](https://github.com/garrettgu10)! - feature: add Hello World Python template
## 2.16.1
### Patch Changes
- [#5410](https://github.com/cloudflare/workers-sdk/pull/5410) [`e89ee2a`](https://github.com/cloudflare/workers-sdk/commit/e89ee2a5745a0e19055d885970d3be8043f15ec9) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: update Astro c3 logic for their new v10 Cloudflare adapter
## 2.16.0
### Minor Changes
- [#5350](https://github.com/cloudflare/workers-sdk/pull/5350) [`7fd7fe3`](https://github.com/cloudflare/workers-sdk/commit/7fd7fe31b2ba9a4209f096e9ea85d85cff6a70b0) Thanks [@jculvey](https://github.com/jculvey)! - feat: Rename 'webFramework' --type argument to 'web-framework' and show deprecation warning when used.
## 2.15.2
### Patch Changes
- [#5219](https://github.com/cloudflare/workers-sdk/pull/5219) [`4fdd898`](https://github.com/cloudflare/workers-sdk/commit/4fdd8987772d914cf50725e9fa8cb91a82a6870d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------ | ----- | ----- |
| create-solid | 0.5.3 | 0.5.5 |
- [#5334](https://github.com/cloudflare/workers-sdk/pull/5334) [`a9b8f4a`](https://github.com/cloudflare/workers-sdk/commit/a9b8f4a9a067b32c9d966595c1b09508f261bd2f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ------------- | ----- | ------ |
| create-svelte | 6.0.9 | 6.0.10 |
- [#5335](https://github.com/cloudflare/workers-sdk/pull/5335) [`4c9a8d2`](https://github.com/cloudflare/workers-sdk/commit/4c9a8d283c49a855dc77d5dc50f5fa171a130709) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: update dependencies of "create-cloudflare" package
The following dependency versions have been updated:
| Dependency | From | To |
| ---------- | ------ | ------ |
| nuxi | 3.10.1 | 3.11.1 |
- [#5301](https://github.com/cloudflare/workers-sdk/pull/5301) [`0abafdb`](https://github.com/cloudflare/workers-sdk/commit/0abafdb84f9ba095ba6b87beb95b936a153b16d7) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: in the Next.js scaffold example, reuse existing `MY_KV_NAMESPACE` commented out binding instead of adding a new `MY_KV` one
## 2.15.1
### Patch Changes
- [#5204](https://github.com/cloudflare/workers-sdk/pull/5204) [`3aa68c0`](https://github.com/cloudflare/workers-sdk/commit/3aa68c015db308d435e475f77e50a58bf0756855) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-astro` from `4.7.3` to `4.7.4`
- [#5205](https://github.com/cloudflare/workers-sdk/pull/5205) [`1502e41`](https://github.com/cloudflare/workers-sdk/commit/1502e41378a02fedc3ab05a939ee7d634ec2074c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-remix` from `2.8.0` to `2.8.1`
- [#5312](https://github.com/cloudflare/workers-sdk/pull/5312) [`4126ee0`](https://github.com/cloudflare/workers-sdk/commit/4126ee0865ea846015974c4efc0f2ee684b44b6d) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: update the remix template url used (as the old one is no longer valid)
## 2.15.0
### Minor Changes
- [#5277](https://github.com/cloudflare/workers-sdk/pull/5277) [`15d9cd5`](https://github.com/cloudflare/workers-sdk/commit/15d9cd5d9b2f0c7e310ba77d535f7bcfecc9eeca) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - feature: add `build-cf-types` script to Next.js projects
### Patch Changes
- [#5218](https://github.com/cloudflare/workers-sdk/pull/5218) [`0c535e7`](https://github.com/cloudflare/workers-sdk/commit/0c535e7236cbfc4bf856889454298bb434e48650) Thanks [@jculvey](https://github.com/jculvey)! - refactor: Refactor C3 internal helpers. Includes a few small changes:
- Drops `--save` from internal `pnpm` and `npm` install invocations
- Switches to `git branch --show-current` for detecting current branch
- [#5242](https://github.com/cloudflare/workers-sdk/pull/5242) [`86c5f98`](https://github.com/cloudflare/workers-sdk/commit/86c5f98626464281dfe44b25ec8c95c98a67a3dd) Thanks [@jculvey](https://github.com/jculvey)! - chore: Remove custom `getPlatformProxy` hook from SvelteKit template.
`sveltejs/adapter-cloudflare@4.2.0` has been [released](https://github.com/sveltejs/kit/releases/tag/%40sveltejs%2Fadapter-cloudflare%404.2.0) which provides direct support for bindings emulation via `getPlatformProxy`, so the custom hook is no longer needed.
- [#5269](https://github.com/cloudflare/workers-sdk/pull/5269) [`d4c23d2`](https://github.com/cloudflare/workers-sdk/commit/d4c23d23aa48064fb09685ef0b8d971ca74d1ad6) Thanks [@jculvey](https://github.com/jculvey)! - feature: Updates the commented out sections of the default `wrangler.toml` in templates to include recent features. Also updates the documentation links to the appropriate section of the bindings docs.
- [#5259](https://github.com/cloudflare/workers-sdk/pull/5259) [`4ce7a5d`](https://github.com/cloudflare/workers-sdk/commit/4ce7a5ded15350aefcf062ea946d2b6267ec6569) Thanks [@jculvey](https://github.com/jculvey)! - fix: Require arguments for flags that expect them
This fixes an issue where `c3` would didn't require an argument to be passed to certain flags that expect them (ex. `--framework`, `--template`). Using these flags without an argument will now throw an error.
- [#5277](https://github.com/cloudflare/workers-sdk/pull/5277) [`15d9cd5`](https://github.com/cloudflare/workers-sdk/commit/15d9cd5d9b2f0c7e310ba77d535f7bcfecc9eeca) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: remove timestamps from nuxt, qwik and remix type d.ts files
## 2.14.2
### Patch Changes
- [#5249](https://github.com/cloudflare/workers-sdk/pull/5249) [`5315602`](https://github.com/cloudflare/workers-sdk/commit/531560267ce2527fdce6fa3b6685bde1610defdb) Thanks [@CarmenPopoviciu](https://github.com/CarmenPopoviciu)! - test: add vitest-pool-workers package and example tests to `hello-world` templates
## 2.14.1
### Patch Changes
- [#5228](https://github.com/cloudflare/workers-sdk/pull/5228) [`a72fccb`](https://github.com/cloudflare/workers-sdk/commit/a72fccb9cfa98669aebf4d485efb5785bb9a112c) Thanks [@RamIdeas](https://github.com/RamIdeas)! - fix: remove tab_width from all template .editorconfig files
## 2.14.0
### Minor Changes
- [#5187](https://github.com/cloudflare/workers-sdk/pull/5187) [`8e9faf2`](https://github.com/cloudflare/workers-sdk/commit/8e9faf27449b61c04c6455cef249c3fe103bf6ad) Thanks [@jculvey](https://github.com/jculvey)! - feature: replace the word "publish" with "deploy" everywhere.
Aligns most `webFramework` templates to use `dev` and `deploy` instead of `pages:dev` and `pages:deploy` in package scripts.
## 2.13.2
### Patch Changes
- [#5177](https://github.com/cloudflare/workers-sdk/pull/5177) [`1c6a55d`](https://github.com/cloudflare/workers-sdk/commit/1c6a55d8949fe5f51f209317259a3b67ef2c7147) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `@angular/create` from `17.2.2` to `17.2.3`
- [#5186](https://github.com/cloudflare/workers-sdk/pull/5186) [`5dfbc2d`](https://github.com/cloudflare/workers-sdk/commit/5dfbc2d241411096a19af072f8d2a6a194417b5f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-solid` from `0.4.10` to `0.5.3`
- [#5157](https://github.com/cloudflare/workers-sdk/pull/5157) [`01a53b2`](https://github.com/cloudflare/workers-sdk/commit/01a53b2a4f80ac1a58826d4ae14d7a338abdb3de) Thanks [@jculvey](https://github.com/jculvey)! - fix: Updates the Nuxt template by adding a `env.d.ts` file which updates the type difinition for `H3EventContext` to include the `cf` property from the request and an `env` type generated from the recently added `build-cf-types` script.
- [#5188](https://github.com/cloudflare/workers-sdk/pull/5188) [`84eeee5`](https://github.com/cloudflare/workers-sdk/commit/84eeee54b27a6c3a1cc8cc559fe23119ea47bce0) Thanks [@jculvey](https://github.com/jculvey)! - fix: Update SolidStart template to work with create-solid@0.5.3
## 2.13.1
### Patch Changes
- [#5097](https://github.com/cloudflare/workers-sdk/pull/5097) [`9d1d11c`](https://github.com/cloudflare/workers-sdk/commit/9d1d11c3acccb0ee7c06af501163906c738b740a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-hono` from `0.4.0` to `0.5.0`
- [#5121](https://github.com/cloudflare/workers-sdk/pull/5121) [`fd2f153`](https://github.com/cloudflare/workers-sdk/commit/fd2f1530ec1737671d13bf918edfaaf53141b8a2) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `@angular/create` from `17.2.1` to `17.2.2`
- [#5122](https://github.com/cloudflare/workers-sdk/pull/5122) [`b4f7ad8`](https://github.com/cloudflare/workers-sdk/commit/b4f7ad819c26b7c6c9603b0ddb451bc7cef145f3) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-remix` from `2.7.2` to `2.8.0`
- [#5135](https://github.com/cloudflare/workers-sdk/pull/5135) [`8935526`](https://github.com/cloudflare/workers-sdk/commit/89355269dea7b33242f9b271bdf6a00d3f6e7e87) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: update solid preview and deploy scripts to be aligned with the rest of the frameworks
- [#5129](https://github.com/cloudflare/workers-sdk/pull/5129) [`23074c7`](https://github.com/cloudflare/workers-sdk/commit/23074c7d2124ff19b01aa6f9d6482395bbf0659e) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: make sure that all C3 projects include in their `.gitignore` the wrangler files
Previously only the worker templates included in their `.gitignore` the wrangler files (those being `.dev.vars` and `.wrangler`). Make sure to instead include such files in the `.gitignore` files of all the templates including the full stack ones.
- [#5135](https://github.com/cloudflare/workers-sdk/pull/5135) [`8935526`](https://github.com/cloudflare/workers-sdk/commit/89355269dea7b33242f9b271bdf6a00d3f6e7e87) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: update solid C3 template to write an `app.config.(js/ts)` file instead of `vite.config.(js/ts)`
## 2.13.0
### Minor Changes
- [#5080](https://github.com/cloudflare/workers-sdk/pull/5080) [`2aa7913`](https://github.com/cloudflare/workers-sdk/commit/2aa79132f2db770c85e99c62336aebbe9af96a8e) Thanks [@jculvey](https://github.com/jculvey)! - feature: Use new `vite-cloudflare` template in Remix projects.
Remix has released a [new official Cloudflare template](https://remix.run/docs/en/main/future/vite#cloudflare-proxy) that uses `getPlatformProxy` under the hood to provide better support for bindings in dev. Remix projects created with C3 will now use this new template.
Along with this change, projects will use the default vite-based dev command from `create-remix` instead of using `wrangler pages dev` on build output.
A new `build-cf-types` script has also been added to re-generate the `Env` type defined in `load-context.ts` based on the contents of `wrangler.toml`. A default `wrangler.toml` will be added to new Remix projects to accommodate this workflow.
- [#5072](https://github.com/cloudflare/workers-sdk/pull/5072) [`cab7e1c`](https://github.com/cloudflare/workers-sdk/commit/cab7e1c7f24ff0097e15d90030c805fe2785d173) Thanks [@jculvey](https://github.com/jculvey)! - feature: Improve bindings support in Astro template.
C3 will now create Astro projects configured to use miniflare in dev automatically. This is done by adding a configuration for the adapter of `{ runtime: 'local'}` (see [Astro docs](https://docs.astro.build/en/guides/integrations-guide/cloudflare/#runtime) for more details). A `wrangler.toml` file will also be added where bindings can be added to be used in dev.
Along with this change, projects will now use the default vite-based `astro dev` command instead of using `wrangler pages dev` on build output.
When Typescript is used, the `src/env.d.ts` file will be updated to add type definitions `runtime.env` which can be re-generated with a newly added `build-cf-types` script.
### Patch Changes
- [#5074](https://github.com/cloudflare/workers-sdk/pull/5074) [`e37c1b8`](https://github.com/cloudflare/workers-sdk/commit/e37c1b8665a3c99873da21c0be7a2fed1d165149) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-svelte` from `6.0.8` to `6.0.9`
- [#5075](https://github.com/cloudflare/workers-sdk/pull/5075) [`c1ed773`](https://github.com/cloudflare/workers-sdk/commit/c1ed7737626bce9930a1fb0fcb28373fd45c4401) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-remix` from `2.7.1` to `2.7.2`
- [#5078](https://github.com/cloudflare/workers-sdk/pull/5078) [`64236b0`](https://github.com/cloudflare/workers-sdk/commit/64236b0bf837e8cc31c5886c31d10a8d387f57bd) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `@angular/create` from `17.2.0` to `17.2.1`
## 2.12.1
### Patch Changes
- [#5066](https://github.com/cloudflare/workers-sdk/pull/5066) [`ef064279`](https://github.com/cloudflare/workers-sdk/commit/ef0642796dbe17b30fd7b83ccfd3efc651ce0a1a) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-remix` from `2.6.0` to `2.7.1`
* [#5052](https://github.com/cloudflare/workers-sdk/pull/5052) [`f68e83e2`](https://github.com/cloudflare/workers-sdk/commit/f68e83e270fde93a8c6b0553f062b6e4ab80aa75) Thanks [@jculvey](https://github.com/jculvey)! - feature: Add script to Qwik template for building Env type definitions.
When creating a project with the Qwik template, the `QwikCityPlatform` type will be updated to contain a definition for the `env` property. These types can be re-generated with a newly added `build-cf-types` script.
## 2.12.0
### Minor Changes
- [#4996](https://github.com/cloudflare/workers-sdk/pull/4996) [`246512c8`](https://github.com/cloudflare/workers-sdk/commit/246512c8e34fa218b1d52d3a52cd6aa348fdf563) Thanks [@jculvey](https://github.com/jculvey)! - feature: Add `getBindingsProxy` support to `nuxt` template via `nitro-cloudflare-dev` module.
The `nuxt` template now uses the default dev command from `create-nuxt` instead of using `wrangler pages dev` on build output in order to improve the developer workflow. `nitro-cloudflare-dev` is a nitro module that leverages `getBindingsProxy` and allows bindings to work in nitro commands.
* [#5027](https://github.com/cloudflare/workers-sdk/pull/5027) [`a751489f`](https://github.com/cloudflare/workers-sdk/commit/a751489f2530bc7a7adec1167319cd145f080812) Thanks [@jculvey](https://github.com/jculvey)! - feature: Improve bindings support in Svelte template.
C3 will now create Svelte projects with a hook that uses `getPlatformProxy` to proxy bindings in development mode. A `wrangler.toml` file will also be added where bindings can be added to be used in conjunction with `getPlatformProxy`.
Along with this change, projects will use the default vite-based dev command from `create-svelte` instead of using `wrangler pages dev` on build output.
When Typescript is used, the `app.d.ts` will be updated to add type definitions for `cf` and `ctx` to the `Platform` interface from the `@cloudflare/workers-types` package. Types for bindings on `platform.env` can be re-generated with a newly added `build-cf-types` script.
### Patch Changes
- [#5001](https://github.com/cloudflare/workers-sdk/pull/5001) [`efe8b444`](https://github.com/cloudflare/workers-sdk/commit/efe8b444e4220cfb23c443dc172582ee58119bc5) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-hono` from `0.3.2` to `0.4.0`
* [#5011](https://github.com/cloudflare/workers-sdk/pull/5011) [`89482d44`](https://github.com/cloudflare/workers-sdk/commit/89482d4475780c3cd3efbbd004c6b4f85c8daf53) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-qwik` from `1.4.4` to `1.4.5`
- [#5019](https://github.com/cloudflare/workers-sdk/pull/5019) [`f939ed73`](https://github.com/cloudflare/workers-sdk/commit/f939ed739a89de174099f128530a29bd51b04899) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `@angular/create` from `17.1.3` to `17.2.0`
* [#5020](https://github.com/cloudflare/workers-sdk/pull/5020) [`0e74c743`](https://github.com/cloudflare/workers-sdk/commit/0e74c743236d2a9055648eac9397d566ac90d83b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `nuxi` from `3.10.0` to `3.10.1`
- [#5021](https://github.com/cloudflare/workers-sdk/pull/5021) [`ae1ef47c`](https://github.com/cloudflare/workers-sdk/commit/ae1ef47c8981a1059b5c8a2adaf7edeb38c1c49d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-astro` from `4.7.2` to `4.7.3`
* [#5009](https://github.com/cloudflare/workers-sdk/pull/5009) [`1e263694`](https://github.com/cloudflare/workers-sdk/commit/1e2636940cc05b06475cce6d96a882f03216ff78) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - chore: update Next.js template
Update the C3 Next.js template so that it uses the latest `@cloudflare/next-on-pages` tooling (i.e. `setupDevPlatform` and `getRequestContext`)
- [#4996](https://github.com/cloudflare/workers-sdk/pull/4996) [`246512c8`](https://github.com/cloudflare/workers-sdk/commit/246512c8e34fa218b1d52d3a52cd6aa348fdf563) Thanks [@jculvey](https://github.com/jculvey)! - feature: Add an empty `wrangler.toml` file to qwik and nuxt templates.
* [#4999](https://github.com/cloudflare/workers-sdk/pull/4999) [`ce6d4bc4`](https://github.com/cloudflare/workers-sdk/commit/ce6d4bc4753625d2aaf1b832bbb47fc50b24a98b) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: make sure not to wrongly ask users if they want to use typescript
currently if a CLI invoked by C3 asks the user if they want to use
typescript and the user opted out of it, C3 could actually again offer
typescript to the user afterwords, make sure that this does not happen
- [#5010](https://github.com/cloudflare/workers-sdk/pull/5010) [`9f787042`](https://github.com/cloudflare/workers-sdk/commit/9f787042fc6894f5f1ebdc99e0ae10afbe6bdae6) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - chore: update qwik template to use `getPlatformProxy`
update the C3 Qwik template to use the `getPlatformProxy` utility instead of the deprecated `getBindingsProxy` one
## 2.11.3
### Patch Changes
- [#4963](https://github.com/cloudflare/workers-sdk/pull/4963) [`b3110c30`](https://github.com/cloudflare/workers-sdk/commit/b3110c304c4355dd153c90aafb82c0113c0544c0) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `@angular/create` from `17.1.2` to `17.1.3`
## 2.11.2
### Patch Changes
- [#4935](https://github.com/cloudflare/workers-sdk/pull/4935) [`0699506d`](https://github.com/cloudflare/workers-sdk/commit/0699506d9cab929779d19ec2af9b53ccb70c0e7b) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-qwik` from `1.4.3` to `1.4.4`
* [#4927](https://github.com/cloudflare/workers-sdk/pull/4927) [`49696ab3`](https://github.com/cloudflare/workers-sdk/commit/49696ab391d09243b54a0c32cf220fcc272871ec) Thanks [@jculvey](https://github.com/jculvey)! - feature: Add `getBindingsProxy` support to `qwik` template
The `qwik` template now uses `getBindingsProxy` for handling requests for bound resources
in dev. This allows projects to use `vite` for dev instead of `wrangler pages dev` on built output.
## 2.11.1
### Patch Changes
- [#4881](https://github.com/cloudflare/workers-sdk/pull/4881) [`37141ba5`](https://github.com/cloudflare/workers-sdk/commit/37141ba5fe3df960fb744ba5c665c4d606a51f57) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.4.2` to `1.4.3`
* [#4892](https://github.com/cloudflare/workers-sdk/pull/4892) [`598b2c49`](https://github.com/cloudflare/workers-sdk/commit/598b2c49d78421fe793f2a7fda467f3fa68d6e8d) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `@angular/create` from `17.1.1` to `17.1.2`
- [#4903](https://github.com/cloudflare/workers-sdk/pull/4903) [`582396a7`](https://github.com/cloudflare/workers-sdk/commit/582396a78bbeb9efd3c42dd22bb4cad6cc5fbaa7) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-remix` from `2.5.1` to `2.6.0`
## 2.11.0
### Minor Changes
- [#4850](https://github.com/cloudflare/workers-sdk/pull/4850) [`eb76082b`](https://github.com/cloudflare/workers-sdk/commit/eb76082bfc96c588cc26a2eed7c49407bb797dd5) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - feature: introduce a new optional `previewScript` to the C3 summary
such script is to be used to locally preview the application (using wrangler)
### Patch Changes
- [#4855](https://github.com/cloudflare/workers-sdk/pull/4855) [`c58c253b`](https://github.com/cloudflare/workers-sdk/commit/c58c253bf5abf347c8c5a05e12561cc9d8544b95) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-docusaurus` from `3.1.0` to `3.1.1`
* [#4856](https://github.com/cloudflare/workers-sdk/pull/4856) [`f6a707d3`](https://github.com/cloudflare/workers-sdk/commit/f6a707d37522794dc828ddd7895c038c05ab094f) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-astro` from `4.7.1` to `4.7.2`
- [#4857](https://github.com/cloudflare/workers-sdk/pull/4857) [`9adfeae5`](https://github.com/cloudflare/workers-sdk/commit/9adfeae5763e00075cea80cb34585598fdc28c19) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-qwik` from `1.4.1` to `1.4.2`
* [#4858](https://github.com/cloudflare/workers-sdk/pull/4858) [`f2ca5e2e`](https://github.com/cloudflare/workers-sdk/commit/f2ca5e2e6df50f7e3977ef3a9e408bd7e11f60be) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-solid` from `0.3.10` to `0.4.10`
- [#4870](https://github.com/cloudflare/workers-sdk/pull/4870) [`7a341949`](https://github.com/cloudflare/workers-sdk/commit/7a341949216fa6bfdb892f0c4d1f797415741856) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: Bumped `create-vue` from `3.9.1` to `3.9.2`
* [#4863](https://github.com/cloudflare/workers-sdk/pull/4863) [`ed40cf84`](https://github.com/cloudflare/workers-sdk/commit/ed40cf849ae8f164574137ea34bb86ed88a6e168) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - chore: handle new Next.js `next.config.mjs` default files
Since `create-next-app` `v14.1.0` the default generated config file is `next.config.mjs`
(instead of `next.config.js`), so such new default files need to be handled accordingly
- [#4850](https://github.com/cloudflare/workers-sdk/pull/4850) [`eb76082b`](https://github.com/cloudflare/workers-sdk/commit/eb76082bfc96c588cc26a2eed7c49407bb797dd5) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: update the svelteKit c3 scripts
replace the incorrect `pages:dev` with a new `pages:preview` script
(and use the standard `dev` script as the `devScript`)
* [#4863](https://github.com/cloudflare/workers-sdk/pull/4863) [`ed40cf84`](https://github.com/cloudflare/workers-sdk/commit/ed40cf849ae8f164574137ea34bb86ed88a6e168) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - chore: Bumped `create-next-app` from `14.0.4` to `14.1.0`
## 2.10.0
### Minor Changes
- [#4754](https://github.com/cloudflare/workers-sdk/pull/4754) [`06f85613`](https://github.com/cloudflare/workers-sdk/commit/06f85613228066ccb323c2818b443e9460b02c94) Thanks [@jculvey](https://github.com/jculvey)! - Adds C3 support for external templates hosted in git repositories via the `--template <source>` option.
The source may be specified as any of the following:
- `user/repo`
- `git@github.com:user/repo`
- `https://github.com/user/repo`
- `user/repo/some-template` (subdirectories)
- `user/repo#canary` (branches)
- `user/repo#1234abcd` (commit hash)
- `bitbucket:user/repo` (BitBucket)
- `gitlab:user/repo` (GitLab)
See the `degit` [docs](https://github.com/Rich-Harris/degit) for more details.
At a minimum, templates must contain the following:
- `package.json`
- `wrangler.toml`
- `src/` containing a worker script referenced from `wrangler.toml`
See the [templates folder](https://github.com/cloudflare/workers-sdk/tree/main/templates) of this repo for more examples.
### Patch Changes
- [#4828](https://github.com/cloudflare/workers-sdk/pull/4828) [`99bf5f86`](https://github.com/cloudflare/workers-sdk/commit/99bf5f8653bd026555cceffa61ee9120eb2c4645) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `gatsby` from `5.13.1` to `5.13.2`
* [#4836](https://github.com/cloudflare/workers-sdk/pull/4836) [`6d7d00a8`](https://github.com/cloudflare/workers-sdk/commit/6d7d00a835152fc241781fdca8eda41a00f53a40) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `@angular/create` from `17.1.0` to `17.1.1`
- [#4842](https://github.com/cloudflare/workers-sdk/pull/4842) [`9fb39e63`](https://github.com/cloudflare/workers-sdk/commit/9fb39e63506bdd28f29cf387543978ebf85263cd) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.4.0` to `1.4.1`
* [#4843](https://github.com/cloudflare/workers-sdk/pull/4843) [`b3c5566c`](https://github.com/cloudflare/workers-sdk/commit/b3c5566c0988c0cdd4e285bfe5792baa4127af94) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `gatsby` from `5.13.2` to `5.13.3`
- [#4834](https://github.com/cloudflare/workers-sdk/pull/4834) [`0123eef1`](https://github.com/cloudflare/workers-sdk/commit/0123eef14a071492354f46fb212d78f793e1bb14) Thanks [@jculvey](https://github.com/jculvey)! - Fixed an issue where commands were sometimes formatted with un-needed escape characters (ex. 'pages:\dev')
* [#4754](https://github.com/cloudflare/workers-sdk/pull/4754) [`06f85613`](https://github.com/cloudflare/workers-sdk/commit/06f85613228066ccb323c2818b443e9460b02c94) Thanks [@jculvey](https://github.com/jculvey)! - C3: Fix a bug where the "Pre-existing Worker (from Dashboard)" option was hidden in the dialog but still selectable
- [#4711](https://github.com/cloudflare/workers-sdk/pull/4711) [`fa91ff54`](https://github.com/cloudflare/workers-sdk/commit/fa91ff546ceb30207245518d4b38e6a416de9ed3) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - update the solidStart logic to work with their latest (beta-2) implementation
* [#4771](https://github.com/cloudflare/workers-sdk/pull/4771) [`f4f38fc7`](https://github.com/cloudflare/workers-sdk/commit/f4f38fc7d58347b7e69eab013685798d90bb633a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: correctly find the latest version of create-cloudflare
When create-cloudflare starts up, it checks to see if the version being run
is the latest available on npm.
Previously this check used `npm info` to look up the version.
But was prone to failing if that command returned additional unexpected output
such as warnings.
Now we make a fetch request to the npm REST API directly for the latest version,
which does not have the problem of unexpected warnings.
Since the same approach is used to compute the latest version of workerd, the
function to do this has been put into a helper.
Fixes #4729
## 2.9.3
### Patch Changes
- [#4780](https://github.com/cloudflare/workers-sdk/pull/4780) [`a75ef752`](https://github.com/cloudflare/workers-sdk/commit/a75ef752fc444abff67efd77559cb0fa3c527a88) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `@angular/create` from `17.0.6` to `17.1.0`
* [#4786](https://github.com/cloudflare/workers-sdk/pull/4786) [`7273efca`](https://github.com/cloudflare/workers-sdk/commit/7273efca019900f0514ab111bf71fd8025c6daae) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-svelte` from `6.0.6` to `6.0.8`
- [#4788](https://github.com/cloudflare/workers-sdk/pull/4788) [`d4676266`](https://github.com/cloudflare/workers-sdk/commit/d46762667b08f398e7ce04c2a32e7628966f5086) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-remix` from `2.5.0` to `2.5.1`
* [#4789](https://github.com/cloudflare/workers-sdk/pull/4789) [`475da3a6`](https://github.com/cloudflare/workers-sdk/commit/475da3a60e2e396e56c9a3bd43290ac83c1bbef5) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.3.5` to `1.4.0`
- [#4803](https://github.com/cloudflare/workers-sdk/pull/4803) [`fa09f4a2`](https://github.com/cloudflare/workers-sdk/commit/fa09f4a2e421e402bf0f82f24b5c884c90c667ff) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - feat: add "Hello World" example for Durable Objects
This new starter corresponds to the getting started guide in the docs.
See #4747
* [#4768](https://github.com/cloudflare/workers-sdk/pull/4768) [`c3e410c2`](https://github.com/cloudflare/workers-sdk/commit/c3e410c2797f5c59b9ea0f63c20feef643366df2) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - ci: bump undici versions to 5.28.2
## 2.9.2
### Patch Changes
- [#4717](https://github.com/cloudflare/workers-sdk/pull/4717) [`05e3b544`](https://github.com/cloudflare/workers-sdk/commit/05e3b5446390c41c9e1846714e4f6020ca34c490) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-docusaurus` from `3.0.1` to `3.1.0`
* [#4728](https://github.com/cloudflare/workers-sdk/pull/4728) [`38d656b0`](https://github.com/cloudflare/workers-sdk/commit/38d656b0108453ef9fafee6108c145a0abbcf95e) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-svelte` from `6.0.5` to `6.0.6`
- [#4769](https://github.com/cloudflare/workers-sdk/pull/4769) [`fd1e9aa9`](https://github.com/cloudflare/workers-sdk/commit/fd1e9aa96cc44308f2e1e6213b4da57ff9b53f10) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.3.2` to `1.3.5`
* [#4770](https://github.com/cloudflare/workers-sdk/pull/4770) [`f2bfa5e2`](https://github.com/cloudflare/workers-sdk/commit/f2bfa5e26a1f0e61f81ee699f04fa7ab88c1e315) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-remix` from `2.4.1` to `2.5.0`
- [#4776](https://github.com/cloudflare/workers-sdk/pull/4776) [`eefd232e`](https://github.com/cloudflare/workers-sdk/commit/eefd232efbfb3c57b8f03d205ae1831ee1a3f536) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.6.0` to `4.7.1`
## 2.9.1
### Patch Changes
- [`4667e0ed`](https://github.com/cloudflare/workers-sdk/commit/4667e0ed20078939b8abdd49c4ff1015f828de84) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix: Update Next.js template to support bindings for dev server
## 2.9.0
### Minor Changes
- [#4625](https://github.com/cloudflare/workers-sdk/pull/4625) [`e8053554`](https://github.com/cloudflare/workers-sdk/commit/e8053554e04cde99d874377b92bd83af6f9e9ee8) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Create a custom not-found edge route for Next.js applications using the app router
### Patch Changes
- [#4690](https://github.com/cloudflare/workers-sdk/pull/4690) [`9e032723`](https://github.com/cloudflare/workers-sdk/commit/9e0327232b339df803abe62690c66e11f6576fac) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `gatsby` from `5.12.12` to `5.13.1`
## 2.8.5
### Patch Changes
- [#4617](https://github.com/cloudflare/workers-sdk/pull/4617) [`45972200`](https://github.com/cloudflare/workers-sdk/commit/45972200e571bc48693fb678114c64827f15c4d4) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-vue` from `3.9.0` to `3.9.1`
* [#4618](https://github.com/cloudflare/workers-sdk/pull/4618) [`10e267fc`](https://github.com/cloudflare/workers-sdk/commit/10e267fce70b45ae37070a5393a52cd9851de85b) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.5.2` to `4.6.0`
- [#4679](https://github.com/cloudflare/workers-sdk/pull/4679) [`873d7dd6`](https://github.com/cloudflare/workers-sdk/commit/873d7dd6ec02e58d64838cc0389201af4232ca3e) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.3.1` to `1.3.2`
* [#4680](https://github.com/cloudflare/workers-sdk/pull/4680) [`ba298d08`](https://github.com/cloudflare/workers-sdk/commit/ba298d085c8e5c69cc8d944160fa7487d969b953) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-remix` from `2.4.0` to `2.4.1`
- [#4681](https://github.com/cloudflare/workers-sdk/pull/4681) [`6fb72f8b`](https://github.com/cloudflare/workers-sdk/commit/6fb72f8bd0be07b66d3226b3ba5d7d44cb841104) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-svelte` from `6.0.3` to `6.0.5`
* [#4627](https://github.com/cloudflare/workers-sdk/pull/4627) [`44cbd66f`](https://github.com/cloudflare/workers-sdk/commit/44cbd66ff2283384569756ef578b08ec1556cdb8) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - make the workerd compatibility date retrieval more stable by fetching it directly from the npm registry
## 2.8.4
### Patch Changes
- [#4616](https://github.com/cloudflare/workers-sdk/pull/4616) [`e2205e35`](https://github.com/cloudflare/workers-sdk/commit/e2205e354ed9c142c7bbaaed1d4457893ceec8ce) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.3.0` to `1.3.1`
* [#4626](https://github.com/cloudflare/workers-sdk/pull/4626) [`421cd584`](https://github.com/cloudflare/workers-sdk/commit/421cd584a678a97de2f24e1c1b28a766f984148e) Thanks [@jculvey](https://github.com/jculvey)! - C3: Bumped `create-svelte` from `5.3.3` to `6.0.3`
## 2.8.3
### Patch Changes
- [#4603](https://github.com/cloudflare/workers-sdk/pull/4603) [`6db2c2a8`](https://github.com/cloudflare/workers-sdk/commit/6db2c2a816b1140951f5fe6a8618312d83a62d44) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-remix` from `2.3.1` to `2.4.0`
* [#4598](https://github.com/cloudflare/workers-sdk/pull/4598) [`ffa01a7d`](https://github.com/cloudflare/workers-sdk/commit/ffa01a7d9df25d3ac31e18498659762d67e234f7) Thanks [@penalosa](https://github.com/penalosa)! - fix: Ensure C3 can be used to create TypeScript workers
- [#4594](https://github.com/cloudflare/workers-sdk/pull/4594) [`850c4d64`](https://github.com/cloudflare/workers-sdk/commit/850c4d64a517329be2ec7fdffef26d3bbd77e9b0) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - amend broken cd instruction
## 2.8.2
### Patch Changes
- [#4556](https://github.com/cloudflare/workers-sdk/pull/4556) [`dcd3c582`](https://github.com/cloudflare/workers-sdk/commit/dcd3c582f69fb948b13ce3dfe0406362c069422e) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-vue` from `3.8.0` to `3.9.0`
* [#4557](https://github.com/cloudflare/workers-sdk/pull/4557) [`1a3e3ba4`](https://github.com/cloudflare/workers-sdk/commit/1a3e3ba434c6254d6bd86045c789315c2a3c461b) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-svelte` from `5.3.2` to `5.3.3`
- [#4558](https://github.com/cloudflare/workers-sdk/pull/4558) [`ef03dc74`](https://github.com/cloudflare/workers-sdk/commit/ef03dc741c15c975940eef7bdd4be0b9d1d9737a) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.5.1` to `4.5.2`
* [#4564](https://github.com/cloudflare/workers-sdk/pull/4564) [`d99bd421`](https://github.com/cloudflare/workers-sdk/commit/d99bd4214c626794f018c70f43eeac92277a41f3) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `@angular/create` from `17.0.5` to `17.0.6`
- [#4565](https://github.com/cloudflare/workers-sdk/pull/4565) [`be9a296d`](https://github.com/cloudflare/workers-sdk/commit/be9a296db10ac46e4d56367c89647791858ef500) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.2.19` to `1.3.0`
* [#4572](https://github.com/cloudflare/workers-sdk/pull/4572) [`39d77323`](https://github.com/cloudflare/workers-sdk/commit/39d77323932c28641011169836213950e3a8ebc6) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `gatsby` from `5.12.11` to `5.12.12`
- [#4575](https://github.com/cloudflare/workers-sdk/pull/4575) [`bb116f60`](https://github.com/cloudflare/workers-sdk/commit/bb116f60b322881f352ff2bd173feb722bdf87ea) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-next-app` from `14.0.3` to `14.0.4`
* [#4579](https://github.com/cloudflare/workers-sdk/pull/4579) [`cccd56b8`](https://github.com/cloudflare/workers-sdk/commit/cccd56b83aa5eed4b1f0d0c171e47ef2db7d9861) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Don't show `cd` instructions when the user is creating a project in the current directory
## 2.8.1
### Patch Changes
- [#4538](https://github.com/cloudflare/workers-sdk/pull/4538) [`a72f64c8`](https://github.com/cloudflare/workers-sdk/commit/a72f64c81c549510535fdc955bd3ad550be6c5a6) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-docusaurus` from `3.0.0` to `3.0.1`
## 2.8.0
### Minor Changes
- [#4494](https://github.com/cloudflare/workers-sdk/pull/4494) [`9bea4e32`](https://github.com/cloudflare/workers-sdk/commit/9bea4e32c6da9217c9a50e498f15ba49446131e1) Thanks [@RamIdeas](https://github.com/RamIdeas)! - Change the default project type to the hello world worker script.
* [#4525](https://github.com/cloudflare/workers-sdk/pull/4525) [`294ca542`](https://github.com/cloudflare/workers-sdk/commit/294ca542c6ad57685b97fd787bfc3fe47c3cae74) Thanks [@jculvey](https://github.com/jculvey)! - C3: Use latest version of `wrangler` and `@cloudflare/workers-types`.
Also updates the `types` entry of the project's `tsconfig.json` to use type definitions corresponding to the latest compatibility date.
### Patch Changes
- [#4445](https://github.com/cloudflare/workers-sdk/pull/4445) [`652cc422`](https://github.com/cloudflare/workers-sdk/commit/652cc4222e28cb303c330c5264874b2ba2810dac) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: ensure shell scripts work on Windows
Our use of `shell-quote` was causing problems on Windows where it was
escaping character (such as `@`) by placing a backslash in front.
This made Windows think that such path arguments, were at the root.
For example, `npm install -D @cloudflare/workers-types` was being converted to
`npm install -D \@cloudflare/workers-types`, which resulted in errors like:
```
npm ERR! enoent ENOENT: no such file or directory, open 'D:\@cloudflare\workers-types\package.json'
```
Now we just rely directly on the Node.js `spawn` API to avoid any shell quoting
concerns. This has resulted in a slightly less streamlined experience for people
writing C3 plugins, but has the benefit that the developer doesn't have to worry
about quoting spawn arguments.
Closes https://github.com/cloudflare/workers-sdk/issues/4282
* [#4432](https://github.com/cloudflare/workers-sdk/pull/4432) [`04a2d0ed`](https://github.com/cloudflare/workers-sdk/commit/04a2d0ed6fca1c366cd891b54026c34e1c1a5701) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-solid` from `0.3.9` to `0.3.10`
- [#4465](https://github.com/cloudflare/workers-sdk/pull/4465) [`d79a68fd`](https://github.com/cloudflare/workers-sdk/commit/d79a68fd463e9de973ee87b0ed9566a936f24220) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-svelte` from `5.2.0` to `5.3.1`
* [#4472](https://github.com/cloudflare/workers-sdk/pull/4472) [`beed1575`](https://github.com/cloudflare/workers-sdk/commit/beed157532301dfc637f354a8d2814bc0544e7a3) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `nuxi` from `3.9.1` to `3.10.0`
- [#4491](https://github.com/cloudflare/workers-sdk/pull/4491) [`e6ddf8a7`](https://github.com/cloudflare/workers-sdk/commit/e6ddf8a71b11419bc46dbdddda748ef9fe84116c) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.2.17` to `1.2.19`
* [#4504](https://github.com/cloudflare/workers-sdk/pull/4504) [`3b5407a9`](https://github.com/cloudflare/workers-sdk/commit/3b5407a968189e60974233c5db8615162db37fd2) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `@angular/create` from `17.0.1` to `17.0.3`
- [#4506](https://github.com/cloudflare/workers-sdk/pull/4506) [`d8b5a01e`](https://github.com/cloudflare/workers-sdk/commit/d8b5a01e2b7be4a52de22989aec35cad580f9fb2) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `gatsby` from `5.12.9` to `5.12.11`
* [#4507](https://github.com/cloudflare/workers-sdk/pull/4507) [`743d15fe`](https://github.com/cloudflare/workers-sdk/commit/743d15fe76b6330f439e74596a7cadecc0bf85d2) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-remix` from `2.2.0` to `2.3.1`
- [#4508](https://github.com/cloudflare/workers-sdk/pull/4508) [`743df0af`](https://github.com/cloudflare/workers-sdk/commit/743df0af21cf2f8763be9403f3f00e6ecd47cef6) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-svelte` from `5.3.1` to `5.3.2`
* [#4530](https://github.com/cloudflare/workers-sdk/pull/4530) [`774b16c9`](https://github.com/cloudflare/workers-sdk/commit/774b16c9138bbe7e7d42a8a27048755191010167) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `@angular/create` from `17.0.3` to `17.0.5`
- [#4481](https://github.com/cloudflare/workers-sdk/pull/4481) [`18a4dd92`](https://github.com/cloudflare/workers-sdk/commit/18a4dd92456f955ccbb35567a88475beafda01c0) Thanks [@jculvey](https://github.com/jculvey)! - Minor improvements when using the `--existing-script scriptName` flag:
- Format the type as "Pre-existing Worker (from Dashboard)"
- Defaults the project name to `scriptName`
* [#4445](https://github.com/cloudflare/workers-sdk/pull/4445) [`652cc422`](https://github.com/cloudflare/workers-sdk/commit/652cc4222e28cb303c330c5264874b2ba2810dac) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: update Nuxt template to work on Windows
Rather than relying upon the non-Windows shell syntax to specify an environment variable,
we now update the `nuxt.config.ts` files to include the cloudflare preset.
Fixes #4285
- [#4520](https://github.com/cloudflare/workers-sdk/pull/4520) [`1b945a07`](https://github.com/cloudflare/workers-sdk/commit/1b945a07bd5e7e299a955ea23e6c6e335bd8ba0a) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: ensure Angular alter-polyfill script works on Windows
## 2.7.1
### Patch Changes
- [#4441](https://github.com/cloudflare/workers-sdk/pull/4441) [`01d34f21`](https://github.com/cloudflare/workers-sdk/commit/01d34f2139929fc58d0d3c799d4e120e74bdd409) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-svelte` from `5.1.1` to `5.2.0`
* [#4461](https://github.com/cloudflare/workers-sdk/pull/4461) [`fe1e6d8a`](https://github.com/cloudflare/workers-sdk/commit/fe1e6d8a3584def6a7c1c2e8dd362c7c5d3cbc97) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `@angular/create` from `17.0.0-rc.4` to `17.0.1`
- [#4462](https://github.com/cloudflare/workers-sdk/pull/4462) [`144a431a`](https://github.com/cloudflare/workers-sdk/commit/144a431ad35fe6850817b385da318b4e43845dca) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-next-app` from `13.4.19` to `14.0.3`
* [#4292](https://github.com/cloudflare/workers-sdk/pull/4292) [`75c3d4a7`](https://github.com/cloudflare/workers-sdk/commit/75c3d4a789b8e0e682f708065bd4db5f04c7b725) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Only commit the changes if the repository was generated (directly or not) by C3
(This follows what CLI tools seems to generally do, avoids weird corner case
behaviors users might have for example when running C3 inside monorepos and avoids commits
when people don't want or expect them)
## 2.7.0
### Minor Changes
- [#4280](https://github.com/cloudflare/workers-sdk/pull/4280) [`a6cd9aff`](https://github.com/cloudflare/workers-sdk/commit/a6cd9aff92c636bdaa57f912868f328735e5686a) Thanks [@alan-agius4](https://github.com/alan-agius4)! - Update Angular template to use version 17
### Patch Changes
- [#4399](https://github.com/cloudflare/workers-sdk/pull/4399) [`789491bd`](https://github.com/cloudflare/workers-sdk/commit/789491bd1e5fd4f138036020e1af274884a29da0) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - ci: move the Angular framework out of the C3 e2e test quarantine.
* [#4242](https://github.com/cloudflare/workers-sdk/pull/4242) [`a1c9f43f`](https://github.com/cloudflare/workers-sdk/commit/a1c9f43f3e1f8ff1b781b9f524ebac82afce7563) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `nuxi` from `3.9.0` to `3.9.1`
- [#4275](https://github.com/cloudflare/workers-sdk/pull/4275) [`e4aff81a`](https://github.com/cloudflare/workers-sdk/commit/e4aff81a1289ba52ee4fc40f5ee2ee34a9da690a) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.3.0` to `4.4.1`
* [#4288](https://github.com/cloudflare/workers-sdk/pull/4288) [`b7d91bb5`](https://github.com/cloudflare/workers-sdk/commit/b7d91bb58cb977b7e4f7667c086bed4c20afca94) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.2.14` to `1.2.15`
- [#4313](https://github.com/cloudflare/workers-sdk/pull/4313) [`18612851`](https://github.com/cloudflare/workers-sdk/commit/18612851d6275f25be9faeed06bc2053d7b0d837) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `gatsby` from `5.12.8` to `5.12.9`
* [#4316](https://github.com/cloudflare/workers-sdk/pull/4316) [`3caa7860`](https://github.com/cloudflare/workers-sdk/commit/3caa7860b790d1e2f8c5af392a16cde3bb31ee09) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-remix` from `2.1.0` to `2.2.0`
- [#4317](https://github.com/cloudflare/workers-sdk/pull/4317) [`db8b5fe5`](https://github.com/cloudflare/workers-sdk/commit/db8b5fe51f0f75bdeb773cd161f190d653dff481) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-docusaurus` from `2.4.3` to `3.0.0`
* [#4334](https://github.com/cloudflare/workers-sdk/pull/4334) [`bde0a1bd`](https://github.com/cloudflare/workers-sdk/commit/bde0a1bd190a63adc1782cc62292b9f1f31bca4f) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.2.15` to `1.2.16`
- [#4335](https://github.com/cloudflare/workers-sdk/pull/4335) [`c1223c53`](https://github.com/cloudflare/workers-sdk/commit/c1223c53cd4824ab0346347746d43e3a27dfaed1) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-solid` from `0.3.8` to `0.3.9`
* [#4346](https://github.com/cloudflare/workers-sdk/pull/4346) [`71eff285`](https://github.com/cloudflare/workers-sdk/commit/71eff285ec4a8f831fe1b9b8aa05d2b3a1921d04) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.2.16` to `1.2.17`
- [#4431](https://github.com/cloudflare/workers-sdk/pull/4431) [`c0d70bf5`](https://github.com/cloudflare/workers-sdk/commit/c0d70bf55c7e358287b8eaff1ef5716744117efa) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.4.1` to `4.5.1`
* [#4311](https://github.com/cloudflare/workers-sdk/pull/4311) [`35be4594`](https://github.com/cloudflare/workers-sdk/commit/35be459486864cd4d6a7aea7d357ada04f17bb0d) Thanks [@jculvey](https://github.com/jculvey)! - Changes c3 to use `npx` for running framework creation tools when it is invoked with `yarn`. This is
needed since yarn can't `yarn create some-package@some-particular-version`.
- [#4226](https://github.com/cloudflare/workers-sdk/pull/4226) [`5810f815`](https://github.com/cloudflare/workers-sdk/commit/5810f8150eb775663177a43266233abac19e9781) Thanks [@jculvey](https://github.com/jculvey)! - Relax empty directory check. Directories containing certain common config files and/or files created by an ide will be exempt from the pre-flight check
* [#4249](https://github.com/cloudflare/workers-sdk/pull/4249) [`b18a2c0f`](https://github.com/cloudflare/workers-sdk/commit/b18a2c0f3b88b5ce986f8c134cfe6df4603b343d) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - correct error message for unrecognized application type
- [#4403](https://github.com/cloudflare/workers-sdk/pull/4403) [`cb8ec90e`](https://github.com/cloudflare/workers-sdk/commit/cb8ec90e96a9fcf05ae0276258a9e19d656b9def) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - test: fix C3 e2e tests for Angular
* [#4249](https://github.com/cloudflare/workers-sdk/pull/4249) [`b18a2c0f`](https://github.com/cloudflare/workers-sdk/commit/b18a2c0f3b88b5ce986f8c134cfe6df4603b343d) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - improve help message by adding more detailed descriptions about the various CLI options
also let the user know that more information is available in the Cloudflare docs
- [#4339](https://github.com/cloudflare/workers-sdk/pull/4339) [`33bd75dc`](https://github.com/cloudflare/workers-sdk/commit/33bd75dc14695791d94deda36bb9f44c06d56c8e) Thanks [@alan-agius4](https://github.com/alan-agius4)! - Remove redundant polyfills from the Angular template
* [#4279](https://github.com/cloudflare/workers-sdk/pull/4279) [`2526794f`](https://github.com/cloudflare/workers-sdk/commit/2526794f214e730f7f88a8146ef24f50c2caf8f6) Thanks [@dnasdw](https://github.com/dnasdw)! - fix: use a valid compatibility date for the scheduled worker ts template
## 2.6.2
### Patch Changes
- [#4243](https://github.com/cloudflare/workers-sdk/pull/4243) [`bfb66aa0`](https://github.com/cloudflare/workers-sdk/commit/bfb66aa06c4075bb3f12ba702a555f51653a5199) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-vue` from `3.7.5` to `3.8.0`
* [#4244](https://github.com/cloudflare/workers-sdk/pull/4244) [`5c81d34d`](https://github.com/cloudflare/workers-sdk/commit/5c81d34d01454e129ca6587b6b99d6ea4ec9c870) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.2.13` to `1.2.14`
- [#4246](https://github.com/cloudflare/workers-sdk/pull/4246) [`67c4c2c0`](https://github.com/cloudflare/workers-sdk/commit/67c4c2c0f581047fece5401d5ccfff5f2476412e) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `gatsby` from `5.12.7` to `5.12.8`
* [#4259](https://github.com/cloudflare/workers-sdk/pull/4259) [`b5e62b93`](https://github.com/cloudflare/workers-sdk/commit/b5e62b931ad6671e4dce9444a279bb3ec8f63991) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-hono` from `0.3.1` to `0.3.2`
- [#4268](https://github.com/cloudflare/workers-sdk/pull/4268) [`77820a22`](https://github.com/cloudflare/workers-sdk/commit/77820a22ce8c41870877387ff4012fa24a14fad8) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-solid` from `0.3.7` to `0.3.8`
* [#4215](https://github.com/cloudflare/workers-sdk/pull/4215) [`950bc401`](https://github.com/cloudflare/workers-sdk/commit/950bc4015fa408bfcd4fbf771cf1c3a062783d96) Thanks [@RamIdeas](https://github.com/RamIdeas)! - fix various logging of shell commands to correctly quote args when needed
- [#4189](https://github.com/cloudflare/workers-sdk/pull/4189) [`05798038`](https://github.com/cloudflare/workers-sdk/commit/05798038c85a83afb2c0e8ea9533c31a6fbe3e91) Thanks [@gabivlj](https://github.com/gabivlj)! - Move helper cli files of C3 into @cloudflare/cli and make Wrangler and C3 depend on it
* [#4200](https://github.com/cloudflare/workers-sdk/pull/4200) [`773e2a8c`](https://github.com/cloudflare/workers-sdk/commit/773e2a8cc07a6ff55a5a12edd103751eafcc9468) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix the generation of invalid/incorrect scripts for Next.js applications
## 2.6.1
### Patch Changes
- [#4213](https://github.com/cloudflare/workers-sdk/pull/4213) [`039acfd4`](https://github.com/cloudflare/workers-sdk/commit/039acfd4a35ce04105c26e8767320e7235921ff3) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-solid` from `0.3.6` to `0.3.7`
* [#4217](https://github.com/cloudflare/workers-sdk/pull/4217) [`b9687231`](https://github.com/cloudflare/workers-sdk/commit/b96872319bf59615f63276a60ec352113cb85455) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.2.1` to `4.3.0`
- [#4190](https://github.com/cloudflare/workers-sdk/pull/4190) [`c2457cb4`](https://github.com/cloudflare/workers-sdk/commit/c2457cb484f9e09752403116f137ab1bc40ae322) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Set the proper compatibility date for web applications (instead of using the current date)
* [#4216](https://github.com/cloudflare/workers-sdk/pull/4216) [`17c59f29`](https://github.com/cloudflare/workers-sdk/commit/17c59f2905d774418a496b290f024eb52e7031de) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - amend summary showing incorrect cd instruction for projects in nested paths
- [#4220](https://github.com/cloudflare/workers-sdk/pull/4220) [`2b4d9def`](https://github.com/cloudflare/workers-sdk/commit/2b4d9def1bd33f38b5c03a8c99c8f7a1879082da) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - don't retry the project creation multiple times when it fails because the project's name is already used
## 2.6.0
### Minor Changes
- [#4116](https://github.com/cloudflare/workers-sdk/pull/4116) [`5ff0ca02`](https://github.com/cloudflare/workers-sdk/commit/5ff0ca021de83add9f9e90ab71758f46311ebd65) Thanks [@jculvey](https://github.com/jculvey)! - Replaces the "prestart" and "predeploy" scripts when using Angular to better support pnpm
### Patch Changes
- [#4099](https://github.com/cloudflare/workers-sdk/pull/4099) [`4deda525`](https://github.com/cloudflare/workers-sdk/commit/4deda525ebd4a9fa65a4a1e827cfcd2fc2add592) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `gatsby` from `5.12.4` to `5.12.5`
* [#4141](https://github.com/cloudflare/workers-sdk/pull/4141) [`9b2578aa`](https://github.com/cloudflare/workers-sdk/commit/9b2578aacb50c2be30852881cd4eb740d0b436c3) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-svelte` from `5.1.0` to `5.1.1`
- [#4184](https://github.com/cloudflare/workers-sdk/pull/4184) [`616b6610`](https://github.com/cloudflare/workers-sdk/commit/616b6610ed25689c093c466b28516a9802a301dd) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-hono` from `0.2.6` to `0.3.1`
* [#4191](https://github.com/cloudflare/workers-sdk/pull/4191) [`4b70c88c`](https://github.com/cloudflare/workers-sdk/commit/4b70c88cf59108ad98eeb021890485a88ddb10f8) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-remix` from `2.0.1` to `2.1.0`
- [#4197](https://github.com/cloudflare/workers-sdk/pull/4197) [`9095c6ac`](https://github.com/cloudflare/workers-sdk/commit/9095c6acdaab61899286e3b136efd5b21dcc2723) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `gatsby` from `5.12.5` to `5.12.7`
* [#4177](https://github.com/cloudflare/workers-sdk/pull/4177) [`2162501a`](https://github.com/cloudflare/workers-sdk/commit/2162501a0aac1ae5800c8e022568fc357a8c7ff6) Thanks [@jculvey](https://github.com/jculvey)! - Relax name validation for projects created with `--existing-script` flag
## 2.5.0
### Minor Changes
- [#4136](https://github.com/cloudflare/workers-sdk/pull/4136) [`0f043a12`](https://github.com/cloudflare/workers-sdk/commit/0f043a126e5499bc1fcfd09782369264e4246317) Thanks [@jculvey](https://github.com/jculvey)! - Fixes an issue that was causing the auto-update check not to run
### Patch Changes
- [#4128](https://github.com/cloudflare/workers-sdk/pull/4128) [`696d7f29`](https://github.com/cloudflare/workers-sdk/commit/696d7f29c6c8cb516164de8da35400ac7bca0694) Thanks [@jculvey](https://github.com/jculvey)! - Verify that project names are valid for pages projects
## 2.4.1
### Patch Changes
- [#4125](https://github.com/cloudflare/workers-sdk/pull/4125) [`d0e8e380`](https://github.com/cloudflare/workers-sdk/commit/d0e8e38035b7d65f99834700426d95dd88d54085) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.2.12` to `1.2.13`
* [#4152](https://github.com/cloudflare/workers-sdk/pull/4152) [`acf3b64b`](https://github.com/cloudflare/workers-sdk/commit/acf3b64b4757325ffb9298bfd5ff3cf0b87bcb19) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix incorrect service example in worker template toml files
- [#4119](https://github.com/cloudflare/workers-sdk/pull/4119) [`64c3ec15`](https://github.com/cloudflare/workers-sdk/commit/64c3ec15f71271395982746b173ddb5c17a3de0b) Thanks [@jculvey](https://github.com/jculvey)! - Don't prompt the user to use git if `user.name` and `user.email` haven't been configured
## 2.4.0
### Minor Changes
- [#4063](https://github.com/cloudflare/workers-sdk/pull/4063) [`cb4309f9`](https://github.com/cloudflare/workers-sdk/commit/cb4309f90b433fb7b6f81279878bca11fe2a6937) Thanks [@jculvey](https://github.com/jculvey)! - Bump supported node version to 18.14.1
We've recently switched out testing infrastructure to test C3 on node version 18.14.1.
As of earlier this month, Node v16 is no longer supported, and many of the underlying
framework scaffolding tools that C3 uses (ex. `create-astro`, `gatsby`) have dropped
support for node v16, which in turn causes C3 to fail for those frameworks.
* [#4065](https://github.com/cloudflare/workers-sdk/pull/4065) [`55298d9f`](https://github.com/cloudflare/workers-sdk/commit/55298d9f3ffc177cc390cd5e9ccc713261933585) Thanks [@jculvey](https://github.com/jculvey)! - Add support for bun
### Patch Changes
- [#3991](https://github.com/cloudflare/workers-sdk/pull/3991) [`80f78dad`](https://github.com/cloudflare/workers-sdk/commit/80f78dad4652cb9c6807c5144c4c32324f0c15e6) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.1.0` to `4.2.0`
* [#4002](https://github.com/cloudflare/workers-sdk/pull/4002) [`8ee46b06`](https://github.com/cloudflare/workers-sdk/commit/8ee46b063cab7a585074413b2c38a58a4e2f4eff) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-docusaurus` from `2.4.1` to `2.4.3`
- [#4012](https://github.com/cloudflare/workers-sdk/pull/4012) [`a21acf82`](https://github.com/cloudflare/workers-sdk/commit/a21acf8217fa2eff57cffb6753865a37386b5f13) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-solid` from `0.2.26` to `0.3.6`
* [#4091](https://github.com/cloudflare/workers-sdk/pull/4091) [`a9cb8c60`](https://github.com/cloudflare/workers-sdk/commit/a9cb8c608f2594170e92a0f49c3f85def4edf03c) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-svelte` from `5.0.6` to `5.1.0`
- [#4100](https://github.com/cloudflare/workers-sdk/pull/4100) [`866c7833`](https://github.com/cloudflare/workers-sdk/commit/866c7833ec091825a4916bd6dfbcbc04d8c0bafe) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-remix` from `2.0.0` to `2.0.1`
* [#4103](https://github.com/cloudflare/workers-sdk/pull/4103) [`f79cf89a`](https://github.com/cloudflare/workers-sdk/commit/f79cf89aeefb072dde5fc1ada24001af74fa363b) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.2.0` to `4.2.1`
- [#4088](https://github.com/cloudflare/workers-sdk/pull/4088) [`35165a26`](https://github.com/cloudflare/workers-sdk/commit/35165a26d9e1eda1f049d5a5b5a1cb2cd1e09c9f) Thanks [@jculvey](https://github.com/jculvey)! - Fixes an issue where users were prompted for TypeScript twice during worker creation
* [#4087](https://github.com/cloudflare/workers-sdk/pull/4087) [`57e9f218`](https://github.com/cloudflare/workers-sdk/commit/57e9f218ae3ce11736d4ff6a09e05a6662ce13c5) Thanks [@jculvey](https://github.com/jculvey)! - Fixes an issue where exiting early from c3 would cause the terminal cursor to be hidden
- [#3754](https://github.com/cloudflare/workers-sdk/pull/3754) [`811730d8`](https://github.com/cloudflare/workers-sdk/commit/811730d85066904e5ca9161900577342d59ec851) Thanks [@RamIdeas](https://github.com/RamIdeas)! - .gitignore files were not included in our templates due to npm/npm#3763
we now workaround this issue and ensure C3 templates include a .gitignore file
* [#4062](https://github.com/cloudflare/workers-sdk/pull/4062) [`02359bc5`](https://github.com/cloudflare/workers-sdk/commit/02359bc50353cbf698de193d56360b6dfc151ad0) Thanks [@jculvey](https://github.com/jculvey)! - Defaults the project type to `Web Framework`. The previous default was `"Hello World" worker`
- [#4030](https://github.com/cloudflare/workers-sdk/pull/4030) [`dba26262`](https://github.com/cloudflare/workers-sdk/commit/dba26262c72b4654c3c0799f975bcd8ff9210082) Thanks [@admah](https://github.com/admah)! - Fixes Workers templates to have a `dev` command in package.json to match comments in `index` files.
* [#3916](https://github.com/cloudflare/workers-sdk/pull/3916) [`15d75e50`](https://github.com/cloudflare/workers-sdk/commit/15d75e50bd9b8ce5837b390f8c2ce39eea446a7e) Thanks [@admah](https://github.com/admah)! - fix: update the main file in the c3 scheduled js template to index.js.
## 2.3.1
### Patch Changes
- [#4001](https://github.com/cloudflare/workers-sdk/pull/4001) [`fd39ae64`](https://github.com/cloudflare/workers-sdk/commit/fd39ae649dc0658de4cfd3eac6dcfc6b4ab6205a) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `nuxi` from `3.8.4` to `3.9.0`
## 2.3.0
### Minor Changes
- [#3887](https://github.com/cloudflare/workers-sdk/pull/3887) [`765ebc1c`](https://github.com/cloudflare/workers-sdk/commit/765ebc1ce293315345c0ccfee808cbc25262b2ed) Thanks [@G4brym](https://github.com/G4brym)! - Add OpenAPI 3.1 template project
* [#3888](https://github.com/cloudflare/workers-sdk/pull/3888) [`7310add1`](https://github.com/cloudflare/workers-sdk/commit/7310add1bb43c72f7b88cce7ed357fa5c11c6f75) Thanks [@G4brym](https://github.com/G4brym)! - Bump chatgptPlugin template itty-router-openapi version
### Patch Changes
- [#3970](https://github.com/cloudflare/workers-sdk/pull/3970) [`0a8d97c7`](https://github.com/cloudflare/workers-sdk/commit/0a8d97c7c6518b7a731197033762b1eeb542d4f7) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.0.1` to `4.1.0`
* [#3971](https://github.com/cloudflare/workers-sdk/pull/3971) [`1723d3e6`](https://github.com/cloudflare/workers-sdk/commit/1723d3e63f593b909cc253a4415a5e06d8c1162d) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-svelte` from `4.2.0` to `5.0.6`
- [#3972](https://github.com/cloudflare/workers-sdk/pull/3972) [`dac69503`](https://github.com/cloudflare/workers-sdk/commit/dac69503b998d0f3811f06d4e9bdf871865496e4) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-remix` from `1.19.3` to `2.0.0`
* [#3973](https://github.com/cloudflare/workers-sdk/pull/3973) [`324907ac`](https://github.com/cloudflare/workers-sdk/commit/324907acbbc4b82e717681c9d447c9ee2f4f3bfc) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `nuxi` from `3.6.5` to `3.8.4`
- [#3980](https://github.com/cloudflare/workers-sdk/pull/3980) [`1354ab36`](https://github.com/cloudflare/workers-sdk/commit/1354ab365f96b3b16e57d4496014f42bba3c1aa6) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-astro` from `4.0.1` to `4.1.0`
* [#3987](https://github.com/cloudflare/workers-sdk/pull/3987) [`fe227900`](https://github.com/cloudflare/workers-sdk/commit/fe227900955f866def9c3d0dcf51de56a99151ea) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-vue` from `3.6.4` to `3.7.5`
- [#3988](https://github.com/cloudflare/workers-sdk/pull/3988) [`d8833eff`](https://github.com/cloudflare/workers-sdk/commit/d8833eff9779c4d7d0f653666303b8951ef6aaed) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `gatsby` from `5.11.0` to `5.12.4`
* [#3990](https://github.com/cloudflare/workers-sdk/pull/3990) [`07b57803`](https://github.com/cloudflare/workers-sdk/commit/07b57803193232254be5c576ad06dbc7a4407744) Thanks [@dependabot](https://github.com/apps/dependabot)! - C3: Bumped `create-qwik` from `1.2.7` to `1.2.12`
## 2.2.3
### Patch Changes
- [#3935](https://github.com/cloudflare/workers-sdk/pull/3935) [`bdb39edc`](https://github.com/cloudflare/workers-sdk/commit/bdb39edc4d072309794786c79005bdd59559053d) Thanks [@IgorMinar](https://github.com/IgorMinar)! - fix: remove unused env variable from sveltekit project template
## 2.2.2
### Patch Changes
- [#3880](https://github.com/cloudflare/workers-sdk/pull/3880) [`c6c435eb`](https://github.com/cloudflare/workers-sdk/commit/c6c435ebe8984590b1800ac7acf4fec9f7538373) Thanks [@admah](https://github.com/admah)! - Update Worker templates from worker.{ts,js} to index.{ts,js} to better align with docs and examples
## 2.2.1
### Patch Changes
- [#3841](https://github.com/cloudflare/workers-sdk/pull/3841) [`81c45b98`](https://github.com/cloudflare/workers-sdk/commit/81c45b988a2f772279bc5f37dba6b8cb83afef36) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Fail and display the help message if an unrecognized argument is passed to C3
## 2.2.0
### Minor Changes
- [#3776](https://github.com/cloudflare/workers-sdk/pull/3776) [`83e526b3`](https://github.com/cloudflare/workers-sdk/commit/83e526b3c9ea53b8cfbba5ab222613bf21c1db79) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - add final commit when generating Pages projects
before after the user would have completed the creation of a Pages project
they would find the Cloudflare added/modified files uncommitted, instead of
leaving these uncommitted this change adds an extra commit (on top of the
framework specific) which also contains some useful information about the
project
* [#3803](https://github.com/cloudflare/workers-sdk/pull/3803) [`9156994e`](https://github.com/cloudflare/workers-sdk/commit/9156994e1b1dccccc0dde8b6eba01a5a241f9511) Thanks [@jculvey](https://github.com/jculvey)! - C3: Checks for a newer version of create-cloudflare and uses it if available. This behavior can be suppressed with the --no-auto-update flag.
### Patch Changes
- [#3807](https://github.com/cloudflare/workers-sdk/pull/3807) [`fac199ba`](https://github.com/cloudflare/workers-sdk/commit/fac199ba0c3bee758ac13fa8e6133c19f4af845d) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - adjusted arguments passing so that arguments following an extra `--` are
passed to the underlying cli (if any)
For example:
```
$ npm create cloudflare -- --framework=X -- -a -b
```
now will run the framework X's cli with the `-a` and `-b` arguments
(such arguments will be completely ignored by C3)
* [#3822](https://github.com/cloudflare/workers-sdk/pull/3822) [`3db34519`](https://github.com/cloudflare/workers-sdk/commit/3db3451988988c0af82023cc53975bbaef14ac8a) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - update the frameworks' cli versions used in C3
- `@angular/cli` from 16.1.x to 16.2.0
- `create-next-app` from 13.4.2 to 13.4.19
- `create-remix` from 1.16.0 to 1.19.3
- `gatsby` from 5.10.0 to 5.11.0
- `nuxi` from 3.4.2 to 3.6.5
## 2.1.1
### Patch Changes
- [#3729](https://github.com/cloudflare/workers-sdk/pull/3729) [`9d8509e0`](https://github.com/cloudflare/workers-sdk/commit/9d8509e08acf082604ca896b4ab9ad5c05ae7505) Thanks [@jculvey](https://github.com/jculvey)! - Improve experience for WARP users by improving the reliability of the polling logic that waits for newly created apps to become available.
* [#3552](https://github.com/cloudflare/workers-sdk/pull/3552) [`77a43d2a`](https://github.com/cloudflare/workers-sdk/commit/77a43d2aa3633fc53be6fe365271d6fb59f44bd6) Thanks [@yusukebe](https://github.com/yusukebe)! - fix: use workers template for Hono
Use a workers template instead of a pages template for `create-hono`.
## 2.1.0
### Minor Changes
- [#3604](https://github.com/cloudflare/workers-sdk/pull/3604) [`c3ff1c2b`](https://github.com/cloudflare/workers-sdk/commit/c3ff1c2b599c99f4915dad0362c7570cc2fa2bf3) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - Add the option to add the `eslint-plugin-next-on-pages` eslint plugin
to developers creating a new Next.js app with eslint enabled
## 2.0.14
### Patch Changes
- [#3644](https://github.com/cloudflare/workers-sdk/pull/3644) [`775eb3bd`](https://github.com/cloudflare/workers-sdk/commit/775eb3bd32611d339ec4071c3d523d1d15bc7e30) Thanks [@jculvey](https://github.com/jculvey)! - Detect production branch when creating pages project
* [#3600](https://github.com/cloudflare/workers-sdk/pull/3600) [`3f7d6e7d`](https://github.com/cloudflare/workers-sdk/commit/3f7d6e7d654ea8958c6c2e0e78da4c5e4a78d2d5) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - improve the Nuxt deployment script so that it ships full stack applications (instead of server-side generated ones)
as part of this change update the Nuxt build script to include the `NITRO_PRESET` env variable set to `cloudflare-pages` (needed to build Pages compatible applications)
also write a .node-version file with the node version (so that it can properly working with the Pages CI)
## 2.0.13
### Patch Changes
- [#3609](https://github.com/cloudflare/workers-sdk/pull/3609) [`be3a43ff`](https://github.com/cloudflare/workers-sdk/commit/be3a43ff9d96785e379e8e6bcb72b332519216b0) Thanks [@admah](https://github.com/admah)! - Removes all typescript dependencies from javascript templates.
* [#3601](https://github.com/cloudflare/workers-sdk/pull/3601) [`e4ef867c`](https://github.com/cloudflare/workers-sdk/commit/e4ef867cc973d89eeee336ac4c4af62f905ae765) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - remove extra build added by mistake in solid deploy script
## 2.0.12
### Patch Changes
- [#3525](https://github.com/cloudflare/workers-sdk/pull/3525) [`1ce32968`](https://github.com/cloudflare/workers-sdk/commit/1ce32968b990fef59953b8cd61172b98fb2386e5) Thanks [@jculvey](https://github.com/jculvey)! - C3: Infer missing --type argument from --framework or --existing-script
* [#3580](https://github.com/cloudflare/workers-sdk/pull/3580) [`a7c1dd5b`](https://github.com/cloudflare/workers-sdk/commit/a7c1dd5b6c3a84b5ee4767935a2ca1820d28528e) Thanks [@jculvey](https://github.com/jculvey)! - C3: Prompt user to change directory in summary steps
- [#3551](https://github.com/cloudflare/workers-sdk/pull/3551) [`137e174d`](https://github.com/cloudflare/workers-sdk/commit/137e174d79e7c5779c24de904d3cd958587a87c7) Thanks [@yusukebe](https://github.com/yusukebe)! - fix: bump up `create-hono` version
Bump up `create-hono` version to latest v0.2.6 for C3.
## 2.0.11
### Patch Changes
- [#3465](https://github.com/cloudflare/workers-sdk/pull/3465) [`528cc0fc`](https://github.com/cloudflare/workers-sdk/commit/528cc0fc583e9672247d5934c8b33afebbb834e7) Thanks [@jculvey](https://github.com/jculvey)! - Improvements to the project name selection prompt.
* [#3500](https://github.com/cloudflare/workers-sdk/pull/3500) [`c43fc4e8`](https://github.com/cloudflare/workers-sdk/commit/c43fc4e826eeca8a92c6749485eb3b8b47c4a818) Thanks [@jculvey](https://github.com/jculvey)! - Fix the output of the --version flag
- [#3343](https://github.com/cloudflare/workers-sdk/pull/3343) [`cc9ced83`](https://github.com/cloudflare/workers-sdk/commit/cc9ced83bc9f996b0380d46859990780e574884c) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: use a valid compatibility date for worker templates
Previously, we changed wrangler.toml to use the current date for the
compatibility_date setting in wrangler.toml when generating workers.
But this is almost always going to be too recent and results in a warning.
Now we look up the most recent compatibility date via npm on the workerd
package and use that instead.
Fixes https://github.com/cloudflare/workers-sdk/issues/2385
* [#3516](https://github.com/cloudflare/workers-sdk/pull/3516) [`941764d0`](https://github.com/cloudflare/workers-sdk/commit/941764d0a2003ec8108ba75efe25978b000f637c) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: ensure the Angular fetch handler returns a "real" promise to Cloudflare
Angular employs the Zone.js library to patch potentially async operations so that
it can trigger change detection reliably. But in order to do this, it swaps out
the native `Promise` with a `ZoneAwarePromise` class.
The Cloudflare runtime (i.e. workerd) does runtime checks on the value returned
from the `fetch()` handler, expecting it to be a native `Promise` and fails if not.
This fix ensures that the actual object returned from the `fetch()` is actually a
native `Promise`. We don't need to stop Angular using `ZoneAwarePromises` elsewhere.
- [#3486](https://github.com/cloudflare/workers-sdk/pull/3486) [`436f752d`](https://github.com/cloudflare/workers-sdk/commit/436f752d77b12b81d91341185fc9229f25571a69) Thanks [@Cherry](https://github.com/Cherry)! - fix: use wrangler deploy command for deploying applications instead of the deprecated wrangler publish
## 2.0.10
### Patch Changes
- [#3345](https://github.com/cloudflare/workers-sdk/pull/3345) [`42f7eb81`](https://github.com/cloudflare/workers-sdk/commit/42f7eb815ea273ab6370dadf423c0cf79cc20aa8) Thanks [@jculvey](https://github.com/jculvey)! - Use `pnpm dlx` instead of `pnpx` for versions of pnpm that support it
* [#3435](https://github.com/cloudflare/workers-sdk/pull/3435) [`23be8025`](https://github.com/cloudflare/workers-sdk/commit/23be8025f5812f12a69270d44deff60f4bd33ae0) Thanks [@sdnts](https://github.com/sdnts)! - Updated wrangler.toml for Workers projects generated by create-cloudflare
- [#3496](https://github.com/cloudflare/workers-sdk/pull/3496) [`91135e02`](https://github.com/cloudflare/workers-sdk/commit/91135e02cc97d11a6762c05e788c705697c477cb) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: ensure that default project name can be used
If you hit enter when asked for the name of the project, you expect it
to use the default value. But the project name validation was then failing
as it was receiving undefined for the value of the input rather than the
default value.
Now the validator will be passed the default if no value was provided.
* [#3474](https://github.com/cloudflare/workers-sdk/pull/3474) [`a72dc0a1`](https://github.com/cloudflare/workers-sdk/commit/a72dc0a16577558e599ea9ced7fa39cd952c2b78) Thanks [@elithrar](https://github.com/elithrar)! - Add new Queues and Scheduled (Cron Trigger) Worker templates.
- [#3446](https://github.com/cloudflare/workers-sdk/pull/3446) [`ca0bd174`](https://github.com/cloudflare/workers-sdk/commit/ca0bd174c4e56e0d33c88c0b9bdba9489b2c78eb) Thanks [@admah](https://github.com/admah)! - refactor: rename `simple` template to `hello-world` in create-cloudflare package
This change describes the "hello-world" template more accurately.
Also, new e2e tests have been added to validate that Workers templates are created correctly.
* [#3359](https://github.com/cloudflare/workers-sdk/pull/3359) [`5eef992f`](https://github.com/cloudflare/workers-sdk/commit/5eef992f2c9f71a4c9d5e0cc2820aad24b7ef382) Thanks [@RamIdeas](https://github.com/RamIdeas)! - `wrangler init ... -y` now delegates to C3 without prompts (respects the `-y` flag)
## 2.0.9
### Patch Changes
- [#3245](https://github.com/cloudflare/workers-sdk/pull/3245) [`4082cfcb`](https://github.com/cloudflare/workers-sdk/commit/4082cfcbdf08740d4a608d3d87df22e51ad0ce4a) Thanks [@james-elicx](https://github.com/james-elicx)! - Support for setting compatibility flags for each framework when creating a new pages project.
* [#3295](https://github.com/cloudflare/workers-sdk/pull/3295) [`2dc55daf`](https://github.com/cloudflare/workers-sdk/commit/2dc55dafaac1d42a6ec5a2cd90942f9a168b9f40) Thanks [@Cherry](https://github.com/Cherry)! - fix: use tabs by default in prettier configs
- [#3245](https://github.com/cloudflare/workers-sdk/pull/3245) [`4082cfcb`](https://github.com/cloudflare/workers-sdk/commit/4082cfcbdf08740d4a608d3d87df22e51ad0ce4a) Thanks [@james-elicx](https://github.com/james-elicx)! - Fix support for creating API route handlers in the Next.js template when using the app directory.
## 2.0.8
### Patch Changes
- [#3260](https://github.com/cloudflare/workers-sdk/pull/3260) [`7249f344`](https://github.com/cloudflare/workers-sdk/commit/7249f344109fe1a8f67859e9aff227c7951bc6b9) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: add polling for deployed Pages projects
When create-cloudflare deploys to Pages, it can take a while before the website is ready to be viewed.
This change adds back in polling of the site and then opening a browser when the URL is ready.
* [#3272](https://github.com/cloudflare/workers-sdk/pull/3272) [`57f80551`](https://github.com/cloudflare/workers-sdk/commit/57f80551961c2f67bf057591518d573f71a51c8f) Thanks [@markdalgleish](https://github.com/markdalgleish)! - Use full Remix template URL rather than the `cloudflare-pages` shorthand since it will be removed in a future version of `create-remix`
- [#3291](https://github.com/cloudflare/workers-sdk/pull/3291) [`c1be44c8`](https://github.com/cloudflare/workers-sdk/commit/c1be44c8ef64f18dbd65a2399e845d3df1d0c1f2) Thanks [@Cherry](https://github.com/Cherry)! - fix: specify correct startup command in logs for newly created c3 projects
## 2.0.7
### Patch Changes
- [#3283](https://github.com/cloudflare/workers-sdk/pull/3283) [`74decfa7`](https://github.com/cloudflare/workers-sdk/commit/74decfa768b7a8ba0f04cf6f437ef075629fb6a7) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: Use correct path to worker source in wrangler.toml of JavaScript simple template
## 2.0.6
### Patch Changes
- [#3273](https://github.com/cloudflare/workers-sdk/pull/3273) [`20479027`](https://github.com/cloudflare/workers-sdk/commit/204790272a813a511837a660d3d3143d8996f641) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: support spawning new processes on Windows
* [#3282](https://github.com/cloudflare/workers-sdk/pull/3282) [`e9210590`](https://github.com/cloudflare/workers-sdk/commit/e9210590d3406fe899170542b67286b2ae299fe9) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: ensure templates are included in deployed package
## 2.0.5
### Patch Changes
- [#3267](https://github.com/cloudflare/workers-sdk/pull/3267) [`186eed94`](https://github.com/cloudflare/workers-sdk/commit/186eed94050d2224eb70799b2d2611d9dba91515) Thanks [@KianNH](https://github.com/KianNH)! - [C3] Fix Worker path in JavaScript template
## 2.0.3
### Patch Changes
- [#3247](https://github.com/cloudflare/workers-sdk/pull/3247) [`db9f0e92`](https://github.com/cloudflare/workers-sdk/commit/db9f0e92b39cfe0377c3c624a84a1db1385afb1a) Thanks [@eneajaho](https://github.com/eneajaho)! - Update versionMap.json to include angular @16.0.x rather than @next
* [#3242](https://github.com/cloudflare/workers-sdk/pull/3242) [`739bd656`](https://github.com/cloudflare/workers-sdk/commit/739bd65624386dcf020c07190e8427b59a9e6229) Thanks [@petebacondarwin](https://github.com/petebacondarwin)! - fix: correctly format the compatibility_date field in generated wrangler.toml
Fixes #3240
- [#3253](https://github.com/cloudflare/workers-sdk/pull/3253) [`7cefb4db`](https://github.com/cloudflare/workers-sdk/commit/7cefb4dbe7d0c6117401fd0e182e112f94f566a7) Thanks [@sidharthachatterjee](https://github.com/sidharthachatterjee)! - use wrangler@3 as devDep in C3 worker templates
## 2.0.2
### Patch Changes
- [#3238](https://github.com/cloudflare/workers-sdk/pull/3238) [`9973ea29`](https://github.com/cloudflare/workers-sdk/commit/9973ea2953873c1d9d1822dfc35fd04bc321677a) Thanks [@jculvey](https://github.com/jculvey)! - Bumping version of qwik to 1.1.x