Skip to content

Comments

fix(deps): update all non-major dependencies#558

Merged
magne4000 merged 1 commit intomainfrom
renovate/all-minor-patch
Sep 8, 2025
Merged

fix(deps): update all non-major dependencies#558
magne4000 merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 8, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) ^7.28.3 -> ^7.28.4 age adoption passing confidence
@biomejs/biome (source) 2.2.2 -> 2.2.3 age adoption passing confidence
@cloudflare/workers-types ^4.20250823.0 -> ^4.20250906.0 age adoption passing confidence
@eslint/js (source) ^9.34.0 -> ^9.35.0 age adoption passing confidence
@hono/node-server ^1.19.0 -> ^1.19.1 age adoption passing confidence
@mantine/core (source) ^8.2.7 -> ^8.2.8 age adoption passing confidence
@mantine/hooks (source) ^8.2.7 -> ^8.2.8 age adoption passing confidence
@prisma/client (source) ^6.14.0 -> ^6.15.0 age adoption passing confidence
@sentry/react (source) ^10.5.0 -> ^10.10.0 age adoption passing confidence
@sentry/solid (source) ^10.5.0 -> ^10.10.0 age adoption passing confidence
@sentry/vite-plugin (source) ^4.1.1 -> ^4.3.0 age adoption passing confidence
@sentry/vue (source) ^10.5.0 -> ^10.10.0 age adoption passing confidence
@tailwindcss/vite (source) ^4.1.12 -> ^4.1.13 age adoption passing confidence
@trpc/client (source) ^11.5.0 -> ^11.5.1 age adoption passing confidence
@trpc/server (source) ^11.5.0 -> ^11.5.1 age adoption passing confidence
@types/react (source) ^19.1.11 -> ^19.1.12 age adoption passing confidence
@types/react-dom (source) ^19.1.7 -> ^19.1.9 age adoption passing confidence
@typescript-eslint/parser (source) ^8.40.0 -> ^8.42.0 age adoption passing confidence
@typescript-eslint/utils (source) ^8.40.0 -> ^8.42.0 age adoption passing confidence
@universal-middleware/core ^0.4.9 -> ^0.4.10 age adoption passing confidence
@vitejs/plugin-react (source) ^5.0.1 -> ^5.0.2 age adoption passing confidence
@vue/compiler-sfc (source) ^3.5.19 -> ^3.5.21 age adoption passing confidence
@vue/server-renderer (source) ^3.5.19 -> ^3.5.21 age adoption passing confidence
aws-cdk (source) ^2.1026.0 -> ^2.1029.0 age adoption passing confidence
aws-cdk-lib (source) ^2.212.0 -> ^2.214.0 age adoption passing confidence
browserless (source) ^10.7.13 -> ^10.8.0 age adoption passing confidence
cdk (source) ^2.1026.0 -> ^2.1029.0 age adoption passing confidence
daisyui (source) ^5.0.50 -> ^5.1.8 age adoption passing confidence
dotenv ^17.2.1 -> ^17.2.2 age adoption passing confidence
drizzle-orm (source) ^0.44.4 -> ^0.44.5 age adoption passing confidence
eslint (source) ^9.34.0 -> ^9.35.0 age adoption passing confidence
fastify (source) ^5.5.0 -> ^5.6.0 age adoption passing confidence
hono (source) ^4.9.4 -> ^4.9.6 age adoption passing confidence
knip (source) ^5.63.0 -> ^5.63.1 age adoption passing confidence
lucide-react (source) ^0.541.0 -> ^0.542.0 age adoption passing confidence
p-limit ^7.1.0 -> ^7.1.1 age adoption passing confidence
prisma (source) ^6.14.0 -> ^6.15.0 age adoption passing confidence
puppeteer (source) ^24.17.0 -> ^24.19.0 age adoption passing confidence
tailwindcss (source) ^4.1.12 -> ^4.1.13 age adoption passing confidence
telefunc (source) ^0.2.10 -> ^0.2.12 age adoption passing confidence
tw-animate-css ^1.3.7 -> ^1.3.8 age adoption passing confidence
typescript-eslint (source) ^8.40.0 -> ^8.42.0 age adoption passing confidence
vike ^0.4.237 -> ^0.4.239 age adoption passing confidence
vite (source) ^7.1.3 -> ^7.1.4 age adoption passing confidence
vue (source) ^3.5.19 -> ^3.5.21 age adoption passing confidence
vue-gtag ^3.5.2 -> ^3.6.1 age adoption passing confidence
wrangler (source) ^4.32.0 -> ^4.34.0 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.28.4

