Skip to content

deps: bump the npm-development group with 5 updates#111

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-development-dd3a0a0b66
Closed

deps: bump the npm-development group with 5 updates#111
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-development-dd3a0a0b66

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the npm-development group with 5 updates:

Package From To
baseline-browser-mapping 2.10.31 2.10.32
es-object-atoms 1.1.1 1.1.2
tinyexec 1.1.2 1.2.2
tldts 7.0.30 7.1.2
ws 8.20.1 8.21.0

Updates baseline-browser-mapping from 2.10.31 to 2.10.32

Release notes

Sourced from baseline-browser-mapping's releases.

v2.9.3 - remove process.loadEnvFile()

What's Changed

Full Changelog: web-platform-dx/baseline-browser-mapping@v2.9.2...v2.9.3

Commits

Updates es-object-atoms from 1.1.1 to 1.1.2

Changelog

Sourced from es-object-atoms's changelog.

v1.1.2 - 2026-05-22

Commits

  • [Dev Deps] update @ljharb/eslint-config, @ljharb/tsconfig, auto-changelog, eslint, npmignore 41e3d94
  • [types] improve isObject type 758edc2
Commits
  • 9e62644 v1.1.2
  • 41e3d94 [Dev Deps] update @ljharb/eslint-config, @ljharb/tsconfig, `auto-changelo...
  • 758edc2 [types] improve isObject type
  • See full diff in compare view

Updates tinyexec from 1.1.2 to 1.2.2

Release notes

Sourced from tinyexec's releases.

1.2.2

What's Changed

Full Changelog: tinylibs/tinyexec@1.2.1...1.2.2

1.2.1

What's Changed

Full Changelog: tinylibs/tinyexec@1.2.0...1.2.1

1.2.0

What's Changed

New Contributors

Full Changelog: tinylibs/tinyexec@1.1.2...1.2.0

Commits

Updates tldts from 7.0.30 to 7.1.2

Release notes

Sourced from tldts's releases.

v7.1.2

💅 Polish

  • tldts-core, tldts-utils
    • Security-review hardening: IPv6 hextet validation, build-time guard, docs & dep audit #2587 (@​remusao)

Authors: 1

v7.1.1

💅 Polish

  • tldts-core, tldts-tests
    • fix: make hostname extraction match WHATWG URL host boundaries #2586 (@​remusao)

Authors: 1

v7.1.0

🏃‍♀️ Performance

  • tldts-core, tldts-experimental, tldts-icann, tldts-tests, tldts-utils, tldts

Authors: 1

v7.0.32

🐛 Bug Fix

  • tldts-core, tldts-tests

🏠 Internal

Authors: 1

v7.0.31

📜 Update Public Suffix List

  • tldts-experimental, tldts-icann, tldts

... (truncated)

Changelog

Sourced from tldts's changelog.

v7.1.2 (Sun May 24 2026)

💅 Polish

  • tldts-core, tldts-utils
    • Security-review hardening: IPv6 hextet validation, build-time guard, docs & dep audit #2587 (@​remusao)

Authors: 1


v7.1.1 (Sun May 24 2026)

💅 Polish

  • tldts-core, tldts-tests
    • fix: make hostname extraction match WHATWG URL host boundaries #2586 (@​remusao)

Authors: 1


v7.1.0 (Sat May 23 2026)

🏃‍♀️ Performance

  • tldts-core, tldts-experimental, tldts-icann, tldts-tests, tldts-utils, tldts

Authors: 1


v7.0.32 (Sat May 23 2026)

🐛 Bug Fix

  • tldts-core, tldts-tests

🏠 Internal

... (truncated)

Commits
  • 5525709 Bump version to: v7.1.2 [skip ci]
  • 972ecec Update CHANGELOG.md [skip ci]
  • b258f25 Security-review hardening: IPv6 hextet validation, build-time guard, docs & d...
  • 54cf9e3 Bump version to: v7.1.1 [skip ci]
  • ec8e3b8 Update CHANGELOG.md [skip ci]
  • 41bcd7b fix: make hostname extraction match WHATWG URL host boundaries (#2586)
  • 9b68080 Bump version to: v7.1.0 [skip ci]
  • 29985ea Update CHANGELOG.md [skip ci]
  • ceb10a1 Better performance and reduce memory allocations (#2585)
  • d023021 Bump version to: v7.0.32 [skip ci]
  • Additional commits viewable in compare view

Updates ws from 8.20.1 to 8.21.0

Release notes

Sourced from ws's releases.

8.21.0

Features

  • Introduced the maxBufferedChunks and maxFragments options (2b2abd45).

Bug fixes

  • Fixed a remote memory exhaustion DoS vulnerability (2b2abd45).

A high volume of tiny fragments and data chunks could be sent by a peer, using modest network traffic, to crash a ws server or client due to OOM.

import { WebSocket, WebSocketServer } from 'ws';
const wss = new WebSocketServer({ port: 0 }, function () {
const data = Buffer.alloc(1);
const options = { fin: false };
const { port } = wss.address();
const ws = new WebSocket(ws://localhost:${port});
ws.on('open', function () {
(function send() {
ws.send(data, options, function (err) {
if (err) return;
send();
});
})();
});
ws.on('error', console.error);
ws.on('close', function (code, reason) {
console.log(client close - code: ${code} reason: ${reason.toString()});
});
});
wss.on('connection', function (ws) {
ws.on('error', console.error);
ws.on('close', function (code, reason) {
console.log(server close - code: ${code} reason: ${reason.toString()});
});
});

The vulnerability was responsibly disclosed and fixed by Nadav Magier.

In vulnerable versions, the issue can be mitigated by lowering the value of the maxPayload option if possible.

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 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 npm-development group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.10.31` | `2.10.32` |
| [es-object-atoms](https://github.com/ljharb/es-object-atoms) | `1.1.1` | `1.1.2` |
| [tinyexec](https://github.com/tinylibs/tinyexec) | `1.1.2` | `1.2.2` |
| [tldts](https://github.com/remusao/tldts) | `7.0.30` | `7.1.2` |
| [ws](https://github.com/websockets/ws) | `8.20.1` | `8.21.0` |


Updates `baseline-browser-mapping` from 2.10.31 to 2.10.32
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](web-platform-dx/baseline-browser-mapping@v2.10.31...v2.10.32)

Updates `es-object-atoms` from 1.1.1 to 1.1.2
- [Changelog](https://github.com/es-shims/es-object-atoms/blob/main/CHANGELOG.md)
- [Commits](es-shims/es-object-atoms@v1.1.1...v1.1.2)

Updates `tinyexec` from 1.1.2 to 1.2.2
- [Release notes](https://github.com/tinylibs/tinyexec/releases)
- [Commits](tinylibs/tinyexec@1.1.2...1.2.2)

Updates `tldts` from 7.0.30 to 7.1.2
- [Release notes](https://github.com/remusao/tldts/releases)
- [Changelog](https://github.com/remusao/tldts/blob/master/CHANGELOG.md)
- [Commits](remusao/tldts@v7.0.30...v7.1.2)

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

---
updated-dependencies:
- dependency-name: baseline-browser-mapping
  dependency-version: 2.10.32
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: es-object-atoms
  dependency-version: 1.1.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-development
- dependency-name: tinyexec
  dependency-version: 1.2.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: tldts
  dependency-version: 7.1.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-development
- dependency-name: ws
  dependency-version: 8.21.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Dependencies security Security labels May 25, 2026
@dependabot dependabot Bot requested a review from mnaimfaizy as a code owner May 25, 2026 08:33
@dependabot dependabot Bot added dependencies Dependencies security Security labels May 25, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 27, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 27, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/npm-development-dd3a0a0b66 branch May 27, 2026 07:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependencies security Security

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants