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

Bump the action-deps group across 1 directory with 13 updates

Closed
Number: #172
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 1
Created: August 04, 2025 at 11:24 PM UTC
(11 months ago)
Updated: August 18, 2025 at 08:07 PM UTC
(10 months ago)
Closed: August 18, 2025 at 08:07 PM UTC
(10 months ago)
Time to Close: 14 days
Labels:
dependencies javascript frontend
Description:

Bumps the action-deps group with 13 updates in the /frontend directory:

Package From To
apexcharts 5.2.0 5.3.2
axios 1.10.0 1.11.0
jotai 2.12.5 2.13.0
lucide-react 0.525.0 0.536.0
match-sorter 8.0.3 8.1.0
react 19.1.0 19.1.1
@types/react 19.1.8 19.1.9
react-dom 19.1.0 19.1.1
@types/react-dom 19.1.6 19.1.7
react-router-dom 7.6.3 7.7.1
@vitejs/plugin-react 4.6.0 4.7.0
vite 7.0.4 7.0.6
webpack 5.100.1 5.101.0

Updates apexcharts from 5.2.0 to 5.3.2

Release notes

Sourced from apexcharts's releases.

đź’Ž Version 5.3.0

What's changed

  • Data Parsing capabilites. ApexCharts now supports direct parsing and mapping of raw data objects, eliminating the need for manual data transformation. Complete documentation for this feature - https://apexcharts.com/docs/parsing-data/
  • Pie/Donut/RadialBar series formats These chart types now support XY series formats making it consistent with the rest of the chart types. Read the documentation for this change - https://apexcharts.com/docs/series/
Commits

Updates axios from 1.10.0 to 1.11.0

Release notes

Sourced from axios's releases.

Release v1.11.0

Release notes:

