unjs / unenv

🕊️ Convert javaScript code to be runtime agnostic
MIT License
383 stars 20 forks source link

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

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
node-fetch-native ^0.1.5 -> ^0.1.7 age adoption passing confidence
pathe ^0.3.8 -> ^0.3.9 age adoption passing confidence
pnpm (source) 7.12.0 -> 7.13.4 age adoption passing confidence

Release Notes

unjs/node-fetch-native ### [`v0.1.7`](https://togithub.com/unjs/node-fetch-native/blob/HEAD/CHANGELOG.md#​017-httpsgithubcomunjsnode-fetch-nativecomparev016v017-2022-09-20) [Compare Source](https://togithub.com/unjs/node-fetch-native/compare/v0.1.6...v0.1.7) ### [`v0.1.6`](https://togithub.com/unjs/node-fetch-native/blob/HEAD/CHANGELOG.md#​016-httpsgithubcomunjsnode-fetch-nativecomparev015v016-2022-09-20) [Compare Source](https://togithub.com/unjs/node-fetch-native/compare/v0.1.5...v0.1.6)
unjs/pathe ### [`v0.3.9`](https://togithub.com/unjs/pathe/blob/HEAD/CHANGELOG.md#​039-httpsgithubcomunjspathecomparev038v039-2022-10-07) [Compare Source](https://togithub.com/unjs/pathe/compare/v0.3.8...v0.3.9)
pnpm/pnpm ### [`v7.13.4`](https://togithub.com/pnpm/pnpm/releases/tag/v7.13.4) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.13.3...v7.13.4) #### Patch Changes - `pnpm link --global` should work when a custom target directory is specified with the `--dir` CLI option [#​5473](https://togithub.com/pnpm/pnpm/pull/5473). - It should be possible to override dependencies with local packages using overrides [#​5443](https://togithub.com/pnpm/pnpm/issues/5443). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v7.13.3`](https://togithub.com/pnpm/pnpm/releases/tag/v7.13.3) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.13.2...v7.13.3) #### Patch Changes - Don't crash when `auto-install-peers` is set to `true` and installation is done on a workspace with that has the same dependencies in multiple projects [#​5454](https://togithub.com/pnpm/pnpm/issues/5454). - Add global option in `pnpm link --help` [#​5461](https://togithub.com/pnpm/pnpm/pull/5461). - Show execution time on `install`, `update`, `add`, and `remove` [#​1021](https://togithub.com/pnpm/pnpm/issues/1021). - Fix the return path of `pnpm pack`, when a custom destination directory is used [#​5471](https://togithub.com/pnpm/pnpm/issues/5471). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v7.13.2`](https://togithub.com/pnpm/pnpm/releases/tag/v7.13.2) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.13.1...v7.13.2) #### Patch Changes - When linking commands to a directory, remove any .exe files that are already present in that target directory by the same name. This fixes an issue with pnpm global update on Windows. If pnpm was installed with the standalone script and then updated with pnpm using `pnpm add --global pnpm`, the exe file initially created by the standalone script should be removed. - When a direct dependency fails to resolve, print the path to the project directory in the error message. - `pnpm patch-commit` should work when the patch directory is specified with a trailing slash [#​5449](https://togithub.com/pnpm/pnpm/issues/5449). #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v7.13.1`](https://togithub.com/pnpm/pnpm/releases/tag/v7.13.1) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.13.0...v7.13.1) #### Patch Changes - `pnpm update --interactive` should not list dependencies ignored via the `pnpm.updateConfig.ignoreDependencies` setting. #### Our Gold Sponsors
#### Our Silver Sponsors
### [`v7.13.0`](https://togithub.com/pnpm/pnpm/releases/tag/v7.13.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.12.2...v7.13.0) #### Minor Changes - Ignore packages listed in `package.json` > `pnpm.updateConfig.ignoreDependencies` fields on update/outdated command [#​5358](https://togithub.com/pnpm/pnpm/issues/5358) For instance, if you don't want `webpack` automatically to be updated when you run `pnpm update --latest`, put this to your `package.json`: ```json { "pnpm": { "updateConfig": { "ignoreDependencies": ["webpack"] } } } ``` Patterns are also supported, so you may ignore for instance any packages from a scope: `@babel/*`. - It is possible now to update all dependencies except the listed ones using `!`. For instance, update all dependencies, except `lodash`: pnpm update !lodash It also works with pattends, for instance: pnpm update !@​babel/* And it may be combined with other patterns: pnpm update @​babel/* !@​babel/core #### Patch Changes - Hooks should be applied on `pnpm deploy` [#​5306](https://togithub.com/pnpm/pnpm/issues/5306). - Stop `--filter-prod` option to run command on all the projects when used on workspace. `--filter-prod` option now only filter from `dependencies` and omit `devDependencies` instead of including all the packages when used on workspace. So what was happening is that if you use `--filter-prod` on workspace root like this: ```bash pnpm --filter-prod ...build-modules exec node -e 'console.log(require(`./package.json`).name)' ``` it was printing all the package of workspace, where it should only print the package name of itself and packages where it has been added as `dependency` (not as `devDependencies`) - Don't override the root dependency when auto installing peer dependencies [#​5412](https://togithub.com/pnpm/pnpm/issues/5412). #### Our Gold Sponsors
#### Our Silver Sponsors
#### What's Changed * GitHub Workflows security hardening by @​sashashu[https://github.com/pnpm/pnpm/pull/5405](https://togithub.com/pnpm/pnpm/pull/5405)l/5405 * feat: merge readPackage hook from opts and pnpmfile by @​AGrz[https://github.com/pnpm/pnpm/pull/5403](https://togithub.com/pnpm/pnpm/pull/5403)l/5403 * feat: excluding deps from update by @​zkoch[https://github.com/pnpm/pnpm/pull/5432](https://togithub.com/pnpm/pnpm/pull/5432)l/5432 * fix: dir path repeated join in link global by @​lv[https://github.com/pnpm/pnpm/pull/5434](https://togithub.com/pnpm/pnpm/pull/5434)l/5434 * fix: filter-prod flag including all workspace pkgs by @​noorulh[https://github.com/pnpm/pnpm/pull/5437](https://togithub.com/pnpm/pnpm/pull/5437)l/5437 * Feature: ignore packages listed in `package.json > pnpm.updateConfig.ignoreDependencies` on update/outdated commands by @​Shinyaige[https://github.com/pnpm/pnpm/pull/5408](https://togithub.com/pnpm/pnpm/pull/5408)l/5408 * fix: don't override root deps when auto installing peers by @​zkoch[https://github.com/pnpm/pnpm/pull/5442](https://togithub.com/pnpm/pnpm/pull/5442)l/5442 #### New Contributors * @​sashashura made their first contributi[https://github.com/pnpm/pnpm/pull/5405](https://togithub.com/pnpm/pnpm/pull/5405)l/5405 * @​AGrzes made their first contributi[https://github.com/pnpm/pnpm/pull/5403](https://togithub.com/pnpm/pnpm/pull/5403)l/5403 * @​noorulh06 made their first contributi[https://github.com/pnpm/pnpm/pull/5437](https://togithub.com/pnpm/pnpm/pull/5437)l/5437 **Full Changelog**: https://github.com/pnpm/pnpm/compare/v7.12.2...v7.13.0 ### [`v7.12.2`](https://togithub.com/pnpm/pnpm/releases/tag/v7.12.2) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.12.1...v7.12.2) #### Patch Changes - Don't crash when auto-install-peers is true and the project has many complex circular dependencies [#​5394](https://togithub.com/pnpm/pnpm/pull/5394). - `pnpm link --global` should work with the `--dir=` option [#​5371](https://togithub.com/pnpm/pnpm/pull/5371). #### Our Gold Sponsors
#### Our Silver Sponsors
#### What's Changed * fix: error in pnpm --dir link --global by @​lv[https://github.com/pnpm/pnpm/pull/5371](https://togithub.com/pnpm/pnpm/pull/5371)l/5371 * fix: cli crash with auto-install-peers=true by @​zkoch[https://github.com/pnpm/pnpm/pull/5394](https://togithub.com/pnpm/pnpm/pull/5394)l/5394 #### New Contributors * @​lvqq made their first contributi[https://github.com/pnpm/pnpm/pull/5371](https://togithub.com/pnpm/pnpm/pull/5371)l/5371 **Full Changelog**: https://github.com/pnpm/pnpm/compare/v7.12.1...v7.12.2 ### [`v7.12.1`](https://togithub.com/pnpm/pnpm/releases/tag/v7.12.1) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v7.12.0...v7.12.1) #### Patch Changes - Deduplicate peer dependencies when automatically installing them [#​5373](https://togithub.com/pnpm/pnpm/issues/5373). #### Our Gold Sponsors
#### Our Silver Sponsors
#### What's Changed * fix: deduplicate peer deps by @​zkoch[https://github.com/pnpm/pnpm/pull/5377](https://togithub.com/pnpm/pnpm/pull/5377)l/5377 **Full Changelog**: https://github.com/pnpm/pnpm/compare/v7.12.0...v7.12.1

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.