Skip to content

👷 Update all non-major dependencies#3840

Merged
thomas-lebeau merged 2 commits into
mainfrom
renovate/all-minor-patch
Sep 15, 2025
Merged

👷 Update all non-major dependencies#3840
thomas-lebeau merged 2 commits into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Sep 13, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@mantine/core (source) 8.2.8 -> 8.3.1 age adoption passing confidence dependencies minor
@mantine/hooks (source) 8.2.8 -> 8.3.1 age adoption passing confidence dependencies minor
@types/chrome (source) 0.1.6 -> 0.1.11 age adoption passing confidence devDependencies patch
@types/node (source) 24.3.1 -> 24.4.0 age adoption passing confidence dependencies minor
@types/node (source) 24.3.1 -> 24.4.0 age adoption passing confidence devDependencies minor
@types/react (source) 19.1.12 -> 19.1.13 age adoption passing confidence devDependencies patch
eslint-plugin-jsdoc 54.5.0 -> 54.7.0 age adoption passing confidence devDependencies minor
eslint-plugin-unicorn 61.0.1 -> 61.0.2 age adoption passing confidence devDependencies patch
github/codeql-action v3.30.1 -> v3.30.3 age adoption passing confidence action patch
globals 16.3.0 -> 16.4.0 age adoption passing confidence devDependencies minor
node (source) 24.7.0 -> 24.8.0 age adoption passing confidence volta minor
node 24.7.0-bookworm-slim -> 24.8.0-bookworm-slim age adoption passing confidence stage minor
puppeteer (source) 24.19.0 -> 24.20.0 age adoption passing confidence dependencies minor
puppeteer (source) 24.19.0 -> 24.20.0 age adoption passing confidence devDependencies minor
react-router (source) 7.8.2 -> 7.9.1 age adoption passing confidence devDependencies minor
react-router-dom (source) 7.8.2 -> 7.9.1 age adoption passing confidence devDependencies minor
typedoc (source) 0.28.12 -> 0.28.13 age adoption passing confidence devDependencies patch
typescript-eslint (source) 8.42.0 -> 8.43.0 age adoption passing confidence devDependencies minor

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

mantinedev/mantine (@​mantine/core)

v8.3.1

Compare Source

