Skip to content

Releases: t3-oss/create-t3-app

[email protected]

11 Sep 18:49
985e10b
Compare
Choose a tag to compare

Minor Changes

  • #1461 8034db0 Thanks @juliusmarminge! - feat: add drizzle

    This 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 like
      examples: 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.

Patch Changes

[email protected]

27 Aug 20:02
144c746
Compare
Choose a tag to compare

Minor Changes

[email protected]

08 Aug 19:58
5559a42
Compare
Choose a tag to compare

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]

30 Jul 18:05
1e3cba1
Compare
Choose a tag to compare

Minor Changes

[email protected]

18 Jul 06:29
512a0e9
Compare
Choose a tag to compare

Minor Changes

[email protected]

28 Jun 06:35
aa28d84
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • #1493 a230d9f Thanks @dcottr! - Remove trailing newlines in generated app that aren't allowed by the generated prettier config

[email protected]

20 Jun 07:32
96661a0
Compare
Choose a tag to compare

Patch Changes

[email protected]

18 Jun 06:48
a72bf70
Compare
Choose a tag to compare

Minor Changes

[email protected]

16 Jun 11:58
fbcc7bc
Compare
Choose a tag to compare

Patch Changes

[email protected]

24 May 17:48
19b953b
Compare
Choose a tag to compare

Patch Changes

  • #1436 b0facee Thanks @harrismcc! - When using NextAuth but not Prisma, the session user's id is now set to token.sub instead of user.id because user is undefined when not using database sessions.

  • #1433 7fbe991 Thanks @FinnDore! - fix: SKIP_ENV_VALIDATION not skipping env validation