From b11a7fb4f1c26868d057173e6e3504a67f2c59e9 Mon Sep 17 00:00:00 2001 From: Jean Date: Fri, 6 Feb 2026 18:19:13 +0100 Subject: [PATCH 1/2] chore: upgrade dependencies --- package.json | 24 ++++++++++++------------ src/fastify/adapters.integration.test.ts | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 3df323e..05b7f3a 100644 --- a/package.json +++ b/package.json @@ -36,23 +36,23 @@ "author": "jean.antoine.michelet@gmail.com", "license": "MIT", "devDependencies": { - "@eslint/js": "^9.35.0", - "@sinclair/typebox": "^0.34.41", - "@types/node": "^25.0.3", + "@eslint/js": "^9.39.2", + "@sinclair/typebox": "^0.34.48", + "@types/node": "^25.2.1", "c8": "^10.1.3", - "eslint": "^9.35.0", + "eslint": "^9.39.2", "eslint-plugin-import": "^2.32.0", - "glob": "^13.0.0", - "prettier": "^3.6.2", + "glob": "^13.0.1", + "prettier": "^3.8.1", "tsd": "^0.33.0", - "tsup": "^8.5.0", - "tsx": "^4.20.5", - "typescript": "^5.9.2", - "typescript-eslint": "^8.44.0" + "tsup": "^8.5.1", + "tsx": "^4.21.0", + "typescript": "^5.9.3", + "typescript-eslint": "^8.54.0" }, "dependencies": { - "fastify": "^5.6.1", - "fastify-plugin": "^5.0.0" + "fastify": "^5.7.4", + "fastify-plugin": "^5.1.0" }, "tsd": { "directory": "src" diff --git a/src/fastify/adapters.integration.test.ts b/src/fastify/adapters.integration.test.ts index e2ec8d7..05d52a8 100644 --- a/src/fastify/adapters.integration.test.ts +++ b/src/fastify/adapters.integration.test.ts @@ -47,7 +47,7 @@ describe("adapters integration", () => { const json = res.json(); t.assert.deepStrictEqual(json, { ok: true, - msg: "5.6.2", + msg: "5.7.4", }); await app.close(); From 7ee3623b1dccefca4648dfbf7b4409f25b118f32 Mon Sep 17 00:00:00 2001 From: Jean Date: Fri, 6 Feb 2026 18:24:11 +0100 Subject: [PATCH 2/2] chore: upgrade version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 05b7f3a..5c38b36 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stratify/core", - "version": "0.2.1", + "version": "0.2.2", "description": "Dependency Injection package for the Fastify framework", "type": "module", "main": "./dist/index.cjs",