diff --git a/.changeset/curvy-dolls-hammer.md b/.changeset/curvy-dolls-hammer.md deleted file mode 100644 index 319d323065..0000000000 --- a/.changeset/curvy-dolls-hammer.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"create-t3-app": minor ---- - -feat: Added JsonProtocol as the Default Prisma Engine for Serverless speedups - -modified: - - - cli/template/extras/prisma/schema/base.prisma - - - cli/template/extras/prisma/schema/with-auth.prisma - -Description: This pull request proposes the enabling of the JsonProtocol by default. The rationale for this change is based on the performance improvements provided by the JsonProtocol without compromising stability, even though it is still a preview feature. Empirical evidence gathered from large-scale projects, with 100+ Prisma calls, demonstrates the significant time reductions enabled by this optimization, particularly in serverless environments such as Vercel. Another point worth adding is that most projects using nextJS create-t3-app will be deployed on serverless platforms such as vercel, where the real impact is. diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 941bdec4e0..25e060dcd8 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 7.13.0 + +### Minor Changes + +- [#1397](https://github.com/t3-oss/create-t3-app/pull/1397) [`be9a834`](https://github.com/t3-oss/create-t3-app/commit/be9a83483339f8bb799be7a3d69cf67e64882daf) Thanks [@brieyla1](https://github.com/brieyla1)! - feat: Added JsonProtocol as the Default Prisma Engine for Serverless speedups + + modified: + + - cli/template/extras/prisma/schema/base.prisma + + - cli/template/extras/prisma/schema/with-auth.prisma + + Description: This pull request proposes the enabling of the JsonProtocol by default. The rationale for this change is based on the performance improvements provided by the JsonProtocol without compromising stability, even though it is still a preview feature. Empirical evidence gathered from large-scale projects, with 100+ Prisma calls, demonstrates the significant time reductions enabled by this optimization, particularly in serverless environments such as Vercel. Another point worth adding is that most projects using nextJS create-t3-app will be deployed on serverless platforms such as vercel, where the real impact is. + ## 7.12.3 ### Patch Changes diff --git a/cli/package.json b/cli/package.json index 8145e8b42a..7337c3d5b5 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "create-t3-app", - "version": "7.12.3", + "version": "7.13.0", "description": "Create web application with the t3 stack", "license": "MIT", "repository": {