chore(Renovate): ⬆️ Update configs (major) - #110
Conversation
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: pnpm-lock.yaml |
|
66e9afa to
4380522
Compare
4380522 to
ec9e47f
Compare
syncpack to v10a4478cd to
648d340
Compare
404357d to
8ecd249
Compare
8ecd249 to
9e1f423
Compare
d81dfd5 to
bc9bd8e
Compare
e2f3ba3 to
7233bc4
Compare
7233bc4 to
2d06297
Compare
2d06297 to
c4edaac
Compare
c4edaac to
de106d5
Compare
be7e41f to
3171a8d
Compare
e90319f to
c4e4ecd
Compare
658c187 to
a788217
Compare
20ec357 to
c81fd73
Compare
25b4de7 to
ebd9226
Compare
ebd9226 to
1c63641
Compare

This PR contains the following updates:
13.2.2->15.2.02.8.8->3.1.19.8.6->12.0.16.7.0->8.0.10.31.1->1.1.0Release Notes
okonet/lint-staged (lint-staged)
v15.2.0Compare Source
Minor Changes
f3378beThanks @iiroj! - Using the--no-stashflag no longer discards all unstaged changes to partially staged files, which resulted in inadvertent data loss. This fix is available with a new flag--no-hide-partially-stagedthat is automatically enabled when--no-stashis used.Patch Changes
#1362
17bc480Thanks @antonk52! - update lilconfig@3.0.0#1368
7c55ca9Thanks @iiroj! - Update most dependencies#1368
777d4e9Thanks @iiroj! - To improve performance, only uselilconfigwhen searching for config files outside the git repo. In the regular case, lint-staged finds the config files from the Git index and loads them directly.#1373
85eb0ddThanks @iiroj! - When determining git directory, usefs.realpath()only for symlinks. It looks likefs.realpath()changes some Windows mapped network filepaths unexpectedly, causing issues.v15.1.0Compare Source
Minor Changes
0423311Thanks @danielbayley! - Add support for loading configuration frompackage.yamlandpackage.ymlfiles, supported bypnpm.Patch Changes
105d901Thanks @iiroj! - Suppress some warnings when using the "--quiet" flagv15.0.2Compare Source
Patch Changes
8e82364Thanks @iiroj! - Update dependencies, including listr2@7.0.2 to fix an upstream issue affecting lint-staged.v15.0.1Compare Source
Patch Changes
d2e6f8bThanks @louneskmt! - Previously it was possible for a function task to mutate the list of staged files passed to the function, and accidentally affect the generation of other tasks. This is now fixed by passing a copy of the original file list instead.v15.0.0Compare Source
Major Changes
#1322
66b93aaThanks @iiroj! - Require at least Node.js 18.12.0This release drops support for Node.js 16, which is EOL after 2023-09-11.
Please upgrade your Node.js to the latest version.
Additionally, all dependencies have been updated to their latest versions.
v14.0.1Compare Source
Bug Fixes
v14.0.0Compare Source
Features
BREAKING CHANGES
16.14.0.v13.3.0Compare Source
Bug Fixes
Features
listr2@​6.6.0(09844ca)v13.2.3Compare Source
Bug Fixes
--diffoption implies--no-stash(66a716d)prettier/prettier (prettier)
v3.1.1Compare Source
diff
Fix config file search (#15363 by @fisker)
Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.
Skip explicitly passed symbolic links with
--no-error-on-unmatched-pattern(#15533 by @sanmai-NL)Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.
In Prettier 3.1.1, you can use
--no-error-on-unmatched-patternto simply skip symbolic links.Consistently use tabs in ternaries when
useTabsistrue(#15662 by @auvred)Improve config file search (#15663 by @fisker)
The Prettier config file search performance has been improved by more effective cache strategy.
Fix unstable and ugly formatting for comments in destructuring patterns (#15708 by @sosukesuzuki)
Support "Import Attributes" (#15718 by @fisker)
TypeScript 5.3 supports the latest updates to the import attributes proposal.
Fix false claim in docs that cursorOffset is incompatible with rangeStart/rangeEnd (#15750 by @ExplodingCabbage)
The cursorOffset option has in fact been compatible with rangeStart/rangeEnd for over 5 years, thanks to work by @ds300. However, Prettier's documentation (including the CLI
--helptext) continued to claim otherwise, falsely. The documentation is now fixed.Keep curly braces and
fromkeyword in emptyimportstatements (#15756 by @fisker)Keep empty import attributes and assertions (#15757 by @fisker)
v3.1.0Compare Source
diff
🔗 Release Notes
v3.0.3Compare Source
diff
Add
preferUnplugged: truetopackage.json(#15169 by @fisker and @so1ve)Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add
preferUnplugged: truetopackage.json, so Yarn will install Prettier as unplug by default.Support shared config that forbids
require()(#15233 by @fisker)If an external shared config package is used, and the package
exportsdon't haverequireordefaultexport.In Prettier 3.0.2 Prettier fails when attempt to
require()the package, and throws an error.Allow argument of
require()to break (#15256 by @fisker)Do not print trailing commas in arrow function type parameter lists in
tscode blocks (#15286 by @sosukesuzuki)Support TypeScript 5.2
using/await usingdeclaration (#15321 by @sosukesuzuki)Support for the upcoming Explicit Resource Management feature in ECMAScript.
using/await usingdeclarationv3.0.2Compare Source
diff
Break after
=of assignment if RHS is poorly breakable AwaitExpression or YieldExpression (#15204 by @seiyab)Do not add trailing comma for grouped scss comments (#15217 by @auvred)
Print
declareandexportkeywords for nested namespace (#15249 by @sosukesuzuki)v3.0.1Compare Source
diff
Fix cursor positioning for a special case (#14812 by @fisker)
Fix plugins/estree.d.ts to make it a module (#15018 by @kingyue737)
Add
export {}inplugins/estree.d.tsto fix the "File is not a module" errorAdd parenthesis around leading multiline comment in return statement (#15037 by @auvred)
Add support for Vue "Generic Components" (#15066 by @auvred)
https://blog.vuejs.org/posts/vue-3-3#generic-components
Fix comments print in
IfStatement(#15076 by @fisker)Add missing type definition for
printer.preprocess(#15123 by @so1ve)export interface Printer<T = any> { // ... + preprocess?: + | ((ast: T, options: ParserOptions<T>) => T | Promise<T>) + | undefined; }Add missing
getVisitorKeysmethod type definition forPrinter(#15125 by @auvred)Add typing to support
readonlyarray properties of AST Node (#15127 by @auvred)Add space before unary minus followed by a function call (#15129 by @pamelalozano)
v3.0.0Compare Source
diff
🔗 Release Notes
JamieMason/syncpack (syncpack)
v12.0.1Compare Source
#180#181e170485v12.0.0Compare Source
#172#178#177eabbfb850d2d6a7fa1c2c12.0.0-alpha.1
6c85916db0434b1cab0f412.0.0-alpha.0
#161#162#1570b604c8f016552cf805f7v11.2.1Compare Source
#146#147#15406f2e88c8a5cab3b2fac210.9.3
#148#1516dd5aafce58e3a3db1bc410.7.3
#1434474a7310.7.2
1c1be99bf432a7cfde19610.6.1
#140#139#132#1112801b67a03531510.5.1
96d6c6d296fad587be64810.2.0
#1343f50c6c10.1.0
2e3df1c047afa16bb8b04v10.9.3Compare Source
#148#1516dd5aafce58e3a3db1bc4v10.7.3Compare Source
#1434474a73v10.7.2Compare Source
1c1be99bf432a7cfde196v10.6.1Compare Source
Features
v10.5.1Compare Source
Bug Fixes
Features
v10.2.0Compare Source
Features
v10.1.0Compare Source
Features
v10.0.0Compare Source
Bug Fixes
BREAKING CHANGES
fix-mismatcheswill now exit with a status code of 1 if there are mismatches among unsupported versions which syncpack cannot auto-fix.9.8.6 (2023-04-23)
Bug Fixes
9.8.4 (2023-02-21)
Features
9.7.4 (2023-02-19)
Bug Fixes
Features
Performance Improvements
9.3.2 (2023-02-17)
Features
9.1.2 (2023-02-16)
Features
Reverts
9.0.2 (2023-02-15)
Bug Fixes
egoist/tsup (tsup)
v8.0.1Compare Source
Bug Fixes
--experimental-dtsto be compatible with--clean(#1041) (8c26e63)v8.0.0Compare Source
Bug Fixes
await postcss for async plugins (#1036) (d4e22c5)
ci!: drop node 16 (4c1ad38)
Features
BREAKING CHANGES
v7.3.0Compare Source
Bug Fixes
Features
v7.2.0Compare Source
Bug Fixes
Features
v7.1.0Compare Source
Features
v7.0.0Compare Source
Bug Fixes
Features
BREAKING CHANGES
vitest-dev/vitest (vitest)
v1.1.0Compare Source
🚀 Features
--workspaceoption, fix root resolution in workspaces - by @sheremet-va and @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4773 (67d93)--no-file-parallelism,--maxWorkers,--minWorkersflags - by @sheremet-va and @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4705 (fd5d7)--no-isolateflag to improve performance, add documentation about performance - by @sheremet-va, @AriPerkkio and Pascal Jufer in https://github.com/vitest-dev/vitest/issues/4777 (4d55a)--excludeCLI flag - by @Namchee and @sheremet-va in https://github.com/vitest-dev/vitest/issues/4279 (f859e)🐞 Bug Fixes
toHavePropertyassertion error diff - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/4734 (f8f70)defineWorkspacefix intellisense and report type errors - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4743 (9cc36)View changes on GitHub
v1.0.4Compare Source
The previous release was built incorrectly and didn't include the performance fix. This release fixes that.
🐞 Bug Fixes
--coverage.all=falseresolved incorrectly - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4697 (a7931)🏎 Performance
log-updateto v5 - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4711 (13ff9)View changes on GitHub
v1.0.3Compare Source
🐞 Bug Fixes
🏎 Performance
log-updateto v5 - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4711 (13ff9)View changes on GitHub
v1.0.2Compare Source
🐞 Bug Fixes
stripSnapshotIndentationfor thrown snapshot - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/4663 (74820)URLequality check only whenURLis available - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/4670 (43783)View changes on GitHub
v1.0.1Compare Source
🐞 Bug Fixes
peerDependenciesversions - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4654 (42070)View changes on GitHub
v1.0.0[Compare Source](https://togithub.com/vitest-dev/vitest/compare
Configuration
📅 Schedule: Branch creation - "after 10pm every weekday,on sunday,before 5am every weekday" in timezone Asia/Taipei, 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.