Releases: t3-oss/create-t3-app
Releases · t3-oss/create-t3-app
[email protected]
Patch Changes
- #1564
58ee08e
Thanks @juliusmarminge! - fix: block drizzle apps when the example database url hasn't been changed yet
[email protected]
[email protected]
Minor Changes
-
#1461
8034db0
Thanks @juliusmarminge! - feat: add drizzleThis release adds a new option to use
drizzle-orm
as an alternative to Prisma.To make the different ORM options as similar as possible, some minor changes has also been made to the Prisma installer:
- a new script
db:push
has been added and is included in both ORM options. - the prisma client has been renamed to
db
in the trpc context - you now access your database client likeexamples: publicProcedure.query((opts) => { // prisma opts.ctx.db.example.findMany() // drizzle opts.ctx.db.query.example.findMany() }),
You cannot choose the two options in the same app.
- a new script
Patch Changes
- #1461
8034db0
Thanks @juliusmarminge! - refactor: swap inquirer for clack
[email protected]
[email protected]
Minor Changes
-
#1532
941a0fc
Thanks @spicybackend! - chore(deps): upgrade Prisma to v5.1.1, bump patch versions of other dependencies -
#1507
fe5755c
Thanks @LevinUncu! - If the project is not in a Git repo, the next steps will show git init instead of git commit -m "initial commit".
[email protected]
Minor Changes
- #1523
c441a9e
Thanks @JoshuaKGoldberg! - reduced stylistic linting
[email protected]
[email protected]
[email protected]
Patch Changes
- #1479
bb7324c
Thanks @c-ehrlich! - use custom error class for IsTTYError
[email protected]
Minor Changes
- #1466
e8b68d9
Thanks @brunoeduardodev! - Ignore trailing slashes when prompting the app name.