From db59d71ee08527ee544ce78b1a947c4713b6beea Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 11 Apr 2023 23:43:39 +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 --- package.json | 4 ++-- pnpm-lock.yaml | 24 ++++++++++++------------ src/utils/CircularArray.ts | 2 +- ui/web/pnpm-lock.yaml | 7 ++++++- 4 files changed, 21 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index 81f16142..b795189a 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "mnemonist": "^0.39.5", "moment": "^2.29.4", "mongodb": "^5.2.0", - "poolifier": "^2.4.6", + "poolifier": "^2.4.7", "proper-lockfile": "^4.1.2", "source-map-support": "^0.5.21", "tar": "^6.1.13", @@ -130,7 +130,7 @@ "eslint-config-prettier": "^8.8.0", "eslint-import-resolver-typescript": "^3.5.5", "eslint-plugin-import": "^2.27.5", - "eslint-plugin-jsdoc": "^41.1.0", + "eslint-plugin-jsdoc": "^41.1.1", "eslint-plugin-n": "^15.7.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-tsdoc": "^0.2.17", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 224e8567..cd6b632e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -47,8 +47,8 @@ dependencies: specifier: ^5.2.0 version: 5.2.0 poolifier: - specifier: ^2.4.6 - version: 2.4.6 + specifier: ^2.4.7 + version: 2.4.7 proper-lockfile: specifier: ^4.1.2 version: 4.1.2 @@ -153,8 +153,8 @@ devDependencies: specifier: ^2.27.5 version: 2.27.5(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.38.0) eslint-plugin-jsdoc: - specifier: ^41.1.0 - version: 41.1.0(eslint@8.38.0) + specifier: ^41.1.1 + version: 41.1.1(eslint@8.38.0) eslint-plugin-n: specifier: ^15.7.0 version: 15.7.0(eslint@8.38.0) @@ -1919,9 +1919,9 @@ packages: /aproba@2.0.0: resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - /are-docs-informative@0.0.1: - resolution: {integrity: sha512-iBN6NxFQTEH0au0K8EOz6BoXXs9Pz6bGOPOgQpstabUHlX7fFx72TXB/wy7hSGZ8QcMI+XalPeM3p8IG5ncGIA==} - engines: {node: '>=18'} + /are-docs-informative@0.0.2: + resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} + engines: {node: '>=14'} dev: true /are-we-there-yet@2.0.0: @@ -4053,14 +4053,14 @@ packages: - supports-color dev: true - /eslint-plugin-jsdoc@41.1.0(eslint@8.38.0): - resolution: {integrity: sha512-7nE0soOQfVhRNeV0pXTUz9IhdpBiAFNbRgs1W7TcPIOx+c4Qvy3vgI4848O9UmHrbrVUaYwpVHZvaXDeP0SBeg==} + /eslint-plugin-jsdoc@41.1.1(eslint@8.38.0): + resolution: {integrity: sha512-dfH97DKLGtQ5dgEMzd+GSUuY+xX/yyAfjML3O0pEWmMMpylsG6Ro65s4ziYXKmixiENYK9CTQxCVRGqZUFN2Mw==} engines: {node: ^14 || ^16 || ^17 || ^18 || ^19} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: '@es-joy/jsdoccomment': 0.37.0 - are-docs-informative: 0.0.1 + are-docs-informative: 0.0.2 comment-parser: 1.3.1 debug: 4.3.4(supports-color@8.1.1) escape-string-regexp: 4.0.0 @@ -7769,8 +7769,8 @@ packages: dependencies: semver-compare: 1.0.0 - /poolifier@2.4.6: - resolution: {integrity: sha512-Rh3pXMG9lTdirBBFYBKNDxZ6M2Ro0EkwPppgQyFrgFlMsTXchBirrvI+H4Qy1S4h6kXAbIyH5C9vtXT3rojncQ==} + /poolifier@2.4.7: + resolution: {integrity: sha512-rX/PnMAXSOiN0XWHqP3QswcaeI3P7g1tRqt6FwYlvWEWbSvUuZNVkV2w2UlAgUwdkR1f1a4eoj3+D/TJj1dfpw==} engines: {node: '>=16.0.0'} requiresBuild: true dev: false diff --git a/src/utils/CircularArray.ts b/src/utils/CircularArray.ts index 539688cc..fb73ced9 100644 --- a/src/utils/CircularArray.ts +++ b/src/utils/CircularArray.ts @@ -3,7 +3,7 @@ const DEFAULT_CIRCULAR_ARRAY_SIZE = 1024; /** - * Array with a maximum length shifting items when full. + * Array with a maximum length and shifting items when full. */ export class CircularArray extends Array { public size: number; diff --git a/ui/web/pnpm-lock.yaml b/ui/web/pnpm-lock.yaml index 2516400d..a63212c1 100644 --- a/ui/web/pnpm-lock.yaml +++ b/ui/web/pnpm-lock.yaml @@ -10709,6 +10709,11 @@ packages: engines: {node: '>=10'} dev: true + /yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + dev: true + /yargs-unparser@2.0.0: resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} engines: {node: '>=10'} @@ -10745,7 +10750,7 @@ packages: require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 20.2.4 + yargs-parser: 20.2.9 dev: true /yauzl@2.10.0: -- 2.34.1