Skip to content

Bump the mantine group across 1 directory with 4 updates - #25758

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a
Open

Bump the mantine group across 1 directory with 4 updates#25758
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 22, 2026

Copy link
Copy Markdown
Contributor

Bumps the mantine group with 4 updates in the /graylog2-web-interface directory: @mantine/core, @mantine/dropzone, @mantine/hooks and @mantine/notifications.

Updates @mantine/core from 8.3.15 to 9.5.0

Release notes

Sourced from @​mantine/core's releases.

9.5.0 🤖

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

Migration to oxc

Mantine has migrated its linting and formatting toolchain from ESLint and Prettier to oxcoxlint is now used as the linter and oxfmt as the formatter. Both tools are written in Rust and are significantly faster than their predecessors, which makes linting and formatting the entire codebase almost instant.

The shared configuration is available as a new oxc-config-mantine package (a replacement for the previous eslint-config-mantine). You can use it in your own projects to follow the same code style and conventions as Mantine.

Native level select in date pickers

DatePicker and all other date picker components (DatePickerInput, MonthPicker, YearPicker, DateTimePicker, etc.) now support the withNativeLevelSelect prop. When enabled, it replaces the calendar header level button with native <select> elements, making it easy to quickly navigate to a specific month and year.

import { DatePicker } from '@mantine/dates';
function Demo() {
return <DatePicker withNativeLevelSelect yearsSelectRange={[2020, 2035]} />;
}

Timeline opposite and alternate content

Timeline Timeline.Item component now supports the opposite prop that allows rendering content on the opposite side of the timeline. When any item has the opposite prop, the timeline switches to a centered layout with content on both sides of the line.

