Skip to content

fix(deps): update dependency recharts to v3#57

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/recharts-3.x
Open

fix(deps): update dependency recharts to v3#57
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/recharts-3.x

Conversation

@renovate

@renovate renovate Bot commented Jul 10, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
recharts 2.15.43.10.0 age confidence

Release Notes

recharts/recharts (recharts)

v3.10.0

Compare Source

What's Changed

Legend position

Legend now supports position and offset props, same as Label and LabeList. This replaces the previous align and verticalAlign for a more convenient positioning, and fixes couple visual bugs too. See https://recharts.github.io/en-US/examples/LegendPosition/

XAxis auto height

XAxis now supports height="auto" prop, similar to YAxis width="auto".

  • feat(XAxis): support height="auto" to size the axis to its tick labels by @​kimlj in #​7570
Other features
Bugfixes

New Contributors

Full Changelog: recharts/recharts@v3.9.2...v3.10.0

v3.9.2

Compare Source

What's Changed

New Contributors

Full Changelog: recharts/recharts@v3.9.1...v3.9.2

v3.9.1

Compare Source

What's Changed

New Contributors

Full Changelog: recharts/recharts@v3.9.0...v3.9.1

v3.9.0

Compare Source

What's Changed

Animations

3.9 comes with new animations! There are several bug fixes and what's best, all animations are now fully customizable.

See the animations guide on https://recharts.github.io/en-US/guide/animations/

New features other than animations
Bugfixes
Tree-shaking

We now have focused tree-shaking tests that allow us to observe exactly which components end up in the final bundle and why. I have also removed some unnecessary loops and you should see the final bundle size decrease somewhat as a result.

There are also two new examples on the website, showing real bundle size:

Documentation updates

New Contributors

Full Changelog: recharts/recharts@v3.8.1...v3.9.0-canary.0

v3.8.1

Compare Source

What's Changed

Bugfixes!

New Contributors

Full Changelog: recharts/recharts@v3.8.0...v3.8.1

v3.8.0

Compare Source

What's Changed

We added generics to our data and dataKey props and now you can have your charts validated by TypeScript. See the full guide here: https://recharts.github.io/en-US/guide/typescript/

We are releasing new helper functions and hooks that will allow you to precisely target mouse interactions, and convert coordinates. See the guide here: https://recharts.github.io/en-US/guide/coordinateSystems/

And new functions and hooks:

getRelativeCoordinate - converts mouse events to pixel positions

Convert Data → Pixels:

useXAxisScale - returns a function to convert X data values to pixel positions
useYAxisScale - returns a function to convert Y data values to pixel positions
useCartesianScale - convenience hook for converting both at once

Pixels → Data:

useXAxisInverseScale - returns a function to convert pixel X to the closest data value
useYAxisInverseScale - returns a function to convert pixel Y to the closest data value
useXAxisInverseTickSnapScale - returns a function to convert pixel X to the closest axis tick
useYAxisInverseTickSnapScale - returns a function to convert pixel Y to the closest axis tick

Accessing Ticks:

useXAxisTicks - returns the calculated ticks of an X-axis
useYAxisTicks - returns the calculated ticks of a Y-axis

Feat
Fix
Types
Docs

New Contributors

Full Changelog: recharts/recharts@v3.7.0...v3.8.0

v3.7.0

Compare Source

What's Changed

📢 Cell is now deprecated and will be removed in the next major version. Please migrate all Cell usage to use the shape prop of respective chart elements. ‼️

Feat
New Hooks
Other
Fix
Chore
Docs

We've started auto-generating our docs for the most part so you should see large improvements in accuracy of the docs between the code, the website, and the storybook. Huge shoutout to @​PavelVanecek 🚀

New Contributors

Full Changelog: recharts/recharts@v3.6.0...v3.7.0

v3.6.0

Compare Source

What's Changed

3.6 🚀 - check out BarStack and ranged stacked bars 📊

Feat
Fix
Chore
  • CartesianAxis: Deprecate CartesianAxis @​PavelVanecek in #​6774
  • Bump to Node 24
  • Lots of undefined checks for progress towards TS strict mode
Docs
  • Docs should be improving on the daily - comments in code + storybook + the website should all be coming closer to in sync thanks to @​PavelVanecek pretty much writing his own documentation generator 🤖 🚀

New Contributors

Full Changelog: recharts/recharts@v3.5.1...v3.6.0

v3.5.1

Compare Source

What's Changed

