Skip to content

chore(deps): bump the dependencies group with 5 updates#760

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/dependencies-e2411275e0
Open

chore(deps): bump the dependencies group with 5 updates#760
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/dependencies-e2411275e0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Bumps the dependencies group with 5 updates:

Package From To
ini 6.0.0 7.0.0
vis-data 8.0.3 8.0.4
vis-network 10.0.2 10.0.3
find-my-way 9.5.0 9.6.0
ws 8.20.0 8.20.1

Updates ini from 6.0.0 to 7.0.0

Release notes

Sourced from ini's releases.

v7.0.0

7.0.0 (2026-05-08)

⚠️ BREAKING CHANGES

  • ini now supports node ^22.22.2 || ^24.15.0 || >=26.0.0
  • template-oss-apply

Features

Chores

Changelog

Sourced from ini's changelog.

7.0.0 (2026-05-08)

⚠️ BREAKING CHANGES

  • ini now supports node ^22.22.2 || ^24.15.0 || >=26.0.0
  • template-oss-apply

Features

Chores

Commits
  • 847941c chore: release 7.0.0 (#302)
  • f6ed5be chore: template-oss-apply
  • 55b6841 feat!: bump to new node engine range
  • 2b11ba8 feat!: template-oss-apply
  • e8d16cb deps & engine update
  • 3661dce chore: bump @​npmcli/template-oss from 4.28.0 to 4.28.1 (#296)
  • 5d67f4b chore: bump @​npmcli/template-oss from 4.27.1 to 4.28.0 (#294)
  • a2c835e chore: bump @​npmcli/eslint-config from 5.1.0 to 6.0.0 (#293)
  • See full diff in compare view

Updates vis-data from 8.0.3 to 8.0.4

Release notes

Sourced from vis-data's releases.

v8.0.4

8.0.4 (2026-05-07)

Bug Fixes

  • deps: support UUID v14 and use it in standalone/peer exports (#1319) (c49bf5d)
Commits
  • c49bf5d fix(deps): support UUID v14 and use it in standalone/peer exports (#1319)
  • 5a483c8 chore(deps): update pnpm to v10.33.3 (#1318)
  • dc8b13b chore(deps): update pnpm to v10.33.2 (#1317)
  • f55718b chore(deps): update dependency npm to v11.13.0 (#1315)
  • 107f97d chore(deps): update pnpm to v10.33.1 (#1314)
  • 10801df chore(deps): update node.js to v24.15.0 (#1312)
  • a2afb64 chore(deps): update node.js to v24.15.0 (#1311)
  • a758ad9 chore(deps): update dependency @​types/node to v24.12.2 (#1309)
  • 2aab1e4 chore(deps): update dependency typedoc to v0.28.19 (#1310)
  • cc295b7 chore(deps): update dependency npm to v11.12.1 (#1308)
  • Additional commits viewable in compare view

Updates vis-network from 10.0.2 to 10.0.3

Release notes

Sourced from vis-network's releases.

v10.0.3

10.0.3 (2026-05-07)

Bug Fixes

  • deps: support UUID v14 and use it in standalone/peer exports (#2425) (224e002)
Commits
  • 224e002 fix(deps): support UUID v14 and use it in standalone/peer exports (#2425)
  • 1bd028e chore(deps): update dependency uuid to v13.0.2 (#2422)
  • ba4c24c chore(deps): update pnpm to v10.33.3 (#2421)
  • e77e3c9 chore(deps): update dependency postcss to v8.5.14 (#2420)
  • 977ac39 chore(deps): update dependency postcss to v8.5.13 (#2419)
  • dbe1536 chore(deps): update dependency npm to v11.13.0 (#2418)
  • b2edaf3 chore(deps): update pnpm to v10.33.2 (#2417)
  • 06d6f6b chore(deps): update dependency postcss to v8.5.12 (#2416)
  • 23ea204 chore(deps): update dependency cypress to v15.14.2 (#2415)
  • 8e472be chore(deps): update node.js to v24.15.0 (#2412)
  • Additional commits viewable in compare view

Updates find-my-way from 9.5.0 to 9.6.0

Release notes

Sourced from find-my-way's releases.

v9.6.0

What's Changed

New Contributors

Full Changelog: delvedor/find-my-way@v9.5.0...v9.6.0

Commits
  • 7d3ec5f feat: add onMaxParamLength to support 414 URI Too Long (#432)
  • 8a557ee chore: bump pre-commit from 1.2.2 to 2.0.0 in the dev-dependencies group (#430)
  • 120d64a chore: bump fastify/github-action-merge-dependabot from 3.11.2 to 3.12.0 (#429)
  • eb8ec6f perf: optimize bitmask handler retrieval using Math.clz32 (#420)
  • 24df8d2 chore: bump borp from 0.21.0 to 1.0.0 in the dev-dependencies group (#419)
  • See full diff in compare view

Updates ws from 8.20.0 to 8.20.1

Release notes

Sourced from ws's releases.

8.20.1

Bug fixes

  • Fixed an uninitialized memory disclosure issue in websocket.close() (c0327ec1).

Providing a TypedArray (e.g. Float32Array) as the reason argument for websocket.close(), rather than the supported string or Buffer types, caused uninitialized memory to be disclosed to the remote peer.

import { deepStrictEqual } from 'node:assert';
import { WebSocket, WebSocketServer } from 'ws';
const wss = new WebSocketServer(
{ port: 0, skipUTF8Validation: true },
function () {
const { port } = wss.address();
const ws = new WebSocket(ws://localhost:${port}, {
skipUTF8Validation: true
});
ws.on('close', function (code, reason) {
  deepStrictEqual(reason, Buffer.alloc(80));
});

}
);
wss.on('connection', function (ws) {
ws.close(1000, new Float32Array(20));
});

The issue was privately reported by Nikita Skovoroda.

Commits
  • 5d9b316 [dist] 8.20.1
  • c0327ec [security] Fix uninitialized memory disclosure in websocket.close()
  • ce2a3d6 [ci] Test on node 26
  • 58e45b8 [ci] Do not test on node 25
  • 5f26c24 [ci] Run the lint step on node 24
  • See full diff 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 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

Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [ini](https://github.com/npm/ini) | `6.0.0` | `7.0.0` |
| [vis-data](https://github.com/visjs/vis-data) | `8.0.3` | `8.0.4` |
| [vis-network](https://github.com/visjs/vis-network) | `10.0.2` | `10.0.3` |
| [find-my-way](https://github.com/delvedor/find-my-way) | `9.5.0` | `9.6.0` |
| [ws](https://github.com/websockets/ws) | `8.20.0` | `8.20.1` |


Updates `ini` from 6.0.0 to 7.0.0
- [Release notes](https://github.com/npm/ini/releases)
- [Changelog](https://github.com/npm/ini/blob/main/CHANGELOG.md)
- [Commits](npm/ini@v6.0.0...v7.0.0)

Updates `vis-data` from 8.0.3 to 8.0.4
- [Release notes](https://github.com/visjs/vis-data/releases)
- [Commits](visjs/vis-data@v8.0.3...v8.0.4)

Updates `vis-network` from 10.0.2 to 10.0.3
- [Release notes](https://github.com/visjs/vis-network/releases)
- [Changelog](https://github.com/visjs/vis-network/blob/master/HISTORY.md)
- [Commits](visjs/vis-network@v10.0.2...v10.0.3)

Updates `find-my-way` from 9.5.0 to 9.6.0
- [Release notes](https://github.com/delvedor/find-my-way/releases)
- [Commits](delvedor/find-my-way@v9.5.0...v9.6.0)

Updates `ws` from 8.20.0 to 8.20.1
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.20.0...8.20.1)

---
updated-dependencies:
- dependency-name: ini
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: vis-data
  dependency-version: 8.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vis-network
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: find-my-way
  dependency-version: 9.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ws
  dependency-version: 8.20.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 18, 2026
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented May 18, 2026

⚠️ No Changeset found

Latest commit: 79a1601

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@socket-security
Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedvis-data@​8.0.3 ⏵ 8.0.493 +11008591100
Addedfind-my-way@​9.6.09910010088100
Addedini@​7.0.010010010089100
Updatedvis-network@​10.0.2 ⏵ 10.0.3100 +110010091 -3100
Updatedws@​8.20.0 ⏵ 8.20.198 +110010092100

View full report

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 javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants