From c03520402c4c5f329df346b743b64da08555995c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 17 Jun 2024 22:06:07 +0200 Subject: [PATCH] build(deps-dev): apply updates MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .vscode/settings.json | 2 - .../typescript/http-client-pool/package.json | 6 +- .../http-client-pool/pnpm-lock.yaml | 10 +- .../express-cluster/package.json | 6 +- .../express-cluster/pnpm-lock.yaml | 22 ++-- .../express-hybrid/package.json | 6 +- .../express-hybrid/pnpm-lock.yaml | 22 ++-- .../express-worker_threads/package.json | 6 +- .../express-worker_threads/pnpm-lock.yaml | 20 +-- .../fastify-cluster/package.json | 6 +- .../fastify-cluster/pnpm-lock.yaml | 12 +- .../fastify-hybrid/package.json | 6 +- .../fastify-hybrid/pnpm-lock.yaml | 12 +- .../fastify-worker_threads/package.json | 6 +- .../fastify-worker_threads/pnpm-lock.yaml | 10 +- .../typescript/smtp-client-pool/package.json | 6 +- .../smtp-client-pool/pnpm-lock.yaml | 12 +- .../ws-cluster/package.json | 8 +- .../ws-cluster/pnpm-lock.yaml | 24 ++-- .../ws-hybrid/package.json | 8 +- .../ws-hybrid/pnpm-lock.yaml | 24 ++-- .../ws-worker_threads/package.json | 8 +- .../ws-worker_threads/pnpm-lock.yaml | 22 ++-- package.json | 12 +- pnpm-lock.yaml | 120 +++++++++--------- 25 files changed, 197 insertions(+), 199 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6ace0caa..ebec4d23 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,8 +2,6 @@ "editor.codeActionsOnSave": { "source.fixAll": "explicit" }, - // enable flat config files (eslint.config.*js) - "eslint.experimental.useFlatConfig": true, "cSpell.words": [ "Alessandro", "Ardizio", diff --git a/examples/typescript/http-client-pool/package.json b/examples/typescript/http-client-pool/package.json index 4754b586..667816c3 100644 --- a/examples/typescript/http-client-pool/package.json +++ b/examples/typescript/http-client-pool/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "pnpm build:clean && tsc", "build:clean": "tsc --build --clean", @@ -26,7 +26,7 @@ "poolifier": "^4.0.14" }, "devDependencies": { - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "typescript": "^5.4.5" } } diff --git a/examples/typescript/http-client-pool/pnpm-lock.yaml b/examples/typescript/http-client-pool/pnpm-lock.yaml index f4a872f2..bea868e2 100644 --- a/examples/typescript/http-client-pool/pnpm-lock.yaml +++ b/examples/typescript/http-client-pool/pnpm-lock.yaml @@ -19,16 +19,16 @@ importers: version: 4.0.14 devDependencies: '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 typescript: specifier: ^5.4.5 version: 5.4.5 packages: - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -106,7 +106,7 @@ packages: snapshots: - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 diff --git a/examples/typescript/http-server-pool/express-cluster/package.json b/examples/typescript/http-server-pool/express-cluster/package.json index 93cb18cd..8cd64abf 100644 --- a/examples/typescript/http-server-pool/express-cluster/package.json +++ b/examples/typescript/http-server-pool/express-cluster/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "rollup --config --configPlugin typescript", "start": "node --enable-source-maps dist/main.cjs", @@ -28,7 +28,7 @@ "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", "@types/express": "^4.17.21", - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "autocannon": "^7.15.0", "rollup": "^4.18.0", "rollup-plugin-delete": "^2.0.0", diff --git a/examples/typescript/http-server-pool/express-cluster/pnpm-lock.yaml b/examples/typescript/http-server-pool/express-cluster/pnpm-lock.yaml index 8e9f150a..e3aca6f0 100644 --- a/examples/typescript/http-server-pool/express-cluster/pnpm-lock.yaml +++ b/examples/typescript/http-server-pool/express-cluster/pnpm-lock.yaml @@ -22,8 +22,8 @@ importers: specifier: ^4.17.21 version: 4.17.21 '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 autocannon: specifier: ^7.15.0 version: 7.15.0 @@ -190,8 +190,8 @@ packages: '@types/minimatch@5.1.2': resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} '@types/qs@6.9.15': resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} @@ -888,17 +888,17 @@ snapshots: '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/connect@3.4.38': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/estree@1.0.5': {} '@types/express-serve-static-core@4.19.3': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -913,7 +913,7 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/http-errors@2.0.4': {} @@ -921,7 +921,7 @@ snapshots: '@types/minimatch@5.1.2': {} - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 @@ -932,12 +932,12 @@ snapshots: '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/send': 0.17.4 accepts@1.3.8: diff --git a/examples/typescript/http-server-pool/express-hybrid/package.json b/examples/typescript/http-server-pool/express-hybrid/package.json index 26e792df..5e09dccb 100644 --- a/examples/typescript/http-server-pool/express-hybrid/package.json +++ b/examples/typescript/http-server-pool/express-hybrid/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "rollup --config --configPlugin typescript", "start": "node --enable-source-maps dist/main.cjs", @@ -28,7 +28,7 @@ "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", "@types/express": "^4.17.21", - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "autocannon": "^7.15.0", "rollup": "^4.18.0", "rollup-plugin-delete": "^2.0.0", diff --git a/examples/typescript/http-server-pool/express-hybrid/pnpm-lock.yaml b/examples/typescript/http-server-pool/express-hybrid/pnpm-lock.yaml index 8e9f150a..e3aca6f0 100644 --- a/examples/typescript/http-server-pool/express-hybrid/pnpm-lock.yaml +++ b/examples/typescript/http-server-pool/express-hybrid/pnpm-lock.yaml @@ -22,8 +22,8 @@ importers: specifier: ^4.17.21 version: 4.17.21 '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 autocannon: specifier: ^7.15.0 version: 7.15.0 @@ -190,8 +190,8 @@ packages: '@types/minimatch@5.1.2': resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} '@types/qs@6.9.15': resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} @@ -888,17 +888,17 @@ snapshots: '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/connect@3.4.38': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/estree@1.0.5': {} '@types/express-serve-static-core@4.19.3': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -913,7 +913,7 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/http-errors@2.0.4': {} @@ -921,7 +921,7 @@ snapshots: '@types/minimatch@5.1.2': {} - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 @@ -932,12 +932,12 @@ snapshots: '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/send': 0.17.4 accepts@1.3.8: diff --git a/examples/typescript/http-server-pool/express-worker_threads/package.json b/examples/typescript/http-server-pool/express-worker_threads/package.json index 6eddb08f..b2d56f34 100644 --- a/examples/typescript/http-server-pool/express-worker_threads/package.json +++ b/examples/typescript/http-server-pool/express-worker_threads/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "pnpm build:clean && tsc", "build:clean": "tsc --build --clean", @@ -27,7 +27,7 @@ }, "devDependencies": { "@types/express": "^4.17.21", - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "autocannon": "^7.15.0", "typescript": "^5.4.5" } diff --git a/examples/typescript/http-server-pool/express-worker_threads/pnpm-lock.yaml b/examples/typescript/http-server-pool/express-worker_threads/pnpm-lock.yaml index c6084656..7036ecf4 100644 --- a/examples/typescript/http-server-pool/express-worker_threads/pnpm-lock.yaml +++ b/examples/typescript/http-server-pool/express-worker_threads/pnpm-lock.yaml @@ -19,8 +19,8 @@ importers: specifier: ^4.17.21 version: 4.17.21 '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 autocannon: specifier: ^7.15.0 version: 7.15.0 @@ -55,8 +55,8 @@ packages: '@types/mime@1.3.5': resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} '@types/qs@6.9.15': resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} @@ -492,15 +492,15 @@ snapshots: '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/connect@3.4.38': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/express-serve-static-core@4.19.3': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -516,7 +516,7 @@ snapshots: '@types/mime@1.3.5': {} - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 @@ -527,12 +527,12 @@ snapshots: '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/send': 0.17.4 accepts@1.3.8: diff --git a/examples/typescript/http-server-pool/fastify-cluster/package.json b/examples/typescript/http-server-pool/fastify-cluster/package.json index f7ad3dac..52053d21 100644 --- a/examples/typescript/http-server-pool/fastify-cluster/package.json +++ b/examples/typescript/http-server-pool/fastify-cluster/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "rollup --config --configPlugin typescript", "start": "node --enable-source-maps dist/main.cjs", @@ -27,7 +27,7 @@ }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "autocannon": "^7.15.0", "rollup": "^4.18.0", "rollup-plugin-delete": "^2.0.0", diff --git a/examples/typescript/http-server-pool/fastify-cluster/pnpm-lock.yaml b/examples/typescript/http-server-pool/fastify-cluster/pnpm-lock.yaml index 292bb09e..3284075a 100644 --- a/examples/typescript/http-server-pool/fastify-cluster/pnpm-lock.yaml +++ b/examples/typescript/http-server-pool/fastify-cluster/pnpm-lock.yaml @@ -19,8 +19,8 @@ importers: specifier: ^11.1.6 version: 11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@5.4.5) '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 autocannon: specifier: ^7.15.0 version: 7.15.0 @@ -181,8 +181,8 @@ packages: '@types/minimatch@5.1.2': resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} @@ -839,11 +839,11 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/minimatch@5.1.2': {} - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 diff --git a/examples/typescript/http-server-pool/fastify-hybrid/package.json b/examples/typescript/http-server-pool/fastify-hybrid/package.json index aa237c32..0495be92 100644 --- a/examples/typescript/http-server-pool/fastify-hybrid/package.json +++ b/examples/typescript/http-server-pool/fastify-hybrid/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "rollup --config --configPlugin typescript", "start": "node --enable-source-maps dist/main.cjs", @@ -28,7 +28,7 @@ }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "autocannon": "^7.15.0", "rollup": "^4.18.0", "rollup-plugin-delete": "^2.0.0", diff --git a/examples/typescript/http-server-pool/fastify-hybrid/pnpm-lock.yaml b/examples/typescript/http-server-pool/fastify-hybrid/pnpm-lock.yaml index eca30fa6..f2802194 100644 --- a/examples/typescript/http-server-pool/fastify-hybrid/pnpm-lock.yaml +++ b/examples/typescript/http-server-pool/fastify-hybrid/pnpm-lock.yaml @@ -22,8 +22,8 @@ importers: specifier: ^11.1.6 version: 11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@5.4.5) '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 autocannon: specifier: ^7.15.0 version: 7.15.0 @@ -184,8 +184,8 @@ packages: '@types/minimatch@5.1.2': resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} @@ -845,11 +845,11 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/minimatch@5.1.2': {} - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 diff --git a/examples/typescript/http-server-pool/fastify-worker_threads/package.json b/examples/typescript/http-server-pool/fastify-worker_threads/package.json index 44df77ed..5895fd76 100644 --- a/examples/typescript/http-server-pool/fastify-worker_threads/package.json +++ b/examples/typescript/http-server-pool/fastify-worker_threads/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "pnpm build:clean && tsc", "build:clean": "tsc --build --clean", @@ -27,7 +27,7 @@ "poolifier": "^4.0.14" }, "devDependencies": { - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "autocannon": "^7.15.0", "typescript": "^5.4.5" } diff --git a/examples/typescript/http-server-pool/fastify-worker_threads/pnpm-lock.yaml b/examples/typescript/http-server-pool/fastify-worker_threads/pnpm-lock.yaml index 8f259550..0c8b5046 100644 --- a/examples/typescript/http-server-pool/fastify-worker_threads/pnpm-lock.yaml +++ b/examples/typescript/http-server-pool/fastify-worker_threads/pnpm-lock.yaml @@ -19,8 +19,8 @@ importers: version: 4.0.14 devDependencies: '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 autocannon: specifier: ^7.15.0 version: 7.15.0 @@ -49,8 +49,8 @@ packages: '@fastify/merge-json-schemas@0.1.1': resolution: {integrity: sha512-fERDVz7topgNjtXsJTTW1JKLy0rhuLRcquYqNR9rF7OcVpCa2OVW49ZPDIhaRRCaUuvVxI+N416xUoF76HNSXA==} - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} @@ -441,7 +441,7 @@ snapshots: dependencies: fast-deep-equal: 3.1.3 - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 diff --git a/examples/typescript/smtp-client-pool/package.json b/examples/typescript/smtp-client-pool/package.json index 8bd8fb9e..954abb9b 100644 --- a/examples/typescript/smtp-client-pool/package.json +++ b/examples/typescript/smtp-client-pool/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "pnpm build:clean && tsc", "build:clean": "tsc --build --clean", @@ -24,7 +24,7 @@ "poolifier": "^4.0.14" }, "devDependencies": { - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "@types/nodemailer": "^6.4.15", "typescript": "^5.4.5" } diff --git a/examples/typescript/smtp-client-pool/pnpm-lock.yaml b/examples/typescript/smtp-client-pool/pnpm-lock.yaml index 7407199a..301fef67 100644 --- a/examples/typescript/smtp-client-pool/pnpm-lock.yaml +++ b/examples/typescript/smtp-client-pool/pnpm-lock.yaml @@ -16,8 +16,8 @@ importers: version: 4.0.14 devDependencies: '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 '@types/nodemailer': specifier: ^6.4.15 version: 6.4.15 @@ -27,8 +27,8 @@ importers: packages: - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} '@types/nodemailer@6.4.15': resolution: {integrity: sha512-0EBJxawVNjPkng1zm2vopRctuWVCxk34JcIlRuXSf54habUWdz1FB7wHDqOqvDa8Mtpt0Q3LTXQkAs2LNyK5jQ==} @@ -51,13 +51,13 @@ packages: snapshots: - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 '@types/nodemailer@6.4.15': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 nodemailer@6.9.13: {} diff --git a/examples/typescript/websocket-server-pool/ws-cluster/package.json b/examples/typescript/websocket-server-pool/ws-cluster/package.json index 99148672..1939b946 100644 --- a/examples/typescript/websocket-server-pool/ws-cluster/package.json +++ b/examples/typescript/websocket-server-pool/ws-cluster/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "rollup --config --configPlugin typescript", "start": "node --enable-source-maps dist/main.cjs", @@ -22,11 +22,11 @@ "license": "ISC", "dependencies": { "poolifier": "^4.0.14", - "ws": "^8.17.0" + "ws": "^8.17.1" }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "@types/ws": "^8.5.10", "rollup": "^4.18.0", "rollup-plugin-delete": "^2.0.0", diff --git a/examples/typescript/websocket-server-pool/ws-cluster/pnpm-lock.yaml b/examples/typescript/websocket-server-pool/ws-cluster/pnpm-lock.yaml index bf71fbca..f887b64a 100644 --- a/examples/typescript/websocket-server-pool/ws-cluster/pnpm-lock.yaml +++ b/examples/typescript/websocket-server-pool/ws-cluster/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: specifier: ^4.0.14 version: 4.0.14 ws: - specifier: ^8.17.0 - version: 8.17.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + specifier: ^8.17.1 + version: 8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) optionalDependencies: bufferutil: specifier: ^4.0.8 @@ -26,8 +26,8 @@ importers: specifier: ^11.1.6 version: 11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@5.4.5) '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 '@types/ws': specifier: ^8.5.10 version: 8.5.10 @@ -169,8 +169,8 @@ packages: '@types/minimatch@5.1.2': resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} '@types/ws@8.5.10': resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} @@ -393,8 +393,8 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - ws@8.17.0: - resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==} + ws@8.17.1: + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -489,17 +489,17 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/minimatch@5.1.2': {} - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 '@types/ws@8.5.10': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 aggregate-error@3.1.0: dependencies: @@ -722,7 +722,7 @@ snapshots: wrappy@1.0.2: {} - ws@8.17.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): + ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.4): optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 6.0.4 diff --git a/examples/typescript/websocket-server-pool/ws-hybrid/package.json b/examples/typescript/websocket-server-pool/ws-hybrid/package.json index 90e965bb..e6689b32 100644 --- a/examples/typescript/websocket-server-pool/ws-hybrid/package.json +++ b/examples/typescript/websocket-server-pool/ws-hybrid/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "rollup --config --configPlugin typescript", "start": "node --enable-source-maps dist/main.cjs", @@ -22,11 +22,11 @@ "license": "ISC", "dependencies": { "poolifier": "^4.0.14", - "ws": "^8.17.0" + "ws": "^8.17.1" }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "@types/ws": "^8.5.10", "rollup": "^4.18.0", "rollup-plugin-delete": "^2.0.0", diff --git a/examples/typescript/websocket-server-pool/ws-hybrid/pnpm-lock.yaml b/examples/typescript/websocket-server-pool/ws-hybrid/pnpm-lock.yaml index bf71fbca..f887b64a 100644 --- a/examples/typescript/websocket-server-pool/ws-hybrid/pnpm-lock.yaml +++ b/examples/typescript/websocket-server-pool/ws-hybrid/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: specifier: ^4.0.14 version: 4.0.14 ws: - specifier: ^8.17.0 - version: 8.17.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + specifier: ^8.17.1 + version: 8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) optionalDependencies: bufferutil: specifier: ^4.0.8 @@ -26,8 +26,8 @@ importers: specifier: ^11.1.6 version: 11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@5.4.5) '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 '@types/ws': specifier: ^8.5.10 version: 8.5.10 @@ -169,8 +169,8 @@ packages: '@types/minimatch@5.1.2': resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} '@types/ws@8.5.10': resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} @@ -393,8 +393,8 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - ws@8.17.0: - resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==} + ws@8.17.1: + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -489,17 +489,17 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/minimatch@5.1.2': {} - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 '@types/ws@8.5.10': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 aggregate-error@3.1.0: dependencies: @@ -722,7 +722,7 @@ snapshots: wrappy@1.0.2: {} - ws@8.17.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): + ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.4): optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 6.0.4 diff --git a/examples/typescript/websocket-server-pool/ws-worker_threads/package.json b/examples/typescript/websocket-server-pool/ws-worker_threads/package.json index 9eb63a85..6db021b5 100644 --- a/examples/typescript/websocket-server-pool/ws-worker_threads/package.json +++ b/examples/typescript/websocket-server-pool/ws-worker_threads/package.json @@ -7,9 +7,9 @@ "type": "module", "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "scripts": { "build": "pnpm build:clean && tsc", "build:clean": "tsc --build --clean", @@ -22,10 +22,10 @@ "license": "ISC", "dependencies": { "poolifier": "^4.0.14", - "ws": "^8.17.0" + "ws": "^8.17.1" }, "devDependencies": { - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "@types/ws": "^8.5.10", "typescript": "^5.4.5" }, diff --git a/examples/typescript/websocket-server-pool/ws-worker_threads/pnpm-lock.yaml b/examples/typescript/websocket-server-pool/ws-worker_threads/pnpm-lock.yaml index 0d64e6bd..db2a05c2 100644 --- a/examples/typescript/websocket-server-pool/ws-worker_threads/pnpm-lock.yaml +++ b/examples/typescript/websocket-server-pool/ws-worker_threads/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: specifier: ^4.0.14 version: 4.0.14 ws: - specifier: ^8.17.0 - version: 8.17.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) + specifier: ^8.17.1 + version: 8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.4) optionalDependencies: bufferutil: specifier: ^4.0.8 @@ -23,8 +23,8 @@ importers: version: 6.0.4 devDependencies: '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 '@types/ws': specifier: ^8.5.10 version: 8.5.10 @@ -34,8 +34,8 @@ importers: packages: - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} '@types/ws@8.5.10': resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} @@ -64,8 +64,8 @@ packages: resolution: {integrity: sha512-xu9GQDeFp+eZ6LnCywXN/zBancWvOpUMzgjLPSjy4BRHSmTelvn2E0DG0o1sTiw5hkCKBHo8rwSKncfRfv2EEQ==} engines: {node: '>=6.14.2'} - ws@8.17.0: - resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==} + ws@8.17.1: + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -78,13 +78,13 @@ packages: snapshots: - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 '@types/ws@8.5.10': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 bufferutil@4.0.8: dependencies: @@ -105,7 +105,7 @@ snapshots: node-gyp-build: 4.8.1 optional: true - ws@8.17.0(bufferutil@4.0.8)(utf-8-validate@6.0.4): + ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.4): optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 6.0.4 diff --git a/package.json b/package.json index 3da80351..052e28ce 100644 --- a/package.json +++ b/package.json @@ -42,9 +42,9 @@ }, "volta": { "node": "22.3.0", - "pnpm": "9.3.0" + "pnpm": "9.4.0" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.4.0", "repository": { "type": "git", "url": "https://github.com/poolifier/poolifier.git" @@ -110,7 +110,7 @@ "@release-it/keep-a-changelog": "^5.0.0", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.6", - "@types/node": "^20.14.2", + "@types/node": "^20.14.3", "c8": "^10.1.2", "cross-env": "^7.0.3", "eslint": "^9.5.0", @@ -119,12 +119,12 @@ "eslint-plugin-n": "^17.9.0", "eslint-plugin-simple-import-sort": "^12.1.0", "expect": "^29.7.0", - "globals": "^15.5.0", + "globals": "^15.6.0", "husky": "^9.0.11", "lint-staged": "^15.2.7", "mocha": "^10.4.0", "mochawesome": "^7.1.3", - "neostandard": "^0.7.1", + "neostandard": "^0.7.2", "prettier": "^3.3.2", "release-it": "^17.3.0", "rollup": "^4.18.0", @@ -133,7 +133,7 @@ "rollup-plugin-delete": "^2.0.0", "rollup-plugin-dts": "^6.1.1", "sinon": "^18.0.0", - "tatami-ng": "^0.4.13", + "tatami-ng": "^0.4.15", "typedoc": "^0.25.13", "typescript": "~5.4.5" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8bcfb158..a8cce4df 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,7 +16,7 @@ importers: version: 1.8.1 '@commitlint/cli': specifier: ^19.3.0 - version: 19.3.0(@types/node@20.14.2)(typescript@5.4.5) + version: 19.3.0(@types/node@20.14.3)(typescript@5.4.5) '@commitlint/config-conventional': specifier: ^19.2.2 version: 19.2.2 @@ -39,8 +39,8 @@ importers: specifier: ^11.1.6 version: 11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@5.4.5) '@types/node': - specifier: ^20.14.2 - version: 20.14.2 + specifier: ^20.14.3 + version: 20.14.3 c8: specifier: ^10.1.2 version: 10.1.2 @@ -66,8 +66,8 @@ importers: specifier: ^29.7.0 version: 29.7.0 globals: - specifier: ^15.5.0 - version: 15.5.0 + specifier: ^15.6.0 + version: 15.6.0 husky: specifier: ^9.0.11 version: 9.0.11 @@ -81,8 +81,8 @@ importers: specifier: ^7.1.3 version: 7.1.3(mocha@10.4.0) neostandard: - specifier: ^0.7.1 - version: 0.7.1(@typescript-eslint/parser@8.0.0-alpha.30(eslint@9.5.0)(typescript@5.4.5))(eslint@9.5.0)(typescript@5.4.5) + specifier: ^0.7.2 + version: 0.7.2(@typescript-eslint/parser@8.0.0-alpha.30(eslint@9.5.0)(typescript@5.4.5))(eslint@9.5.0)(typescript@5.4.5) prettier: specifier: ^3.3.2 version: 3.3.2 @@ -108,8 +108,8 @@ importers: specifier: ^18.0.0 version: 18.0.0 tatami-ng: - specifier: ^0.4.13 - version: 0.4.13(typescript@5.4.5) + specifier: ^0.4.15 + version: 0.4.15(typescript@5.4.5) typedoc: specifier: ^0.25.13 version: 0.25.13(typescript@5.4.5) @@ -288,8 +288,8 @@ packages: '@cspell/dict-companies@3.1.2': resolution: {integrity: sha512-OwR5i1xbYuJX7FtHQySmTy3iJtPV1rZQ3jFCxFGwrA1xRQ4rtRcDQ+sTXBCIAoJHkXa84f9J3zsngOKmMGyS/w==} - '@cspell/dict-cpp@5.1.9': - resolution: {integrity: sha512-lZmPKn3qfkWQ7tr+yw6JhuhscsyRgRHEOpOd0fhtPt0N154FNsGebGGLW0SOZUuGgW7Nk3lCCwHP85GIemnlqQ==} + '@cspell/dict-cpp@5.1.10': + resolution: {integrity: sha512-BmIF0sAz2BgGEOwzYIeEm9ALneDjd1tcTbFbo+A1Hcq3zOKP8yViSgxS9CEN30KOZIyph6Tldp531UPEpoEl0Q==} '@cspell/dict-cryptocurrencies@5.0.0': resolution: {integrity: sha512-Z4ARIw5+bvmShL+4ZrhDzGhnc9znaAGHOEMaB/GURdS/jdoreEDY34wdN0NtdLHDO5KO7GduZnZyqGdRoiSmYA==} @@ -318,14 +318,14 @@ packages: '@cspell/dict-elixir@4.0.3': resolution: {integrity: sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==} - '@cspell/dict-en-common-misspellings@2.0.1': - resolution: {integrity: sha512-uWaP8UG4uvcPyqaG0FzPKCm5kfmhsiiQ45Fs6b3/AEAqfq7Fj1JW0+S3qRt85FQA9SoU6gUJCz9wkK/Ylh7m5A==} + '@cspell/dict-en-common-misspellings@2.0.2': + resolution: {integrity: sha512-LA8BO0RaoJD+ExHzK5mz+t9RQ0HaBPDxgR4JTfG8YKJP5keO+pFMH9ZMZphKPjW46QYUZb6Ta1HIRikBEOZfYw==} '@cspell/dict-en-gb@1.1.33': resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==} - '@cspell/dict-en_us@4.3.21': - resolution: {integrity: sha512-Bzoo2aS4Pej/MGIFlATpp0wMt9IzVHrhDjdV7FgkAIXbjrOn67ojbTxCgWs8AuCNVfK8lBYGEvs5+ElH1msF8w==} + '@cspell/dict-en_us@4.3.22': + resolution: {integrity: sha512-UegkIQhKkTLGarpYNV5ybW2JHzuxhDMOF9q9TW37iG8YoHp5jeVW3C0p3cH9nHWMwEjPinJFfxBd1LPRxGv5dQ==} '@cspell/dict-filetypes@3.0.4': resolution: {integrity: sha512-IBi8eIVdykoGgIv5wQhOURi5lmCNJq0we6DvqKoPQJHthXbgsuO1qrHSiUVydMiQl/XvcnUWTMeAlVUlUClnVg==} @@ -775,8 +775,8 @@ packages: '@sinonjs/text-encoding@0.7.2': resolution: {integrity: sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==} - '@stylistic/eslint-plugin-js@2.2.0': - resolution: {integrity: sha512-pdkNeVORubs+k7jmhHivYXggoFvw1ykAyGBQomodOYO8MhO8/IM798XVyjadC6EeTeBiXlEWYRy/4QV34hDz+A==} + '@stylistic/eslint-plugin-js@2.2.1': + resolution: {integrity: sha512-M2dQkKw2R4R+b1SJ/xElJ9bDVq/vCI31VpIIxkZD9KXCqbUHvtsGpZH3eO6MzmFWOZj4PfNdEQdP332MtqjCPg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.40.0' @@ -818,8 +818,8 @@ packages: '@types/minimatch@5.1.2': resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - '@types/node@20.14.2': - resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==} + '@types/node@20.14.3': + resolution: {integrity: sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw==} '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -864,8 +864,8 @@ packages: typescript: optional: true - '@typescript-eslint/types@7.13.0': - resolution: {integrity: sha512-QWuwm9wcGMAuTsxP+qz6LBBd3Uq8I5Nv8xb0mk54jmNoCyDspnMvVsOxI6IsMmway5d1S9Su2+sCKv1st2l6eA==} + '@typescript-eslint/types@7.13.1': + resolution: {integrity: sha512-7K7HMcSQIAND6RBL4kDl24sG/xKM13cA85dc7JnmQXw2cBDngg7c19B++JzvJHRG3zG36n9j1i451GBzRuHchw==} engines: {node: ^18.18.0 || >=20.0.0} '@typescript-eslint/types@8.0.0-alpha.30': @@ -1539,8 +1539,8 @@ packages: engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true - espree@10.0.1: - resolution: {integrity: sha512-MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww==} + espree@10.1.0: + resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} esprima@4.0.1: @@ -1764,8 +1764,8 @@ packages: resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} engines: {node: '>=18'} - globals@15.5.0: - resolution: {integrity: sha512-r7/9tQj5RylGxt/BKGv0D2SvehYvRFYg4ukSNk+EuZxvWI7uK/MJFmOCLq8aKvgh3EVBYFbBlOMAtaITXZr80w==} + globals@15.6.0: + resolution: {integrity: sha512-UzcJi88Hw//CurUIRa9Jxb0vgOCcuD/MNjwmXp633cyaRKkCWACkoqHCtfZv43b1kqXGg/fpOa8bwgacCeXsVg==} engines: {node: '>=18'} globalthis@1.0.4: @@ -2450,8 +2450,8 @@ packages: natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - neostandard@0.7.1: - resolution: {integrity: sha512-qZZvRUqPUQfQWLV6u4sUlpmuJSWYip6UCVyDJktvRZhFuyD0M9aspaQfkGphA5a1V1HR1237/L5RZEfA5u7qaw==} + neostandard@0.7.2: + resolution: {integrity: sha512-5kFn4IVhqjyS8Huem/hWdVqZr+bTnlxPR3cNfJEKUrHA6+8QuNODvgdprfpTYvrZKz5PVYGr/lRhe2c87rwaAw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -3057,10 +3057,10 @@ packages: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} - tatami-ng@0.4.13: - resolution: {integrity: sha512-55myS02pVzECcyRgq7Rio0mPQyKO5f6f3L4aO/2engizicFOvhWxboJqwjULjhlQInjnN2Th6YH4s+YTahJX7w==} + tatami-ng@0.4.15: + resolution: {integrity: sha512-7namoIntDAhLZPVC/B/eDVa94KamsyYz+FOSp/MUyw4f/fF5ba7u0F7omEwHuFa+aacK8Xc/q5ur0/y9qaDjag==} peerDependencies: - typescript: ^5.0.0 + typescript: ^5.4.3 tcomb-validation@3.4.1: resolution: {integrity: sha512-urVVMQOma4RXwiVCa2nM2eqrAomHROHvWPuj6UkDGz/eb5kcy0x6P0dVt6kzpUZtYMNoAqJLWmz1BPtxrtjtrA==} @@ -3376,11 +3376,11 @@ snapshots: '@biomejs/cli-win32-x64@1.8.1': optional: true - '@commitlint/cli@19.3.0(@types/node@20.14.2)(typescript@5.4.5)': + '@commitlint/cli@19.3.0(@types/node@20.14.3)(typescript@5.4.5)': dependencies: '@commitlint/format': 19.3.0 '@commitlint/lint': 19.2.2 - '@commitlint/load': 19.2.0(@types/node@20.14.2)(typescript@5.4.5) + '@commitlint/load': 19.2.0(@types/node@20.14.3)(typescript@5.4.5) '@commitlint/read': 19.2.1 '@commitlint/types': 19.0.3 execa: 8.0.1 @@ -3427,7 +3427,7 @@ snapshots: '@commitlint/rules': 19.0.3 '@commitlint/types': 19.0.3 - '@commitlint/load@19.2.0(@types/node@20.14.2)(typescript@5.4.5)': + '@commitlint/load@19.2.0(@types/node@20.14.3)(typescript@5.4.5)': dependencies: '@commitlint/config-validator': 19.0.3 '@commitlint/execute-rule': 19.0.0 @@ -3435,7 +3435,7 @@ snapshots: '@commitlint/types': 19.0.3 chalk: 5.3.0 cosmiconfig: 9.0.0(typescript@5.4.5) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.2)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.3)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -3493,7 +3493,7 @@ snapshots: '@cspell/dict-aws': 4.0.2 '@cspell/dict-bash': 4.1.3 '@cspell/dict-companies': 3.1.2 - '@cspell/dict-cpp': 5.1.9 + '@cspell/dict-cpp': 5.1.10 '@cspell/dict-cryptocurrencies': 5.0.0 '@cspell/dict-csharp': 4.0.2 '@cspell/dict-css': 4.0.12 @@ -3502,9 +3502,9 @@ snapshots: '@cspell/dict-docker': 1.1.7 '@cspell/dict-dotnet': 5.0.2 '@cspell/dict-elixir': 4.0.3 - '@cspell/dict-en-common-misspellings': 2.0.1 + '@cspell/dict-en-common-misspellings': 2.0.2 '@cspell/dict-en-gb': 1.1.33 - '@cspell/dict-en_us': 4.3.21 + '@cspell/dict-en_us': 4.3.22 '@cspell/dict-filetypes': 3.0.4 '@cspell/dict-fonts': 4.0.0 '@cspell/dict-fsharp': 1.0.1 @@ -3560,7 +3560,7 @@ snapshots: '@cspell/dict-companies@3.1.2': {} - '@cspell/dict-cpp@5.1.9': {} + '@cspell/dict-cpp@5.1.10': {} '@cspell/dict-cryptocurrencies@5.0.0': {} @@ -3580,11 +3580,11 @@ snapshots: '@cspell/dict-elixir@4.0.3': {} - '@cspell/dict-en-common-misspellings@2.0.1': {} + '@cspell/dict-en-common-misspellings@2.0.2': {} '@cspell/dict-en-gb@1.1.33': {} - '@cspell/dict-en_us@4.3.21': {} + '@cspell/dict-en_us@4.3.22': {} '@cspell/dict-filetypes@3.0.4': {} @@ -3678,7 +3678,7 @@ snapshots: dependencies: '@types/eslint': 8.56.10 '@types/estree': 1.0.5 - '@typescript-eslint/types': 7.13.0 + '@typescript-eslint/types': 7.13.1 comment-parser: 1.4.1 esquery: 1.5.0 jsdoc-type-pratt-parser: 4.0.0 @@ -3702,7 +3702,7 @@ snapshots: dependencies: ajv: 6.12.6 debug: 4.3.5 - espree: 10.0.1 + espree: 10.1.0 globals: 14.0.0 ignore: 5.3.1 import-fresh: 3.3.0 @@ -3750,7 +3750,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/yargs': 17.0.32 chalk: 4.1.2 @@ -3988,13 +3988,13 @@ snapshots: '@sinonjs/text-encoding@0.7.2': {} - '@stylistic/eslint-plugin-js@2.2.0(eslint@9.5.0)': + '@stylistic/eslint-plugin-js@2.2.1(eslint@9.5.0)': dependencies: '@types/eslint': 8.56.10 acorn: 8.12.0 eslint: 9.5.0 eslint-visitor-keys: 4.0.0 - espree: 10.0.1 + espree: 10.1.0 '@szmarczak/http-timer@5.0.1': dependencies: @@ -4004,7 +4004,7 @@ snapshots: '@types/conventional-commits-parser@5.0.0': dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/eslint@8.56.10': dependencies: @@ -4016,7 +4016,7 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.14.2 + '@types/node': 20.14.3 '@types/http-cache-semantics@4.0.4': {} @@ -4034,7 +4034,7 @@ snapshots: '@types/minimatch@5.1.2': {} - '@types/node@20.14.2': + '@types/node@20.14.3': dependencies: undici-types: 5.26.5 @@ -4094,7 +4094,7 @@ snapshots: - eslint - supports-color - '@typescript-eslint/types@7.13.0': {} + '@typescript-eslint/types@7.13.1': {} '@typescript-eslint/types@8.0.0-alpha.30': {} @@ -4476,9 +4476,9 @@ snapshots: core-util-is@1.0.3: {} - cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.2)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5): + cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.3)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5): dependencies: - '@types/node': 20.14.2 + '@types/node': 20.14.3 cosmiconfig: 9.0.0(typescript@5.4.5) jiti: 1.21.6 typescript: 5.4.5 @@ -4839,7 +4839,7 @@ snapshots: eslint: 9.5.0 eslint-plugin-es-x: 7.7.0(eslint@9.5.0) get-tsconfig: 4.7.5 - globals: 15.5.0 + globals: 15.6.0 ignore: 5.3.1 minimatch: 9.0.4 semver: 7.6.2 @@ -4874,7 +4874,7 @@ snapshots: escape-string-regexp: 4.0.0 eslint-scope: 8.0.1 eslint-visitor-keys: 4.0.0 - espree: 10.0.1 + espree: 10.1.0 esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 @@ -4896,7 +4896,7 @@ snapshots: transitivePeerDependencies: - supports-color - espree@10.0.1: + espree@10.1.0: dependencies: acorn: 8.12.0 acorn-jsx: 5.3.2(acorn@8.12.0) @@ -5155,7 +5155,7 @@ snapshots: globals@14.0.0: {} - globals@15.5.0: {} + globals@15.6.0: {} globalthis@1.0.4: dependencies: @@ -5565,7 +5565,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.14.2 + '@types/node': 20.14.3 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -5837,16 +5837,16 @@ snapshots: natural-compare@1.4.0: {} - neostandard@0.7.1(@typescript-eslint/parser@8.0.0-alpha.30(eslint@9.5.0)(typescript@5.4.5))(eslint@9.5.0)(typescript@5.4.5): + neostandard@0.7.2(@typescript-eslint/parser@8.0.0-alpha.30(eslint@9.5.0)(typescript@5.4.5))(eslint@9.5.0)(typescript@5.4.5): dependencies: '@humanwhocodes/gitignore-to-minimatch': 1.0.2 - '@stylistic/eslint-plugin-js': 2.2.0(eslint@9.5.0) + '@stylistic/eslint-plugin-js': 2.2.1(eslint@9.5.0) '@typescript-eslint/eslint-plugin': 8.0.0-alpha.30(@typescript-eslint/parser@8.0.0-alpha.30(eslint@9.5.0)(typescript@5.4.5))(eslint@9.5.0)(typescript@5.4.5) '@typescript-eslint/utils': 8.0.0-alpha.30(eslint@9.5.0)(typescript@5.4.5) eslint: 9.5.0 eslint-plugin-n: 17.9.0(eslint@9.5.0) find-up: 5.0.0 - globals: 15.5.0 + globals: 15.6.0 peowly: 1.3.0 typescript-eslint: 8.0.0-alpha.30(eslint@9.5.0)(typescript@5.4.5) transitivePeerDependencies: @@ -6519,7 +6519,7 @@ snapshots: tapable@2.2.1: {} - tatami-ng@0.4.13(typescript@5.4.5): + tatami-ng@0.4.15(typescript@5.4.5): dependencies: typescript: 5.4.5 -- 2.34.1