Skip to content

build(deps): bump ws and appium#20

Open
dependabot[bot] wants to merge 1 commit into
miregofrom
dependabot/npm_and_yarn/multi-3104e2840c
Open

build(deps): bump ws and appium#20
dependabot[bot] wants to merge 1 commit into
miregofrom
dependabot/npm_and_yarn/multi-3104e2840c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 24, 2026

Copy link
Copy Markdown

Bumps ws to 8.21.0 and updates ancestor dependency appium. These dependencies need to be updated together.

Updates ws from 8.20.0 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.

8.20.1

... (truncated)

Commits
  • bca91ad [dist] 8.21.0
  • 2b2abd4 [security] Limit retained message parts
  • 78eabe2 [security] Add latest vulnerability to SECURITY.md
  • 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

Updates appium from 3.3.0 to 3.5.2

Release notes

Sourced from appium's releases.

appium@3.5.2

3.5.2 (2026-06-18)

Note: Version bump only for package appium

appium@3.5.1

3.5.1 (2026-06-18)

Bug Fixes

  • storage-plugin: add fs.sanitizeName for the delete request as well (#22362) (5fee017)

appium@3.5.0

3.5.0 (2026-05-31)

Features

appium@3.4.2

3.4.2 (2026-05-07)

Note: Version bump only for package appium

appium@3.4.1

3.4.1 (2026-05-06)

Note: Version bump only for package appium

appium@3.4.0

3.4.0 (2026-05-06)

Features

appium@3.3.1

3.3.1 (2026-04-23)

Bug Fixes

Changelog

Sourced from appium's changelog.

3.5.2 (2026-06-18)

Note: Version bump only for package appium

3.5.1 (2026-06-18)

Bug Fixes

  • storage-plugin: add fs.sanitizeName for the delete request as well (#22362) (5fee017)

3.5.0 (2026-05-31)

Features

3.4.2 (2026-05-07)

Note: Version bump only for package appium

3.4.1 (2026-05-06)

Note: Version bump only for package appium

3.4.0 (2026-05-06)

Features

... (truncated)

Commits
  • e6b583a chore: publish
  • e0d5c4d chore(support): update dependency axios to v1.18.0 (#22396)
  • 213efd0 chore: publish
  • f475b41 chore(execute-driver-plugin): update webdriverio monorepo to v9.28.0 (#22385)
  • 0e6a33b chore(support): update dependency semver to v7.8.4 (#22383)
  • 78683d9 chore(support): update dependency semver to v7.8.3 (#22379)
  • 1369033 docs(appium): Update documentation translations (#22375)
  • c704023 chore: Strip obsolete methods usages in monorepo packages (#22363)
  • 27c22b7 docs(appium): Update documentation translations (#22373)
  • a740d9d docs: add AppiumConf 2026 archive & remove banner (#22372)
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [ws](https://github.com/websockets/ws) to 8.21.0 and updates ancestor dependency [appium](https://github.com/appium/appium/tree/HEAD/packages/appium). These dependencies need to be updated together.


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

Updates `appium` from 3.3.0 to 3.5.2
- [Release notes](https://github.com/appium/appium/releases)
- [Changelog](https://github.com/appium/appium/blob/master/packages/appium/CHANGELOG.md)
- [Commits](https://github.com/appium/appium/commits/appium@3.5.2/packages/appium)

---
updated-dependencies:
- dependency-name: ws
  dependency-version: 8.21.0
  dependency-type: indirect
- dependency-name: appium
  dependency-version: 3.5.2
  dependency-type: direct:production
...

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 Jun 24, 2026
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