Commit b6fe8d0
build(deps): Bump ws (#1403)
Bumps and [ws](https://github.com/websockets/ws). These dependencies
needed to be updated together.
Updates `ws` from 8.9.0 to 8.18.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/websockets/ws/releases">ws's
releases</a>.</em></p>
<blockquote>
<h2>8.18.3</h2>
<h1>Bug fixes</h1>
<ul>
<li>Fixed a spec violation where the <code>Sec-WebSocket-Version</code>
header was not added
to the HTTP response if the client requested version was either invalid
or
unacceptable (33f5dbaf).</li>
</ul>
<h2>8.18.2</h2>
<h1>Bug fixes</h1>
<ul>
<li>Fixed an issue that, during message decompression when the maximum
size was
exceeded, led to the emission of an inaccurate error and closure of the
connection with an improper close code (<a
href="https://redirect.github.com/websockets/ws/issues/2285">#2285</a>).</li>
</ul>
<h2>8.18.1</h2>
<h1>Bug fixes</h1>
<ul>
<li>The length of the UNIX domain socket paths in the tests has been
shortened to
make them work when run via <a
href="https://github.com/nodejs/citgm">CITGM</a> (021f7b8b).</li>
</ul>
<h2>8.18.0</h2>
<h1>Features</h1>
<ul>
<li>Added support for <code>Blob</code> (<a
href="https://redirect.github.com/websockets/ws/issues/2229">#2229</a>).</li>
</ul>
<h2>8.17.1</h2>
<h1>Bug fixes</h1>
<ul>
<li>Fixed a DoS vulnerability (<a
href="https://redirect.github.com/websockets/ws/issues/2231">#2231</a>).</li>
</ul>
<p>A request with a number of headers exceeding
the[<code>server.maxHeadersCount</code>][]
threshold could be used to crash a ws server.</p>
<pre lang="js"><code>const http = require('http');
const WebSocket = require('ws');
<p>const wss = new WebSocket.Server({ port: 0 }, function () {
const chars =
"!#$%&'*+-.0123456789abcdefghijklmnopqrstuvwxyz^_`|~".split('');
const headers = {};
let count = 0;</p>
<p>for (let i = 0; i < chars.length; i++) {
if (count === 2000) break;</p>
<pre><code>for (let j = 0; j &lt; chars.length; j++) {
const key = chars[i] + chars[j];
headers[key] = 'x';
</code></pre>
<p></tr></table>
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/websockets/ws/commit/dabbdec92f4c1f1777689733d477344e3c6c2e67"><code>dabbdec</code></a>
[dist] 8.18.3</li>
<li><a
href="https://github.com/websockets/ws/commit/33f5dbaf332764530a6ca97a93101b4402f3121d"><code>33f5dba</code></a>
[fix] Respond with the supported protocol versions (<a
href="https://redirect.github.com/websockets/ws/issues/2291">#2291</a>)</li>
<li><a
href="https://github.com/websockets/ws/commit/22a5a17db5fef470725f1b2f72342eccb4262662"><code>22a5a17</code></a>
[ci] Test on node 24</li>
<li><a
href="https://github.com/websockets/ws/commit/e67eb7ad70e7e5bc2e31ded42460793ae02feb82"><code>e67eb7a</code></a>
[ci] Do not test on node 23</li>
<li><a
href="https://github.com/websockets/ws/commit/fa670f2b240afba6bffb3929e90ea41cd5e9d072"><code>fa670f2</code></a>
[ci] Run the lint step on node 22</li>
<li><a
href="https://github.com/websockets/ws/commit/0eb8535f9b0dc11ac30a9ccb8824c9fc8388f1fd"><code>0eb8535</code></a>
[dist] 8.18.2</li>
<li><a
href="https://github.com/websockets/ws/commit/4f20aedbe2c6acba5e4361fcc5e694e1cdb4430c"><code>4f20aed</code></a>
[fix] Handle oversized messages with designated error (<a
href="https://redirect.github.com/websockets/ws/issues/2285">#2285</a>)</li>
<li><a
href="https://github.com/websockets/ws/commit/aa998e38c5f62844eb2fb1ccccb69a9c953ccd4f"><code>aa998e3</code></a>
[pkg] Update globals to version 16.0.0</li>
<li><a
href="https://github.com/websockets/ws/commit/cf259541e8c2c5a57b6d343b681a33447570f67b"><code>cf25954</code></a>
[minor] Fix nit in error message</li>
<li><a
href="https://github.com/websockets/ws/commit/b92745a9d6760e6b4b2394bfac78cbcd258a8c8d"><code>b92745a</code></a>
[dist] 8.18.1</li>
<li>Additional commits viewable in <a
href="https://github.com/websockets/ws/compare/8.9.0...8.18.3">compare
view</a></li>
</ul>
</details>
<br />
Updates `ws` from 7.5.7 to 7.5.10
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/websockets/ws/releases">ws's
releases</a>.</em></p>
<blockquote>
<h2>8.18.3</h2>
<h1>Bug fixes</h1>
<ul>
<li>Fixed a spec violation where the <code>Sec-WebSocket-Version</code>
header was not added
to the HTTP response if the client requested version was either invalid
or
unacceptable (33f5dbaf).</li>
</ul>
<h2>8.18.2</h2>
<h1>Bug fixes</h1>
<ul>
<li>Fixed an issue that, during message decompression when the maximum
size was
exceeded, led to the emission of an inaccurate error and closure of the
connection with an improper close code (<a
href="https://redirect.github.com/websockets/ws/issues/2285">#2285</a>).</li>
</ul>
<h2>8.18.1</h2>
<h1>Bug fixes</h1>
<ul>
<li>The length of the UNIX domain socket paths in the tests has been
shortened to
make them work when run via <a
href="https://github.com/nodejs/citgm">CITGM</a> (021f7b8b).</li>
</ul>
<h2>8.18.0</h2>
<h1>Features</h1>
<ul>
<li>Added support for <code>Blob</code> (<a
href="https://redirect.github.com/websockets/ws/issues/2229">#2229</a>).</li>
</ul>
<h2>8.17.1</h2>
<h1>Bug fixes</h1>
<ul>
<li>Fixed a DoS vulnerability (<a
href="https://redirect.github.com/websockets/ws/issues/2231">#2231</a>).</li>
</ul>
<p>A request with a number of headers exceeding
the[<code>server.maxHeadersCount</code>][]
threshold could be used to crash a ws server.</p>
<pre lang="js"><code>const http = require('http');
const WebSocket = require('ws');
<p>const wss = new WebSocket.Server({ port: 0 }, function () {
const chars =
"!#$%&'*+-.0123456789abcdefghijklmnopqrstuvwxyz^_`|~".split('');
const headers = {};
let count = 0;</p>
<p>for (let i = 0; i < chars.length; i++) {
if (count === 2000) break;</p>
<pre><code>for (let j = 0; j &lt; chars.length; j++) {
const key = chars[i] + chars[j];
headers[key] = 'x';
</code></pre>
<p></tr></table>
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/websockets/ws/commit/dabbdec92f4c1f1777689733d477344e3c6c2e67"><code>dabbdec</code></a>
[dist] 8.18.3</li>
<li><a
href="https://github.com/websockets/ws/commit/33f5dbaf332764530a6ca97a93101b4402f3121d"><code>33f5dba</code></a>
[fix] Respond with the supported protocol versions (<a
href="https://redirect.github.com/websockets/ws/issues/2291">#2291</a>)</li>
<li><a
href="https://github.com/websockets/ws/commit/22a5a17db5fef470725f1b2f72342eccb4262662"><code>22a5a17</code></a>
[ci] Test on node 24</li>
<li><a
href="https://github.com/websockets/ws/commit/e67eb7ad70e7e5bc2e31ded42460793ae02feb82"><code>e67eb7a</code></a>
[ci] Do not test on node 23</li>
<li><a
href="https://github.com/websockets/ws/commit/fa670f2b240afba6bffb3929e90ea41cd5e9d072"><code>fa670f2</code></a>
[ci] Run the lint step on node 22</li>
<li><a
href="https://github.com/websockets/ws/commit/0eb8535f9b0dc11ac30a9ccb8824c9fc8388f1fd"><code>0eb8535</code></a>
[dist] 8.18.2</li>
<li><a
href="https://github.com/websockets/ws/commit/4f20aedbe2c6acba5e4361fcc5e694e1cdb4430c"><code>4f20aed</code></a>
[fix] Handle oversized messages with designated error (<a
href="https://redirect.github.com/websockets/ws/issues/2285">#2285</a>)</li>
<li><a
href="https://github.com/websockets/ws/commit/aa998e38c5f62844eb2fb1ccccb69a9c953ccd4f"><code>aa998e3</code></a>
[pkg] Update globals to version 16.0.0</li>
<li><a
href="https://github.com/websockets/ws/commit/cf259541e8c2c5a57b6d343b681a33447570f67b"><code>cf25954</code></a>
[minor] Fix nit in error message</li>
<li><a
href="https://github.com/websockets/ws/commit/b92745a9d6760e6b4b2394bfac78cbcd258a8c8d"><code>b92745a</code></a>
[dist] 8.18.1</li>
<li>Additional commits viewable in <a
href="https://github.com/websockets/ws/compare/8.9.0...8.18.3">compare
view</a></li>
</ul>
</details>
<br />
You can trigger a rebase of this PR by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@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](https://github.com/auth0/auth0-spa-js/network/alerts).
</details>
> **Note**
> Automatic rebases have been disabled on this pull request as it has
been open for over 30 days.
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gyanesh Gouraw <160731216+gyaneshgouraw-okta@users.noreply.github.com>1 parent 83effcb commit b6fe8d0
1 file changed
+7
-3
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments