An open index of dependabot pull requests across open source projects.

build(deps): bump the minor group with 11 updates

Merged
Number: #450
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: September 15, 2025 at 10:50 AM UTC
(3 months ago)
Updated: September 15, 2025 at 12:09 PM UTC
(3 months ago)
Merged: September 15, 2025 at 12:09 PM UTC
(3 months ago)
by torokati44
Time to Close: about 1 hour
Labels:
dependencies javascript
Description:

Bumps the minor group with 11 updates:

Package From To
@mantine/charts 8.2.8 8.3.1
@mantine/core 8.2.8 8.3.1
@mantine/hooks 8.2.8 8.3.1
@next/bundle-analyzer 15.5.2 15.5.3
next 15.5.2 15.5.3
recharts 3.1.2 3.2.0
@types/node 24.3.1 24.4.0
@types/react 19.1.12 19.1.13
@typescript-eslint/eslint-plugin 8.42.0 8.43.0
@typescript-eslint/parser 8.42.0 8.43.0
eslint-config-next 15.5.2 15.5.3

Updates @mantine/charts from 8.2.8 to 8.3.1

Release notes

Sourced from @​mantine/charts's releases.

8.3.1

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)

8.3.0 🔥

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 '@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 />

  &lt;Progress.Root size=&quot;xl&quot; autoContrast orientation=&quot;vertical&quot; h={200}&gt;
    &lt;Progress.Section value={40} color=&quot;lime.4&quot;&gt;
      &lt;Progress.Label&gt;Documents&lt;/Progress.Label&gt;
    &lt;/Progress.Section&gt;
    &lt;Progress.Section value={20} color=&quot;yellow.4&quot;&gt;

</tr></table>

... (truncated)

Commits
  • ece602c [release] Version: 8.3.1
  • 4e184c4 [@​mantine/charts] Fix long tooltip names overflowing on the series color swat...
  • 081c992 [release] Version: 8.3.0
  • d818000 [@​mantine/charts] Heatmap: Add splitMonths prop support
  • 627f1ef [@​mantine/charts] Initialize Heatmap months split
  • 4184ab7 Merge branch master into 8.3
  • ef65f29 Merge branch master int 8.3
  • e827380 [core] Update tiptap to v3, change tsconfig resolution to bundler
  • 67c532a [core] Update react to the latest version
  • See full diff in compare view

Updates @mantine/core from 8.2.8 to 8.3.1

Release notes

Sourced from @​mantine/core's releases.

8.3.1

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)

8.3.0 🔥

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 '@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 />

  &lt;Progress.Root size=&quot;xl&quot; autoContrast orientation=&quot;vertical&quot; h={200}&gt;
    &lt;Progress.Section value={40} color=&quot;lime.4&quot;&gt;
      &lt;Progress.Label&gt;Documents&lt;/Progress.Label&gt;
    &lt;/Progress.Section&gt;
    &lt;Progress.Section value={20} color=&quot;yellow.4&quot;&gt;

</tr></table>

... (truncated)

