unjs / nypm

🌈 Unified Package Manager for Node.js and Bun
MIT License
474 stars 17 forks source link

chore(deps): update all non-major dependencies #43

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ^18.13.0 -> ^18.14.6 age adoption passing confidence
@vitest/coverage-c8 ^0.28.5 -> ^0.29.2 age adoption passing confidence
changelogen ^0.4.1 -> ^0.5.1 age adoption passing confidence
corepack ^0.15.3 -> ^0.17.0 age adoption passing confidence
eslint (source) ^8.34.0 -> ^8.35.0 age adoption passing confidence
jiti ^1.17.0 -> ^1.17.2 age adoption passing confidence
pnpm (source) 7.27.0 -> 7.29.0 age adoption passing confidence
unbuild ^1.1.1 -> ^1.1.2 age adoption passing confidence
vitest ^0.28.5 -> ^0.29.2 age adoption passing confidence

Release Notes

vitest-dev/vitest ### [`v0.29.2`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.29.2) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.29.1...v0.29.2) #####    🐞 Bug Fixes - Optimize dependencies in setup files  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2935](https://togithub.com/vitest-dev/vitest/issues/2935) [(c169f)](https://togithub.com/vitest-dev/vitest/commit/c169f980) - **coverage**: C8 provider to work when isolate:false  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/2929](https://togithub.com/vitest-dev/vitest/issues/2929) [(86538)](https://togithub.com/vitest-dev/vitest/commit/8653830b) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.29.1...v0.29.2) ### [`v0.29.1`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.29.1) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.29.0...v0.29.1) #####    🐞 Bug Fixes - Wait for optimized dependency to be bundled in non-pnpm package managers  -  by [@​sheremet-va](https://togithub.com/sheremet-va) [(d2460)](https://togithub.com/vitest-dev/vitest/commit/d2460b7a) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.29.0...v0.29.1) ### [`v0.29.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.29.0) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.28.5...v0.29.0) This release makes some significant changes to how tests are running. If you were using `--no-threads` before, you might consider enabling `--single-thread` instead (because your tests are now running in `child_process` instead of a worker thread) or try our new performance optimization feature (discussed later). If you were relying on API that was not available inside a worker (like `process.chdir()`, you can now use this option. One of the potential breaking bug fixes is that environments do not share the same global scope anymore if you run them with `--no-isolate`, `--no-threads` or `--single-thread` - you might need to update your setup files if you were relying on a global variable before. If you had performance issues on large code bases before, try the new [`deps.experimentalOptimizer`](https://vitest.dev/config/#deps-experimentaloptimizer) option instead of disabling threads. Feedback is welcome! One of the breaking changes includes adding a link to snapshots inside snapshot files, meaning you will need to update all your snapshots. #####    🚨 Breaking Changes - Vitest as peer dependency for coverage packages  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/2836](https://togithub.com/vitest-dev/vitest/issues/2836) [(94247)](https://togithub.com/vitest-dev/vitest/commit/94247f1b) - Coverage-c8 to use V8 profiler directly instead of `NODE_V8_COVERAGE`  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/2786](https://togithub.com/vitest-dev/vitest/issues/2786) [(095c6)](https://togithub.com/vitest-dev/vitest/commit/095c6390) - Add a link to the comment at the top of the snapshot file  -  by [@​btea](https://togithub.com/btea) in [https://github.com/vitest-dev/vitest/issues/2867](https://togithub.com/vitest-dev/vitest/issues/2867) [(615e1)](https://togithub.com/vitest-dev/vitest/commit/615e150b) - Always run separate environments in isolation  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2860](https://togithub.com/vitest-dev/vitest/issues/2860) [(1f858)](https://togithub.com/vitest-dev/vitest/commit/1f858e0c) - Tests with `node` and `jsdom` (and other environments) now don't share the same global scope, if you run them with `--no-isolate` or `--no-threads` flag. Vitest doesn't provide a way to restore the previous behavior as it is considered a bug. - Use child_process when --no-threads is used  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2772](https://togithub.com/vitest-dev/vitest/issues/2772) [(7bf54)](https://togithub.com/vitest-dev/vitest/commit/7bf54505) - Tests inside `chid_process` might run longer due to the communication overhead. If you want to restore the previous behavior, use `--single-thread`. #####    🚀 Features - Add test seed to banner  -  by [@​btkostner](https://togithub.com/btkostner) in [https://github.com/vitest-dev/vitest/issues/2877](https://togithub.com/vitest-dev/vitest/issues/2877) [(bdb39)](https://togithub.com/vitest-dev/vitest/commit/bdb39569) - Use custom source-map-support implementation  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2905](https://togithub.com/vitest-dev/vitest/issues/2905) [(6ff6c)](https://togithub.com/vitest-dev/vitest/commit/6ff6c6eb) - Add an option to enable Vite optimizer  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2912](https://togithub.com/vitest-dev/vitest/issues/2912) [(af8de)](https://togithub.com/vitest-dev/vitest/commit/af8de362) - **coverage**: - Add support for coverage reporter options  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/2690](https://togithub.com/vitest-dev/vitest/issues/2690) [(f8176)](https://togithub.com/vitest-dev/vitest/commit/f8176182) - Automatic threshold updating  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/2886](https://togithub.com/vitest-dev/vitest/issues/2886) [(e1652)](https://togithub.com/vitest-dev/vitest/commit/e1652163) - **spy**: - Implement mock.withImplementation API  -  by [@​obadakhalili](https://togithub.com/obadakhalili) and [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2835](https://togithub.com/vitest-dev/vitest/issues/2835) [(610b1)](https://togithub.com/vitest-dev/vitest/commit/610b1d46) - **vite-node**: - Cli option for vite mode  -  by [@​abarke](https://togithub.com/abarke) in [https://github.com/vitest-dev/vitest/issues/2893](https://togithub.com/vitest-dev/vitest/issues/2893) [(0fc08)](https://togithub.com/vitest-dev/vitest/commit/0fc08032) #####    🐞 Bug Fixes - Wait for console.log to print a message before terminating a worker  -  by [@​sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/2861](https://togithub.com/vitest-dev/vitest/issues/2861) [(fbc54)](https://togithub.com/vitest-dev/vitest/commit/fbc54c91) - Cleanup last mocked cache when call vi.doMock  -  by [@​mysteryven](https://togithub.com/mysteryven) in [https://github.com/vitest-dev/vitest/issues/2872](https://togithub.com/vitest-dev/vitest/issues/2872) [(65d71)](https://togithub.com/vitest-dev/vitest/commit/65d71b9e) - Reload changed configuration file on watch mode  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/2889](https://togithub.com/vitest-dev/vitest/issues/2889) [(4d277)](https://togithub.com/vitest-dev/vitest/commit/4d277d8d) - **coverage**: Custom providers to work inside worker threads  -  by [@​AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/2817](https://togithub.com/vitest-dev/vitest/issues/2817) [(81604)](https://togithub.com/vitest-dev/vitest/commit/81604bce) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.28.5...v0.29.0)
unjs/changelogen ### [`v0.5.1`](https://togithub.com/unjs/changelogen/blob/HEAD/CHANGELOG.md#v051) [Compare Source](https://togithub.com/unjs/changelogen/compare/v0.5.0...v0.5.1) [compare changes](https://togithub.com/unjs/changelogen/compare/v0.5.0...v0.5.1) ##### 🩹 Fixes - Allow providing no versions ([ac84c39](https://togithub.com/unjs/changelogen/commit/ac84c39)) - Use parsed release body ([aec2341](https://togithub.com/unjs/changelogen/commit/aec2341)) - Strip title line from release ([319f7ce](https://togithub.com/unjs/changelogen/commit/319f7ce)) ##### 🏡 Chore - Simplify release command ([225fa64](https://togithub.com/unjs/changelogen/commit/225fa64)) ##### ❤️ Contributors - Pooya Parsa ([@​pi0](http://github.com/pi0)) ### [`v0.5.0`](https://togithub.com/unjs/changelogen/blob/HEAD/CHANGELOG.md#v050) [Compare Source](https://togithub.com/unjs/changelogen/compare/v0.4.1...v0.5.0) [compare changes](https://togithub.com/unjs/changelogen/compare/v0.4.1...v0.5.0) ##### 🚀 Enhancements - Update execa to v7 ([e61e2f6](https://togithub.com/unjs/changelogen/commit/e61e2f6)) - ⚠️ Support different repository providers ([#​55](https://togithub.com/unjs/changelogen/pull/55)) - Github release integration ([#​67](https://togithub.com/unjs/changelogen/pull/67)) - Support explicit bumping as major, minor, or patch via cli ([c8afa86](https://togithub.com/unjs/changelogen/commit/c8afa86)) - Automatically resolve github token from gh cli ([231a3ec](https://togithub.com/unjs/changelogen/commit/231a3ec)) - Default `gh release` to latest version ([44788f5](https://togithub.com/unjs/changelogen/commit/44788f5)) ##### 🩹 Fixes - Stage `CHANGELOG.md` and `package.json` when releasing ([69d375c](https://togithub.com/unjs/changelogen/commit/69d375c)) - Add correct output file to git ([#​64](https://togithub.com/unjs/changelogen/pull/64)) - Update ungh link ([a5ab510](https://togithub.com/unjs/changelogen/commit/a5ab510)) - Only access latest tag accessible from current branch ([#​69](https://togithub.com/unjs/changelogen/pull/69)) - **cli:** Don't eat up first `-*` arg ([77b483b](https://togithub.com/unjs/changelogen/commit/77b483b)) ##### 🏡 Chore - Fix lint issue and update snapshots ([e162ab8](https://togithub.com/unjs/changelogen/commit/e162ab8)) - Mention gh cli login ([7f4a05f](https://togithub.com/unjs/changelogen/commit/7f4a05f)) ##### ⚠️ Breaking Changes - ⚠️ Support different repository providers ([#​55](https://togithub.com/unjs/changelogen/pull/55)) ##### ❤️ Contributors - Pooya Parsa ([@​pi0](http://github.com/pi0)) - Daniel Roe - Donald Shtjefni ([@​dnldsht](http://github.com/dnldsht))
nodejs/corepack ### [`v0.17.0`](https://togithub.com/nodejs/corepack/blob/HEAD/CHANGELOG.md#​0170-httpsgithubcomnodejscorepackcomparev0160v0170-2023-02-24) [Compare Source](https://togithub.com/nodejs/corepack/compare/v0.16.0...v0.17.0) ##### ⚠ BREAKING CHANGES - add `"exports"` to the `package.json` ([#​239](https://togithub.com/nodejs/corepack/issues/239)) ##### Features - update package manager versions ([#​242](https://togithub.com/nodejs/corepack/issues/242)) ([5141639](https://togithub.com/nodejs/corepack/commit/5141639af8198a343105be1e98a74f7c9e152472)) ##### Bug Fixes - add `"exports"` to the `package.json` ([#​239](https://togithub.com/nodejs/corepack/issues/239)) ([8e12d08](https://togithub.com/nodejs/corepack/commit/8e12d088dec171c03e90f623895a1fbf867130e6)) ### [`v0.16.0`](https://togithub.com/nodejs/corepack/blob/HEAD/CHANGELOG.md#​0160-httpsgithubcomnodejscorepackcomparev0153v0160-2023-02-17) [Compare Source](https://togithub.com/nodejs/corepack/compare/v0.15.3...v0.16.0) ##### Features - update package manager versions ([#​228](https://togithub.com/nodejs/corepack/issues/228)) ([bb000f9](https://togithub.com/nodejs/corepack/commit/bb000f9c10a1fbd85f2c15a90218d90b42473130)) - build: migrate to ESBuild ([#​229](https://togithub.com/nodejs/corepack/pull/229)) ([15ceb83](https://togithub.com/nodejs/corepack/commit/15ceb832a34a223efbe3d3f9cb792d9101a7022a)) ##### Bug Fixes - npm registry override ([#​219](https://togithub.com/nodejs/corepack/issues/219)) ([1b35362](https://togithub.com/nodejs/corepack/commit/1b353624e644874d9ef6c9acaf6d1254bff3015a))
eslint/eslint ### [`v8.35.0`](https://togithub.com/eslint/eslint/releases/tag/v8.35.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.34.0...v8.35.0) ##### Features - [`8e34a04`](https://togithub.com/eslint/eslint/commit/8e34a04e3a4395bce59bc6acadf84281abc11d18) feat: add `afterHashbangComment` option to `lines-around-comment` rule ([#​16920](https://togithub.com/eslint/eslint/issues/16920)) (SUZUKI Sosuke) - [`c8c0c71`](https://togithub.com/eslint/eslint/commit/c8c0c715a2964cc1859b99f9d4f542675094d1d5) feat: Move all and recommended configs into package. ([#​16844](https://togithub.com/eslint/eslint/issues/16844)) (Nicholas C. Zakas) - [`71f6f0d`](https://togithub.com/eslint/eslint/commit/71f6f0dcd574320ee71c3eb1f313841899bdf260) feat: report more cases with `??` in no-constant-binary-expression ([#​16826](https://togithub.com/eslint/eslint/issues/16826)) (Daiki Nishikawa) ##### Bug Fixes - [`9698bc5`](https://togithub.com/eslint/eslint/commit/9698bc5cdec1bbee567a6a489da82e87fe65d019) fix: pin esquery v1.4.0 (fixes [#​16896](https://togithub.com/eslint/eslint/issues/16896)) ([#​16897](https://togithub.com/eslint/eslint/issues/16897)) (唯然) ##### Documentation - [`f9f195e`](https://togithub.com/eslint/eslint/commit/f9f195ef12deb114fb86763010a23ea0cb4c78d1) docs: Plugin docs cleanup & expansion ([#​16862](https://togithub.com/eslint/eslint/issues/16862)) (Ben Perlmutter) - [`df809fd`](https://togithub.com/eslint/eslint/commit/df809fdedc5fc92df4be8340e28baedbde605b4f) docs: Custom Formatters page cleanup/expansion ([#​16886](https://togithub.com/eslint/eslint/issues/16886)) (Ben Perlmutter) - [`0700d1b`](https://togithub.com/eslint/eslint/commit/0700d1b14659bf39b1a08f082c44c9084cf676a8) docs: Add PostCSS/Autoprefixer/CSSNano ([#​16502](https://togithub.com/eslint/eslint/issues/16502)) (Nick Schonning) - [`7b9e9bf`](https://togithub.com/eslint/eslint/commit/7b9e9bf78bedb009fe2813308ede1f46502c3890) docs: support unicode anchors ([#​16782](https://togithub.com/eslint/eslint/issues/16782)) (Percy Ma) - [`5fbc0bf`](https://togithub.com/eslint/eslint/commit/5fbc0bffdd9f84feb43296eb502d1e484fb323f2) docs: Update README (GitHub Actions Bot) - [`67865a0`](https://togithub.com/eslint/eslint/commit/67865a064cc1a4e320030299edc1cfdd1f9ac3b8) docs: Remove mention of mailing list ([#​16869](https://togithub.com/eslint/eslint/issues/16869)) (Amaresh S M) - [`43af24a`](https://togithub.com/eslint/eslint/commit/43af24a88b939a62880c37d1332b02f677d82f16) docs: Add explanation of when to use 'warn' severity ([#​16882](https://togithub.com/eslint/eslint/issues/16882)) (Nicholas C. Zakas) - [`ed2999b`](https://togithub.com/eslint/eslint/commit/ed2999b38b4d61f5c278301738e294012d5d3c9e) docs: Shareable configs page edits and expansion ([#​16824](https://togithub.com/eslint/eslint/issues/16824)) (Ben Perlmutter) - [`2780635`](https://togithub.com/eslint/eslint/commit/27806358b5e1c4d37b63b1c61595e86ff03b5b42) docs: fix typos ([#​16884](https://togithub.com/eslint/eslint/issues/16884)) (Lioness100) - [`5bdaae2`](https://togithub.com/eslint/eslint/commit/5bdaae205c3a0089ea338b382df59e21d5b06436) docs: Ways to Extend ESLint page ([#​16861](https://togithub.com/eslint/eslint/issues/16861)) (Ben Perlmutter) ##### Chores - [`cdcbe12`](https://togithub.com/eslint/eslint/commit/cdcbe127de20cbcc4e24131a808c13b1024e61a2) chore: upgrade [@​eslint/js](https://togithub.com/eslint/js)[@​8](https://togithub.com/8).35.0 ([#​16935](https://togithub.com/eslint/eslint/issues/16935)) (Brandon Mills) - [`c954c34`](https://togithub.com/eslint/eslint/commit/c954c349c0c2f88919614efc95e1368c245582fd) chore: package.json update for [@​eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins) - [`5a517da`](https://togithub.com/eslint/eslint/commit/5a517da8e55f6de28e9c028c5627fa7d82945969) chore: package.json update for [@​eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins) - [`9f10926`](https://togithub.com/eslint/eslint/commit/9f10926d76be7cf675721b29bd5030e85cb4ab30) chore: upgrade [@​eslint/eslintrc](https://togithub.com/eslint/eslintrc)[@​2](https://togithub.com/2).0.0 ([#​16928](https://togithub.com/eslint/eslint/issues/16928)) (Milos Djermanovic) - [`da728fa`](https://togithub.com/eslint/eslint/commit/da728fae6c4e5fdda74195e84d45d67ad5cafc45) ci: use LTS node version in workflows ([#​16907](https://togithub.com/eslint/eslint/issues/16907)) (Nitin Kumar) - [`c57b4f3`](https://togithub.com/eslint/eslint/commit/c57b4f3dc6383e452120381204ee4a7c874225a0) perf: upgrade to esquery@1.4.2 ([#​16901](https://togithub.com/eslint/eslint/issues/16901)) (Milos Djermanovic) - [`9122f07`](https://togithub.com/eslint/eslint/commit/9122f0764031dc36970df715bc5e16973890e18d) chore: Update stale bot settings ([#​16870](https://togithub.com/eslint/eslint/issues/16870)) (Nicholas C. Zakas)
unjs/jiti ### [`v1.17.2`](https://togithub.com/unjs/jiti/blob/HEAD/CHANGELOG.md#v1172) [Compare Source](https://togithub.com/unjs/jiti/compare/v1.17.1...v1.17.2) [compare changes](https://togithub.com/unjs/jiti/compare/v1.17.1...v1.17.2) ##### 🩹 Fixes - Add support to emit decorator metadata ([#​119](https://togithub.com/unjs/jiti/pull/119)) - Use inline require cache to avoid circular dependencies ([#​125](https://togithub.com/unjs/jiti/pull/125)) - Workaround for pnpm and `TMPDIR` ([#​123](https://togithub.com/unjs/jiti/pull/123)) ##### 🏡 Chore - Update lockfile ([6f8610f](https://togithub.com/unjs/jiti/commit/6f8610f)) - Update release script ([26b7003](https://togithub.com/unjs/jiti/commit/26b7003)) ##### ✅ Tests - Add typescript satisfies fixture ([#​107](https://togithub.com/unjs/jiti/pull/107)) ##### 🎨 Styles - Format with prettier ([42669e5](https://togithub.com/unjs/jiti/commit/42669e5)) ##### ❤️ Contributors - Pooya Parsa ([@​pi0](http://github.com/pi0)) - Jonas Thelemann ([@​dargmuesli](http://github.com/dargmuesli)) - Sabin Marcu ([@​sabinmarcu](http://github.com/sabinmarcu)) - Peter ### [`v1.17.1`](https://togithub.com/unjs/jiti/blob/HEAD/CHANGELOG.md#v1171) [Compare Source](https://togithub.com/unjs/jiti/compare/v1.17.0...v1.17.1) [compare changes](https://togithub.com/unjs/jiti/compare/v1.17.0...v1.17.1) ##### 🩹 Fixes - Prefer `require` condition first in esm resolve mode ([#​117](https://togithub.com/unjs/jiti/pull/117)) ##### 💅 Refactors - Use `mkdirSync` from `node:fs` instead of `mkdirp` ([413d3c3](https://togithub.com/unjs/jiti/commit/413d3c3)) ##### 🏡 Chore - Update dependencies ([f532c57](https://togithub.com/unjs/jiti/commit/f532c57)) - Add missing semi ([a9c2876](https://togithub.com/unjs/jiti/commit/a9c2876)) - Switch to changelogen for releases ([bd4bd8c](https://togithub.com/unjs/jiti/commit/bd4bd8c)) ##### ❤️ Contributors - Pooya Parsa
pnpm/pnpm ### [`v7.29.0`](https://togithub.com/pnpm/pnpm/releases/tag/v7.29.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.28.0...v7.29.0) #### Minor Changes - A new setting is now supported: `dedupe-peer-dependents`. When this setting is set to `true`, packages with peer dependencies will be deduplicated after peers resolution. For instance, let's say we have a workspace with two projects and both of them have `webpack` in their dependencies. `webpack` has `esbuild` in its optional peer dependencies, and one of the projects has `esbuild` in its dependencies. In this case, pnpm will link two instances of `webpack` to the `node_modules/.pnpm` directory: one with `esbuild` and another one without it: node_modules .pnpm webpack@1.0.0_esbuild@1.0.0 webpack@1.0.0 project1 node_modules webpack -> ../../node_modules/.pnpm/webpack@1.0.0/node_modules/webpack project2 node_modules webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/node_modules/webpack esbuild This makes sense because `webpack` is used in two projects, and one of the projects doesn't have `esbuild`, so the two projects cannot share the same instance of `webpack`. However, this is not what most developers expect, especially since in a hoisted `node_modules`, there would only be one instance of `webpack`. Therefore, you may now use the `dedupe-peer-dependents` setting to deduplicate `webpack` when it has no conflicting peer dependencies (explanation at the end). In this case, if we set `dedupe-peer-dependents` to `true`, both projects will use the same `webpack` instance, which is the one that has `esbuild` resolved: node_modules .pnpm webpack@1.0.0_esbuild@1.0.0 project1 node_modules webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/node_modules/webpack project2 node_modules webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/node_modules/webpack esbuild **What are conflicting peer dependencies?** By conflicting peer dependencies we mean a scenario like the following one: node_modules .pnpm webpack@1.0.0_react@16.0.0_esbuild@1.0.0 webpack@1.0.0_react@17.0.0 project1 node_modules webpack -> ../../node_modules/.pnpm/webpack@1.0.0/node_modules/webpack react (v17) project2 node_modules webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/node_modules/webpack esbuild react (v16) In this case, we cannot dedupe `webpack` as `webpack` has `react` in its peer dependencies and `react` is resolved from two different versions in the context of the two projects. #### Patch Changes - The configuration added by `pnpm setup` should check if the pnpm home directory is already in the PATH before adding to the PATH. Before this change, this code was added to the shell: ```sh export PNPM_HOME="$HOME/Library/pnpm" export PATH="$PNPM_HOME:$PATH" ``` Now this will be added: ```sh export PNPM_HOME="$HOME/Library/pnpm" case ":$PATH:" in *":$PNPM_HOME:"*) ;; *) export PATH="$PNPM_HOME:$PATH" ;; esac ``` - Add `skipped` status in exec report summary when script is missing [#​6139](https://togithub.com/pnpm/pnpm/pull/6139). - `pnpm env -g` should fail with a meaningful error message if pnpm cannot find the pnpm home directory, which is the directory into which Node.js is installed. - Should not throw an error when local dependency use file protocol [#​6115](https://togithub.com/pnpm/pnpm/issues/6115). - Fix the incorrect error block when subproject has been patched [#​6183](https://togithub.com/pnpm/pnpm/issues/6183) #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v7.28.0`](https://togithub.com/pnpm/pnpm/releases/tag/v7.28.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.27.1...v7.28.0) #### Minor Changes - Add `--report-summary` for `pnpm exec` and `pnpm run` [#​6008](https://togithub.com/pnpm/pnpm/issues/6008). - Show path info for `pnpm why --json` or `--long` [#​6103](https://togithub.com/pnpm/pnpm/issues/6103). - Extend the `pnpm.peerDependencyRules.allowedVersions` `package.json` option to support the `parent>child` selector syntax. This syntax allows for extending specific `peerDependencies` [#​6108](https://togithub.com/pnpm/pnpm/pull/6108). #### Patch Changes - Update the lockfile if a workspace has a new project with no dependencies. - Fix a case of installs not being deterministic and causing lockfile changes between repeat installs. When a dependency only declares `peerDependenciesMeta` and not `peerDependencies`, `dependencies`, or `optionalDependencies`, the dependency's peers were not considered deterministically before. - `patch-commit` should auto apply patches in workspaces [#​6048](https://togithub.com/pnpm/pnpm/issues/6048) - Automatically fix conflicts in v6 lockfile. - `pnpm config set` should write to the global config file by default [#​5877](https://togithub.com/pnpm/pnpm/issues/5877). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v7.27.1`](https://togithub.com/pnpm/pnpm/releases/tag/v7.27.1) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.27.0...v7.27.1) #### Patch Changes - Add `store path` description to the `pnpm` cli help. - Print a hint that suggests to run `pnpm store prune`, when a tarball integrity error happens. - Don't retry installation if the integrity checksum of a package failed and no lockfile was present. - Fail with a meaningful error message when cannot parse a proxy URL. - The `strict-ssl`, `ca`, `key`, and `cert` settings should work with HTTPS proxy servers [#​4689](https://togithub.com/pnpm/pnpm/issues/4689). #### Our Gold Sponsors
#### Our Silver Sponsors
unjs/unbuild ### [`v1.1.2`](https://togithub.com/unjs/unbuild/blob/HEAD/CHANGELOG.md#v112) [Compare Source](https://togithub.com/unjs/unbuild/compare/v1.1.1...v1.1.2) [compare changes](https://togithub.com/unjs/unbuild/compare/v1.1.1...v1.1.2) ##### 💅 Refactors - Use `fs.mkdir` instead of `mkdirp` ([6ee6384](https://togithub.com/unjs/unbuild/commit/6ee6384)) - Use `fs.mkdir` instead of `mkdirp` ([8e6962e](https://togithub.com/unjs/unbuild/commit/8e6962e)) ##### 🏡 Chore - Update dependencies ([87bea65](https://togithub.com/unjs/unbuild/commit/87bea65)) ##### ❤️ Contributors - Pooya Parsa

Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Mend Renovate. View repository job log here.

codecov[bot] commented 1 year ago

Codecov Report

Merging #43 (764334e) into main (dd3c00c) will not change coverage. The diff coverage is n/a.

@@           Coverage Diff           @@
##             main      #43   +/-   ##
=======================================
  Coverage   97.32%   97.32%           
=======================================
  Files           5        5           
  Lines         112      112           
  Branches       29       29           
=======================================
  Hits          109      109           
  Misses          3        3           

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.