Skip to content

Releases: nest-native/drizzle

@nest-native/drizzle 0.3.2

Choose a tag to compare

@rodrigobnogueira rodrigobnogueira released this 13 Jun 22:13
9944473

Highlights

This is a cosmetic + maintenance release. There are no runtime, public API, or peerDependencies changes — the published package has zero runtime dependencies, so upgrading is safe and requires no code changes.

  • 📦 Rename banner now on npm. The npm package page renders the README from the published version, so this release exists primarily to surface the post-rename notice on npmjs.com: the project moved from nest-drizzle-native to @nest-native/drizzle (repo: nest-native/drizzle).
  • 🔒 Supply-chain hardening. Pinned dev/build-only tooling via npm overridesesbuild@^0.28.1, ws@^8.21.0, qs@^6.15.2 — clearing all high- and moderate-severity advisories in transitive development dependencies. None of these ship to consumers.

Migrating from nest-drizzle-native

npm uninstall nest-drizzle-native
npm install @nest-native/drizzle

Then update imports from nest-drizzle-native to @nest-native/drizzle. The old package is deprecated and frozen at 0.2.1.


What's Changed

Full Changelog: https://github.com/nest-native/drizzle/compare/@nest-native/drizzle@0.3.1...@nest-native/drizzle@0.3.2

@nest-native/drizzle 0.3.1

Choose a tag to compare

@rodrigobnogueira rodrigobnogueira released this 12 Jun 15:56
b19d30e

Important

This project was renamed. nest-drizzle-native is now @nest-native/drizzle, and the repository moved to nest-native/drizzle.

Migrate:

npm uninstall nest-drizzle-native
npm install @nest-native/drizzle

Then update imports from nest-drizzle-native to @nest-native/drizzle. The old nest-drizzle-native package is frozen at 0.2.1 and will not receive further updates.

What's Changed

Full Changelog: https://github.com/nest-native/drizzle/compare/@nest-native/drizzle@0.3.0...@nest-native/drizzle@0.3.1

@nest-native/drizzle 0.3.0

Choose a tag to compare

@rodrigobnogueira rodrigobnogueira released this 12 Jun 15:56
d964106

What's Changed

New Contributors

Full Changelog: https://github.com/nest-native/drizzle/compare/nest-drizzle-native@0.2.1...@nest-native/drizzle@0.3.0

nest-drizzle-native 0.2.1

Choose a tag to compare

@rodrigobnogueira rodrigobnogueira released this 17 May 04:10
5e677b0

nest-drizzle-native 0.2.1

First announcement-ready release after the move to nest-native/nest-drizzle-native.

Highlights

  • Nest-native Drizzle module setup with forRoot(), forRootAsync(), and forFeature().
  • Direct client injection with @InjectDrizzle().
  • Repository classes with @DrizzleRepository().
  • Transaction decorator bridge with @Transactional() and @InjectTransaction() via @nestjs-cls/transactional.
  • Named connections, lifecycle cleanup hooks, testing utilities, and optional error mapping helpers.
  • Runnable samples covering repositories, async config, named connections, transactions, DTO validation, optional Drizzle-Zod validation, Swagger/OpenAPI, raw SQL, and driver setups.
  • Published package keeps an explicit empty dependencies block.

Links