Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .changeset/git-hooks-format-mjs-cjs.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/newsletter-zod-4.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/nk-auth-bcrypt-6.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/nk-db-pglite-socket.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/nk-db-reset-public-tables.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/oxlint-config-tooling-bump.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/git-hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @ingram-tech/git-hooks

## 0.2.1

### Patch Changes

- 366fb6d: Format staged `.mjs` / `.cjs` files in `nextkit-format-staged`. oxfmt handles
them, but they were missing from the extension filter, so config/scripts in
those formats were skipped on commit (and only caught later by CI's `oxfmt
--check`).

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/git-hooks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ingram-tech/git-hooks",
"version": "0.2.0",
"version": "0.2.1",
"description": "Shared git hooks (oxfmt format-on-commit) for Ingram Technologies projects.",
"license": "MIT",
"type": "module",
Expand Down
8 changes: 8 additions & 0 deletions packages/newsletter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @ingram-tech/newsletter

## 0.4.0

### Minor Changes

- 5e1fab2: Upgrade the `zod` runtime dependency from v3 to v4, aligning newsletter with the
rest of the workspace (`nk-db` and `nk-auth` already run zod 4). No public API
changes; schemas were already written in the zod-4-compatible style.

## 0.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/newsletter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ingram-tech/newsletter",
"version": "0.3.0",
"version": "0.4.0",
"description": "Supabase-backed newsletter subscriptions + sending, with RFC 8058 one-click unsubscribe.",
"license": "MIT",
"type": "module",
Expand Down
10 changes: 10 additions & 0 deletions packages/nk-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @ingram-tech/nk-auth

## 0.4.1

### Patch Changes

- 5e1fab2: Bump the bundled `bcrypt` dependency from v5 to v6. Internal change only —
the hash format is unchanged, so existing password hashes continue to verify.
- Updated dependencies [5e1fab2]
- Updated dependencies [5e2c767]
- @ingram-tech/nk-db@0.3.0

## 0.4.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/nk-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ingram-tech/nk-auth",
"version": "0.4.0",
"version": "0.4.1",
"description": "The Ingram Better Auth foundation: composable presets (org, dual-shape JWT, Supabase RLS bridge, active-org hooks, pg pool) for Next.js sites.",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -53,7 +53,7 @@
"test": "vitest run"
},
"dependencies": {
"@ingram-tech/nk-db": "^0.2.0",
"@ingram-tech/nk-db": "^0.3.0",
"bcrypt": "^6.0.0",
"jose": "^6.0.0",
"zod": "^4.0.0"
Expand Down
17 changes: 17 additions & 0 deletions packages/nk-db/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @ingram-tech/nk-db

## 0.3.0

### Minor Changes

- 5e2c767: Export `resetPublicTables` from a new `@ingram-tech/nk-db/pglite/reset` subpath —
the canonical "introspect public tables + TRUNCATE … RESTART IDENTITY CASCADE"
test-reset, transport-agnostic so an in-process Drizzle/PGlite harness can share
it without pulling in PGlite or the socket server. `createTestDb`'s `reset()` now
delegates to it (behaviour unchanged). The subpath is deliberately zero-import so
in-process consumers don't pay for the socket transport.

### Patch Changes

- 5e1fab2: Raise the optional `@electric-sql/pglite-socket` peer floor to `>=0.2.4` to track
the current release. Affects only the no-Docker PGlite dev/test harness, not the
production pg path.

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/nk-db/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ingram-tech/nk-db",
"version": "0.2.1",
"version": "0.3.0",
"description": "The Ingram Postgres data layer: one TLS-aware pg pool, raw-SQL helpers, Drizzle wiring, and a PGlite (no-Docker) dev/test harness for Next.js sites.",
"license": "MIT",
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions packages/oxlint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @ingram-tech/oxlint-config

## 0.2.2

### Patch Changes

- 5e1fab2: Raise the `oxlint` (`^1.70.0`) and `oxfmt` (`^0.55.0`) peer floors to the latest
releases.

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/oxlint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ingram-tech/oxlint-config",
"version": "0.2.1",
"version": "0.2.2",
"description": "Shared oxlint + oxfmt configuration for Ingram Technologies Next.js projects.",
"license": "MIT",
"repository": {
Expand Down