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

Bump the all group across 1 directory with 65 updates

Open
Number: #33
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 1
Created: August 04, 2025 at 05:20 PM UTC
(about 1 month ago)
Updated: August 04, 2025 at 05:20 PM UTC
(about 1 month ago)
Labels:
dependencies javascript
Description:

Bumps the all group with 29 updates in the / directory:

Package From To
dhtmlx-gantt 9.0.11 9.0.14
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.2 7.7.1
@biomejs/biome 1.9.4 2.1.3
@testing-library/jest-dom 6.6.3 6.6.4
@types/node 24.0.2 24.2.0
@vitejs/plugin-react 4.5.2 4.7.0
@vitest/ui 3.2.3 3.2.4
globals 16.2.0 16.3.0
typescript 5.8.3 5.9.2
vite 6.3.5 7.0.6
@babel/compat-data 7.27.5 7.28.0
@babel/helpers 7.27.6 7.28.2
@babel/runtime 7.27.6 7.28.2
@jridgewell/sourcemap-codec 1.5.0 1.5.4
@testing-library/dom 10.4.0 10.4.1
@types/babel__traverse 7.20.7 7.28.0
agent-base 7.1.3 7.1.4
browserslist 4.25.0 4.25.1
cssstyle 4.4.0 4.6.0
decimal.js 10.5.0 10.6.0
esbuild 0.25.5 0.25.8
expect-type 1.2.1 1.2.2
nwsapi 2.2.20 2.2.21
rollup 4.43.0 4.46.2
ws 8.18.2 8.18.3

Updates dhtmlx-gantt from 9.0.11 to 9.0.14

Release notes

Sourced from dhtmlx-gantt's releases.

Version 9.0.14

https://docs.dhtmlx.com/gantt/whatsnew.html#9014

Version 9.0.13

https://docs.dhtmlx.com/gantt/whatsnew.html#9013

Version 9.0.12

https://docs.dhtmlx.com/gantt/whatsnew.html#9012

Changelog

Sourced from dhtmlx-gantt's changelog.

9.0.14

Fix the script error thrown after closing a Modalbox Prevent creation of an empty row in the tree after re-parsing data in grouped mode Ensure the setWorkTime method correctly applies customWeeks in Firefox Fix the issue where calling setTasks with an empty dataset broke the React Gantt component

9.0.13

Fix the issue where Gantt became unusable after creating and deleting a duplicate link Ensure link placeholders are displayed correctly on touch devices Fix the issue where a project's end_date was not updated when it had a single milestone child Prevent unnecessary repaints of resource items when using a custom datastore Fix the issue where silently calling gantt.addLink resulted in an incorrect state of the internal datastore Prevent DataProcessor from adding the !nativeeditor_status property to custom router arguments Fix incorrect handling of tasks and links props changes in the React Gantt component

9.0.12

Ensure the contrast-white skin passes color contrast accessibility tests Fix the issue where dynamic loading stops working after calling gantt.clearAll() Prevent the Tooltip from rendering outside the Gantt container when displaying long text Fix the issue where server updates were not finalized when keyboard navigation is active Fix the incorrect work of custom class names applied to milestone baselines React Gantt is now compatible with Next.js and Remix SSR frameworks without additional configuring

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

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Changelog

Sourced from react's changelog.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
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

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Changelog

Sourced from react-dom's changelog.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Commits

Updates @types/react-dom from 19.1.6 to 19.1.7

Commits

Updates react-router-dom from 7.6.2 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

7.6.3

Patch Changes

  • Updated dependencies:
    • react-router@7.6.3
Commits

Updates @biomejs/biome from 1.9.4 to 2.1.3

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.1.3

2.1.3

Patch Changes

  • #7057 634a667 Thanks @​mdevils! - Added the rule noVueReservedKeys, which prevents the use of reserved Vue keys.

    It prevents the use of Vue reserved keys such as those starting with # @biomejs/biome (like $el, $data, $props) and keys starting with _` in data properties, which can cause conflicts and unexpected behavior in Vue components.

    Invalid example
    <script>
    export default {
      data: {
        $el: "",
        _foo: "bar",
      },
    };
    </script>
    
    <script>
    export default {
      computed: {
        $data() {
          return this.someData;
        },
      },
    };
    </script>
    
    Valid examples
    <script>
    export default {
      data() {
        return {
          message: "Hello Vue!",
          count: 0,
        };
      },
    };
    </script>
    

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.1.3

