Releases: nest-native/drizzle
Release list
@nest-native/drizzle 0.3.2
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-nativeto@nest-native/drizzle(repo:nest-native/drizzle). - 🔒 Supply-chain hardening. Pinned dev/build-only tooling via npm
overrides—esbuild@^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/drizzleThen update imports from nest-drizzle-native to @nest-native/drizzle. The old package is deprecated and frozen at 0.2.1.
What's Changed
- chore: rename dependabot group to drizzle-peer-minor-patch by @rodrigobnogueira in #113
- docs: add rename banner to README by @rodrigobnogueira in #115
- chore(deps)(deps): bump the drizzle-peer-minor-patch group with 8 updates by @dependabot[bot] in #114
- chore(deps)(deps): bump the website-minor-patch group across 1 directory with 2 updates by @dependabot[bot] in #105
- chore(release): @nest-native/drizzle 0.3.2 by @rodrigobnogueira in #116
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
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/drizzleThen 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
- chore: fix website audit — bump shell-quote to 1.8.4 by @rodrigobnogueira in #110
- chore: rebrand internal names to nest-native-drizzle-* by @rodrigobnogueira in #111
- chore: follow up GitHub repo rename to nest-native/drizzle (0.3.1) by @rodrigobnogueira in #112
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
What's Changed
- Document Zod helper evaluation by @rodrigobnogueira in #68
- chore: configure dependabot updates by @rodrigobnogueira in #69
- chore(deps-dev)(deps-dev): bump c8 from 10.1.3 to 11.0.0 by @dependabot[bot] in #73
- chore(deps-dev)(deps-dev): bump the dev-tooling-minor-patch group with 3 updates by @dependabot[bot] in #71
- chore(deps)(deps): bump the website-minor-patch group in /website with 2 updates by @dependabot[bot] in #70
- chore(deps)(deps): bump the nest-drizzle-peer-minor-patch group with 8 updates by @dependabot[bot] in #72
- docs: add drizzle-kit migration sample by @rodrigobnogueira in #74
- docs: add health readiness sample by @rodrigobnogueira in #75
- chore: improve production issue templates by @rodrigobnogueira in #88
- docs: polish README first-run path by @rodrigobnogueira in #89
- chore: harden post-publish sample checks by @rodrigobnogueira in #90
- docs: add transaction isolation testing sample by @rodrigobnogueira in #91
- docs: add optional Terminus health guidance by @rodrigobnogueira in #92
- docs: document driver CI matrix by @rodrigobnogueira in #93
- docs: expand real database testing guide by @rodrigobnogueira in #94
- docs: add migration operations guide by @rodrigobnogueira in #95
- chore: add sample validation timing baseline by @rodrigobnogueira in #96
- docs: organize documentation navigation by @rodrigobnogueira in #97
- docs: add multi-tenant guidance by @rodrigobnogueira in #98
- docs: add deployment recipes by @rodrigobnogueira in #99
- docs: clean stale sample review notes by @rodrigobnogueira in #100
- chore(deps-dev)(deps-dev): bump c8 from 10.1.3 to 11.0.0 by @dependabot[bot] in #104
- chore(deps)(deps): bump the nest-drizzle-peer-minor-patch group with 5 updates by @dependabot[bot] in #103
- chore: rename package to @nest-native/drizzle by @rodrigobnogueira in #109
New Contributors
- @dependabot[bot] made their first contribution in #73
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
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(), andforFeature(). - 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
dependenciesblock.