diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..2505e73 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,4 @@ +{ + "snyk.advanced.organization": "a265782d-c3df-4260-9a5b-f5c5d957b33a", + "snyk.advanced.autoSelectOrganization": true +} diff --git a/package.json b/package.json index 5c38b36..54e8a9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stratify/core", - "version": "0.2.2", + "version": "0.2.4", "description": "Dependency Injection package for the Fastify framework", "type": "module", "main": "./dist/index.cjs", @@ -37,21 +37,21 @@ "license": "MIT", "devDependencies": { "@eslint/js": "^9.39.2", - "@sinclair/typebox": "^0.34.48", - "@types/node": "^25.2.1", + "@sinclair/typebox": "^0.34.49", + "@types/node": "^25.6.2", "c8": "^10.1.3", "eslint": "^9.39.2", "eslint-plugin-import": "^2.32.0", - "glob": "^13.0.1", - "prettier": "^3.8.1", + "glob": "^13.0.6", + "prettier": "^3.8.3", "tsd": "^0.33.0", "tsup": "^8.5.1", "tsx": "^4.21.0", "typescript": "^5.9.3", - "typescript-eslint": "^8.54.0" + "typescript-eslint": "^8.59.2" }, "dependencies": { - "fastify": "^5.7.4", + "fastify": "^5.8.5", "fastify-plugin": "^5.1.0" }, "tsd": { diff --git a/src/fastify/adapters.integration.test.ts b/src/fastify/adapters.integration.test.ts index 05d52a8..02b47d1 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.7.4", + msg: "5.8.5", }); await app.close();