import { Timeline, Text } from '@mantine/core';
import { GitBranchIcon, GitCommitIcon, GitPullRequestIcon, ChatCircleDotsIcon } from '@phosphor-icons/react';
function Demo() {
return (
<Timeline active={1} bulletSize={24} lineWidth={2}>
<Timeline.Item
</tr></table>

... (truncated)

Commits
  • f1d3306 [release] Version: 9.5.0
  • 7320562 [release] Version: 9.4.3
  • 170c45a Merge branch '9.5'
  • de21a82 [release] Version: 9.4.3-alpha.0
  • e5752de [release] Version: 9.4.2
  • 9dda4ca [@​mantine/core] Add keepMountedMode prop to Modal and Drawer components (#9...
  • dd3b692 [@​mantine/core] Menubar: Fix menu requiring two clicks to dismiss after switc...
  • 4b41d52 [@​mantine/core] AppShell: Fix breakpoint={0} not working correctly (#9042)
  • 02283e9 [@​mantine/core] Tree: Fix keyboard navigation not working on Safari (#9049)
  • 6312c97 [@​mantine/notifications] NotificationContainer: Fix autoClose leak (#9048)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​mantine/core since your current version.


Updates @mantine/dropzone from 8.3.15 to 9.5.0

Release notes

Sourced from @​mantine/dropzone's releases.

9.5.0 🤖

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

Migration to oxc

Mantine has migrated its linting and formatting toolchain from ESLint and Prettier to oxcoxlint is now used as the linter and oxfmt as the formatter. Both tools are written in Rust and are significantly faster than their predecessors, which makes linting and formatting the entire codebase almost instant.

The shared configuration is available as a new oxc-config-mantine package (a replacement for the previous eslint-config-mantine). You can use it in your own projects to follow the same code style and conventions as Mantine.

Native level select in date pickers

DatePicker and all other date picker components (DatePickerInput, MonthPicker, YearPicker, DateTimePicker, etc.) now support the withNativeLevelSelect prop. When enabled, it replaces the calendar header level button with native <select> elements, making it easy to quickly navigate to a specific month and year.

import { DatePicker } from '@mantine/dates';
function Demo() {
return <DatePicker withNativeLevelSelect yearsSelectRange={[2020, 2035]} />;
}

Timeline opposite and alternate content

Timeline Timeline.Item component now supports the opposite prop that allows rendering content on the opposite side of the timeline. When any item has the opposite prop, the timeline switches to a centered layout with content on both sides of the line.

import { Timeline, Text } from '@mantine/core';
import { GitBranchIcon, GitCommitIcon, GitPullRequestIcon, ChatCircleDotsIcon } from '@phosphor-icons/react';
function Demo() {
return (
<Timeline active={1} bulletSize={24} lineWidth={2}>
<Timeline.Item
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​mantine/dropzone since your current version.


Updates @mantine/hooks from 8.3.15 to 9.5.0

Release notes

Sourced from @​mantine/hooks's releases.

9.5.0 🤖

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

Migration to oxc

Mantine has migrated its linting and formatting toolchain from ESLint and Prettier to oxcoxlint is now used as the linter and oxfmt as the formatter. Both tools are written in Rust and are significantly faster than their predecessors, which makes linting and formatting the entire codebase almost instant.

The shared configuration is available as a new oxc-config-mantine package (a replacement for the previous eslint-config-mantine). You can use it in your own projects to follow the same code style and conventions as Mantine.

Native level select in date pickers

DatePicker and all other date picker components (DatePickerInput, MonthPicker, YearPicker, DateTimePicker, etc.) now support the withNativeLevelSelect prop. When enabled, it replaces the calendar header level button with native <select> elements, making it easy to quickly navigate to a specific month and year.

import { DatePicker } from '@mantine/dates';
function Demo() {
return <DatePicker withNativeLevelSelect yearsSelectRange={[2020, 2035]} />;
}

Timeline opposite and alternate content

Timeline Timeline.Item component now supports the opposite prop that allows rendering content on the opposite side of the timeline. When any item has the opposite prop, the timeline switches to a centered layout with content on both sides of the line.

import { Timeline, Text } from '@mantine/core';
import { GitBranchIcon, GitCommitIcon, GitPullRequestIcon, ChatCircleDotsIcon } from '@phosphor-icons/react';
function Demo() {
return (
<Timeline active={1} bulletSize={24} lineWidth={2}>
<Timeline.Item
</tr></table>

... (truncated)

Commits
  • f1d3306 [release] Version: 9.5.0
  • 7320562 [release] Version: 9.4.3
  • de21a82 [release] Version: 9.4.3-alpha.0
  • e5752de [release] Version: 9.4.2
  • 714b17e [@​mantine/hooks] Fix unstable scrollIntoView for some bundlers (#9035)
  • d709e0b [release] Version: 9.4.1
  • 4f3d7d0 [@​mantine/hooks] Fix use-set and use-map hooks using stale values when used w...
  • 75d5ab5 [release] Version: 9.4.0
  • d03d4a3 [@​mantine/core] Splitter: Fix inconsistent px mode detection
  • 791ac6a [@​mantine/hooks] use-splitter: Fix incorrect handling of overflowing panels w...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​mantine/hooks since your current version.


Updates @mantine/notifications from 8.3.15 to 9.5.0

Release notes

Sourced from @​mantine/notifications's releases.

9.5.0 🤖

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

Migration to oxc

Mantine has migrated its linting and formatting toolchain from ESLint and Prettier to oxcoxlint is now used as the linter and oxfmt as the formatter. Both tools are written in Rust and are significantly faster than their predecessors, which makes linting and formatting the entire codebase almost instant.

The shared configuration is available as a new oxc-config-mantine package (a replacement for the previous eslint-config-mantine). You can use it in your own projects to follow the same code style and conventions as Mantine.

Native level select in date pickers

DatePicker and all other date picker components (DatePickerInput, MonthPicker, YearPicker, DateTimePicker, etc.) now support the withNativeLevelSelect prop. When enabled, it replaces the calendar header level button with native <select> elements, making it easy to quickly navigate to a specific month and year.

import { DatePicker } from '@mantine/dates';
function Demo() {
return <DatePicker withNativeLevelSelect yearsSelectRange={[2020, 2035]} />;
}

Timeline opposite and alternate content

Timeline Timeline.Item component now supports the opposite prop that allows rendering content on the opposite side of the timeline. When any item has the opposite prop, the timeline switches to a centered layout with content on both sides of the line.

import { Timeline, Text } from '@mantine/core';
import { GitBranchIcon, GitCommitIcon, GitPullRequestIcon, ChatCircleDotsIcon } from '@phosphor-icons/react';
function Demo() {
return (
<Timeline active={1} bulletSize={24} lineWidth={2}>
<Timeline.Item
</tr></table>

... (truncated)

Commits
  • f1d3306 [release] Version: 9.5.0
  • 7320562 [release] Version: 9.4.3
  • de21a82 [release] Version: 9.4.3-alpha.0
  • e5752de [release] Version: 9.4.2
  • 6312c97 [@​mantine/notifications] NotificationContainer: Fix autoClose leak (#9048)
  • d709e0b [release] Version: 9.4.1
  • 75d5ab5 [release] Version: 9.4.0
  • 96446c5 [@​mantine/notifications] Fix cleanNotificationsQueue clearing priority noti...
  • 742ccdf [core] Minor dependencies updates
  • df5b0e4 Merge branch 'master' into 9.4
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​mantine/notifications since your current version.


@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Apr 22, 2026
@dependabot dependabot Bot changed the title Bump the mantine group in /graylog2-web-interface with 4 updates Bump the mantine group across 1 directory with 4 updates Apr 23, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 5 times, most recently from 1a8a060 to 96a9ac2 Compare April 29, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 5 times, most recently from 1de1bce to 266a4e5 Compare May 7, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 6 times, most recently from 58f9fb4 to 4e7a359 Compare May 15, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 7 times, most recently from 8174a24 to d265efa Compare May 25, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 4 times, most recently from 1036107 to 99e3675 Compare June 1, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch from 99e3675 to 0da40eb Compare June 3, 2026 17:57
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 6 times, most recently from bfe4738 to fb06894 Compare June 24, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 6 times, most recently from cd022dd to 535a064 Compare July 2, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 5 times, most recently from 9bff8a6 to ef3b054 Compare July 9, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 6 times, most recently from 513e194 to a3b6e22 Compare July 17, 2026 00:04
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 6 times, most recently from 52ee475 to b7e4fe1 Compare July 27, 2026 07:13
Bumps the mantine group with 4 updates in the /graylog2-web-interface directory: [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core), [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone), [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) and [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications).


Updates `@mantine/core` from 8.3.15 to 9.5.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/9.5.0/packages/@mantine/core)

Updates `@mantine/dropzone` from 8.3.15 to 9.5.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/9.5.0/packages/@mantine/dropzone)

Updates `@mantine/hooks` from 8.3.15 to 9.5.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/9.5.0/packages/@mantine/hooks)

Updates `@mantine/notifications` from 8.3.15 to 9.5.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/9.5.0/packages/@mantine/notifications)

---
updated-dependencies:
- dependency-name: "@mantine/core"
  dependency-version: 9.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mantine
- dependency-name: "@mantine/dropzone"
  dependency-version: 9.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mantine
- dependency-name: "@mantine/hooks"
  dependency-version: 9.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mantine
- dependency-name: "@mantine/notifications"
  dependency-version: 9.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mantine
...

Signed-off-by: dependabot[bot] <support@github.com>
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.

0 participants