-
-
Notifications
You must be signed in to change notification settings - Fork 8
chore(deps): update all non-major dependencies #217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/all-minor-patch
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+647
−1,031
Conversation
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
Deploying unsight with
|
| Latest commit: |
016133a
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://4afb5b4d.unsight.pages.dev |
| Branch Preview URL: | https://renovate-all-minor-patch.unsight.pages.dev |
cd154f8 to
ce2f01e
Compare
3235a89 to
5ab823a
Compare
99826bf to
8ded71c
Compare
bea4dbc to
778a0b3
Compare
|
All alerts resolved. Learn more about Socket for GitHub. This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored. |
73b466b to
a1ea70e
Compare
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
a87c3b7 to
0c81361
Compare
0c81361 to
016133a
Compare
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:
6.0.0->6.2.01.2.5->1.2.61.2.22->1.2.231.4.1->1.10.00.1.11->0.1.2866.5.5->66.5.666.5.5->66.5.6v0.1.0->v0.1.10.31.4->0.31.716.1.6->16.2.60.2.3->0.2.510.21.0->10.22.05.9.2->5.9.366.5.1->66.5.666.5.1->66.5.6^0.15.0->^0.16.03.0.7->3.1.34.37.0->4.48.0Release Notes
antfu/eslint-config (@antfu/eslint-config)
v6.2.0Compare Source
🚀 Features
ignores, close #776 - by @antfu in #776 (63b13)View changes on GitHub
v6.1.0Compare Source
🚀 Features
View changes on GitHub
nuxt/eslint (@nuxt/eslint)
v1.10.0Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v1.9.0Compare Source
🚀 Features
🐞 Bug Fixes
defineNuxtConfigas ESLint's globals, close #603 - by @antfu in #603 (2e67f)View changes on GitHub
v1.8.0Compare Source
🚀 Features
View changes on GitHub
v1.7.1Compare Source
🐞 Bug Fixes
eslint-typegen.d.tsinnuxt.node.d.ts, close #596 - by @antfu in #596 (ab74e)View changes on GitHub
v1.7.0Compare Source
🚀 Features
View changes on GitHub
v1.6.0Compare Source
🐞 Bug Fixes
eslint-plugin-import-xas default, close #590 - by @antfu in #590 (e43d6)View changes on GitHub
v1.5.2Compare Source
🚀 Features
features.import.pluginto swap plugin implementation, close #587 - by @antfu in #587 (66f5e)View changes on GitHub
v1.5.1Compare Source
🐞 Bug Fixes
View changes on GitHub
v1.5.0Compare Source
🚀 Features
eslint-plugin-import-lite, update deps - by @antfu (31bd8)🐞 Bug Fixes
View changes on GitHub
unocss/unocss (@unocss/nuxt)
v66.5.6Compare Source
🐞 Bug Fixes
View changes on GitHub
danielroe/provenance-action (danielroe/provenance-action)
v0.1.1Compare Source
compare changes
🚀 Enhancements
📖 Documentation
@mainconstraint for example (237ceea)❤️ Contributors
drizzle-team/drizzle-orm (drizzle-kit)
v0.31.6Compare Source
Bug fixes
v0.31.5Compare Source
lint-staged/lint-staged (lint-staged)
v16.2.6Compare Source
Patch Changes
33d4502Thanks @Adrian-Baran-GY! - Fix problems with--continue-on-erroroption, where tasks might have still been killed (SIGINT) when one of them failed.v16.2.5Compare Source
Patch Changes
9e02d9dThanks @iiroj! - Fix unhandled promise rejection when spawning tasks (instead of the tasks themselves failing). Previously when a task failed to spawn, lint-staged also failed and the backup stash might not have been automatically restored.v16.2.4Compare Source
Patch Changes
#1682
0176038Thanks @iiroj! - Update dependencies, including[email protected]with bug fixes.#1671
581a54eThanks @iiroj! - Speed up execution by only importing theyamldepedency if using YAML configuration files.v16.2.3Compare Source
Patch Changes
27cd541Thanks @iiroj! - When using--fail-on-changes, automatically hidden (partially) unstaged changes are no longer counted to make lint-staged fail.v16.2.2Compare Source
Patch Changes
#1667
699f95dThanks @iiroj! - The backup stash will not be dropped when using--fail-on-changesand there are errors. When reverting to original state is disabled (via--no-revertor--fail-on-changes), hidden (partially) unstaged changes are still restored automatically so that it's easier to resolve the situation manually.Additionally, the example for using the backup stash manually now uses the correct backup hash, if available:
v16.2.1Compare Source
Patch Changes
#1664
8277b3bThanks @iiroj! - The built-in TypeScript types have been updated to more closely match the implementation. Notably, the list of staged files supplied to task functions isreadonly string[]and can't be mutated. Thanks @outslept!export default { --- "*": (files: string[]) => void console.log('staged files', files) +++ "*": (files: readonly string[]) => void console.log('staged files', files) }#1654
70b9af3Thanks @iiroj! - This version has been published from GitHub Actions using Trusted Publishing for npm packages.#1659
4996817Thanks @iiroj! - Fix searching configuration files when the working directory is a subdirectory of a git repository, and there arepackage.jsonfiles in the working directory. This situation might happen when running lint-staged for a single package in a monorepo.#1654
7021f0aThanks @iiroj! - Return the caret semver range (^) to direct dependencies so that future patch and minor versions are allowed. This enables projects to better maintain and deduplicate their own transitive dependencies while not requiring direct updates to lint-staged. This was changed in 16.2.0 after the vulnerability issues withchalkanddebug, which were also removed in the same version.Given the recent vulnerabilities in the npm ecosystem, it's best to be very careful when updating dependencies.
v16.2.0Compare Source
Minor Changes
#1615
99eb742Thanks @iiroj! - Added a new option--fail-on-changesto make lint-staged exit with code 1 when tasks modify any files, making theprecommithook fail. This is similar to thegit diff --exit-codeoption. Using this flag also implies the--no-revertflag which means any changes made by tasks will be left in the working tree after failing, so that they can be manually staged and the commit tried again.#1611
cd05fd3Thanks @rlorenzo! - Added a new option--continue-on-errorso that lint-staged will run all tasks to completion even if some of them fail. By default, lint-staded will exit early on the first failure.#1637
82fcc07Thanks @iiroj! - Internal lint-staged errors are now thrown and visible in the console output. Previously they were caught with the process exit code set to 1, but not logged. This happens when, for example, there's a syntax error in the lint-staged configuration file.#1647
a5ecc06Thanks @iiroj! - Remove debug as a dependency due to recent malware issue; read more at debug-js/debug#1005. Because of this, theDEBUGenvironment variable is no longer supported — use the--debugto enable debugging#1636
8db2717Thanks @iiroj! - Added a new option--hide-unstagedso that lint-staged will hide all unstaged changes to tracked files before running tasks. The changes will be applied back after running the tasks. Note that the combination of flags--hide-unstaged --no-hide-partially-stagedisn't meaningful and behaves the same as just--hide-unstaged.Thanks to @ItsNickBarry for the idea and initial implementation in #1552.
#1648
7900b3bThanks @iiroj! - Remove lilconfig to reduce reliance on third-party dependencies. It was used to find possible config files outside of those tracked in Git, including from the parent directories. This behavior has been moved directly into lint-staged and should work about the same.Patch Changes
#1633
7f9e485Thanks @dependabot! - Bumps listr2 from 9.0.3 to 9.0.4.#1626
99d5a9bThanks @iiroj! - Due to recent phishing attacks, for example [email protected] was released with malware. To avoid lint-staged's users being at risk the direct dependencies are pinned to exact versions, instead of allowing future patch versions with the caret (^) range.#1588
035bbf2Thanks @outslept! - Increase performance by listing staged files and searching for configuration concurrently.#1645
deba3adThanks @iiroj! - Remove chalk as a dependency due to recent malware issue; read more at chalk/chalk#656.If you are having trouble with ANSI color codes when using lint-staged, you can try setting either
FORCE_COLOR=trueorNO_COLOR=trueenv variables.Yizack/nuxt-webhook-validators (nuxt-webhook-validators)
v0.2.5Compare Source
compare changes
🚀 Enhancements
✅ Tests
❤️ Contributors
v0.2.4Compare Source
compare changes
🏡 Chore
🤖 CI
❤️ Contributors
pnpm/pnpm (pnpm)
v10.22.0Compare Source
microsoft/TypeScript (typescript)
v5.9.3: TypeScript 5.9.3Compare Source
Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.
For release notes, check out the release announcement
Downloads are available on:
posva/unplugin-vue-router (unplugin-vue-router)
v0.16.2Compare Source
Code Refactoring
BREAKING CHANGES
This export was creating multiple issues and was not
needed. It was deprecated long time ago and has now been removed. In
most cases you should be able to just import from
vue-routerinstead,but other exports must be adapted:
definePageshouldn't be imported, it's a macro with no runtimeDataLoaderPluginandNavigationResultmust be imported fromunplugin-vue-router/data-loadersdefineBasicLoadermust be imported fromunplugin-vue-router/data-loaders/basicdefineColadaLoadermust be imported fromunplugin-vue-router/data-loaders/pinia-coladaHere is the old declaration of
vue-router/autofor reference:0.16.2 (2025-11-14)
Bug Fixes
Features
0.16.1 (2025-10-30)
Bug Fixes
v0.16.1Compare Source
Bug Fixes
v0.16.0Compare Source
This new version requires Vue router 4.6.0 or higher. It includes support for the new experimental custom resolvers by setting
experimental.paramParsers: true.Bug Fixes
routesin_RouteFileInfoMap(#686) (f4a845a)Features
unplugin-vue-router/rolldownexport (#725) (1686681)vuejs/language-tools (vue-tsc)
v3.1.3Compare Source
Features
<template>(#5734) - Thanks to @KazariEX!Bug Fixes
lang="html"(#5728) - Thanks to @serkodev!Other Changes
v3.1.2Compare Source
Bug Fixes
propTypeshas no elements (#5704) - Thanks to @so1ve!Other Changes
vue-tscbroken link to example boilerplate inREADME.md(#5721) - Thanks to @heyakyra!v3.1.1Compare Source
Features
--tsdkcommand line arg (#5691)Bug Fixes
RefbyRefSymbolproperty (#5687) - Thanks to @KazariEX!__vue__in project instead of program (#5690)$scopedSlotssupport for Vue 2__VLS_export(#5696) - Thanks to @KazariEX!Other Changes
writeGlobalTypeswithout side effectsv3.1.0Compare Source
Performance
Other Changes
v3.0.10Compare Source
Bug Fixes
__vue__in project instead of program (#5690)v3.0.9Compare Source
Features
--tsdkcommand line arg (#5691)v3.0.8Compare Source
Features
vue.server.pathsetting (#5647)Bug Fixes
VueVirtualCodein constructor (#5635) - Thanks to @KazariEX!typescriptServerPluginlanguages without FS hackfilescheme files (#5653) - Thanks to @KazariEX!Performance
Other Changes
cloudflare/workers-sdk (wrangler)
v4.48.0Compare Source
Minor Changes
#11212
3908162Thanks @dario-piotrowicz! - Add autoconfig changes summary forwrangler deploy --x-autoconfigwith the option for users to cancel the operation#11229
14d79f2Thanks @dario-piotrowicz! - Enablesexperimental-deploy-remote-diff-checkflag by default (the flag is still present for now so that users can turn it off if needed) and improves the remote config diffing logic (to include less noise in the diff presented to the user)#11245
dfc6513Thanks @vicb! - Change how Wrangler selects default ports for dev sessions.If no port is specified, Wrangler now probes the default port and the 10 consecutive ports after it before falling back to a random port.
This will help getting a stable port number across dev sessions.
Both the http server and inspector ports are affected.
Patch Changes
#11177
43fe9f3Thanks @MattieTK! - Added bun detection to package manager analyticsUpdated dependencies [
305ffb3,46ccf0e]:v4.47.0Compare Source
Minor Changes
#11201
5286309Thanks @avenceslau! - Add wrangler workflows instances restart command#11214
5cf8a39Thanks @penalosa! - Add the experimentalwrangler setupcommand to run autoconfig outside of the deploy flow.#11187
8abc789Thanks @dario-piotrowicz! - Add possibility for users to edit their project settings during autoconfigWhen running
wrangler deploy --experimental-autoconfig, after the automatic project settings detection Wrangler will now present users the opportunity to customize the auto-detected project's settingsPatch Changes
#11143
2d16610Thanks @FlorentCollin! - Improve the formatting of the D1 execute command to always show the duration in milliseconds with two decimal places.#11178
63defa2Thanks @ascorbic! - Log a more helpful error when attempting to "r2 object put" a non-existent file#11199
70d3d4aThanks @penalosa! - Add telemetry to autoconfig#11186
38396edThanks @hoodmane! - Removed warning when deploying a Python worker#11024
cdcecfcThanks @devin-ai-integration! - Use the nativenode:trace_eventsmodule when availableIt is enabled when the
enable_nodejs_trace_events_modulecompatibility flag is set.#11195
e85f965Thanks @ascorbic! - Ignores.dev.varsif--env-filehas been explicitly passedPreviously,
.dev.varswould always be read first, and then any file passed with--env-filewould override variables in.dev.vars. This meant there was no way to ignore.dev.varsif you wanted to use a different env file. Now, if--env-fileis passed,.dev.varswill be ignored entirely.#11181
88aa707Thanks @petebacondarwin! - add more logging around Wrangler authentication to help diagnose issuesUpdated dependencies [
dd7d584,4259256, [cdcecfc](https://redirect.github.com/cloudflare/workers-Configuration
📅 Schedule: Branch creation - "on Monday" (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.