diff --git a/package-lock.json b/package-lock.json index adf929e..a11c558 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@athenna/common", - "version": "4.35.0", + "version": "4.36.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@athenna/common", - "version": "4.35.0", + "version": "4.36.0", "license": "MIT", "dependencies": { "@fastify/formbody": "^7.4.0", @@ -17,12 +17,12 @@ "collect.js": "^4.36.1", "csv-parser": "^3.0.0", "execa": "^8.0.1", - "fastify": "^4.26.1", + "fastify": "^4.26.2", "got": "^12.6.1", "http-status-codes": "^2.2.0", "is-wsl": "^2.2.0", "js-yaml": "^4.1.0", - "json-2-csv": "^5.0.1", + "json-2-csv": "^5.1.0", "kind-of": "^6.0.3", "lodash": "^4.17.21", "mime-types": "^2.1.35", @@ -4445,9 +4445,9 @@ "integrity": "sha512-cIusKBIt/R/oI6z/1nyfe2FvGKVTohVRfvkOhvx0nCEW+xf5NoCXjAHcWp93uOUBchzYcsvPlrapAdX1uW+YGg==" }, "node_modules/fastify": { - "version": "4.26.1", - "resolved": "https://registry.npmjs.org/fastify/-/fastify-4.26.1.tgz", - "integrity": "sha512-tznA/G55dsxzM5XChBfcvVSloG2ejeeotfPPJSFaWmHyCDVGMpvf3nRNbsCb/JTBF9RmQFBfuujWt3Nphjesng==", + "version": "4.26.2", + "resolved": "https://registry.npmjs.org/fastify/-/fastify-4.26.2.tgz", + "integrity": "sha512-90pjTuPGrfVKtdpLeLzND5nyC4woXZN5VadiNQCicj/iJU4viNHKhsAnb7jmv1vu2IzkLXyBiCzdWuzeXgQ5Ug==", "funding": [ { "type": "github", @@ -6483,9 +6483,9 @@ } }, "node_modules/json-2-csv": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-2-csv/-/json-2-csv-5.0.1.tgz", - "integrity": "sha512-rP9ChyMskS0angbvFdQ43SwEe72mEvqcY1/V2OeukQWxtlreUuZWhMlTdWjtd4L6kJxq+HPFTI06yqLvZiEVIA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/json-2-csv/-/json-2-csv-5.1.0.tgz", + "integrity": "sha512-qGq2IaAndaC/aAtEW8p6WM/VaF47cdXN2LtJ4T8THC8OsSWr1H2nYmuwYgvHJbF4WwCDmOx/seqSUNy15H01CQ==", "dependencies": { "deeks": "3.0.2", "doc-path": "4.0.2" diff --git a/package.json b/package.json index 702d465..e15860f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@athenna/common", - "version": "4.35.0", + "version": "4.36.0", "description": "The Athenna common helpers to use in any Node.js ESM project.", "license": "MIT", "author": "João Lenon ", @@ -62,12 +62,12 @@ "collect.js": "^4.36.1", "csv-parser": "^3.0.0", "execa": "^8.0.1", - "fastify": "^4.26.1", + "fastify": "^4.26.2", "got": "^12.6.1", "http-status-codes": "^2.2.0", "is-wsl": "^2.2.0", "js-yaml": "^4.1.0", - "json-2-csv": "^5.0.1", + "json-2-csv": "^5.1.0", "kind-of": "^6.0.3", "lodash": "^4.17.21", "mime-types": "^2.1.35", diff --git a/tests/unit/IsTest.ts b/tests/unit/IsTest.ts index 13e0e93..88ced5a 100644 --- a/tests/unit/IsTest.ts +++ b/tests/unit/IsTest.ts @@ -7,7 +7,7 @@ * file that was distributed with this source code. */ -import { Is, File, Exception } from '#src' +import { Is, Path, File, Exception } from '#src' import { Test, type Context } from '@athenna/test' export default class IsTest { diff --git a/tests/unit/ParserTest.ts b/tests/unit/ParserTest.ts index 8486c12..de45a66 100644 --- a/tests/unit/ParserTest.ts +++ b/tests/unit/ParserTest.ts @@ -7,7 +7,7 @@ * file that was distributed with this source code. */ -import { File, Parser } from '#src' +import { File, Path, Parser } from '#src' import { Test, type Context } from '@athenna/test' import { InvalidNumberException } from '#src/exceptions/InvalidNumberException'