Fix
  • Pie: add missing Sector index to Pie shape prop by @​ckifer in #​6683
    • This enables customization of specific slices of the Pie similar to activeIndex in 2.x
  • Pie: prevent cross-Pie highlighting in multi-Pie PieCharts with shared dataKeys by @​shreedharbhat98 in #​6678
    • Only marks a specific Sector as active when that sector is hovered
  • TypeScript/Tooltip: update activeLabel type to be a string | number by @​ckifer in #​6691
    • !! NOTE !!: This change may break your types if you relied on it as a string, but this is a bug fix
  • Accessibility/General: add tabIndex -1 on Recharts ZIndex svg portal g tags to prevent extraneous focusable surfaces by @​ckifer in #​6687
  • General: Removed accidental eslint dependency from main dependencies which should remove it from installation with recharts

New Contributors

Full Changelog: recharts/recharts@v3.5.0...v3.5.1

v3.5.0

Compare Source

What's Changed

Mostly fixes and performance improvements this release but check out the deprecation of Pie active/inactiveShape in favor of aligning with the shape prop of other chart elements.

Feat
  • Pie: add shape to align custom Pie sector shapes to other Recharts components by @​ckifer in #​6482
    • This change deprecates activeShape and inactiveShape. Please use the isActive prop passed from the callback to shape to create active Pie sectors.
    • Note: forgot to include the current Sector index, will add in 3.5.1
  • Stacked Charts: implement reverseStackOrder prop in v3 - fixes a regression between recharts 2 and 3 by @​j-shimizu111 in #​6644
  • Typescript/Dot: export ActiveDotProps and DotItemDotProps types by @​simaks in #​6657
Fix
Docs

New Contributors (thanks everyone!)

Full Changelog: recharts/recharts@v3.4.1...v3.4.2

v3.4.1

Compare Source

What's Changed

Forgot some exports for Z Index in 3.4

Full Changelog: recharts/recharts@v3.4.0...v3.4.1

v3.4.0

Compare Source

What's Changed

Added z-index support across most recharts surfaces + a few other features, lots of fixes, and some doc updates 🚀

Feat
Fix
  • Stacked Bar / Brush: fix bug in stacked bar charts with a brush where the brush would remove elements from the wrong side of the chart by @​37108 in #​6481
  • Area: fix regression in Area event handlers where the events were not firing correctly by @​PavelVanecek in #​6507
  • Funnel: fix Funnel margin calculations by [@&#

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone America/New_York)

  • Branch creation
    • Between 12:00 AM and 11:59 PM (* 0-23 * * *)
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@vercel

vercel Bot commented Jul 10, 2025

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
finance-dashboard Error Error Jul 21, 2026 3:11am

Request Review

@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 9981b81 to a292975 Compare July 11, 2025 00:07
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from a292975 to 51546c4 Compare July 11, 2025 02:45
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch 2 times, most recently from 688bec9 to d0710e3 Compare July 11, 2025 07:42
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from d0710e3 to cf98094 Compare July 15, 2025 08:39
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from cf98094 to 799f43b Compare July 26, 2025 07:19
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 799f43b to f7112f3 Compare August 5, 2025 01:34
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from f7112f3 to ad804a3 Compare August 5, 2025 17:08
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from ad804a3 to ddc6311 Compare August 10, 2025 13:51
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from ddc6311 to 37526e2 Compare August 13, 2025 17:42
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 37526e2 to 3ceb821 Compare August 19, 2025 19:12
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 3ceb821 to 19ccd52 Compare August 31, 2025 10:29
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 19ccd52 to ddabc92 Compare September 9, 2025 02:30
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from d42fca1 to accab62 Compare October 24, 2025 20:02
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from accab62 to b20d7dd Compare November 10, 2025 11:09
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from b20d7dd to 1fea61d Compare November 18, 2025 13:11
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 1fea61d to 6d509af Compare November 23, 2025 09:48
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 6d509af to a062a3d Compare November 28, 2025 10:03
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from a062a3d to a26c8d9 Compare December 3, 2025 19:32
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from a26c8d9 to 7dbbe0b Compare December 15, 2025 10:06
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 7dbbe0b to 13b6e3d Compare December 31, 2025 15:08
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 13b6e3d to 1630edf Compare January 8, 2026 17:42
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 1630edf to cd790c4 Compare January 19, 2026 15:48
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from cd790c4 to 2b07771 Compare January 21, 2026 21:15
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 2b07771 to e5a7629 Compare January 23, 2026 18:11
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from e5a7629 to 1fd9cff Compare February 2, 2026 18:54
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 1fd9cff to 38a3998 Compare February 12, 2026 10:48
@renovate
renovate Bot force-pushed the renovate/recharts-3.x branch from 38a3998 to 3a86ea4 Compare February 17, 2026 19:54
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.

0 participants