Skip to content

Bump ws, viem and wagmi#4

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/multi-8eb5d33590
Open

Bump ws, viem and wagmi#4
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/multi-8eb5d33590

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 16, 2026

Copy link
Copy Markdown

Bumps ws to 8.21.0 and updates ancestor dependencies ws, viem and wagmi. These dependencies need to be updated together.

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

Updates viem from 2.52.2 to 2.55.2

Release notes

Sourced from viem's releases.

viem@2.55.2

Patch Changes

viem@2.55.1

Patch Changes

viem@2.55.0

Minor Changes

Patch Changes

viem@2.54.6

Patch Changes

  • #4807 f1ac4480d0c1c6f29bf709f116068e903643ecad Thanks @​jxom! - viem/tempo: Supported calling token .call builders without a Client (restores the pre-2.54 call signature). When the Client is omitted, token must be a TIP20 token id or contract address, and formatted amounts require explicit decimals.

viem@2.54.5

Patch Changes

viem@2.54.4

Patch Changes

viem@2.54.3

Patch Changes

... (truncated)

Commits

Updates wagmi from 2.19.5 to 3.7.1

Release notes

Sourced from wagmi's releases.

wagmi@3.7.1

Patch Changes

  • Updated dependencies [18e9421]:
    • @​wagmi/core@​3.6.1
    • @​wagmi/connectors@​8.0.22

wagmi@3.7.0

Minor Changes

  • Breaking (wagmi/tempo): Updated Tempo APIs for viem 2.54.0: token balance and allowance reads now return Amount objects. (#5188)

Patch Changes

  • Updated dependencies [a45049e]:
    • @​wagmi/core@​3.6.0
    • @​wagmi/connectors@​8.0.21

wagmi@3.6.21

Patch Changes

  • Fixed Tempo types so transaction override parameters are optional. (#5171)

  • Updated dependencies [1d6989e]:

    • @​wagmi/core@​3.5.5
    • @​wagmi/connectors@​8.0.20

wagmi@3.6.20

Patch Changes

  • Fixed Tempo Zone types for optional fields. (#5167)

  • Updated dependencies [f0b78c3]:

    • @​wagmi/core@​3.5.4
    • @​wagmi/connectors@​8.0.19

wagmi@3.6.19

Patch Changes

  • Added connector-specific subpath exports and marked optional connector dependency imports as optional for Turbopack resolution. (#5165)

  • Updated dependencies [05338be, 05338be]:

    • @​wagmi/connectors@​8.0.18
    • @​wagmi/core@​3.5.3

wagmi@3.6.18

Patch Changes

  • Updated dependencies [3e12a5e]:
    • @​wagmi/connectors@​8.0.17

... (truncated)

Changelog

Sourced from wagmi's changelog.

3.7.1

Patch Changes

  • Updated dependencies [18e9421]:
    • @​wagmi/core@​3.6.1
    • @​wagmi/connectors@​8.0.22

3.7.0

Minor Changes

  • Breaking (wagmi/tempo): Updated Tempo APIs for viem 2.54.0: token balance and allowance reads now return Amount objects. (#5188)

Patch Changes

  • Updated dependencies [a45049e]:
    • @​wagmi/core@​3.6.0
    • @​wagmi/connectors@​8.0.21

3.6.21

Patch Changes

  • Fixed Tempo types so transaction override parameters are optional. (#5171)

  • Updated dependencies [1d6989e]:

    • @​wagmi/core@​3.5.5
    • @​wagmi/connectors@​8.0.20

3.6.20

Patch Changes

  • Fixed Tempo Zone types for optional fields. (#5167)

  • Updated dependencies [f0b78c3]:

    • @​wagmi/core@​3.5.4
    • @​wagmi/connectors@​8.0.19

3.6.19

Patch Changes

  • Added connector-specific subpath exports and marked optional connector dependency imports as optional for Turbopack resolution. (#5165)

  • Updated dependencies [05338be, 05338be]:

    • @​wagmi/connectors@​8.0.18
    • @​wagmi/core@​3.5.3

... (truncated)

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 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 dependencies [ws](https://github.com/websockets/ws), [viem](https://github.com/wevm/viem) and [wagmi](https://github.com/wevm/wagmi/tree/HEAD/packages/react). These dependencies need to be updated together.


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)

Updates `viem` from 2.52.2 to 2.55.2
- [Release notes](https://github.com/wevm/viem/releases)
- [Commits](https://github.com/wevm/viem/compare/viem@2.52.2...viem@2.55.2)

Updates `wagmi` from 2.19.5 to 3.7.1
- [Release notes](https://github.com/wevm/wagmi/releases)
- [Changelog](https://github.com/wevm/wagmi/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/wevm/wagmi/commits/wagmi@3.7.1/packages/react)

---
updated-dependencies:
- dependency-name: ws
  dependency-version: 8.21.0
  dependency-type: indirect
- dependency-name: viem
  dependency-version: 2.55.2
  dependency-type: direct:production
- dependency-name: wagmi
  dependency-version: 3.7.1
  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 Jul 16, 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