Skip to content

Releases: t3-oss/create-t3-app

[email protected]

05 Dec 07:43
9eac8f5
Compare
Choose a tag to compare

Patch Changes

[email protected]

21 Nov 22:54
1b2ec5b
Compare
Choose a tag to compare

Minor Changes

Patch Changes

[email protected]

09 Nov 18:58
cd49ba8
Compare
Choose a tag to compare

Patch Changes

[email protected]

04 Nov 11:55
ea47528
Compare
Choose a tag to compare

Patch Changes

[email protected]

16 Oct 07:45
126538a
Compare
Choose a tag to compare

Minor Changes

[email protected]

10 Oct 20:06
e95e3ad
Compare
Choose a tag to compare

Minor Changes

[email protected]

12 Sep 19:20
5551522
Compare
Choose a tag to compare

Patch Changes

[email protected]

12 Sep 09:01
ba0142e
Compare
Choose a tag to compare

Patch Changes

[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