Commits
  • ece602c [release] Version: 8.3.1
  • 3055c2c [@​mantine/core] Tabs: Allow overriding aria attributes with ...others
  • 259851d [@​mantine/core] Select: Fix clear button overlaying selected option (#8249)
  • 07d5b0f [@​mantine/core] Combobox: Update focusTarget handler to correctly handle mi...
  • 9e2fd61 [@​mantine/core] ColorPicker: Fix unexpected margin-top (#8247)
  • fdd9067 [@​mantine/core] Allow specifying generic component in default props in the th...
  • 081c992 [release] Version: 8.3.0
  • b7acae4 [core] Fix failing tests
  • d639d90 [@​mantine/core] Improve clearable prop handling in all inputs components
  • f5c7df6 [@​mantine/core] ColorPicker: Add highlight of the active color swatch
  • Additional commits viewable in compare view

Updates @mantine/hooks from 8.2.8 to 8.3.1

Release notes

Sourced from @​mantine/hooks's releases.

8.3.1

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)

8.3.0 🔥

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 '@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 />

  &lt;Progress.Root size=&quot;xl&quot; autoContrast orientation=&quot;vertical&quot; h={200}&gt;
    &lt;Progress.Section value={40} color=&quot;lime.4&quot;&gt;
      &lt;Progress.Label&gt;Documents&lt;/Progress.Label&gt;
    &lt;/Progress.Section&gt;
    &lt;Progress.Section value={20} color=&quot;yellow.4&quot;&gt;

</tr></table>

... (truncated)

Commits
  • ece602c [release] Version: 8.3.1
  • 9493362 [@​mantine/hooks] use-scroll-spy: Fix scroll events not being reassigned when ...
  • 081c992 [release] Version: 8.3.0
  • 4184ab7 Merge branch master into 8.3
  • ef65f29 Merge branch master int 8.3
  • e827380 [core] Update tiptap to v3, change tsconfig resolution to bundler
  • 6afbc8b [core] Update jest to the latest major version
  • See full diff in compare view

Updates @next/bundle-analyzer from 15.5.2 to 15.5.3

Release notes

Sourced from @​next/bundle-analyzer's releases.

v15.5.3

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: validation return types of pages API routes (#83069)
  • fix: relative paths in dev in validator.ts (#83073)
  • fix: remove satisfies keyword from type validation to preserve old TS compatibility (#83071)

Credits

Huge thanks to @​bgub for helping!

Commits

Updates next from 15.5.2 to 15.5.3

Release notes

Sourced from next's releases.

v15.5.3

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: validation return types of pages API routes (#83069)
  • fix: relative paths in dev in validator.ts (#83073)
  • fix: remove satisfies keyword from type validation to preserve old TS compatibility (#83071)

Credits

Huge thanks to @​bgub for helping!

Commits

Updates recharts from 3.1.2 to 3.2.0

Release notes

Sourced from recharts's releases.

v3.2.0

What's Changed

Quite a bit of 3.0 bug fixes in this release along with two new hooks. Thanks to all who've been reporting issues!

Feat

Hooks

Fix

Chore

New Contributors (thanks everyone!)

Full Changelog: https://github.com/recharts/recharts/compare/v3.1.2...v3.1.3

Commits
  • 31b3c7f chore(deps-dev): bump the babel group with 2 updates (#6293)
  • b7d164e Optimize Bar component rendering when activeBar is falsy (#6290)
  • 079c72a chore(deps-dev): bump the storybook group with 7 updates (#6292)
  • 5139696 chore(deps-dev): bump eslint-config-airbnb-extended from 2.2.0 to 2.3.0 (#6294)
  • b8cc91a Added fill color support to PolarGrid (#6287)
  • 44c78d3 Fix Axis blinking when changing props, and YAxis width=auto wrapping (#6262)
  • bbb344e fix: allow brush travelers to be controled by keys after mouse interaction (#...
  • 1e25111 Upgrade to ESLint 9 (#6284)
  • 01bb65f Add screenshots for YAxis widths and ticks (#6283)
  • 21a7bf5 fix: bound tooltip coordinates to chart container in index sync method (#6263)
  • Additional commits viewable in compare view

Updates @types/node from 24.3.1 to 24.4.0

Commits

Updates @types/react from 19.1.12 to 19.1.13

Commits

Updates @typescript-eslint/eslint-plugin from 8.42.0 to 8.43.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.43.0

8.43.0 (2025-09-08)

🚀 Features

  • typescript-estree: disallow empty type parameter/argument lists (#11563)

🩹 Fixes

  • eslint-plugin: [no-non-null-assertion] do not suggest optional chain on LHS of assignment (#11489)
  • eslint-plugin: [no-unnecessary-type-conversion] only report ~~ on integer literal types (#11517)
  • eslint-plugin: [consistent-type-exports] fix declaration shadowing (#11457)
  • eslint-plugin: [no-floating-promises] allowForKnownSafeCalls now supports function names (#11423, #11430)
  • eslint-plugin: [no-deprecated] should report deprecated exports and reexports (#11359)
  • eslint-plugin: [prefer-return-this-type] don't report an error when returning a union type that includes a classType (#11432)
  • rule-tester: normalize paths before checking if they escape cwd (#11525)
  • scope-manager: exclude Program from DefinitionBase node types (#11469)
  • type-utils: add union type support to TypeOrValueSpecifier (#11526)
  • typescript-estree: match filenames starting with a period when using glob in allowDefaultProject / (#11537)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.43.0 (2025-09-08)

🚀 Features

  • typescript-estree: disallow empty type parameter/argument lists (#11563)

🩹 Fixes

  • eslint-plugin: [prefer-return-this-type] don't report an error when returning a union type that includes a classType (#11432)
  • eslint-plugin: [no-deprecated] should report deprecated exports and reexports (#11359)
  • eslint-plugin: [no-floating-promises] allowForKnownSafeCalls now supports function names (#11423, #11430)
  • eslint-plugin: [consistent-type-exports] fix declaration shadowing (#11457)
  • eslint-plugin: [no-unnecessary-type-conversion] only report ~~ on integer literal types (#11517)
  • scope-manager: exclude Program from DefinitionBase node types (#11469)
  • eslint-plugin: [no-non-null-assertion] do not suggest optional chain on LHS of assignment (#11489)
  • type-utils: add union type support to TypeOrValueSpecifier (#11526)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • ef9173c chore(release): publish 8.43.0
  • 4f44a6e feat(typescript-estree): disallow empty type parameter/argument lists (#11563)
  • bd8ed8d fix(eslint-plugin): [prefer-return-this-type] don't report an error when retu...
  • d8ca5ef fix(eslint-plugin): [no-deprecated] should report deprecated exports and reex...
  • 8154204 docs: mark rules that are frozen on rules index page (#11467)
  • 5d15bc2 fix(eslint-plugin): [no-floating-promises] allowForKnownSafeCalls now support...
  • f77a31d fix(eslint-plugin): [consistent-type-exports] fix declaration shadowing (#11457)
  • f0e64eb fix(eslint-plugin): [no-unnecessary-type-conversion] only report ~~ on intege...
  • c068a4f fix(scope-manager): exclude Program from DefinitionBase node types (#11469)
  • 08e242c fix(eslint-plugin): [no-non-null-assertion] do not suggest optional chain on ...
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 8.42.0 to 8.43.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.43.0

8.43.0 (2025-09-08)

🚀 Features

  • typescript-estree: disallow empty type parameter/argument lists (#11563)

🩹 Fixes

  • eslint-plugin: [no-non-null-assertion] do not suggest optional chain on LHS of assignment (#11489)
  • eslint-plugin: [no-unnecessary-type-conversion] only report ~~ on integer literal types (#11517)
  • eslint-plugin: [consistent-type-exports] fix declaration shadowing (#11457)
  • eslint-plugin: [no-floating-promises] allowForKnownSafeCalls now supports function names (#11423, #11430)
  • eslint-plugin: [no-deprecated] should report deprecated exports and reexports (#11359)
  • eslint-plugin: [prefer-return-this-type] don't report an error when returning a union type that includes a classType (#11432)
  • rule-tester: normalize paths before checking if they escape cwd (#11525)
  • scope-manager: exclude Program from DefinitionBase node types (#11469)
  • type-utils: add union type support to TypeOrValueSpecifier (#11526)
  • typescript-estree: match filenames starting with a period when using glob in allowDefaultProject / (#11537)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.43.0 (2025-09-08)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates eslint-config-next from 15.5.2 to 15.5.3

Release notes

Sourced from eslint-config-next's releases.

v15.5.3

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • fix: validation return types of pages API routes (#83069)
  • fix: relative paths in dev in validator.ts (#83073)
  • fix: remove satisfies keyword from type validation to preserve old TS compatibility (#83071)

Credits

Huge thanks to @​bgub for helping!

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+162
Deletions:
-162
Package Dependencies
Package:
@types/node
Ecosystem:
npm
Version Change:
24.3.1 → 24.4.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
19.1.12 → 19.1.13
Update Type:
Patch
Package:
next
Ecosystem:
npm
Version Change:
15.5.2 → 15.5.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
15.5.2 → 15.5.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.42.0 → 8.43.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
15.5.2 → 15.5.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.42.0 → 8.43.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.8 → 8.3.1
Update Type:
Minor
Package:
recharts
Ecosystem:
npm
Version Change:
3.1.2 → 3.2.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.8 → 8.3.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.8 → 8.3.1
Update Type:
Minor
Technical Details
ID: 7766831
UUID: 2828761969
Node ID: PR_kwDOCxEC686om3tx
Host: GitHub
Repository: ruffle-rs/ruffle-rs.github.io
Merge State: Unknown