What's new

  • [@mantine/hooks] use-scroll-spy: Fix scroll events not being reassigned when scrollHost changes (#​8251)
  • [@mantine/modals] Update updateModal to include types for confirm modal
  • [@mantine/core] Tabs: Allow overriding aria attributes with ...others
  • [@mantine/core] Select: Fix clear button overlaying selected option (#​8249)
  • [@mantine/core] Combobox: Update focusTarget handler to correctly handle missing DOM node (#​8185)
  • [@mantine/core] ColorPicker: Fix unexpected margin-top (#​8247)
  • [@mantine/core] Allow specifying generic component in default props in the theme object (#​8188)
  • [@mantine/form] Fix incorrect type of matchesField validator (#​8201)
  • [@mantine/modals] Fix data-* attributes triggering type error (#​8217)
  • [@mantine/dates] DateInput: Fix allowDeselect prop not working (#​8229)
  • [@mantine/charts] Fix long tooltip names overflowing on the series color swatch in the tooltip (#​8230)

v8.3.0: 🔥

Compare Source

View changelog with demos on mantine.dev website

MiniCalendar component

New MiniCalendar component:

import { useState } from 'react';
import { MiniCalendar } from '@​mantine/dates';

function Demo() {
  const [value, onChange] = useState<string | null>('2025-04-15');
  return <MiniCalendar value={value} onChange={onChange} numberOfDays={6} />;
}

Progress vertical orientation

Progress now supports vertical orientation:

import { Progress } from '@&#8203;mantine/core';

function Demo() {
  return (
    <Group>
      <Progress value={80} orientation="vertical" h={200} />
      <Progress value={60} color="orange" size="xl" orientation="vertical" h={200} animated />

      <Progress.Root size="xl" autoContrast orientation="vertical" h={200}>
        <Progress.Section value={40} color="lime.4">
          <Progress.Label>Documents</Progress.Label>
        </Progress.Section>
        <Progress.Section value={20} color="yellow.4">
          <Progress.Label>Apps</Progress.Label>
        </Progress.Section>
        <Progress.Section value={20} color="cyan.7">
          <Progress.Label>Other</Progress.Label>
        </Progress.Section>
      </Progress.Root>
    </Group>
  );
}

Heatmap splitMonths

Heatmap now supports splitMonths prop to visually separate months with a spacer column and render only days that belong to each month in its columns.

import { Heatmap } from '@&#8203;mantine/charts';
import { data } from './data';

function Demo() {
  return (
    <Heatmap
      data={data}
      startDate="2024-02-16"
      endDate="2025-02-16"
      withMonthLabels
      splitMonths
    />
  );
}

Improved clearable prop handling

Select, MultiSelect, and other components with
clearable prop now allow displaying the clear button next to the right section:

import { Select } from '@&#8203;mantine/core';

function Demo() {
  return (
    <Select
      label="Your favorite library"
      placeholder="Pick value"
      data={['React', 'Angular', 'Vue', 'Svelte']}
      defaultValue="React"
      clearable
    />
  );
}

Tiptap 3 support

@​mantine/tiptap now supports Tiptap 3. It is
recommended to update all @tiptap/* packages to version 3.2.0 or later.

Your application might require some modifications related to Tiptap 3.
If you want to update your application to TipTap 3, follow
migration guide.

LLMs.txt

You can now use LLMs.txt file with Cursor and other IDEs.
The file is automatically updated with each release and includes
every demo and documentation page from mantine.dev. It is about 1.8mb.
You can find the latest version of LLMs.txt here
and further documentation here.

Other changes

  • MultiSelect now supports clearSearchOnChange prop to clear search input when an item is selected.
  • Reordering list items example now uses dnd-kit instead of @hello-pangea/dnd
  • TimePicker now supports reverseTimeControlsList prop to reverse the order of time controls in the dropdown. Use this option if you want the order of controls to match keyboard controls (up and down arrow) direction.
  • DirectionProvider now automatically subscribes to the dir attribute mutations of the root element (usually <html />) and updates internal state automatically.
  • Select and MultiSelect now retain references to selected options that are no longer present in data prop.
  • Active color swatch now has check icon in ColorPicker and ColorInput components.
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v54.7.0

Compare Source

Features

v54.6.0

Compare Source

Features
sindresorhus/eslint-plugin-unicorn (eslint-plugin-unicorn)

v61.0.2

Compare Source

  • throw-new-error: Fix false positive for Effect library (#​2740) 0ddf5ea
  • no-useless-undefined: Ignore Set#delete(undefined) (#​2739) 99acd27
  • prefer-includes and prefer-array-index-of: Prevent crash on Vue files (#​2645) a1da518

github/codeql-action (github/codeql-action)

v3.30.3

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.30.3 - 10 Sep 2025

No user facing changes.

See the full CHANGELOG.md for more information.

v3.30.2

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.30.2 - 09 Sep 2025

  • Fixed a bug which could cause language autodetection to fail. #​3084
  • Experimental: The quality-queries input that was added in 3.29.2 as part of an internal experiment is now deprecated and will be removed in an upcoming version of the CodeQL Action. It has been superseded by a new analysis-kinds input, which is part of the same internal experiment. Do not use this in production as it is subject to change at any time. #​3064

See the full CHANGELOG.md for more information.

sindresorhus/globals (globals)

v16.4.0

Compare Source


nodejs/node (node)

v24.8.0: 2025-09-10, Version 24.8.0 (Current), @​targos

Compare Source

Notable Changes
HTTP/2 Network Inspection Support in Node.js

Node.js now supports inspection of HTTP/2 network calls in Chrome DevTools for Node.js.

Usage

Write a test.js script that makes HTTP/2 requests.

const http2 = require('node:http2');

const client = http2.connect('https://nghttp2.org');

const req = client.request([
  ':path', '/',
  ':method', 'GET',
]);

Run it with these options:

node --inspect-wait --experimental-network-inspection test.js

Open about:inspect on Google Chrome and click on Open dedicated DevTools for Node.
The Network tab will let you track your HTTP/2 calls.

Contributed by Darshan Sen in #​59611.

Other Notable Changes
  • [7a8e2c251d] - (SEMVER-MINOR) crypto: support Ed448 and ML-DSA context parameter in node:crypto (Filip Skokan) #​59570
  • [4b631be0b0] - (SEMVER-MINOR) crypto: support Ed448 and ML-DSA context parameter in Web Cryptography (Filip Skokan) #​59570
  • [3e4b1e732c] - (SEMVER-MINOR) crypto: add KMAC Web Cryptography algorithms (Filip Skokan) #​59647
  • [b1d28785b2] - (SEMVER-MINOR) crypto: add Argon2 Web Cryptography algorithms (Filip Skokan) #​59544
  • [430691d1af] - (SEMVER-MINOR) crypto: support SLH-DSA KeyObject, sign, and verify (Filip Skokan) #​59537
  • [d6d05ba397] - (SEMVER-MINOR) worker: add cpu profile APIs for worker (theanarkh) #​59428
Commits
puppeteer/puppeteer (puppeteer)

v24.20.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
Features
Bug Fixes
  • accessibility: reports snapshot with uninteresting root and focusable Document is not a leaf node (#​14169) (3bad7ad)
  • roll to Chrome 140.0.7339.82 (#​14182) (7e4440d)
remix-run/react-router (react-router)

v7.9.1

Compare Source

Patch Changes
  • Fix internal Future interface naming from middleware -> v8_middleware (#​14327)

v7.9.0

Compare Source

Minor Changes
Patch Changes
  • Escape HTML in meta() JSON-LD content (#​14316)
  • Add react-server Await component implementation (#​14261)
  • In RSC Data Mode when using a custom basename, fix hydration errors for routes that only have client loaders (#​14264)
  • Make href function available in a react-server context (#​14262)
  • decode each time getPayload() is called to allow for "in-context" decoding and hoisting of contextual assets (#​14248)
  • href() now correctly processes routes that have an extension after the parameter or are a single optional parameter. (#​13797)
remix-run/react-router (react-router-dom)

v7.9.1

Compare Source

Patch Changes

v7.9.0

Compare Source

Patch Changes
TypeStrong/TypeDoc (typedoc)

v0.28.13

Compare Source

Features
  • The basePath option now also affects relative link resolution, TypeDoc will also check for
    paths relative to the provided base path. If you instead want TypeDoc to only change the rendered
    base path for sources, use the displayBasePath option, #​3009.
Bug Fixes
  • Fixed bug introduced in 0.28.8 where TypeDoc could not render docs with some mixin classes, #​3007.
  • @inheritDoc will now correctly overwrite @remarks and @returns blocks on the target comment, #​3012.
  • The externalSymbolLinkMappings option now wor

Configuration

📅 Schedule: Branch creation - "every weekend" (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 requested a review from a team as a code owner September 13, 2025 06:34
@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Sep 13, 2025
@datadog-datadog-prod-us1

datadog-datadog-prod-us1 Bot commented Sep 13, 2025

Copy link
Copy Markdown

✅ Tests

🎉 All green!

❄️ No new flaky tests detected
🧪 All tests passed

🎯 Code Coverage
Patch Coverage: 100.00%
Total Coverage: 92.34% (+0.00%)

View detailed report

This comment will be updated automatically if new data arrives.
🔗 Commit SHA: 7301874 | Docs | Was this helpful? Give us feedback!

@cit-pr-commenter

cit-pr-commenter Bot commented Sep 13, 2025

Copy link
Copy Markdown

Bundles Sizes Evolution

📦 Bundle Name Base Size Local Size 𝚫 𝚫% Status
Rum 158.77 KiB 158.77 KiB 0 B 0.00%
Rum Recorder 19.53 KiB 19.53 KiB 0 B 0.00%
Rum Profiler 5.18 KiB 5.18 KiB 0 B 0.00%
Logs 55.74 KiB 55.74 KiB 0 B 0.00%
Flagging N/A 931 B 931 B N/A%
Rum Slim 116.51 KiB 116.51 KiB 0 B 0.00%
Worker 23.60 KiB 23.60 KiB 0 B 0.00%
🚀 CPU Performance
Action Name Base Average Cpu Time (ms) Local Average Cpu Time (ms) 𝚫
addglobalcontext 0.007 0.006 -0.002
addaction 0.020 0.015 -0.005
addtiming 0.004 0.003 -0.000
adderror 0.015 0.015 -0.001
startstopsessionreplayrecording 0.001 0.001 -0.000
startview 0.005 0.004 -0.001
logmessage 0.021 0.017 -0.005
🧠 Memory Performance
Action Name Base Consumption Memory (bytes) Local Consumption Memory (bytes) 𝚫 (bytes)
addglobalcontext 24.93 KiB 25.70 KiB 796 B
addaction 45.32 KiB 46.43 KiB 1.11 KiB
addtiming 25.48 KiB 24.42 KiB -1088 B
adderror 48.98 KiB 52.27 KiB 3.29 KiB
startstopsessionreplayrecording 24.42 KiB 24.24 KiB -189 B
startview 421.95 KiB 432.61 KiB 10.66 KiB
logmessage 42.10 KiB 43.38 KiB 1.27 KiB

🔗 RealWorld

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 21e8f7a to a9bae28 Compare September 15, 2025 00:30
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from a9bae28 to dd629f6 Compare September 15, 2025 07:46
@renovate

renovate Bot commented Sep 15, 2025

Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@thomas-lebeau
thomas-lebeau merged commit 6b502ea into main Sep 15, 2025
20 checks passed
@thomas-lebeau
thomas-lebeau deleted the renovate/all-minor-patch branch September 15, 2025 09:01
rgaignault pushed a commit that referenced this pull request Sep 15, 2025
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Thomas Lebeau <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant