Merged
Conversation
934bbc2 to
ed70f46
Compare
ed70f46 to
48e057b
Compare
db22807 to
e4700bb
Compare
a51be29 to
7902bcc
Compare
72d1c56 to
4952915
Compare
4952915 to
012af60
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.23.4->^0.24.3^8.23.1->^8.25.07.12.0->7.13.4^4.8.3->^4.8.4^0.8.11->^0.9.2^0.23.4->^0.24.3Release Notes
vitest-dev/vitest
v0.24.3Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.24.2Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v0.24.1Compare Source
🐞 Bug Fixes
istanbul-lib-instrument- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/2121View changes on GitHub
v0.24.0Compare Source
🚨 Breaking Changes
🚀 Features
🐞 Bug Fixes
View changes on GitHub
eslint/eslint
v8.25.0Compare Source
Features
173e820feat: Pass --max-warnings value to formatters (#16348) (Brandon Mills)6964cb1feat: remove support for ignore files in FlatESLint (#16355) (Milos Djermanovic)1cc4b3afeat:id-lengthcounts graphemes instead of code units (#16321) (Sosuke Suzuki)Documentation
90c6028docs: Conflicting fixes (#16366) (Ben Perlmutter)5a3fe70docs: Add VS to integrations page (#16381) (Maria José Solano)49bd1e5docs: remove unused link definitions (#16376) (Nick Schonning)3bd380ddocs: typo cleanups for docs (#16374) (Nick Schonning)b3a0837docs: remove duplicate words (#16378) (Nick Schonning)a682562docs: addBigInttonew-capdocs (#16362) (Sosuke Suzuki)f6d57fbdocs: Update docs README (#16352) (Ben Perlmutter)7214347docs: fix logical-assignment-operators option typo (#16346) (Jonathan Wilsson)Chores
1f78594chore: upgrade @eslint/eslintrc@1.3.3 (#16397) (Milos Djermanovic)8476a9bchore: Remove CODEOWNERS (#16375) (Nick Schonning)720ff75chore: use "ci" for Dependabot commit message (#16377) (Nick Schonning)42f5479chore: bump actions/stale from 5 to 6 (#16350) (dependabot[bot])e5e9e27chore: removejsdocdev dependency (#16344) (Milos Djermanovic)v8.24.0Compare Source
Features
1729f9efeat: account forsourceType: "commonjs"in the strict rule (#16308) (Milos Djermanovic)b0d72c9feat: add rule logical-assignment-operators (#16102) (fnx)f02bcd9feat:array-callback-returnsupportfindLastandfindLastIndex(#16314) (Sosuke Suzuki)Documentation
2c152ffdocs: note false positiveObject.getOwnPropertyNamesin prefer-reflect (#16317) (AnnAngela)bf7bd88docs: fix warn severity description for new config files (#16324) (Nitin Kumar)8cc0bbedocs: use more clean link syntax (#16309) (Percy Ma)6ba269edocs: fix typo (#16288) (jjangga0214)Chores
131e646chore: Upgrade @humanwhocodes/config-array for perf (#16339) (Nicholas C. Zakas)504fe59perf: switch from object spread toObject.assignwhen merging globals (#16311) (Milos Djermanovic)pnpm/pnpm
v7.13.4Compare Source
Patch Changes
pnpm link <pkg> --globalshould work when a custom target directory is specified with the--dirCLI option #5473.Our Gold Sponsors
Our Silver Sponsors
v7.13.3Compare Source
Patch Changes
auto-install-peersis set totrueand installation is done on a workspace with that has the same dependencies in multiple projects #5454.pnpm link --help#5461.install,update,add, andremove#1021.pnpm pack, when a custom destination directory is used #5471.Our Gold Sponsors
Our Silver Sponsors
v7.13.2Compare Source
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-commitshould work when the patch directory is specified with a trailing slash #5449.Our Gold Sponsors
Our Silver Sponsors
v7.13.1Compare Source
Patch Changes
pnpm update --interactiveshould not list dependencies ignored via thepnpm.updateConfig.ignoreDependenciessetting.Our Gold Sponsors
Our Silver Sponsors
v7.13.0Compare Source
Minor Changes
Ignore packages listed in
package.json>pnpm.updateConfig.ignoreDependenciesfields on update/outdated command #5358For instance, if you don't want
webpackautomatically to be updated when you runpnpm update --latest, put this to yourpackage.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, exceptlodash:It also works with pattends, for instance:
And it may be combined with other patterns:
Patch Changes
Hooks should be applied on
pnpm deploy#5306.Stop
--filter-prodoption to run command on all the projects when used on workspace.--filter-prodoption now only filter fromdependenciesand omitdevDependenciesinstead of including all the packages when used on workspace. So what was happening is that if you use--filter-prodon workspace root like this: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 asdevDependencies)Don't override the root dependency when auto installing peer dependencies #5412.
Our Gold Sponsors
Our Silver Sponsors
What's Changed
package.json > pnpm.updateConfig.ignoreDependencieson update/outdated commands by @Shinyaigehttps://github.com/pnpm/pnpm/pull/5408l/5408New Contributors
Full Changelog: pnpm/pnpm@v7.12.2...v7.13.0
v7.12.2Compare Source
Patch Changes
pnpm link --globalshould work with the--dir=<path>option #5371.Our Gold Sponsors
Our Silver Sponsors
What's Changed
New Contributors
Full Changelog: pnpm/pnpm@v7.12.1...v7.12.2
v7.12.1Compare Source
Patch Changes
Our Gold Sponsors
Our Silver Sponsors
What's Changed
Full Changelog: pnpm/pnpm@v7.12.0...v7.12.1
Microsoft/TypeScript
v4.8.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
unjs/unbuild
v0.9.2Compare Source
🩹 Fixes
af41b01)🏡 Chore
rollup-plugin-dts(f7acbf4)✅ Tests
955a449)❤️ Contributors
v0.9.1Compare Source
🩹 Fixes
.jsonsubpath exports to build (b57afec)❤️ Contributors
v0.9.0Compare Source
🚀 Enhancements
🏡 Chore
fdfd353)❤️ Contributors
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.