L-Mario564
L-Mario564
Addresses #272. This PR adds checks/validations for your Typescript schema for any dialect. This validation occurs during the `generate` and `push` commands in Drizzle Kit, giving detailed errors as to...
Addresses #1414. Implements cross join for all dialects. ```ts await db .select({ user: users.name, city: cities.name }) .from(users) .crossJoin(cities); ```
Addresses #342. This PR adds 3 actions: - `ipCidr` - `ipv4Cidr` - `ipv6Cidr` These actions are for validating that an IP address is in CIDR notation. The regular expressions added...
### What version of `drizzle-orm` are you using? ? ### What version of `drizzle-kit` are you using? ? ### Describe the Bug From drizzle-kit-mirror repo: https://github.com/drizzle-team/drizzle-kit-mirror/issues/522. > If you have...
Addresses 19 bugs: https://github.com/drizzle-team/drizzle-orm/issues/3254 `bit` data type in PG generated with quotes around it. Not anymore. https://github.com/drizzle-team/drizzle-orm/issues/2630 Added a proper migration strategy when altering a `serial` column to a `integer...
This PR aims to improve TS language server performance for drizzle-zod, drizzle-valibot, drizzle-typebox and drizzle-arktype. I used drizzle-arktype as the base for the optimization, getting around 20%-30% less type instantiations...
### What version of Elysia is running? 1.2.25 ### What platform is your computer? Microsoft Windows NT 10.0.26100.0 x64 ### What steps can reproduce the bug? I was on Elysia...
This PR aims to migrate from using tsup and Rollup to using Rolldown. - All packages are now built using Rolldown and for any additional build steps they have in...
### What version of `drizzle-orm` are you using? ? ### What version of `drizzle-kit` are you using? ? ### Describe the Bug From drizzle-kit-mirror repo: https://github.com/drizzle-team/drizzle-kit-mirror/issues/128. > With succinct table...
Addresses #182. This PR aims to fix CJS imports, something that may be blocking the Drizzle Team from merging https://github.com/drizzle-team/drizzle-orm/pull/4998 due to our CJS import test for `drizzle-orm/libsql`. We assume...