From a2193a2f001dc3440272080693f8ca861e457d97 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 14:31:09 +0000 Subject: [PATCH] chore(deps): update pnpm to v8.10.2 (#3) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | [`8.6.10` -> `8.10.2`](https://renovatebot.com/diffs/npm/pnpm/8.6.10/8.10.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/8.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/pnpm/8.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/pnpm/8.6.10/8.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/8.6.10/8.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
pnpm/pnpm (pnpm) ### [`v8.10.2`](https://togithub.com/pnpm/pnpm/releases/tag/v8.10.2) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.10.1...v8.10.2) #### Patch Changes - Fixed a regression that was shipped with pnpm v8.10.0. Dependencies that were already built should not be rebuilt on repeat install. This issue was introduced via the changes related to [supportedArchitectures](https://togithub.com/pnpm/pnpm/pull/7214). Related issue [#​7268](https://togithub.com/pnpm/pnpm/issues/7268). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v8.10.1`](https://togithub.com/pnpm/pnpm/releases/tag/v8.10.1) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.10.0...v8.10.1) #### Patch Changes - (Important) Tarball resolutions in `pnpm-lock.yaml` will no longer contain a `registry` field. This field has been unused for a long time. This change should not cause any issues besides backward compatible modifications to the lockfile [#​7262](https://togithub.com/pnpm/pnpm/pull/7262). - Fix issue when trying to use `pnpm dlx` in the root of a Windows Drive [#​7263](https://togithub.com/pnpm/pnpm/issues/7263). - Optional dependencies that do not have to be built will be reflinked (or hardlinked) to the store instead of copied [#​7046](https://togithub.com/pnpm/pnpm/issues/7046). - If a package's tarball cannot be fetched, print the dependency chain that leads to the failed package [#​7265](https://togithub.com/pnpm/pnpm/pull/7265). - After upgrading one of our dependencies, we started to sometimes have an error on publish. We have forked `@npmcli/arborist` to patch it with a fix [#​7269](https://togithub.com/pnpm/pnpm/pull/7269). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v8.10.0`](https://togithub.com/pnpm/pnpm/releases/tag/v8.10.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.9.2...v8.10.0) ##### Minor Changes - Support for multiple architectures when installing dependencies [#​5965](https://togithub.com/pnpm/pnpm/issues/5965). You can now specify architectures for which you'd like to install optional dependencies, even if they don't match the architecture of the system running the install. Use the `supportedArchitectures` field in `package.json` to define your preferences. For example, the following configuration tells pnpm to install optional dependencies for Windows x64: ```json { "pnpm": { "supportedArchitectures": { "os": ["win32"], "cpu": ["x64"] } } } ``` Whereas this configuration will have pnpm install optional dependencies for Windows, macOS, and the architecture of the system currently running the install. It includes artifacts for both x64 and arm64 CPUs: ```json { "pnpm": { "supportedArchitectures": { "os": ["win32", "darwin", "current"], "cpu": ["x64", "arm64"] } } } ``` Additionally, `supportedArchitectures` also supports specifying the `libc` of the system. - The `pnpm licenses list` command now accepts the `--filter` option to check the licenses of the dependencies of a subset of workspace projects [#​5806](https://togithub.com/pnpm/pnpm/issues/5806). ##### Patch Changes - Allow scoped name as bin name [#​7112](https://togithub.com/pnpm/pnpm/issues/7112). - When running scripts recursively inside a workspace, the logs of the scripts are grouped together in some CI tools. (Only works with `--workspace-concurrency 1`) - Print a warning when installing a dependency from a non-existent directory [#​7159](https://togithub.com/pnpm/pnpm/issues/7159) - Should fetch dependency from tarball url when patching dependency installed from git [#​7196](https://togithub.com/pnpm/pnpm/issues/7196) - `pnpm setup` should add a newline at the end of the updated shell config file [#​7227](https://togithub.com/pnpm/pnpm/issues/7227). - Improved the performance of linking bins of hoisted dependencies to `node_modules/.pnpm/node_modules/.bin` [#​7212](https://togithub.com/pnpm/pnpm/pull/7212). - Wrongful ELIFECYCLE error on program termination [#​7164](https://togithub.com/pnpm/pnpm/issues/7164). - `pnpm publish` should not pack the same file twice sometimes [#​6997](https://togithub.com/pnpm/pnpm/issues/6997). The fix was to update `npm-packlist` to the latest version. ##### Our Gold Sponsors
##### Our Silver Sponsors
### [`v8.9.2`](https://togithub.com/pnpm/pnpm/releases/tag/v8.9.2) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.9.1...v8.9.2) ##### Patch Changes - Don't use reflink on Windows [#​7186](https://togithub.com/pnpm/pnpm/issues/7186). - Do not run node-gyp rebuild if `preinstall` lifecycle script is present [#​7206](https://togithub.com/pnpm/pnpm/pull/7206). ##### Our Gold Sponsors
##### Our Silver Sponsors
### [`v8.9.1`](https://togithub.com/pnpm/pnpm/releases/tag/v8.9.1) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.9.0...v8.9.1) ##### Patch Changes - Optimize selection result output of `pnpm update --interactive` [7109](https://togithub.com/pnpm/pnpm/issues/7109) - When `shared-workspace-lockfile` is set to `false`, read the pnpm settings from `package.json` files that are nested. This was broken in pnpm v8.9.0 [#​7184](https://togithub.com/pnpm/pnpm/issues/7184). - Fix file cloning to `node_modules` on Windows Dev Drives [#​7186](https://togithub.com/pnpm/pnpm/issues/7186). This is a fix to a regression that was shipped with v8.9.0. - `pnpm dlx` should ignore any settings that are in a `package.json` file found in the current working directory [#​7198](https://togithub.com/pnpm/pnpm/issues/7198). ##### Our Gold Sponsors
##### Our Silver Sponsors
### [`v8.9.0`](https://togithub.com/pnpm/pnpm/releases/tag/v8.9.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.8.0...v8.9.0) #### Minor Changes - **🚀Performance improvement:** Use reflinks instead of hard links by default on macOS and Windows Dev Drives [#​5001](https://togithub.com/pnpm/pnpm/issues/5001). - The list of packages that are allowed to run installation scripts now may be provided in a separate configuration file. The path to the file should be specified via the `pnpm.onlyBuiltDependenciesFile` field in `package.json`. For instance: ```json { "dependencies": { "@​my-org/policy": "1.0.0" } "pnpm": { "onlyBuiltDependenciesFile": "node_modules/@​my-org/policy/allow-build.json" } } ``` In the example above, the list is loaded from a dependency. The JSON file with the list should contain an array of package names. For instance: ```json ["esbuild", "@​reflink/reflink"] ``` With the above list, only `esbuild` and `@reflink/reflink` will be allowed to run scripts during installation. Related issue: [#​7137](https://togithub.com/pnpm/pnpm/issues/7137). - Add `disallow-workspace-cycles` option to error instead of warn about cyclic dependencies - Allow `env rm` to remove multiple node versions at once, and introduce `env add` for installing node versions without setting as default [#​7155](https://togithub.com/pnpm/pnpm/pull/7155). #### Patch Changes - Fix memory error in `pnpm why` when the dependencies tree is too big, the command will now prune the tree to just 10 end leafs and now supports `--depth` argument [#​7122](https://togithub.com/pnpm/pnpm/pull/7122). - Use `neverBuiltDependencies` and `onlyBuiltDependencies` from the root `package.json` of the workspace, when `shared-workspace-lockfile` is set to `false` [#​7141](https://togithub.com/pnpm/pnpm/pull/7141). - Optimize peers resolution to avoid out-of-memory exceptions in some rare cases, when there are too many circular dependencies and peer dependencies [#​7149](https://togithub.com/pnpm/pnpm/pull/7149). - Instead of `pnpm.overrides` replacing `resolutions`, the two are now merged. This is intended to make it easier to migrate from Yarn by allowing one to keep using `resolutions` for Yarn, but adding additional changes just for pnpm using `pnpm.overrides`. #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v8.8.0`](https://togithub.com/pnpm/pnpm/releases/tag/v8.8.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.7.6...v8.8.0) #### Minor Changes - Add `--reporter-hide-prefix` option for `run` command to hide project name as prefix for lifecycle log outputs of running scripts [#​7061](https://togithub.com/pnpm/pnpm/issues/7061). #### Patch Changes - Pass through the `--ignore-scripts` command to install, when running `pnpm dedupe --ignore-scripts` [#​7102](https://togithub.com/pnpm/pnpm/issues/7102). - Throw meaningful error for config sub commands[#​7106](https://togithub.com/pnpm/pnpm/issues/7106). - When the `node-linker` is set to `hoisted`, the `package.json` files of the existing dependencies inside `node_modules` will be checked to verify their actual versions. The data in the `node_modules/.modules.yaml` and `node_modules/.pnpm/lock.yaml` may not be fully reliable, as an installation may fail after changes to dependencies were made but before those state files were updated [#​7107](https://togithub.com/pnpm/pnpm/pull/7107). - Don't update git-hosted dependencies when adding an unrelated dependency [#​7008](https://togithub.com/pnpm/pnpm/issues/7008). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v8.7.6`](https://togithub.com/pnpm/pnpm/releases/tag/v8.7.6) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.7.5...v8.7.6) #### Patch Changes - Don't run the `prepublishOnly` scripts of git-hosted dependencies [#​7026](https://togithub.com/pnpm/pnpm/issues/7026). - Fix a bug in which `use-node-version` or `node-version` isn't passed down to `checkEngine` when using pnpm workspace, resulting in an error [#​6981](https://togithub.com/pnpm/pnpm/issues/6981). - Don't print out each deprecated subdependency separately with its deprecation message. Just print out a summary of all the deprecated subdependencies [#​6707](https://togithub.com/pnpm/pnpm/issues/6707). - Fixed an ENOENT error that was sometimes happening during install with "hoisted" `node_modules` [#​6756](https://togithub.com/pnpm/pnpm/issues/6756). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v8.7.5`](https://togithub.com/pnpm/pnpm/releases/tag/v8.7.5) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.7.4...v8.7.5) #### Patch Changes - Improve performance of installation by using a worker for creating the symlinks inside `node_modules/.pnpm` [#​7069](https://togithub.com/pnpm/pnpm/pull/7069). - Tarballs that have hard links are now unpacked successfully. This fixes a regression introduced in v8.7.0, which was shipped with our new in-house tarball parser [#​7062](https://togithub.com/pnpm/pnpm/pull/7062). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v8.7.4`](https://togithub.com/pnpm/pnpm/releases/tag/v8.7.4) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.7.3...v8.7.4) #### Patch Changes - Fix a bug causing the pnpm server to hang if a tarball worker was requested while another worker was exiting [#​7041](https://togithub.com/pnpm/pnpm/pull/7041). - Fixes a regression published with pnpm v8.7.3. Don't hang while reading `package.json` from the content-addressable store [#​7051](https://togithub.com/pnpm/pnpm/pull/7051). - Allow create scoped package with preferred version. [#​7053](https://togithub.com/pnpm/pnpm/issues/7053) - Reverting a change shipped in v8.7 that caused issues with the `pnpm deploy` command and "injected dependencies" [#​6943](https://togithub.com/pnpm/pnpm/pull/6943). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v8.7.3`](https://togithub.com/pnpm/pnpm/releases/tag/v8.7.3) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.7.2...v8.7.3) #### Patch Changes - Fix a bug causing errors to be printed as "Cannot read properties of undefined (reading 'code')" instead of the underlying reason when using the pnpm store server [#​7032](https://togithub.com/pnpm/pnpm/pull/7032) #### Our Gold Sponsors
#### Our Silver Sponsors --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/s1adem4n/soundcloud). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 95 +++++++++++++++++++++----------------------------- 2 files changed, 41 insertions(+), 56 deletions(-) diff --git a/package.json b/package.json index f4aa3ab..7e464dd 100644 --- a/package.json +++ b/package.json @@ -76,7 +76,7 @@ "vitest": "^0.33.0", "yaml-eslint-parser": "^1.2.2" }, - "packageManager": "pnpm@8.6.10", + "packageManager": "pnpm@8.10.2", "engines": { "node": ">=18" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b9de4d6..e0c05be 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,10 +10,10 @@ devDependencies: version: 8.37.0 '@typescript-eslint/eslint-plugin': specifier: ^6.0.0 - version: 6.0.0(@typescript-eslint/parser@6.0.0)(eslint@8.40.0)(typescript@5.0.4) + version: 6.0.0(@typescript-eslint/parser@6.0.0)(eslint@8.40.0)(typescript@5.2.2) '@typescript-eslint/parser': specifier: ^6.0.0 - version: 6.0.0(eslint@8.40.0)(typescript@5.0.4) + version: 6.0.0(eslint@8.40.0)(typescript@5.2.2) '@vitest/coverage-istanbul': specifier: ^0.34.0 version: 0.34.0(vitest@0.33.0) @@ -31,7 +31,7 @@ devDependencies: version: 8.8.0(eslint@8.40.0) eslint-plugin-deprecation: specifier: ^1.4.1 - version: 1.4.1(eslint@8.40.0)(typescript@5.0.4) + version: 1.4.1(eslint@8.40.0)(typescript@5.2.2) eslint-plugin-eslint-comments: specifier: ^3.2.0 version: 3.2.0(eslint@8.40.0) @@ -55,7 +55,7 @@ devDependencies: version: 3.1.0 eslint-plugin-perfectionist: specifier: ^1.4.0 - version: 1.4.0(eslint@8.40.0)(typescript@5.0.4) + version: 1.4.0(eslint@8.40.0)(typescript@5.2.2) eslint-plugin-regexp: specifier: ^1.15.0 version: 1.15.0(eslint@8.40.0) @@ -109,7 +109,7 @@ devDependencies: version: 0.2.0 typescript: specifier: ^5.0.4 - version: 5.0.4 + version: 5.2.2 vitest: specifier: ^0.33.0 version: 0.33.0 @@ -1233,7 +1233,7 @@ packages: resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} dev: true - /@typescript-eslint/eslint-plugin@6.0.0(@typescript-eslint/parser@6.0.0)(eslint@8.40.0)(typescript@5.0.4): + /@typescript-eslint/eslint-plugin@6.0.0(@typescript-eslint/parser@6.0.0)(eslint@8.40.0)(typescript@5.2.2): resolution: {integrity: sha512-xuv6ghKGoiq856Bww/yVYnXGsKa588kY3M0XK7uUW/3fJNNULKRfZfSBkMTSpqGG/8ZCXCadfh8G/z/B4aqS/A==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -1245,10 +1245,10 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.5.1 - '@typescript-eslint/parser': 6.0.0(eslint@8.40.0)(typescript@5.0.4) + '@typescript-eslint/parser': 6.0.0(eslint@8.40.0)(typescript@5.2.2) '@typescript-eslint/scope-manager': 6.0.0 - '@typescript-eslint/type-utils': 6.0.0(eslint@8.40.0)(typescript@5.0.4) - '@typescript-eslint/utils': 6.0.0(eslint@8.40.0)(typescript@5.0.4) + '@typescript-eslint/type-utils': 6.0.0(eslint@8.40.0)(typescript@5.2.2) + '@typescript-eslint/utils': 6.0.0(eslint@8.40.0)(typescript@5.2.2) '@typescript-eslint/visitor-keys': 6.0.0 debug: 4.3.4 eslint: 8.40.0 @@ -1258,13 +1258,13 @@ packages: natural-compare: 1.4.0 natural-compare-lite: 1.4.0 semver: 7.5.4 - ts-api-utils: 1.0.1(typescript@5.0.4) - typescript: 5.0.4 + ts-api-utils: 1.0.1(typescript@5.2.2) + typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@6.0.0(eslint@8.40.0)(typescript@5.0.4): + /@typescript-eslint/parser@6.0.0(eslint@8.40.0)(typescript@5.2.2): resolution: {integrity: sha512-TNaufYSPrr1U8n+3xN+Yp9g31vQDJqhXzzPSHfQDLcaO4tU+mCfODPxCwf4H530zo7aUBE3QIdxCXamEnG04Tg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -1276,11 +1276,11 @@ packages: dependencies: '@typescript-eslint/scope-manager': 6.0.0 '@typescript-eslint/types': 6.0.0 - '@typescript-eslint/typescript-estree': 6.0.0(typescript@5.0.4) + '@typescript-eslint/typescript-estree': 6.0.0(typescript@5.2.2) '@typescript-eslint/visitor-keys': 6.0.0 debug: 4.3.4 eslint: 8.40.0 - typescript: 5.0.4 + typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true @@ -1309,7 +1309,7 @@ packages: '@typescript-eslint/visitor-keys': 6.10.0 dev: true - /@typescript-eslint/type-utils@6.0.0(eslint@8.40.0)(typescript@5.0.4): + /@typescript-eslint/type-utils@6.0.0(eslint@8.40.0)(typescript@5.2.2): resolution: {integrity: sha512-ah6LJvLgkoZ/pyJ9GAdFkzeuMZ8goV6BH7eC9FPmojrnX9yNCIsfjB+zYcnex28YO3RFvBkV6rMV6WpIqkPvoQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -1319,12 +1319,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.0.0(typescript@5.0.4) - '@typescript-eslint/utils': 6.0.0(eslint@8.40.0)(typescript@5.0.4) + '@typescript-eslint/typescript-estree': 6.0.0(typescript@5.2.2) + '@typescript-eslint/utils': 6.0.0(eslint@8.40.0)(typescript@5.2.2) debug: 4.3.4 eslint: 8.40.0 - ts-api-utils: 1.0.1(typescript@5.0.4) - typescript: 5.0.4 + ts-api-utils: 1.0.1(typescript@5.2.2) + typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true @@ -1344,7 +1344,7 @@ packages: engines: {node: ^16.0.0 || >=18.0.0} dev: true - /@typescript-eslint/typescript-estree@5.59.11(typescript@5.0.4): + /@typescript-eslint/typescript-estree@5.59.11(typescript@5.2.2): resolution: {integrity: sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -1359,13 +1359,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - tsutils: 3.21.0(typescript@5.0.4) - typescript: 5.0.4 + tsutils: 3.21.0(typescript@5.2.2) + typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@6.0.0(typescript@5.0.4): + /@typescript-eslint/typescript-estree@6.0.0(typescript@5.2.2): resolution: {integrity: sha512-2zq4O7P6YCQADfmJ5OTDQTP3ktajnXIRrYAtHM9ofto/CJZV3QfJ89GEaM2BNGeSr1KgmBuLhEkz5FBkS2RQhQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -1380,8 +1380,8 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - ts-api-utils: 1.0.1(typescript@5.0.4) - typescript: 5.0.4 + ts-api-utils: 1.0.1(typescript@5.2.2) + typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true @@ -1407,7 +1407,7 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@5.59.11(eslint@8.40.0)(typescript@5.0.4): + /@typescript-eslint/utils@5.59.11(eslint@8.40.0)(typescript@5.2.2): resolution: {integrity: sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -1418,7 +1418,7 @@ packages: '@types/semver': 7.5.4 '@typescript-eslint/scope-manager': 5.59.11 '@typescript-eslint/types': 5.59.11 - '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.0.4) + '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.2.2) eslint: 8.40.0 eslint-scope: 5.1.1 semver: 7.5.4 @@ -1427,7 +1427,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils@6.0.0(eslint@8.40.0)(typescript@5.0.4): + /@typescript-eslint/utils@6.0.0(eslint@8.40.0)(typescript@5.2.2): resolution: {integrity: sha512-SOr6l4NB6HE4H/ktz0JVVWNXqCJTOo/mHnvIte1ZhBQ0Cvd04x5uKZa3zT6tiodL06zf5xxdK8COiDvPnQ27JQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -1438,7 +1438,7 @@ packages: '@types/semver': 7.5.4 '@typescript-eslint/scope-manager': 6.0.0 '@typescript-eslint/types': 6.0.0 - '@typescript-eslint/typescript-estree': 6.0.0(typescript@5.0.4) + '@typescript-eslint/typescript-estree': 6.0.0(typescript@5.2.2) eslint: 8.40.0 eslint-scope: 5.1.1 semver: 7.5.4 @@ -2750,7 +2750,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 6.0.0(eslint@8.40.0)(typescript@5.0.4) + '@typescript-eslint/parser': 6.0.0(eslint@8.40.0)(typescript@5.2.2) debug: 3.2.7 eslint: 8.40.0 eslint-import-resolver-node: 0.3.7 @@ -2758,17 +2758,17 @@ packages: - supports-color dev: true - /eslint-plugin-deprecation@1.4.1(eslint@8.40.0)(typescript@5.0.4): + /eslint-plugin-deprecation@1.4.1(eslint@8.40.0)(typescript@5.2.2): resolution: {integrity: sha512-4vxTghWzxsBukPJVQupi6xlTuDc8Pyi1QlRCrFiLgwLPMJQW3cJCNaehJUKQqQFvuue5m4W27e179Y3Qjzeghg==} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 typescript: ^3.7.5 || ^4.0.0 || ^5.0.0 dependencies: - '@typescript-eslint/utils': 5.59.11(eslint@8.40.0)(typescript@5.0.4) + '@typescript-eslint/utils': 5.59.11(eslint@8.40.0)(typescript@5.2.2) eslint: 8.40.0 tslib: 2.5.0 - tsutils: 3.21.0(typescript@5.0.4) - typescript: 5.0.4 + tsutils: 3.21.0(typescript@5.2.2) + typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true @@ -2805,7 +2805,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 6.0.0(eslint@8.40.0)(typescript@5.0.4) + '@typescript-eslint/parser': 6.0.0(eslint@8.40.0)(typescript@5.2.2) array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 @@ -2893,13 +2893,13 @@ packages: engines: {node: '>=5.0.0'} dev: true - /eslint-plugin-perfectionist@1.4.0(eslint@8.40.0)(typescript@5.0.4): + /eslint-plugin-perfectionist@1.4.0(eslint@8.40.0)(typescript@5.2.2): resolution: {integrity: sha512-9gO+qmuU1DYzoYeN2D0PqYrI1FlqMPYGsZTWUWnWPrMQdFGFtq7eYraeQ57/8ffNBbVX6e6HvQOJ9iok9DfJvw==} peerDependencies: eslint: '>=8.0.0' dependencies: '@typescript-eslint/types': 5.59.11 - '@typescript-eslint/utils': 5.59.11(eslint@8.40.0)(typescript@5.0.4) + '@typescript-eslint/utils': 5.59.11(eslint@8.40.0)(typescript@5.2.2) eslint: 8.40.0 is-core-module: 2.12.1 json5: 2.2.3 @@ -2938,7 +2938,7 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 6.0.0(@typescript-eslint/parser@6.0.0)(eslint@8.40.0)(typescript@5.0.4) + '@typescript-eslint/eslint-plugin': 6.0.0(@typescript-eslint/parser@6.0.0)(eslint@8.40.0)(typescript@5.2.2) '@typescript-eslint/utils': 6.10.0(eslint@8.40.0)(typescript@5.2.2) eslint: 8.40.0 typescript: 5.2.2 @@ -6118,15 +6118,6 @@ packages: engines: {node: '>=8'} dev: true - /ts-api-utils@1.0.1(typescript@5.0.4): - resolution: {integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==} - engines: {node: '>=16.13.0'} - peerDependencies: - typescript: '>=4.2.0' - dependencies: - typescript: 5.0.4 - dev: true - /ts-api-utils@1.0.1(typescript@5.2.2): resolution: {integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==} engines: {node: '>=16.13.0'} @@ -6153,14 +6144,14 @@ packages: resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} dev: true - /tsutils@3.21.0(typescript@5.0.4): + /tsutils@3.21.0(typescript@5.2.2): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 5.0.4 + typescript: 5.2.2 dev: true /type-check@0.3.2: @@ -6236,12 +6227,6 @@ packages: is-typedarray: 1.0.0 dev: true - /typescript@5.0.4: - resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} - engines: {node: '>=12.20'} - hasBin: true - dev: true - /typescript@5.2.2: resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} engines: {node: '>=14.17'}