chore(deps): update all non-major dependencies#160
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
chore(deps): update all non-major dependencies#160renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
|
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
commit: |
5cdd47d to
bbfa4dc
Compare
bbfa4dc to
4858428
Compare
4858428 to
740f09f
Compare
740f09f to
312d8e4
Compare
312d8e4 to
f350bd0
Compare
f350bd0 to
5a0758d
Compare
5a0758d to
8ab3e7f
Compare
8ab3e7f to
f244427
Compare
f244427 to
aa9524a
Compare
aa9524a to
283c546
Compare
283c546 to
f1799cc
Compare
f1799cc to
474b972
Compare
474b972 to
a27e236
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:
^4.6.0→^4.7.1^1.4.2→^1.5.0^25.3.2→^25.3.57.0.0-dev.20260227.1→7.0.0-dev.20260306.1^66.6.2→^66.6.6^10.0.2→^10.0.3^0.5.0→^0.6.1^2.0.0→^2.1.1^3.3.0→^3.3.1^17.3.0→^17.4.0^0.21.0-beta.2→^0.21.0^0.2.28→^0.2.30Release Notes
eslint-community/eslint-plugin-eslint-comments (@eslint-community/eslint-plugin-eslint-comments)
v4.7.1Compare Source
Bug Fixes
v4.7.0Compare Source
Features
eslint/config-inspector (@eslint/config-inspector)
v1.5.0Compare Source
Features
microsoft/typescript-go (@typescript/native-preview)
v7.0.0-dev.20260306.1Compare Source
v7.0.0-dev.20260305.1Compare Source
v7.0.0-dev.20260304.1Compare Source
v7.0.0-dev.20260303.1Compare Source
v7.0.0-dev.20260302.1Compare Source
v7.0.0-dev.20260301.1Compare Source
v7.0.0-dev.20260228.1Compare Source
unocss/unocss (@unocss/eslint-plugin)
v66.6.6Compare Source
🐞 Bug Fixes
View changes on GitHub
v66.6.5Compare Source
🐞 Bug Fixes
View changes on GitHub
v66.6.4Compare Source
🚀 Features
noScopekey determines whether to wrap the selector - by @zyyv and Copilot in #5130 (5b67c)View changes on GitHub
v66.6.3Compare Source
🚀 Features
*parse in variant group - by @zyyv and Copilot in #5124 (037ba)@unocss/language-server- by @Jungzl in #5102 (90f75)LogOutputChannelto log info - by @Jungzl in #5125 (4fe3a)🐞 Bug Fixes
View changes on GitHub
eslint/eslint (eslint)
v10.0.3Compare Source
3ru/eslint-plugin-baseline-js (eslint-plugin-baseline-js)
v0.6.1Compare Source
Bug Fixes
v0.6.0Compare Source
Bug Fixes
Features
azat-io/eslint-plugin-de-morgan (eslint-plugin-de-morgan)
v2.1.1Compare Source
compare changes
🐞 Bug Fixes
(2dab08c)
❤️ Contributors
v2.1.0Compare Source
compare changes
🚀 Features
(59b0ac8)
❤️ Contributors
ota-meshi/eslint-plugin-yml (eslint-plugin-yml)
v3.3.1Compare Source
Patch Changes
98ed3bbThanks @ota-meshi! - fix(yaml-language): crash when parsing errorsindresorhus/globals (globals)
v17.4.0Compare Source
rolldown/tsdown (tsdown)
v0.21.0Compare Source
v0.21.0 - Notable Changes
Breaking Changes
Dependency options renamed to
depsnamespaceThe dependency-related options have been moved under a new
depsnamespace with clearer names:external->deps.neverBundlenoExternal->deps.alwaysBundleinlineOnly->deps.onlyAllowBundleskipNodeModulesBundle->deps.skipNodeModulesBundleBefore:
After:
The old options still work but are deprecated and will emit warnings.
failOnWarndefault changed from'ci-only'tofalseIf you relied on the previous behavior where warnings would fail the build in CI environments, you now need to explicitly set
failOnWarn: trueorfailOnWarn: 'ci-only'in your config.Node.js < 22.18.0 deprecated
tsdown now emits a deprecation warning when running on Node.js versions below 22.18.0. Plan to upgrade your Node.js version accordingly.
New Features
Experimental Node.js SEA executable bundling (
exe)tsdown can now bundle your TypeScript project into a standalone executable using Node.js Single Executable Applications (SEA). A new
@tsdown/exepackage provides cross-platform executable building support. See the exe documentation for details.Full CSS pipeline with
@tsdown/cssCSS handling has been reimplemented as a native Rolldown plugin and extracted into the
@tsdown/csspackage, providing a complete CSS pipeline with Lightning CSS and PostCSS support via thecss.transformeroption. See the CSS documentation for details.inlinedDependenciesfield in package.jsonWhen using the
exportsfeature, tsdown now auto-generates aninlinedDependenciesfield in your package.json, listing dependencies that are bundled into the output.Object option for
customExportscustomExportsnow supports an object format for more fine-grained control over the generated exports field.Migration Guide
external->deps.neverBundle,noExternal->deps.alwaysBundle, etc.failOnWarn: If you need warnings to fail the build in CI, explicitly setfailOnWarn: 'ci-only'orfailOnWarn: true.Links
🚨 Breaking Changes
failOnWarndefault from 'ci-only' to false - by @sxzz (ad8db)🚀 Features
depsnamespace - by @sxzz (7f509).nodefiles by default - by @sxzz (944e9)@tsdown/csspackage - by @sxzz in #790 (e4cbe)css.transformeroption - by @sxzz in #791 (35bef)css.transformertolightningcss- by @sxzz in #797 (288a5)@tsdown/exe- by @sxzz in #786 (b6833)latestandlatest-ltsfor nodeVersion - by @sxzz (ce7ab)customExports- by @Joery-M and @sxzz in #769 (7fb72)inlinedDependenciesfield to package.json - by @sxzz in #785 (5c71f)🐞 Bug Fixes
failOnWarnto rolldown logs - by @sxzz (149dc)onSuccessin watch mode to prevent duplicate execution - by @sxzz (af748)allis true - by @sxzz (79492)View changes on GitHub
v0.21.0-beta.5Compare Source
v0.21.0-beta.5 - Notable Changes
Breaking Changes
Dependency options renamed to
depsnamespaceThe dependency-related options have been moved under a new
depsnamespace with clearer names:external->deps.neverBundlenoExternal->deps.alwaysBundleinlineOnly->deps.onlyAllowBundleskipNodeModulesBundle->deps.skipNodeModulesBundleBefore:
After:
The old options still work but are deprecated and will emit warnings.
failOnWarndefault changed from'ci-only'tofalseIf you relied on the previous behavior where warnings would fail the build in CI environments, you now need to explicitly set
failOnWarn: trueorfailOnWarn: 'ci-only'in your config.Node.js < 22.18.0 deprecated
tsdown now emits a deprecation warning when running on Node.js versions below 22.18.0. Plan to upgrade your Node.js version accordingly.
New Features
Experimental Node.js SEA executable bundling (
exe)tsdown can now bundle your TypeScript project into a standalone executable using Node.js Single Executable Applications (SEA). A new
@tsdown/exepackage provides cross-platform executable building support. See the exe documentation for details.Full CSS pipeline with
@tsdown/cssCSS handling has been reimplemented as a native Rolldown plugin and extracted into the
@tsdown/csspackage, providing a complete CSS pipeline with Lightning CSS and PostCSS support via thecss.transformeroption. See the CSS documentation for details.inlinedDependenciesfield in package.jsonWhen using the
exportsfeature, tsdown now auto-generates aninlinedDependenciesfield in your package.json, listing dependencies that are bundled into the output.Object option for
customExportscustomExportsnow supports an object format for more fine-grained control over the generated exports field.Migration Guide
external->deps.neverBundle,noExternal->deps.alwaysBundle, etc.failOnWarn: If you need warnings to fail the build in CI, explicitly setfailOnWarn: 'ci-only'orfailOnWarn: true.Links
🚨 Breaking Changes
🚀 Features
css.transformertolightningcss- by @sxzz in #797 (288a5)🐞 Bug Fixes
View changes on GitHub
v0.21.0-beta.4Compare Source
🚀 Features
@tsdown/csspackage - by @sxzz in #790 (e4cbe)css.transformeroption - by @sxzz in #791 (35bef)View changes on GitHub
v0.21.0-beta.3Compare Source
v0.21.0-beta.3 - Notable Changes
Breaking Changes
Dependency options renamed to
depsnamespaceThe dependency-related options have been moved under a new
depsnamespace with clearer names:external->deps.neverBundlenoExternal->deps.alwaysBundleinlineOnly->deps.onlyAllowBundleskipNodeModulesBundle->deps.skipNodeModulesBundleBefore:
After:
The old options still work but are deprecated and will emit warnings.
failOnWarndefault changed from'ci-only'tofalseIf you relied on the previous behavior where warnings would fail the build in CI environments, you now need to explicitly set
failOnWarn: trueorfailOnWarn: 'ci-only'in your config.Node.js < 22.18.0 deprecated
tsdown now emits a deprecation warning when running on Node.js versions below 22.18.0. Plan to upgrade your Node.js version accordingly.
New Features
Experimental Node.js SEA executable bundling (
exe)tsdown can now bundle your TypeScript project into a standalone executable using Node.js Single Executable Applications (SEA). A new
@tsdown/exepackage provides cross-platform executable building support. See the exe documentation for details.Full CSS pipeline as Rolldown plugin
CSS handling has been reimplemented as a native Rolldown plugin, providing a complete CSS pipeline with Lightning CSS integration for transforms, minification, and bundling. See the CSS documentation for details.
inlinedDependenciesfield in package.jsonWhen using the
exportsfeature, tsdown now auto-generates aninlinedDependenciesfield in your package.json, listing dependencies that are bundled into the output.Object option for
customExportscustomExportsnow supports an object format for more fine-grained control over the generated exports field.Migration Guide
external->deps.neverBundle,noExternal->deps.alwaysBundle, etc.failOnWarn: If you need warnings to fail the build in CI, explicitly setfailOnWarn: 'ci-only'orfailOnWarn: true.Links
🚀 Features
@tsdown/exe- by @sxzz in #786 (b6833)inlinedDependenciesfield to package.json - by @sxzz in #785 (5c71f)🐞 Bug Fixes
View changes on GitHub
Gugustinette/unrun (unrun)
v0.2.30Compare Source
🚀 Features
View changes on GitHub
v0.2.29Compare Source
🚀 Features
View changes on GitHub
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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 was generated by Mend Renovate. View the repository job log.