-
Notifications
You must be signed in to change notification settings - Fork 0
chore(Renovate): ⬆️ Update configs (major) #110
base: main
Are you sure you want to change the base?
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 v10
a4478cd
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.0
2.8.8
->3.1.1
9.8.6
->12.0.1
6.7.0
->8.0.1
0.31.1
->1.1.0
Release Notes
okonet/lint-staged (lint-staged)
v15.2.0
Compare Source
Minor Changes
f3378be
Thanks @iiroj! - Using the--no-stash
flag 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-staged
that is automatically enabled when--no-stash
is used.Patch Changes
#1362
17bc480
Thanks @antonk52! - update lilconfig@3.0.0#1368
7c55ca9
Thanks @iiroj! - Update most dependencies#1368
777d4e9
Thanks @iiroj! - To improve performance, only uselilconfig
when 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
85eb0dd
Thanks @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.0
Compare Source
Minor Changes
0423311
Thanks @danielbayley! - Add support for loading configuration frompackage.yaml
andpackage.yml
files, supported bypnpm
.Patch Changes
105d901
Thanks @iiroj! - Suppress some warnings when using the "--quiet" flagv15.0.2
Compare Source
Patch Changes
8e82364
Thanks @iiroj! - Update dependencies, including listr2@7.0.2 to fix an upstream issue affecting lint-staged.v15.0.1
Compare Source
Patch Changes
d2e6f8b
Thanks @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.0
Compare Source
Major Changes
#1322
66b93aa
Thanks @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.1
Compare Source
Bug Fixes
v14.0.0
Compare Source
Features
BREAKING CHANGES
16.14.0
.v13.3.0
Compare Source
Bug Fixes
Features
listr2@​6.6.0
(09844ca)v13.2.3
Compare Source
Bug Fixes
--diff
option implies--no-stash
(66a716d)prettier/prettier (prettier)
v3.1.1
Compare 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-pattern
to simply skip symbolic links.Consistently use tabs in ternaries when
useTabs
istrue
(#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
--help
text) continued to claim otherwise, falsely. The documentation is now fixed.Keep curly braces and
from
keyword in emptyimport
statements (#15756 by @fisker)Keep empty import attributes and assertions (#15757 by @fisker)
v3.1.0
Compare Source
diff
🔗 Release Notes
v3.0.3
Compare Source
diff
Add
preferUnplugged: true
topackage.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: true
topackage.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
exports
don't haverequire
ordefault
export.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
ts
code blocks (#15286 by @sosukesuzuki)Support TypeScript 5.2
using
/await using
declaration (#15321 by @sosukesuzuki)Support for the upcoming Explicit Resource Management feature in ECMAScript.
using
/await using
declarationv3.0.2
Compare 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
declare
andexport
keywords for nested namespace (#15249 by @sosukesuzuki)v3.0.1
Compare 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.ts
to 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)Add missing
getVisitorKeys
method type definition forPrinter
(#15125 by @auvred)Add typing to support
readonly
array properties of AST Node (#15127 by @auvred)Add space before unary minus followed by a function call (#15129 by @pamelalozano)
v3.0.0
Compare Source
diff
🔗 Release Notes
JamieMason/syncpack (syncpack)
v12.0.1
Compare Source
#180
#181
e170485
v12.0.0
Compare Source
#172
#178
#177
eabbfb8
50d2d6a
7fa1c2c
12.0.0-alpha.1
6c85916
db0434b
1cab0f4
12.0.0-alpha.0
#161
#162
#157
0b604c8
f016552
cf805f7
v11.2.1
Compare Source
#146
#147
#154
06f2e88
c8a5cab
3b2fac2
10.9.3
#148
#151
6dd5aaf
ce58e3a
3db1bc4
10.7.3
#143
4474a73
10.7.2
1c1be99
bf432a7
cfde196
10.6.1
#140
#139
#132
#111
2801b67
a035315
10.5.1
96d6c6d
296fad5
87be648
10.2.0
#134
3f50c6c
10.1.0
2e3df1c
047afa1
6bb8b04
v10.9.3
Compare Source
#148
#151
6dd5aaf
ce58e3a
3db1bc4
v10.7.3
Compare Source
#143
4474a73
v10.7.2
Compare Source
1c1be99
bf432a7
cfde196
v10.6.1
Compare Source
Features
v10.5.1
Compare Source
Bug Fixes
Features
v10.2.0
Compare Source
Features
v10.1.0
Compare Source
Features
v10.0.0
Compare Source
Bug Fixes
BREAKING CHANGES
fix-mismatches
will 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.1
Compare Source
Bug Fixes
--experimental-dts
to be compatible with--clean
(#1041) (8c26e63)v8.0.0
Compare Source
Bug Fixes
await postcss for async plugins (#1036) (d4e22c5)
ci!: drop node 16 (4c1ad38)
Features
BREAKING CHANGES
v7.3.0
Compare Source
Bug Fixes
Features
v7.2.0
Compare Source
Bug Fixes
Features
v7.1.0
Compare Source
Features
v7.0.0
Compare Source
Bug Fixes
Features
BREAKING CHANGES
vitest-dev/vitest (vitest)
v1.1.0
Compare Source
🚀 Features
--workspace
option, fix root resolution in workspaces - by @sheremet-va and @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4773 (67d93)--no-file-parallelism
,--maxWorkers
,--minWorkers
flags - by @sheremet-va and @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4705 (fd5d7)--no-isolate
flag to improve performance, add documentation about performance - by @sheremet-va, @AriPerkkio and Pascal Jufer in https://github.com/vitest-dev/vitest/issues/4777 (4d55a)--exclude
CLI flag - by @Namchee and @sheremet-va in https://github.com/vitest-dev/vitest/issues/4279 (f859e)🐞 Bug Fixes
toHaveProperty
assertion error diff - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/4734 (f8f70)defineWorkspace
fix intellisense and report type errors - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4743 (9cc36)View changes on GitHub
v1.0.4
Compare Source
The previous release was built incorrectly and didn't include the performance fix. This release fixes that.
🐞 Bug Fixes
--coverage.all=false
resolved incorrectly - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4697 (a7931)🏎 Performance
log-update
to v5 - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4711 (13ff9)View changes on GitHub
v1.0.3
Compare Source
🐞 Bug Fixes
🏎 Performance
log-update
to v5 - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/4711 (13ff9)View changes on GitHub
v1.0.2
Compare Source
🐞 Bug Fixes
stripSnapshotIndentation
for thrown snapshot - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/4663 (74820)URL
equality check only whenURL
is available - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/4670 (43783)View changes on GitHub
v1.0.1
Compare Source
🐞 Bug Fixes
peerDependencies
versions - 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.