From 720a70ccade062ef5cdd04c7f8ae6190c60cc5e2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 20 May 2024 11:24:06 +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 --- .../typescript/http-client-pool/package.json | 4 ++-- .../http-client-pool/pnpm-lock.yaml | 20 +++++++++---------- .../express-cluster/package.json | 2 +- .../express-cluster/pnpm-lock.yaml | 10 +++++----- .../express-hybrid/package.json | 2 +- .../express-hybrid/pnpm-lock.yaml | 10 +++++----- .../express-worker_threads/package.json | 2 +- .../express-worker_threads/pnpm-lock.yaml | 10 +++++----- .../fastify-cluster/package.json | 2 +- .../fastify-cluster/pnpm-lock.yaml | 10 +++++----- .../fastify-hybrid/package.json | 2 +- .../fastify-hybrid/pnpm-lock.yaml | 10 +++++----- .../fastify-worker_threads/package.json | 2 +- .../fastify-worker_threads/pnpm-lock.yaml | 10 +++++----- .../typescript/smtp-client-pool/package.json | 2 +- .../smtp-client-pool/pnpm-lock.yaml | 10 +++++----- .../ws-cluster/package.json | 2 +- .../ws-cluster/pnpm-lock.yaml | 10 +++++----- .../ws-hybrid/package.json | 2 +- .../ws-hybrid/pnpm-lock.yaml | 10 +++++----- .../ws-worker_threads/package.json | 2 +- .../ws-worker_threads/pnpm-lock.yaml | 10 +++++----- 22 files changed, 72 insertions(+), 72 deletions(-) diff --git a/examples/typescript/http-client-pool/package.json b/examples/typescript/http-client-pool/package.json index 246f1070..baf3672b 100644 --- a/examples/typescript/http-client-pool/package.json +++ b/examples/typescript/http-client-pool/package.json @@ -21,9 +21,9 @@ "author": "", "license": "ISC", "dependencies": { - "axios": "^1.6.8", + "axios": "^1.7.0", "node-fetch": "^3.3.2", - "poolifier": "^4.0.8" + "poolifier": "^4.0.9" }, "devDependencies": { "@types/node": "^20.12.12", diff --git a/examples/typescript/http-client-pool/pnpm-lock.yaml b/examples/typescript/http-client-pool/pnpm-lock.yaml index 23b50a18..8eadf2e4 100644 --- a/examples/typescript/http-client-pool/pnpm-lock.yaml +++ b/examples/typescript/http-client-pool/pnpm-lock.yaml @@ -9,14 +9,14 @@ importers: .: dependencies: axios: - specifier: ^1.6.8 - version: 1.6.8 + specifier: ^1.7.0 + version: 1.7.0 node-fetch: specifier: ^3.3.2 version: 3.3.2 poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 devDependencies: '@types/node': specifier: ^20.12.12 @@ -33,8 +33,8 @@ packages: asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - axios@1.6.8: - resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==} + axios@1.7.0: + resolution: {integrity: sha512-IiB0wQeKyPRdsFVhBgIo31FbzOyf2M6wYl7/NVutFwFBRMiAbjNiydJIHKeLmPugF4kJLfA1uWZ82Is2QzqqFA==} combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} @@ -85,8 +85,8 @@ packages: resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} proxy-from-env@1.1.0: @@ -112,7 +112,7 @@ snapshots: asynckit@0.4.0: {} - axios@1.6.8: + axios@1.7.0: dependencies: follow-redirects: 1.15.6 form-data: 4.0.0 @@ -159,7 +159,7 @@ snapshots: fetch-blob: 3.2.0 formdata-polyfill: 4.0.10 - poolifier@4.0.8: {} + poolifier@4.0.9: {} proxy-from-env@1.1.0: {} diff --git a/examples/typescript/http-server-pool/express-cluster/package.json b/examples/typescript/http-server-pool/express-cluster/package.json index 011df72b..ae880219 100644 --- a/examples/typescript/http-server-pool/express-cluster/package.json +++ b/examples/typescript/http-server-pool/express-cluster/package.json @@ -23,7 +23,7 @@ "license": "ISC", "dependencies": { "express": "^4.19.2", - "poolifier": "^4.0.8" + "poolifier": "^4.0.9" }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", 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 e6779599..b7f78118 100644 --- a/examples/typescript/http-server-pool/express-cluster/pnpm-lock.yaml +++ b/examples/typescript/http-server-pool/express-cluster/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: specifier: ^4.19.2 version: 4.19.2 poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 devDependencies: '@rollup/plugin-typescript': specifier: ^11.1.6 @@ -631,8 +631,8 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} pretty-bytes@5.6.0: @@ -1387,7 +1387,7 @@ snapshots: picomatch@2.3.1: {} - poolifier@4.0.8: {} + poolifier@4.0.9: {} pretty-bytes@5.6.0: {} diff --git a/examples/typescript/http-server-pool/express-hybrid/package.json b/examples/typescript/http-server-pool/express-hybrid/package.json index 5b388534..7bc60a60 100644 --- a/examples/typescript/http-server-pool/express-hybrid/package.json +++ b/examples/typescript/http-server-pool/express-hybrid/package.json @@ -23,7 +23,7 @@ "license": "ISC", "dependencies": { "express": "^4.19.2", - "poolifier": "^4.0.8" + "poolifier": "^4.0.9" }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", 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 e6779599..b7f78118 100644 --- a/examples/typescript/http-server-pool/express-hybrid/pnpm-lock.yaml +++ b/examples/typescript/http-server-pool/express-hybrid/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: specifier: ^4.19.2 version: 4.19.2 poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 devDependencies: '@rollup/plugin-typescript': specifier: ^11.1.6 @@ -631,8 +631,8 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} pretty-bytes@5.6.0: @@ -1387,7 +1387,7 @@ snapshots: picomatch@2.3.1: {} - poolifier@4.0.8: {} + poolifier@4.0.9: {} pretty-bytes@5.6.0: {} 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 0a460e79..a0bfd51a 100644 --- a/examples/typescript/http-server-pool/express-worker_threads/package.json +++ b/examples/typescript/http-server-pool/express-worker_threads/package.json @@ -23,7 +23,7 @@ "license": "ISC", "dependencies": { "express": "^4.19.2", - "poolifier": "^4.0.8" + "poolifier": "^4.0.9" }, "devDependencies": { "@types/express": "^4.17.21", 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 d2ccba2c..a56ea053 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 @@ -12,8 +12,8 @@ importers: specifier: ^4.19.2 version: 4.19.2 poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 devDependencies: '@types/express': specifier: ^4.17.21 @@ -360,8 +360,8 @@ packages: path-to-regexp@0.1.7: resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} pretty-bytes@5.6.0: @@ -847,7 +847,7 @@ snapshots: path-to-regexp@0.1.7: {} - poolifier@4.0.8: {} + poolifier@4.0.9: {} pretty-bytes@5.6.0: {} diff --git a/examples/typescript/http-server-pool/fastify-cluster/package.json b/examples/typescript/http-server-pool/fastify-cluster/package.json index c5df9ba7..01cf75d0 100644 --- a/examples/typescript/http-server-pool/fastify-cluster/package.json +++ b/examples/typescript/http-server-pool/fastify-cluster/package.json @@ -23,7 +23,7 @@ "license": "ISC", "dependencies": { "fastify": "^4.27.0", - "poolifier": "^4.0.8" + "poolifier": "^4.0.9" }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", 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 5cc9b029..e38897b4 100644 --- a/examples/typescript/http-server-pool/fastify-cluster/pnpm-lock.yaml +++ b/examples/typescript/http-server-pool/fastify-cluster/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: specifier: ^4.27.0 version: 4.27.0 poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 devDependencies: '@rollup/plugin-typescript': specifier: ^11.1.6 @@ -571,8 +571,8 @@ packages: resolution: {integrity: sha512-qUcgfrlyOtjwhNLdbhoL7NR4NkHjzykAPw0V2QLFbvu/zss29h4NkRnibyFzBrNCbzCOY3WZ9hhKSwfOkNggYA==} hasBin: true - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} pretty-bytes@5.6.0: @@ -1268,7 +1268,7 @@ snapshots: sonic-boom: 4.0.1 thread-stream: 3.0.0 - poolifier@4.0.8: {} + poolifier@4.0.9: {} pretty-bytes@5.6.0: {} diff --git a/examples/typescript/http-server-pool/fastify-hybrid/package.json b/examples/typescript/http-server-pool/fastify-hybrid/package.json index 5d8daf97..63d07993 100644 --- a/examples/typescript/http-server-pool/fastify-hybrid/package.json +++ b/examples/typescript/http-server-pool/fastify-hybrid/package.json @@ -24,7 +24,7 @@ "dependencies": { "fastify": "^4.27.0", "fastify-plugin": "^4.5.1", - "poolifier": "^4.0.8" + "poolifier": "^4.0.9" }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", 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 37925767..d76d683d 100644 --- a/examples/typescript/http-server-pool/fastify-hybrid/pnpm-lock.yaml +++ b/examples/typescript/http-server-pool/fastify-hybrid/pnpm-lock.yaml @@ -15,8 +15,8 @@ importers: specifier: ^4.5.1 version: 4.5.1 poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 devDependencies: '@rollup/plugin-typescript': specifier: ^11.1.6 @@ -577,8 +577,8 @@ packages: resolution: {integrity: sha512-qUcgfrlyOtjwhNLdbhoL7NR4NkHjzykAPw0V2QLFbvu/zss29h4NkRnibyFzBrNCbzCOY3WZ9hhKSwfOkNggYA==} hasBin: true - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} pretty-bytes@5.6.0: @@ -1276,7 +1276,7 @@ snapshots: sonic-boom: 4.0.1 thread-stream: 3.0.0 - poolifier@4.0.8: {} + poolifier@4.0.9: {} pretty-bytes@5.6.0: {} 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 2bfbb36a..8874e198 100644 --- a/examples/typescript/http-server-pool/fastify-worker_threads/package.json +++ b/examples/typescript/http-server-pool/fastify-worker_threads/package.json @@ -24,7 +24,7 @@ "dependencies": { "fastify": "^4.27.0", "fastify-plugin": "^4.5.1", - "poolifier": "^4.0.8" + "poolifier": "^4.0.9" }, "devDependencies": { "@types/node": "^20.12.12", 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 012ce353..1f576568 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 @@ -15,8 +15,8 @@ importers: specifier: ^4.5.1 version: 4.5.1 poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 devDependencies: '@types/node': specifier: ^20.12.12 @@ -299,8 +299,8 @@ packages: resolution: {integrity: sha512-qUcgfrlyOtjwhNLdbhoL7NR4NkHjzykAPw0V2QLFbvu/zss29h4NkRnibyFzBrNCbzCOY3WZ9hhKSwfOkNggYA==} hasBin: true - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} pretty-bytes@5.6.0: @@ -729,7 +729,7 @@ snapshots: sonic-boom: 4.0.1 thread-stream: 3.0.0 - poolifier@4.0.8: {} + poolifier@4.0.9: {} pretty-bytes@5.6.0: {} diff --git a/examples/typescript/smtp-client-pool/package.json b/examples/typescript/smtp-client-pool/package.json index e6138c97..9aece7fc 100644 --- a/examples/typescript/smtp-client-pool/package.json +++ b/examples/typescript/smtp-client-pool/package.json @@ -21,7 +21,7 @@ "license": "ISC", "dependencies": { "nodemailer": "^6.9.13", - "poolifier": "^4.0.8" + "poolifier": "^4.0.9" }, "devDependencies": { "@types/node": "^20.12.12", diff --git a/examples/typescript/smtp-client-pool/pnpm-lock.yaml b/examples/typescript/smtp-client-pool/pnpm-lock.yaml index 104a9cc8..036eaf4d 100644 --- a/examples/typescript/smtp-client-pool/pnpm-lock.yaml +++ b/examples/typescript/smtp-client-pool/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: specifier: ^6.9.13 version: 6.9.13 poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 devDependencies: '@types/node': specifier: ^20.12.12 @@ -37,8 +37,8 @@ packages: resolution: {integrity: sha512-7o38Yogx6krdoBf3jCAqnIN4oSQFx+fMa0I7dK1D+me9kBxx12D+/33wSb+fhOCtIxvYJ+4x4IMEhmhCKfAiOA==} engines: {node: '>=6.0.0'} - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} typescript@5.4.5: @@ -61,7 +61,7 @@ snapshots: nodemailer@6.9.13: {} - poolifier@4.0.8: {} + poolifier@4.0.9: {} typescript@5.4.5: {} diff --git a/examples/typescript/websocket-server-pool/ws-cluster/package.json b/examples/typescript/websocket-server-pool/ws-cluster/package.json index f968b13a..f346a6ae 100644 --- a/examples/typescript/websocket-server-pool/ws-cluster/package.json +++ b/examples/typescript/websocket-server-pool/ws-cluster/package.json @@ -21,7 +21,7 @@ "author": "", "license": "ISC", "dependencies": { - "poolifier": "^4.0.8", + "poolifier": "^4.0.9", "ws": "^8.17.0" }, "devDependencies": { 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 a73f5d18..0eef847a 100644 --- a/examples/typescript/websocket-server-pool/ws-cluster/pnpm-lock.yaml +++ b/examples/typescript/websocket-server-pool/ws-cluster/pnpm-lock.yaml @@ -9,8 +9,8 @@ importers: .: dependencies: poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 ws: specifier: ^8.17.0 version: 8.17.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) @@ -329,8 +329,8 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} queue-microtask@1.2.3: @@ -652,7 +652,7 @@ snapshots: picomatch@2.3.1: {} - poolifier@4.0.8: {} + poolifier@4.0.9: {} queue-microtask@1.2.3: {} diff --git a/examples/typescript/websocket-server-pool/ws-hybrid/package.json b/examples/typescript/websocket-server-pool/ws-hybrid/package.json index a1ac8d51..af68fef2 100644 --- a/examples/typescript/websocket-server-pool/ws-hybrid/package.json +++ b/examples/typescript/websocket-server-pool/ws-hybrid/package.json @@ -21,7 +21,7 @@ "author": "", "license": "ISC", "dependencies": { - "poolifier": "^4.0.8", + "poolifier": "^4.0.9", "ws": "^8.17.0" }, "devDependencies": { 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 a73f5d18..0eef847a 100644 --- a/examples/typescript/websocket-server-pool/ws-hybrid/pnpm-lock.yaml +++ b/examples/typescript/websocket-server-pool/ws-hybrid/pnpm-lock.yaml @@ -9,8 +9,8 @@ importers: .: dependencies: poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 ws: specifier: ^8.17.0 version: 8.17.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) @@ -329,8 +329,8 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} queue-microtask@1.2.3: @@ -652,7 +652,7 @@ snapshots: picomatch@2.3.1: {} - poolifier@4.0.8: {} + poolifier@4.0.9: {} queue-microtask@1.2.3: {} 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 789e61d5..5bdf5d82 100644 --- a/examples/typescript/websocket-server-pool/ws-worker_threads/package.json +++ b/examples/typescript/websocket-server-pool/ws-worker_threads/package.json @@ -21,7 +21,7 @@ "author": "", "license": "ISC", "dependencies": { - "poolifier": "^4.0.8", + "poolifier": "^4.0.9", "ws": "^8.17.0" }, "devDependencies": { 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 06755bd2..c72e9590 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 @@ -9,8 +9,8 @@ importers: .: dependencies: poolifier: - specifier: ^4.0.8 - version: 4.0.8 + specifier: ^4.0.9 + version: 4.0.9 ws: specifier: ^8.17.0 version: 8.17.0(bufferutil@4.0.8)(utf-8-validate@6.0.4) @@ -48,8 +48,8 @@ packages: resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} hasBin: true - poolifier@4.0.8: - resolution: {integrity: sha512-sKkazwnJ6X3ahcG+VNTgfRPuZz6NUI7cCQVrxa9vVm3laWSmoq4VhZ7oA9Ffsw7esJTcuz/g8971C1sqylBptA==} + poolifier@4.0.9: + resolution: {integrity: sha512-p1S1ybm/oPeuDm1z9cJZ8lzwj/e5if4zuixz5vBAr0VysY8adSeheNHdRXGjijAlmDNt/PTMaYagpeltIa+dPA==} engines: {node: '>=18.0.0', pnpm: '>=9.0.0'} typescript@5.4.5: @@ -94,7 +94,7 @@ snapshots: node-gyp-build@4.8.1: optional: true - poolifier@4.0.8: {} + poolifier@4.0.9: {} typescript@5.4.5: {} -- 2.34.1