Patch Changes

  • #7057 634a667 Thanks @​mdevils! - Added the rule noVueReservedKeys, which prevents the use of reserved Vue keys.

    It prevents the use of Vue reserved keys such as those starting with like $el, $data, $props) and keys starting with \_ in data properties, which can cause conflicts and unexpected behavior in Vue components.

    Invalid example
    <script>
    export default {
      data: {
        $el: "",
        _foo: "bar",
      },
    };
    </script>
    
    <script>
    export default {
      computed: {
        $data() {
          return this.someData;
        },
      },
    };
    </script>
    
    Valid examples
    <script>
    export default {
      data() {
        return {
          message: "Hello Vue!",
          count: 0,
        };
      },
    };
    </script>
    
    <script>
    

... (truncated)

Commits

Updates @testing-library/jest-dom from 6.6.3 to 6.6.4

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.6.4

6.6.4 (2025-07-26)

Performance Improvements

Commits

Updates @types/node from 24.0.2 to 24.2.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.5.2 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' }))

plugin-react@4.6.0

Add raw Rolldown support

This plugin only worked with Vite. But now it can also be used with raw Rolldown. The main purpose for using this plugin with Rolldown is to use react compiler.

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' }))

4.6.0 (2025-06-23)

Add raw Rolldown support

This plugin only worked with Vite. But now it can also be used with raw Rolldown. The main purpose for using this plugin with Rolldown is to use react compiler.