Compare Source

🏠 Internal
biomejs/biome (@​biomejs/biome)

v2.2.3

Compare Source

Patch Changes
  • #​7353 4d2b719 Thanks @​JeetuSuthar! - Fixed #​7340: The linter now allows the navigation property for view-transition in CSS.

    Previously, the linter incorrectly flagged navigation: auto as an unknown property. This fix adds navigation to the list of known CSS properties, following the CSS View Transitions spec.

  • #​7275 560de1b Thanks @​arendjr! - Fixed #​7268: Files that are explicitly passed as CLI arguments are now correctly ignored if they reside in an ignored folder.

  • #​7358 963a246 Thanks @​ematipico! - Fixed #​7085, now the rule noDescendingSpecificity correctly calculates the specificity of selectors when they are included inside a media query.

  • #​7387 923674d Thanks @​qraqras! - Fixed #​7381, now the useOptionalChain rule recognizes optional chaining using Yoda expressions (e.g., undefined !== foo && foo.bar).

  • #​7316 f9636d5 Thanks @​Conaclos! - Fixed #​7289. The rule useImportType now inlines import type into import { type } when the style option is set to inlineType.

    Example:

    import type { T } from "mod";
    // becomes
    import { type T } from "mod";
  • #​7350 bb4d407 Thanks @​siketyan! - Fixed #​7261: two characters (KATAKANA MIDDLE DOT, U+30FB) and (HALFWIDTH KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid characters in identifiers. Property keys containing these character(s) are now preserved as string literals.

  • #​7377 811f47b Thanks @​ematipico! - Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status.

  • #​7245 fad34b9 Thanks @​kedevked! - Added the new lint rule useConsistentArrowReturn.

    This rule enforces a consistent return style for arrow functions.

Invalid
const f = () => {
  return 1;
};

