From a805a8f22296b298d1c33e5202588387163c5861 Mon Sep 17 00:00:00 2001 From: Rodrigo Nogueira Date: Mon, 20 Jul 2026 15:04:57 -0300 Subject: [PATCH] chore(deps): bump nest-native libs to latest (lockout/authlock 0.4.0, messaging 0.5.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move the three pins that had fallen behind their latest published versions: - @authlock/core ^0.3.0 -> ^0.4.0 - @nest-native/lockout ^0.3.1 -> ^0.4.0 - @nest-native/messaging ^0.3.1 -> ^0.5.0 All three are additive, backward-compatible releases: lockout/authlock 0.4.0 add per-dimension identity `normalize`, `resetAll()`, and audit-logging docs; messaging 0.4.0/0.5.0 add the opt-in OutboxWaker / WakeSocket / Postgres LISTEN-NOTIFY wake tiers (the poller is unchanged when no waker is passed). No app code changes — every surface the app consumes is unchanged. The remaining libraries were already at their latest. Full gate green: typecheck, client-smoke typecheck, lint, complexity, tests (exit 0), build, and security:audit (6 moderate advisories remain, all in dev/build tooling only — esbuild via drizzle-kit, qs via typed-rest-client — outside the production surface and below the high gate). --- package-lock.json | 26 +++++++++++++------------- package.json | 6 +++--- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1f0c930..3b31c3b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,15 +9,15 @@ "version": "0.0.1", "license": "MIT", "dependencies": { - "@authlock/core": "^0.3.0", + "@authlock/core": "^0.4.0", "@nest-native/ai-sdk": "^0.5.0", "@nest-native/asyncapi": "^0.2.0", "@nest-native/cache": "^0.1.0", "@nest-native/drizzle": "^0.4.0", "@nest-native/jobs": "^0.1.0", "@nest-native/kafka": "^0.3.0", - "@nest-native/lockout": "^0.3.1", - "@nest-native/messaging": "^0.3.1", + "@nest-native/lockout": "^0.4.0", + "@nest-native/messaging": "^0.5.0", "@nest-native/trpc": "^0.6.0", "@nestjs-cls/transactional": "^3.2.1", "@nestjs-cls/transactional-adapter-drizzle-orm": "^1.3.0", @@ -216,9 +216,9 @@ } }, "node_modules/@authlock/core": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@authlock/core/-/core-0.3.0.tgz", - "integrity": "sha512-u31tgHriUG9YwoeKHyVh9b/cqSmNXwgr+zDTdF49+hOdXqyvbpwYGcOjrG8pRSJmXqhNkcNKEUgdwggW0uCgbQ==", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@authlock/core/-/core-0.4.0.tgz", + "integrity": "sha512-sfIJarEXXkEtED6i4V+YP1cexoBnSiSBR4t/uWOhtQdO2zB92Ns4xITbHTfQlqbM3dqIe6nC6lPNZwArhnzc1A==", "license": "MIT", "engines": { "node": ">=20" @@ -2557,12 +2557,12 @@ } }, "node_modules/@nest-native/lockout": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@nest-native/lockout/-/lockout-0.3.1.tgz", - "integrity": "sha512-dLBHPAAV15WYCMC6UfDOAp4zN4r9K8VZf+0IfgAd5kn3wxvu3wkNHJCpg1NYJtwIIPKR2vxujjDUxss5dRKXYw==", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@nest-native/lockout/-/lockout-0.4.0.tgz", + "integrity": "sha512-ydZojq2bIR2mqmCCGyC7nygQY/faY441lqMuuGTHeeT5nKkbkWYC0/llg791A/J1F+/scoTTlMOnxlEVGoMcJw==", "license": "MIT", "dependencies": { - "@authlock/core": "0.3.0" + "@authlock/core": "0.4.0" }, "engines": { "node": ">=20" @@ -2575,9 +2575,9 @@ } }, "node_modules/@nest-native/messaging": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@nest-native/messaging/-/messaging-0.3.1.tgz", - "integrity": "sha512-dWotWQOPT1ThpN9r7h0MqprutzSJSCNTGacea7aTAzYZvoEeSiSG4jR0RZMeyodJWb0DGLVIc9MCu/G1aXo5Kg==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@nest-native/messaging/-/messaging-0.5.0.tgz", + "integrity": "sha512-QOlFDFiPf04vpTdACtzLC9gCB/oN1cfsEfaRnFG0LMjwXhbkocadkn9ighrbXZDTHWammUUFmnnop3uiLrwg2A==", "license": "MIT", "engines": { "node": ">=20" diff --git a/package.json b/package.json index 049c9e8..92f9c18 100644 --- a/package.json +++ b/package.json @@ -44,15 +44,15 @@ "test:mutant:full": "npm run test:mutant && npm run test:kafka:mutant" }, "dependencies": { - "@authlock/core": "^0.3.0", + "@authlock/core": "^0.4.0", "@nest-native/ai-sdk": "^0.5.0", "@nest-native/asyncapi": "^0.2.0", "@nest-native/cache": "^0.1.0", "@nest-native/drizzle": "^0.4.0", "@nest-native/jobs": "^0.1.0", "@nest-native/kafka": "^0.3.0", - "@nest-native/lockout": "^0.3.1", - "@nest-native/messaging": "^0.3.1", + "@nest-native/lockout": "^0.4.0", + "@nest-native/messaging": "^0.5.0", "@nest-native/trpc": "^0.6.0", "@nestjs-cls/transactional": "^3.2.1", "@nestjs-cls/transactional-adapter-drizzle-orm": "^1.3.0",