fix(deps): update all non-major dependencies#136
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #136 +/- ##
=======================================
Coverage 90.53% 90.53%
=======================================
Files 2 2
Lines 169 169
Branches 45 45
=======================================
Hits 153 153
Misses 16 16
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
4de5666 to
fe066f8
Compare
ac708ea to
c73d1c1
Compare
| "@tanstack/react-query": "^5.90.19", | ||
| "@tanstack/react-router": "^1.153.2", | ||
| "@tanstack/react-router-ssr-query": "^1.153.2", | ||
| "@tanstack/react-start": "^1.154.0", |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
f8af654 to
a945a60
Compare
| "@tanstack/react-router-ssr-query": "^1.145.6", | ||
| "@tanstack/react-start": "^1.145.6", | ||
| "@tanstack/react-query": "^5.90.19", | ||
| "@tanstack/react-router": "^1.154.10", |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
| "@mantine/code-highlight": "^8.3.13", | ||
| "@mantine/core": "^8.3.13", | ||
| "@mantine/dates": "^8.3.13", | ||
| "@mantine/dropzone": "^8.3.13", |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
| "@mantine/code-highlight": "^8.3.13", | ||
| "@mantine/core": "^8.3.13", | ||
| "@mantine/dates": "^8.3.13", | ||
| "@mantine/dropzone": "^8.3.13", |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
| "@mantine/code-highlight": "^8.3.13", | ||
| "@mantine/core": "^8.3.13", | ||
| "@mantine/dates": "^8.3.13", | ||
| "@mantine/dropzone": "^8.3.13", |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
| "@mantine/code-highlight": "^8.3.13", | ||
| "@mantine/core": "^8.3.13", | ||
| "@mantine/dates": "^8.3.13", | ||
| "@mantine/dropzone": "^8.3.13", |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
| "@tanstack/react-router": "^1.162.2", | ||
| "@tanstack/react-router-ssr-query": "^1.162.2", | ||
| "@tanstack/react-start": "^1.162.2", |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
| "@biomejs/biome": "^2.4.4", | ||
| "@cloudflare/vite-plugin": "^1.25.5", | ||
| "@dougley/types": "workspace:^", | ||
| "@mdx-js/react": "^3.1.1", |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
This PR contains the following updates:
^2.4.13→^2.4.14^0.6.0→^0.7.0^1.34.0→^1.36.0^4.20260430.1→^4.20260506.1^8.3.11→^8.3.18^8.3.11→^8.3.18^8.3.11→^8.3.18^8.3.11→^8.3.18^8.3.11→^8.3.18^8.3.11→^8.3.18^8.3.11→^8.3.18^8.3.11→^8.3.18^8.3.11→^8.3.18^8.3.11→^8.3.18^8.3.11→^8.3.18^3.41.1→^3.42.0^5.100.6→^5.100.9^5.100.6→^5.100.9^1.168.26→^1.169.2^1.167.52→^1.167.641.1.0→1.1.1>=0.25.0→>=0.28.0^4.12.16→^4.12.17^25.7.3→^25.10.1011.2.3→11.2.410.17.1→10.33.3^8.5.12→^8.5.14^16.5.1→^16.6.6^2.9.6→^2.9.9>=5.19.1→>=5.29.0>=5.26.2→>=5.29.0>=5.28.4→>=5.29.0>=5.8.0→>=5.29.0>=5.28.3→>=5.29.0>=5.8.2→>=5.29.0>=5.19.1→>=5.29.0](https://renovatebot.com/diffs/npm/undici@>=2.0.0 <5.19.1/5.19.1/5.29.0)>=5.28.5→>=5.29.0](https://renovatebot.com/diffs/npm/undici@>=4.5.0 <5.28.5/5.28.5/5.29.0)^4.86.0→^4.88.0^4.4.1→^4.4.3Release Notes
biomejs/biome (@biomejs/biome)
v2.4.14Compare Source
Patch Changes
#9393
491b171Thanks @dyc3! - Added the nursery ruleuseTestHooksOnTopin thetestdomain. The rule flags lifecycle hooks (beforeEach,beforeAll,afterEach,afterAll) that appear after test cases in the same block, enforcing that hooks are defined before any test case.#10157
eefc5abThanks @dyc3! - Fixed #7882: The HTML parser will now emit better diagnostics when it encounters a void element with a closing tag, such as<br></br>. Previously, the parser would emit multiple diagnostics with conflicting advice. Now it emits a single diagnostic that clearly states that void elements should not have closing tags.#10054
0e9f569Thanks @minseong0324! -noMisleadingReturnTypeno longer misses widening from concrete object types, class instances, object literals, tuples, functions, and regular expressions to: object.A function annotated
: objectreturning an object literal:#10116
53269ebThanks @jiwon79! - Fixed #6201:noUselessEscapeInRegexno longer flags an escaped backslash followed by-as a useless escape. Patterns like/[\\-]/are now considered valid because the second\is the escaped backslash, not an unnecessary escape of the trailing dash.#10092
33d8543Thanks @Conaclos! - Fixed #9097:organizeImportsno longer adds a blank line between a never-matched group and a matched group.Given the following
organizeImportsoptions:{ "groups": [":NODE:", ":BLANK_LINE:", ":PACKAGE:", ":BLANK_LINE:", ":PATH:"] }The following code...
...was organized as:
A blank line was added even though the group ':NODE:' doesn't match any imports here.
:BLANK_LINE:between never-matched groups and matched groups are now ignored.The code is now organized as:
// Comment import "package"; + import "./file.js";#10138
a10b6c1Thanks @dyc3! - Fixed Vuev-forhandling fornoUndeclaredVariablesandnoUnusedVariables. Biome now recognizes variables declared byv-fordirectives and references to iterated values in Vue templates.#10115
d428d76Thanks @minseong0324! -noMisleadingReturnTypeno longer reports false positives when a union return type'sbooleanvariant is covered by bothtrueandfalsereturns.#9922
7acf1e0Thanks @dyc3! - Added the new nursery rulenoReactStringRefs, which disallows legacy React string refs such asref="hello"andthis.refs.hello.Biome also reports template-literal refs such as
ref={`hello`}, so React code can consistently migrate to callback refs,createRef(), oruseRef().#10010
f3e76abThanks @dyc3! - Fixed a bug in the LSP file watcher registration so Biome now watches.biome.jsonand.biome.jsoncconfiguration files and reloads workspace settings when they change.#10176
8a40ef8Thanks @dyc3! - Fixed #10011: ThenoThisInStaticrule no longer reportsthiswhen it is used as the constructor target innew this(...), which is required for inherited static factory methods.#10163
6867e96Thanks @jiwon79! - Fixed #9884: TheuseSortedAttributesauto-fix no longer corrupts source code when both an outer JSX element and a nested JSX-valued attribute have unsorted attributes in the same pass. Multiple unsorted groups separated by spread or shorthand attributes within the same JSX element are now reported as a single diagnostic.#10079
d29dd19Thanks @Damix48! - Fixed false positive innoAssignInExpressionsfor Svelte{@​const}blocks. Assignments in{@​const name = value}are now correctly recognized as declarations rather than accidental assignments in expressions.#10080
5d8fdacThanks @Damix48! - Fixed parsing of closing parentheses in Svelte{#each}block key expressions. Biome now correctly parses method calls and other parenthesised expressions used as keys.For example, the following snippets are now parsed correctly:
{#each numbers as number, index (number.toString())} <p>{number}</p> {/each} {#each numbers as number (key(number))} <p>{number}</p> {/each}#10140
e7024b9Thanks @solithcy! - Fixed #10135: Biome no longer crashes on missing Svelte template expressions.The following code snippet longer panics:
{#if } <p>^ this would previously crash</p> {/if} {@​const } <p> ^ this would also crash</p>#10111
7818009Thanks @jiwon79! - Fixed #9997:noDuplicateSelectorsno longer reports false positives for selectors inside@scopequeries. Biome now treats@scopeas a separate at-rule context, like@media,@supports,@container, and@starting-style.The following snippet is no longer flagged as a duplicate:
#9926
d62b331Thanks @dyc3! - Added the nursery lint ruleuseMathMinMax, which prefersMath.min()andMath.max()over equivalent ternary comparisons.For example, this code:
is much more readable when rewritten as:
#10115
d428d76Thanks @minseong0324! -useExhaustiveSwitchCasesnow flags missingtrue/falsecases forbooleandiscriminants, including whenbooleanis a union variant.#10125
a55a0b6Thanks @bmish! - Fixed a resolver bug where packages that define a typed entry point throughpackage.json'smainfield but omittypeswere ignored during type-aware resolution. Type-aware rules such asnoFloatingPromisescan now inspect imports from those packages.#10117
895e809Thanks @denizdogan! - Added support for thecorner-shapefamily of CSS properties and thesuperellipse()/squircle()value functions, sonoUnknownPropertyandnoUnknownFunctionno longer flag them as unknown.New known properties:
corner-shape,corner-block-end-shape,corner-block-start-shape,corner-bottom-left-shape,corner-bottom-right-shape,corner-bottom-shape,corner-end-end-shape,corner-end-start-shape,corner-inline-end-shape,corner-inline-start-shape,corner-left-shape,corner-right-shape,corner-start-end-shape,corner-start-start-shape,corner-top-left-shape,corner-top-right-shape,corner-top-shape.New known value functions:
superellipse(),squircle().#8620
8df8f73Thanks @dyc3! - Fixed #8062: Added support for parsing Vuev-fordirectives more accurately.#10191
aa055cdThanks @guney! - Now the rulenoStaticElementInteractionsdoesn't trigger custom elements.#9757
2c62594Thanks @dyc3! - Fixed #9099: the HTML formatter collapsing non-text children (inline elements, Svelte expressions, comments) onto a single line when the source had them on separate lines. Biome now preserves the user's intended line breaks for exclusively non-text children.For example, the following Svelte snippet is now preserved instead of being collapsed to
<div>{name}<!-- comment --></div>:Similarly, HTML elements like
<span>inside a<div>are now preserved when written on their own line:#10105
e7c1a6dThanks @jiwon79! - Fixed #10039:useReadonlyClassPropertiesnow detects unreassigned private members in class expressions and export default classes, not only in class declarations.The following patterns are now correctly flagged:
#10141
46a77d0Thanks @minseong0324! - ImprovednoUnnecessaryConditionsto detect conditions that are always truthy because they check built-in global class instances such asDate,Map,Set,WeakMap, andError.#10178
7b05a89Thanks @dyc3! - Fixed #10177: The HTML parser no longer reports lowercasehtmlordoctypetext as invalid after void elements such as<br>.#10155
0d4595dThanks @jiwon79! - Fixed #10045: the CSS formatter no longer compounds indentation inside nested functional pseudo-classes such as:not(:where(...)),:is(:where(...)), and similar combinations. The same fix also removes one level of unnecessary indentation that was added inside any pseudo-class function whose argument list wrapped onto multiple lines, including:nth-child(... of ...),::part(...), and:active-view-transition-type(...).The following snippet is now correctly formatted, matching Prettier.
#10112
6f0251eThanks @dyc3! - Fixed #10110: Biome's parser now accepts surrogate code points in JavaScript string\u{...}escapes.#10141
46a77d0Thanks @minseong0324! - ImprovednoMisleadingReturnTypeto detectobjectreturn annotations that hide built-in global class instances such asDate,Map,Set,WeakMap, andError.#10083
4a664c1Thanks @ematipico! - Added two new options tonoShadow, both defaulting totrueto match typescript-eslint's behavior.Fixed #9482: Added
ignoreFunctionTypeParameterNameValueShadowoption. When enabled, parameter names inside function type annotations (e.g.(options: unknown) => void) are not flagged as shadowing outer variables.Fixed #7812: Added
ignoreTypeValueShadowoption. When enabled, a value binding that shares its name with a type-only declaration (type alias or interface) is not flagged, since types and values occupy separate namespaces in TypeScript.#9286
52695cfThanks @Hugo-Polloli! - Fixed #6316: Biome now resolves Svelte$storereferences to the underlyingstorebinding in semantic analysis, preventing falsenoUndeclaredVariablesdiagnostics when the store is declared.#10188
ae659ddThanks @dyc3! - Added a new nursery rulenoExcessiveNestedCallbacks, which disallows callbacks nested deeper than the configured maximum.#9757
2c62594Thanks @dyc3! - Fixed #9450: the HTML formatter now correctly preserves multiline formatting for nested<template>elements (e.g.<template #body>) when the source has children on separate lines. Previously, the children were collapsed onto a single line.#10118
c6edcb4Thanks @Netail! - Fixed #10024:biome migrate eslintcorrectly migrateseslintrules that belong to multiple Biome rules.changesets/changesets (@changesets/changelog-github)
v0.7.0Compare Source
cloudflare/workers-sdk (@cloudflare/vite-plugin)
v1.36.0Compare Source
Minor Changes
#13810
2b8c0ccThanks @jamesopstad! - Stabilize thesecretsconfiguration propertyThe
secretsproperty in the Wrangler config file is no longer experimental and will no longer emit an experimental warning when used. Required secrets are validated during local development and deploy, and used as the source of truth for type generation.{ "secrets": { "required": ["API_KEY", "DB_PASSWORD"] } }Patch Changes
#13814
a2f9c26Thanks @edmundhung! - Deny additional credential files from the Vite dev serverThe Cloudflare Vite plugin now adds
.npmrc,.yarnrc,.yarnrc.yml, and more certificate and key file extensions toserver.fs.deny. This prevents common credential files from being fetched directly during local development.Updated dependencies [
e07825a,58899d8,3020214,0099265,25f5ef2,bb27219,194d75e,12fb5db,18b9d5b,9f532f7,1127114,3ceadef,2b8c0cc,1a5cc86]:v1.35.0Compare Source
Minor Changes
#13618
c07d0cbThanks @jamesopstad! - Support V2 protocol for module fallback serviceWhen the
new_module_registrycompatibility flag is set, requests sent tounsafeModuleFallbackService()use a different protocol. The Vite plugin now supports both protocols in its handling of additional module types.Patch Changes
#13363
6457fb3Thanks @courtney-sims! - Prepares router-worker for a more gradual rollout by refactoring and separating out the invocation from the business logic. In the future, this will provide space for us to route requests to new versions of router-worker based on their plan, but should make no functional difference today.Updated dependencies [
22e1a61,00523c8,b5ac54b,e653edf,e1eff94,1c4d850,6d28037,9a1f014,e539008,0bf64a7,0827815,b04eedf,6457fb3,c07d0cb,e539008]:cloudflare/workerd (@cloudflare/workers-types)
v4.20260506.1Compare Source
v4.20260505.1Compare Source
v4.20260504.1Compare Source
v4.20260503.1Compare Source
v4.20260502.1Compare Source
v4.20260501.1Compare Source
mantinedev/mantine (@mantine/carousel)
v8.3.18Compare Source
This is the last 8.x release. You are welcome to test 9.0 alpha version and provide feedback before its release on March 31 – https://alpha.mantine.dev/changelog/9-0-0/
[@mantine/core]PasswordInput: Fix styles api props not resolving correctly in theme (#8716)v8.3.17Compare Source
Changes
[@mantine/core]Stepper: Fix Google Translate compatibility issues (#8744)[@mantine/hooks]use-list-state: Add memoization to all handlers (#8739)v8.3.16Compare Source
What's Changed
[@mantine/modals]FixonClosebeing called multiple times (#8727)[@mantine/core]Tooltip: Fix component not throwing erro when used with string (#8694)[@mantine/core]NumberInput: Fix incorrect decimal separator parsing inonPaste[@mantine/core]AppShell: Fixlayout="alt"not working withmode="static"[@mantine/stotlight]Fix actions list being rendered when nothing found message was not set (#8592)Full Changelog: mantinedev/mantine@8.3.15...8.3.16
v8.3.15Compare Source
What's Changed
[@mantine/dropzone]Updatereact-dropzoneto 15.0.0 (#8667)[@mantine/core]TagsInput: Fix duplicate checking bypass with splitChars (#8686)[@mantine/charts]Allow ChartTooltipvalueFormatterto returnReact.ReactNode(#8650)[@mantine/dates]DatePicker: Fix placeholder selector missing in Styles API (#8663)[@mantine/core]Add missing factory types exports (#8677)[@mantine/core]Fix inert attribute being ignored by Checkbox and Switch components (#8668)Full Changelog: mantinedev/mantine@8.3.14...8.3.15
v8.3.14Compare Source
What's Changed
[@mantine/core]Switch: Fix checkbox not being recognized by Playwright (#8370, #8645)[@mantine/core]MultiSelect: Fix click on chevron not opening dropdown when clearable is enabled (#8641)[@mantine/modals]Fix types of context modals inferred incorrectly (#8625)[@mantine/core]MultiSelect: Fix clear button overlapping with pills (#8634)New Contributors
Full Changelog: mantinedev/mantine@8.3.13...8.3.14
v8.3.13Compare Source
What's Changed
[@mantine/core]AddopenOnFocusprop to Combobox based components (#5893, #8623)[@mantine/dates]TimePicker: Fix clearing in uncontrolled mode not updating to empty value (#8622)[@mantine/core]ScrollArea: Fix Shift + wheel scroll not working correctly on Windows (#8619)[@mantine/core]AddselectFirstOptionOnDropdownOpento Combobox based components (#8597)[@mantine/core]ScrollArea: FixonBottomReachednot being called when used in zoomed-in viewports (#8616)[@mantine/core]Popover: Fixaria-controlsattribute being set on the target element when the dropdown is not mounted (#8595)[@mantine/core]RangeSlider: Fix incorrect Styles API name (#8601)[@mantine/core]ScrollArea: FixoverscrollBehaviorprop not working in ScrollArea.Autosize component (#8611)New Contributors
Full Changelog: mantinedev/mantine@8.3.12...8.3.13
v8.3.12Compare Source
What's Changed
[@mantine/core]Popover: Fix flip logic being calculated after shift (#8590)[@mantine/tiptap]Fix bubble menu being overlapped by the toolbar (#8589)[@mantine/core]ScrollArea: Fix incorrect overscroll behavior whenscrollbarexplicitly set on one side (#8591)[@mantine/core]AppShell: Add static mode support for nested app shellsNew Contributors
Full Changelog: mantinedev/mantine@8.3.11...8.3.12
tabler/tabler-icons (@tabler/icons-react)
v3.42.0: Release 3.42.0Compare Source
18 new icons:
outline/brand-stellaroutline/brand-vechainoutline/clef-staffoutline/clefoutline/currency-husdoutline/currency-tetheroutline/currency-zcashoutline/device-computer-camera-2outline/door-hangeroutline/earphone-bluetoothoutline/grapeoutline/hammer-drilloutline/infinity-2outline/lawn-moweroutline/loader-4outline/mosqueoutline/pendulumoutline/plungerTanStack/query (@tanstack/react-query)
v5.100.9Compare Source
Patch Changes
fcee7bd]:v5.100.8Compare Source
Patch Changes
v5.100.7Compare Source
Patch Changes
TanStack/query (@tanstack/react-query-devtools)
[
v5.100.9](https://redirect.github.com/TanStack/query/blob/HEAConfiguration
📅 Schedule: (UTC)
🚦 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.