Bug Fixes

  • form-data npm pakcage (#6970) (e72c193)
  • prevent RangeError when using large Buffers (#6961) (a2214ca)
  • types: resolve type discrepancies between ESM and CJS TypeScript declaration files (#6956) (8517aa1)

Contributors to this release

Changelog

Sourced from axios's changelog.

1.11.0 (2025-07-22)

Bug Fixes

  • form-data npm pakcage (#6970) (e72c193)
  • prevent RangeError when using large Buffers (#6961) (a2214ca)
  • types: resolve type discrepancies between ESM and CJS TypeScript declaration files (#6956) (8517aa1)

Contributors to this release

Commits

Updates jotai from 2.12.5 to 2.13.0

Release notes

Sourced from jotai's releases.

v2.13.0

This removes the deprecated devstore. Be sure to use the latest jotai-devtools.

What's Changed

New Contributors

Full Changelog: https://github.com/pmndrs/jotai/compare/v2.12.5...v2.13.0

Commits

Updates lucide-react from 0.525.0 to 0.536.0

Release notes

Sourced from lucide-react's releases.

Version 0.536.0

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.535.0...0.536.0

Version 0.535.0

What's Changed

New Contributors

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.534.0...0.535.0

Version 0.534.0

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/0.533.0...0.534.0

Version 0.533.0

What's Changed

... (truncated)

Commits

Updates match-sorter from 8.0.3 to 8.1.0

Release notes

Sourced from match-sorter's releases.

v8.1.0

8.1.0 (2025-07-24)

Features

Commits

Updates react from 19.1.0 to 19.1.1

Release notes

Sourced from react's releases.

19.1.1 (July 28, 2025)

React

Changelog

Sourced from react's changelog.

19.1.1 (July 28, 2025)

React

Commits

Updates @types/react from 19.1.8 to 19.1.9

Commits

Updates react-dom from 19.1.0 to 19.1.1

Release notes

Sourced from react-dom's releases.

19.1.1 (July 28, 2025)

React

Changelog

Sourced from react-dom's changelog.

19.1.1 (July 28, 2025)

React

Commits

Updates @types/react-dom from 19.1.6 to 19.1.7

Commits

Updates react-router-dom from 7.6.3 to 7.7.1

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10

react-router-dom-v5-compat@6.4.0-pre.9

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.9
    • react-router-dom@6.4.0-pre.9
Changelog

Sourced from react-router-dom's changelog.

7.7.1

Patch Changes

  • Updated dependencies:
    • react-router@7.7.1

7.7.0

Patch Changes

  • Updated dependencies:
    • react-router@7.7.0
Commits

Updates @types/react from 19.1.8 to 19.1.9

Commits

Updates @types/react-dom from 19.1.6 to 19.1.7

Commits

Updates @vitejs/plugin-react from 4.6.0 to 4.7.0

Release notes

Sourced from @​vitejs/plugin-react's releases.

plugin-react@4.7.0

Add HMR support for compound components (#518)

HMR now works for compound components like this:

const Root = () => <div>Accordion Root</div>
const Item = () => <div>Accordion Item</div>

export const Accordion = { Root, Item }

Return Plugin[] instead of PluginOption[] (#537)

The return type has changed from react(): PluginOption[] to more specialized type react(): Plugin[]. This allows for type-safe manipulation of plugins, for example:

// previously this causes type errors
react({ babel: { plugins: ['babel-plugin-react-compiler'] } })
  .map(p => ({ ...p, applyToEnvironment: e => e.name === 'client' }))
Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.7.0 (2025-07-18)

Add HMR support for compound components (#518)

HMR now works for compound components like this:

const Root = () => <div>Accordion Root</div>
const Item = () => <div>Accordion Item</div>

export const Accordion = { Root, Item }

Return Plugin[] instead of PluginOption[] (#537)

The return type has changed from react(): PluginOption[] to more specialized type react(): Plugin[]. This allows for type-safe manipulation of plugins, for example:

// previously this causes type errors
react({ babel: { plugins: ['babel-plugin-react-compiler'] } })
  .map(p => ({ ...p, applyToEnvironment: e => e.name === 'client' }))
Commits

Updates vite from 7.0.4 to 7.0.6

Release notes

Sourced from vite's releases.

v7.0.6

Please refer to CHANGELOG.md for details.

v7.0.5

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

7.0.6 (2025-07-24)

Bug Fixes

  • deps: update all non-major dependencies (#20442) (e49f505)
  • dev: incorrect sourcemap when optimized CJS is imported (#20458) (ead2dec)
  • module-runner: normalize file:// on windows (#20449) (1c9cb49)
  • respond with correct headers and status code for HEAD requests (#20421) (23d04fc)

Miscellaneous Chores

Code Refactoring

7.0.5 (2025-07-17)

Bug Fixes

  • deps: update all non-major dependencies (#20406) (1a1cc8a)
  • remove special handling for Accept: text/html (#20376) (c9614b9)
  • watch assets referenced by new URL(, import.meta.url) (#20382) (6bc8bf6)

Miscellaneous Chores

  • deps: update dependency rolldown to ^1.0.0-beta.27 (#20405) (1165667)

Code Refactoring

  • use foo.endsWith("bar") instead of /bar$/.test(foo) (#20413) (862e192)
Commits

Updates webpack from 5.100.1 to 5.101.0

Release notes

Sourced from webpack's releases.

v5.101.0

Fixes

  • Fixed concatenate optimization for ESM that caused undefined export
  • Respect the output.environment.nodePrefixForCoreModules option everywhere
  • Respect the output.importMetaName option everywhere
  • Fixed await async dependencies when accepting them during HMR
  • Better typescript types

Features

  • Added colors helpers for CLI
  • Enable tree-shaking for ESM external modules with named imports
  • Added the deferImport option to parser options

Performance Improvements

  • Fixed a regression in module concatenation after implementing deferred import support
  • Fixed a potential performance issue in CleanPlugin
  • Avoid extra require in some places

v5.100.2

Fixes

  • Keep consistent CSS order
  • Dependency without the source order attribute must keep their original index
  • Keep module traversal consistent across reexport scenarios

Performance Improvements

  • Extend importPhasesPlugin only when enable deferImport (#19689)
Commits
  • 5b87bed chore(release): 5.101.0
  • fbb7a8d fix: await async dependencies when accepting them during HMR (#19739)
  • 36a976b feat: added the deferImport option to parser options (#19737)
  • 92304df fix: top level await don't leaves imported module wrapped in a Promise on HMR
  • f6b7a8e docs: update examples (#19742)
  • 1eb5bb1 chore(deps-dev): bump the dependencies group with 2 updates (#19743)
  • 42daf55 fix: fix potential performance issue in CleanPlugin (#19735)
  • 2259693 chore(deps-dev): bump the dependencies group across 1 directory with 2 update...
  • 3d2dfd2 chore(deps): update (#19736)
  • 1f19f95 refactor: standardize ESM naming management (#19730)
  • Additional commits viewable in compare view

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:
+192
Deletions:
-176
Package Dependencies
Ecosystem:
npm
Version Change:
7.6.3 → 7.7.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.6.0 → 4.7.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.525.0 → 0.536.0
Update Type:
Minor
Package:
axios
Ecosystem:
npm
Version Change:
1.10.0 → 1.11.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
19.1.8 → 19.1.9
Update Type:
Patch
Package:
vite
Ecosystem:
npm
Version Change:
7.0.4 → 7.0.6
Update Type:
Patch
Package:
react-dom
Ecosystem:
npm
Version Change:
19.1.0 → 19.1.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.1.6 → 19.1.7
Update Type:
Patch
Package:
webpack
Ecosystem:
npm
Version Change:
5.100.1 → 5.101.0
Update Type:
Minor
Package:
react
Ecosystem:
npm
Version Change:
19.1.0 → 19.1.1
Update Type:
Patch
Package:
apexcharts
Ecosystem:
npm
Version Change:
5.2.0 → 5.3.2
Update Type:
Minor
Package:
jotai
Ecosystem:
npm
Version Change:
2.12.5 → 2.13.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.0.3 → 8.1.0
Update Type:
Minor
Technical Details
ID: 4584407
UUID: 2719428538
Node ID: PR_kwDOMqijUM6iFy-6
Host: GitHub
Repository: zakerby/python-react-template
Mergeable: Yes
Merge State: Clean