Commits
  • 8041706 release: plugin-react@4.7.0
  • bbfd1b7 chore: update changelog for #537
  • fdc9d9a feat: add hmr support for compound components (#518)
  • d14f31d fix(deps): update all non-major dependencies (#568)
  • 22be17f build: use tsdown for plugin-react / plugin-react-oxc (#554)
  • 840f0b1 chore(deps): update prettier (#556)
  • cfe2912 fix(deps): update all non-major dependencies (#540)
  • 11f56d6 fix: return Plugin[] instead of PluginOption[] (#537)
  • 9da5e19 fix(deps): update all non-major dependencies (#519)
  • 1583c5d chore: remove Vite 7 beta from supported range (#517)
  • Additional commits viewable in compare view

Updates @vitest/ui from 3.2.3 to 3.2.4

Release notes

Sourced from @​vitest/ui's releases.

v3.2.4

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates globals from 16.2.0 to 16.3.0

Release notes

Sourced from globals's releases.

v16.3.0

  • Update globals (#304) 8c029d9

https://github.com/sindresorhus/globals/compare/v16.2.0...v16.3.0

Commits

Updates typescript from 5.8.3 to 5.9.2

Release notes

Sourced from typescript's releases.

TypeScript 5.9

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • be86783 Give more specific errors for verbatimModuleSyntax (#62113)
  • 22ef577 LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...
  • d5a414c Don't use noErrorTruncation when printing types with maximumLength set (#...
  • f14b5c8 Remove unused and confusing dom.iterable.d.ts file (#62037)
  • 2778e84 Restore AbortSignal.abort (#62086)
  • 65cb4bd LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...
  • 9e20e03 Clear out checker-level stacks on pop (#62016)
  • 87740bc Fix for Issue 61081 (#61221)
  • 833a8d4 Fix Symbol completion priority and cursor positioning (#61945)
  • 0018c9f LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...
  • Additional commits viewable in compare view

Updates vite from 6.3.5 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.

v7.0.4

Please refer to CHANGELOG.md for details.

v7.0.3

Please refer to CHANGELOG.md for details.

create-vite@7.0.3

Please refer to CHANGELOG.md for details.

v7.0.2

Please refer to CHANGELOG.md for details.

create-vite@7.0.2

Please refer to CHANGELOG.md for details.

v7.0.1

Please refer to CHANGELOG.md for details.

create-vite@7.0.1

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.1

Please refer to CHANGELOG.md for details.

create-vite@7.0.0

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.0

Please refer to CHANGELOG.md for details.

v7.0.0

Please refer to CHANGELOG.md for details.

v7.0.0-beta.2

Please refer to CHANGELOG.md for details.

v7.0.0-beta.1

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.0-beta.1

Please refer to CHANGELOG.md for details.

plugin-legacy@7.0.0-beta.0

Please refer to CHANGELOG.md for details.

... (truncated)

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)

7.0.4 (2025-07-10)

Bug Fixes

  • allow resolving bare specifiers to relative paths for entries (#20379) (324669c)

Build System

7.0.3 (2025-07-08)

Bug Fixes

  • client: protect against window being defined but addEv undefined (#20359) (31d1467)
  • define: replace optional values (#20338) (9465ae1)
  • deps: update all non-major dependencies (#20366) (43ac73d)

Miscellaneous Chores

... (truncated)

Commits

Updates vitest from 3.2.3 to 3.2.4

Release notes

Sourced from vitest's releases.

v3.2.4

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • c666d14 chore: release v3.2.4
  • 8a18c8e fix(cli): throw error when --shard x/\<count> exceeds count of test files (#...
  • 8abd7cc chore(deps): update tinypool (#8174)
  • 93f3200 fix(deps): update all non-major dependencies (#8123)
  • 0c3be6f fix(coverage): ignore SCSS in browser mode (#8161)
  • 790bc31 chore: update deprecation notice for globs (#8148)
  • c0eae7d chore: update deprecated workspace file log (#8118)
  • 14dc072 fix(pool): auto-adjust minWorkers when only maxWorkers specified (#8110)
  • 85dc019 fix(cli): use absolute path environment on Windows (#8105)
  • 27df68a fix(reporter): task.meta should be available in custom reporter's errors (#...
  • Additional commits viewable in compare view

Updates @babel/compat-data from 7.27.5 to 7.28.0

Release notes

Sourced from @​babel/compat-data's releases.

v7.28.0 (2025-07-02)

:rocket: New Feature

  • babel-node
  • babel-types
  • babel-compat-data, babel-preset-env
  • babel-core, babel-parser
  • babel-generator, babel-parser
  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-transform-object-rest-spread, babel-traverse, babel-types
  • babel-parser, babel-traverse, babel-types
  • babel-generator, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring, babel-plugin-transform-explicit-resource-management, babel-plugin-transform-react-display-name, babel-types
  • babel-generator, babel-parser, babel-plugin-proposal-destructuring-private, babel-plugin-transform-block-scoping, babel-plugin-transform-object-rest-spread, babel-plugin-transform-typescript, babel-traverse, babel-types

:bug: Bug Fix

:house: Internal

  • babel-compat-data, babel-plugin-proposal-decorators, babel-plugin-transform-async-generator-functions, babel-plugin-transform-json-modules, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs3

Committers: 5

v7.27.7 (2025-06-26)

Thanks @​arthur-mountain and @​evankanderson for your first PRs!

:eyeglasses: Spec Compliance

  • babel-parser, babel-plug...

    Description has been truncated

Pull Request Statistics
Commits:
0
Files Changed:
0
Additions:
+0
Deletions:
-0
Package Dependencies
Ecosystem:
npm
Version Change:
7.27.6 → 7.28.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
7.6.2 → 7.7.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.5.2 → 4.7.0
Update Type:
Minor
Package:
globals
Ecosystem:
npm
Version Change:
16.2.0 → 16.3.0
Update Type:
Minor
Package:
@types/node
Ecosystem:
npm
Version Change:
24.0.2 → 24.2.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
7.27.6 → 7.28.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
19.1.8 → 19.1.9
Update Type:
Patch
Package:
vite
Ecosystem:
npm
Version Change:
6.3.5 → 7.0.6
Update Type:
Major
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:
ws
Ecosystem:
npm
Version Change:
8.18.2 → 8.18.3
Update Type:
Patch
Package:
@vitest/ui
Ecosystem:
npm
Version Change:
3.2.3 → 3.2.4
Update Type:
Patch
Package:
typescript
Ecosystem:
npm
Version Change:
5.8.3 → 5.9.2
Update Type:
Minor
Package:
esbuild
Ecosystem:
npm
Version Change:
0.25.5 → 0.25.8
Update Type:
Patch
Package:
rollup
Ecosystem:
npm
Version Change:
4.43.0 → 4.46.2
Update Type:
Minor
Package:
react
Ecosystem:
npm
Version Change:
19.1.0 → 19.1.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
6.6.3 → 6.6.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
4.25.0 → 4.25.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.9.4 → 2.1.3
Update Type:
Major
Ecosystem:
npm
Version Change:
7.27.5 → 7.28.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
10.4.0 → 10.4.1
Update Type:
Patch
Package:
decimal.js
Ecosystem:
npm
Version Change:
10.5.0 → 10.6.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
7.20.7 → 7.28.0
Update Type:
Minor
Package:
nwsapi
Ecosystem:
npm
Version Change:
2.2.20 → 2.2.21
Update Type:
Patch
Package:
cssstyle
Ecosystem:
npm
Version Change:
4.4.0 → 4.6.0
Update Type:
Minor
Package:
expect-type
Ecosystem:
npm
Version Change:
1.2.1 → 1.2.2
Update Type:
Patch
Package:
agent-base
Ecosystem:
npm
Version Change:
7.1.3 → 7.1.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
9.0.11 → 9.0.14
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.5.0 → 1.5.4
Update Type:
Patch
Technical Details
ID: 4564776
UUID: 3290229280
Node ID: PR_kwDOOy3aEc6iC-3I
Host: GitHub
Repository: takoyakisoft/takoyakisoft.github.io