This rule is a port of ESLint's arrow-body-style rule.

  • #​7370 e8032dd Thanks @​fireairforce! - Support dynamic import defer and import source. The syntax looks like:

    import.source("foo");
    import.source("x", { with: { attr: "val" } });
    import.defer("foo");
    import.defer("x", { with: { attr: "val" } });
  • #​7369 b1f8cbd Thanks @​siketyan! - Range suppressions are now supported for Grit plugins.

    For JavaScript, you can suppress a plugin as follows:

    // biome-ignore-start lint/plugin/preferObjectSpread: reason
    Object.assign({ foo: "bar" }, baz);
    // biome-ignore-end lint/plugin/preferObjectSpread: reason

    For CSS, you can suppress a plugin as follows:

    body {
      /* biome-ignore-start lint/plugin/useLowercaseColors: reason */
      color: #fff;
      /* biome-ignore-end lint/plugin/useLowercaseColors: reason */
    }
  • #​7384 099507e Thanks @​ematipico! - Reduced the severity of certain diagnostics emitted when Biome deserializes the configuration files.
    Now these diagnostics are emitted as Information severity, which means that they won't interfere when running commands with --error-on-warnings

  • #​7302 2af2380 Thanks @​unvalley! - Fixed #​7301: useReadonlyClassProperties now correctly skips JavaScript files.

  • #​7288 94d85f8 Thanks @​ThiefMaster! - Fixed #​7286. Files are now formatted with JSX behavior when javascript.parser.jsxEverywhere is explicitly set.

    Previously, this flag was only used for parsing, but not for formatting, which resulted in incorrect formatting of conditional expressions when JSX syntax is used in .js files.

  • #​7311 62154b9 Thanks @​qraqras! - Added the new nursery rule noUselessCatchBinding. This rule disallows unnecessary catch bindings.

    try {
        // Do something
    - } catch (unused) {}
    + } catch {}
  • #​7349 45c1dfe Thanks @​ematipico! - Fixed #​4298. Biome now correctly formats CSS declarations when it contains one single value:

    .bar {
    -  --123456789012345678901234567890: var(--1234567890123456789012345678901234567);
    +  --123456789012345678901234567890: var(
    +    --1234567890123456789012345678901234567
    +  );
    }
  • #​7295 7638e84 Thanks @​ematipico! - Fixed #​7130. Removed the emission of a false-positive diagnostic. Biome no longer emits the following diagnostic:

    lib/main.ts:1:5 suppressions/unused ━━━━━━━━━━━━━━━━━━━━━━━━━
    
      ⚠ Suppression comment has no effect because the tool is not enabled.
    
      > 1 │ /** biome-ignore-all assist/source/organizeImports: For the lib root file, we don't want to organize exports */
          │     ^^^^^^^^^^^^^^^^
    
    
  • #​7377 811f47b Thanks @​ematipico! - Fixed #​7371 where the Biome Language Server didn't correctly recompute the diagnostics when updating a nested configuration file.

  • #​7348 ac27fc5 Thanks @​ematipico! - Fixed #​7079. Now the rule useSemanticElements doesn't trigger components and custom elements.

  • #​7389 ab06a7e Thanks @​Conaclos! - Fixed #​7344. useNamingConvention no longer reports interfaces defined in global declarations.

    Interfaces declared in global declarations augment existing interfaces.
    Thus, they must be ignored.

    In the following example, useNamingConvention reported HTMLElement.
    It is now ignored.

    export {};
    declare global {
      interface HTMLElement {
        foo(): void;
      }
    }
  • #​7315 4a2bd2f Thanks @​vladimir-ivanov! - Fixed #​7310: useReadonlyClassProperties correctly handles nested assignments, avoiding false positives when a class property is assigned within another assignment expression.

    Example of code that previously triggered a false positive but is now correctly ignored:

    class test {
      private thing: number = 0; // incorrectly flagged
    
      public incrementThing(): void {
        const temp = { x: 0 };
        temp.x = this.thing++;
      }
    }
cloudflare/workerd (@​cloudflare/workers-types)

v4.20250906.0

Compare Source

v4.20250905.0

Compare Source

v4.20250904.0

Compare Source

v4.20250903.0

Compare Source

v4.20250902.0

Compare Source

v4.20250831.0

Compare Source

v4.20250830.0

Compare Source

v4.20250829.0

Compare Source

v4.20250828.1

Compare Source

v4.20250828.0

Compare Source

v4.20250826.0

Compare Source

eslint/eslint (@​eslint/js)

v9.35.0

Compare Source

honojs/node-server (@​hono/node-server)

v1.19.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.19.0...v1.19.1

mantinedev/mantine (@​mantine/core)

v8.2.8

Compare Source

What's Changed
  • [@mantine/charts] LineChart: Fix gridColor prop being passed down to the root DOM node
  • [@mantine/carousel] Add data-type="next" and data-type="previous" to controls
  • [@mantine/hooks] use-scroll-spy: Add offset prop support (#​8209)
  • [@mantine/core] ScrollArea: Fix incorrect horizontal size calculations in ScrollArea.Autosize ([#​81

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Sep 8, 2025
@magne4000 magne4000 merged commit 65cad42 into main Sep 8, 2025
21 of 23 checks passed
@magne4000 magne4000 deleted the renovate/all-minor-patch branch September 8, 2025 08:30
@magne4000
Copy link
Member

Not released because of regression with Cloudflare deployment. Waiting for Photon stack to be implemented for a fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant