chore(deps): update all non-major dependencies #3721
Merged
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:
2.3.7->2.3.81.22.0->1.23.03.15.0->3.17.03.15.0->3.17.02.5.6->2.5.71.25.0->1.26.019.2.6->19.2.73.5.24->3.5.251.4.1->1.4.43.19.6->3.19.820.0.10->20.0.110.554.0->0.555.00.554.0->0.555.00.554.0->0.555.00.554.0->0.555.08.1.0->8.2.03.6.2->3.7.37.66.1->7.67.03.15.0->3.17.05.43.14->5.45.248.10.10->48.12.03.5.24->3.5.25Release Notes
biomejs/biome (@biomejs/biome)
v2.3.8Compare Source
Patch Changes
#8188
4ca088cThanks @ematipico! - Fixed #7390, where Biome couldn't apply the correct configuration passed via--config-path.If you have multiple root configuration files, running any command with
--config-pathwill now apply the chosen configuration file.#8171
79adaeaThanks @dibashthapa! - Added the new rulenoLeakedRender. This rule helps prevent potential leaks when rendering components that use binary expressions or ternaries.For example, the following code triggers the rule because the component would render
0:#8116
b537918Thanks @Netail! - Added the nursery rulenoDuplicatedSpreadProps. Disallow JSX prop spreading the same identifier multiple times.Invalid:
#8256
f1e4696Thanks @cormacrelf! - Fixed a bug where logs were discarded (the kind from--log-level=infoetc.). This is a regression introduced after an internal refactor that wasn't adequately tested.#8226
3f19b52Thanks @dyc3! - Fixed #8222: The HTML parser, with Vue directives enabled, can now parsev-slotshorthand syntax, e.g.<template #foo>.#8007
182ecdcThanks @brandonmcconnell! - Added support for dollar-sign-prefixed filenames in theuseFilenamingConventionrule.Biome now allows filenames starting with the dollar-sign (e.g.
$postId.tsx) by default to support naming conventions used by frameworks such as TanStack Start for file-based-routing.#8218
91484d1Thanks @hirokiokada77! - Added thenoMultiStrrule, which disallows creating multiline strings by escaping newlines.Invalid:
Valid:
#8225
98ca2aeThanks @ongyuxing! - Fixed #7806: Prefer breaking after the assignment operator for conditional types with generic parameters to match Prettier.#6765
23f7855Thanks @emilyinure! - Fixed #6569: Allow files to export from themselves withnoImportCycles.This means the following is now allowed:
#8214
68c052eThanks @hirokiokada77! - Added thenoEqualsToNullrule, which enforces the use of===and!==for comparison withnullinstead of==or!=.Invalid:
Valid:
#8219
793bb9aThanks @dyc3! - Fixed #8190: The HTML parser will now parse Vue event handlers that contain:correctly, e.g.@update:modelValue="onUpdate".#8259
4a9139bThanks @hirokiokada77! - Fixed #8254: ThenoParameterAssignrule withpropertyAssignment: "deny"was incorrectly reporting an error when a function parameter was used on the right-hand side of an assignment to a local variable's property.The rule should only flag assignments that modify the parameter binding or its properties (L-value), not the use of its value.
Valid:
#8201
cd2edd7Thanks @Netail! - Added the nursery rulenoTernary. Disallow ternary operators.Invalid:
#8172
de98933Thanks @JeremyMoeglich! - Fixed #8145: handling of large hex literals, which previously caused both false positives and false negatives.This affects
noPrecisionLossandnoConstantMathMinMaxClamp.#8210
7b44e9eThanks @Netail! - Corrected rule source reference.biome migrate eslintshould do a bit better detecting rules in your eslint configurations.#8213
e430555Thanks @ruidosujeira! - Fixed #8209: Recognized formatting capability when either range or on-type formatting is supported, not only full-file formatting. This ensures editors and the language server correctly detect formatting support in files like JSONC.#8202
6f49d95Thanks @hirokiokada77! - Fixed #8079: Properly handlenameandvaluemetavariables forJsxAttributeGritQL queries.The following
biome searchcommand no longer throws an error:#8276
f7e836fThanks @hirokiokada77! - Added thenoProtorule, which disallows the use of the__proto__property for getting or setting the prototype of an object.Invalid:
Valid:
modelcontextprotocol/typescript-sdk (@modelcontextprotocol/sdk)
v1.23.0Compare Source
What's Changed
.catchall()on inputSchema/outputSchema to support JSON Schema 2020-12 by @felixweinberger in #1135New Contributors
Full Changelog: modelcontextprotocol/typescript-sdk@1.22.0...1.23.0
shikijs/shiki (@shikijs/rehype)
v3.17.0Compare Source
🚀 Features
🐞 Bug Fixes
createdBundledHighlightertocreateBundledHighlighter- by @tushar73-jet, Tushar and @antfu in #1135 (e6d21)twoslash-query-persisted, close #1130, close #981 - by @antfu in #1130 and #981 (55a17)View changes on GitHub
v3.16.0Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
sveltejs/kit (@sveltejs/package)
v2.5.7Compare Source
Patch Changes
TanStack/form (@tanstack/svelte-form)
v1.26.0Compare Source
Patch Changes
74f40e7]:vuejs/core (@vue/compiler-sfc)
v3.5.25Compare Source
Bug Fixes
provideafter mounting (#13954) (247b2c2), closes #13921 #13924better-auth/better-auth (better-auth)
v1.4.4Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v1.4.3Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v1.4.2Compare Source
🚀 Features
/authforauth.ts- by @ping-maxwell in #6273 (53a74)🐞 Bug Fixes
View changes on GitHub
Effect-TS/effect (effect)
v3.19.8Compare Source
Patch Changes
f03b8e5Thanks @lokhmakov! - Prevent multiple iterations over the same Iterable in Array.intersectionWith and Array.differenceWithv3.19.7Compare Source
Patch Changes
7ef13d3Thanks @tim-smart! - fix SqlPersistedQueue batch sizecapricorn86/happy-dom (happy-dom)
v20.0.11Compare Source
lucide-icons/lucide (lucide-react)
v0.555.0: Version 0.555.0Compare Source
What's Changed
calendarsicon by @jguddas in #3795waves-arrow-upandwaves-arrow-downby @ericfennis in #3463scaleicon by @jamiemlaw in #3800formicon by @jguddas in #3558Full Changelog: lucide-icons/lucide@0.554.0...0.555.0
kentcdodds/match-sorter (match-sorter)
v8.2.0Compare Source
Features
prettier/prettier (prettier)
v3.7.3Compare Source
diff
API: Fix
prettier.getFileInfo()change that breaks VSCode extension (#18375 by @fisker)An internal refactor accidentally broke the VSCode extension plugin loading.
v3.7.2Compare Source
diff
JavaScript: Fix string print when switching quotes (#18351 by @fisker)
JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @kovsu)
TypeScript: Fix comment in empty type literal (#18364 by @fisker)
v3.7.1Compare Source
diff
API: Fix performance regression in doc printer (#18342 by @fisker)
Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.
v3.7.0Compare Source
diff
🔗 Release Notes
react-hook-form/react-hook-form (react-hook-form)
v7.67.0: Version 7.67.0Compare Source
🎯 feat: add exact to useController props (#13154)
✨ fix(types): allow undefined value with async defaultValues in Contr… (#13160)
🐞 fix(types): correct PathValueImpl type inference (#13150)
sveltejs/svelte (svelte)
v5.45.2Compare Source
Patch Changes
fix: array destructuring after await (#17254)
fix: throw on invalid
{@​tag}s (#17256)v5.45.1Compare Source
Patch Changes
v5.45.0Compare Source
Minor Changes
print(...)function (#16188)v5.44.1Compare Source
Patch Changes
fix: await blockers before initialising const (#17226)
fix: link offscreen items and last effect in each block correctly (#17244)
fix: generate correct code for simple destructurings (#17237)
fix: ensure each block animations don't mess with transitions (#17238)
v5.44.0Compare Source
Minor Changes
hydratableAPI (#17154)v5.43.15Compare Source
Patch Changes
fix: don't execute attachments and attribute effects eagerly (#17208)
chore: lift "flushSync cannot be called in effects" restriction (#17139)
fix: store forked derived values (#17212)
vercel/vercel (vercel)
v48.12.0Compare Source
Minor Changes
v48.11.1[Compare Source](https://redirect.gi
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone UTC, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.