|
1 | 1 | # create-cloudflare |
2 | 2 |
|
| 3 | +## 2.38.2 |
| 4 | + |
| 5 | +### Patch Changes |
| 6 | + |
| 7 | +- [#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 |
| 8 | + |
| 9 | + The following dependency versions have been updated: |
| 10 | + |
| 11 | + | Dependency | From | To | |
| 12 | + | ---------- | ------ | ------ | |
| 13 | + | create-vue | 3.14.0 | 3.14.2 | |
| 14 | + |
| 15 | +- [#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/[email protected]` |
| 16 | + |
| 17 | +- [#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 |
| 18 | + |
| 19 | + This change removes a set of flags that get passed to `create-next-app` that force the generated Next.js |
| 20 | + application to have specific settings (e.g. typescript, tailwind, src directory, etc...) which are not |
| 21 | + actually mandatory/recommended for the use of the open-next Cloudflare adapter |
| 22 | + |
| 23 | +- [#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. |
| 24 | + |
| 25 | +- [#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" |
| 26 | + |
| 27 | + 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 |
| 28 | + `while` loops), the current process will continue running until all those tasks are run to completion, and the queues are empty. |
| 29 | + |
| 30 | + 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. |
| 31 | + |
3 | 32 | ## 2.38.1 |
4 | 33 |
|
5 | 34 | ### Patch Changes |
|
0 commit comments