Bump ws and discord.js
Bumps ws to 8.17.1 and updates ancestor dependency discord.js. These dependencies need to be updated together.
Updates ws from 8.14.2 to 8.17.1
Release notes
Sourced from ws's releases.
8.17.1
Bug fixes
- Fixed a DoS vulnerability (#2231).
A request with a number of headers exceeding the[
server.maxHeadersCount][] threshold could be used to crash a ws server.const http = require('http'); const WebSocket = require('ws');const wss = new WebSocket.Server({ port: 0 }, function () { const chars = "!#$%&'*+-.0123456789abcdefghijklmnopqrstuvwxyz^_`|~".split(''); const headers = {}; let count = 0;
for (let i = 0; i < chars.length; i++) { if (count === 2000) break;
for (let j = 0; j < chars.length; j++) { const key = chars[i] + chars[j]; headers[key] = 'x';if (++count === 2000) break; }
}
headers.Connection = 'Upgrade'; headers.Upgrade = 'websocket'; headers['Sec-WebSocket-Key'] = 'dGhlIHNhbXBsZSBub25jZQ=='; headers['Sec-WebSocket-Version'] = '13';
const request = http.request({ headers: headers, host: '127.0.0.1', port: wss.address().port });
request.end(); });
The vulnerability was reported by Ryan LaPointe in websockets/ws#2230.
In vulnerable versions of ws, the issue can be mitigated in the following ways:
- Reduce the maximum allowed length of the request headers using the [
--max-http-header-size=size][] and/or the [maxHeaderSize][] options so that no more headers than theserver.maxHeadersCountlimit can be sent.
... (truncated)
Commits
3c56601[dist] 8.17.1e55e510[security] Fix crash when the Upgrade header cannot be read (#2231)6a00029[test] Increase code coverageddfe4a8[perf] Reduce the amount ofcrypto.randomFillSync()callsb73b118[dist] 8.17.029694a5[test] Use thehighWaterMarkvariable934c9d6[ci] Test on node 221817bac[ci] Do not test on node 2196c9b3d[major] Flip the default value ofallowSynchronousEvents(#2221)e5f32c7[fix] Emit at most one event per event loop iteration (#2218)- Additional commits viewable in compare view
Updates discord.js from 14.14.1 to 14.15.3
Release notes
Sourced from discord.js's releases.
14.15.3
Bug Fixes
- Message: Properly compare
attachmentsandembeds(#10282) (a468ae8)- Throw error on no message id for
Message#fetchReference()(#10295) (638b896)- ThreadChannel: Invalid owner fetch option (#10292) (27d0659)
- Action: Ensure all properties on
getChannel()are passed (#10278) (92c1a51)- docs: Some link tags didn't resolve correctly (#10269) (914cc4b)
- actions: Handle missing poll object (#10266) (7816ec2)
Refactor
Typings
- Forum starter messages do not support polls (#10276) (35207b0)
- Add
defaultValuesto respective select menu components data (#10265) (c2432d5)14.15.2
Bug Fixes
14.15.1
Bug Fixes
14.15.0
Bug Fixes
- Message: Not crosspostable if has a poll (#10246) (a6b9f1b)
- actions: Always emit message create for own messages (#10211) (798f28c)
- Embed: Address
equalsmethod issue (#10152) (ddc927f)- types: Export
ReadonlyCollection(#10184) (6cc5fa2)- Anchor link for events (0efd1be)
- resolveColor: Address case for numbers (#10115) (3755e66)
- Invert deletable message types list (#10093) (42bc5d2)
- BaseClient: Fall back to
userAgentAppendix(#10113) (b16647e)- InteractionResponses: Check if ephemeral message flag is used (#10021) (62e31cb)
- Replace internal calls to Emoji#url (#10025) (941642a)
- Export "ESM" types when discord.js is imported in ESM land (#10009) (e412a22)
- website: Discord-api-types links, URL links and some minor doc issues (#9990) (57c414b)
- website: Cross package deprecated links (#9981) (802ec63)
- Minify mainlib docs json (#9963) (4b88306)
- website: Misc improvements (#9940) (b79351b)
Documentation
... (truncated)
Changelog
Sourced from discord.js's changelog.
14.15.3 - (2024-06-02)
Bug Fixes
- Message: Properly compare
attachmentsandembeds(#10282) (a468ae8)- Throw error on no message id for
Message#fetchReference()(#10295) (638b896)- ThreadChannel: Invalid owner fetch option (#10292) (27d0659)
- Action: Ensure all properties on
getChannel()are passed (#10278) (92c1a51)- docs: Some link tags didn't resolve correctly (#10269) (914cc4b)
- actions: Handle missing poll object (#10266) (7816ec2)
Refactor
Typings
- Forum starter messages do not support polls (#10276) (35207b0)
- Add
defaultValuesto respective select menu components data (#10265) (c2432d5)14.15.2 - (2024-05-05)
Bug Fixes
14.15.1 - (2024-05-04)
Bug Fixes
14.15.0 - (2024-05-04)
Bug Fixes
- Message: Not crosspostable if has a poll (#10246) (a6b9f1b)
- actions: Always emit message create for own messages (#10211) (798f28c)
- Embed: Address
equalsmethod issue (#10152) (ddc927f)- types: Export
ReadonlyCollection(#10184) (6cc5fa2)- Anchor link for events (0efd1be)
- resolveColor: Address case for numbers (#10115) (3755e66)
- Invert deletable message types list (#10093) (42bc5d2)
- BaseClient: Fall back to
userAgentAppendix(#10113) (b16647e)- InteractionResponses: Check if ephemeral message flag is used (#10021) (62e31cb)
- Replace internal calls to Emoji#url (#10025) (941642a)
- Export "ESM" types when discord.js is imported in ESM land (#10009) (e412a22)
- website: Discord-api-types links, URL links and some minor doc issues (#9990) (57c414b)
- website: Cross package deprecated links (#9981) (802ec63)
- Minify mainlib docs json (#9963) (4b88306)
... (truncated)
Commits
311aaf2chore(release):@discordjs/builders1.8.2,@discordjs/ws1.1.1, and discord.j...a468ae8fix(Message): properly compareattachmentsandembeds(#10282)638b896fix: Throw error on no message id forMessage#fetchReference()(#10295)27d0659fix(ThreadChannel): invalid owner fetch option (#10292)555961brefactor(GuildChannelManager): improve addFollower errors (#10277)92c1a51fix(Action): Ensure all properties ongetChannel()are passed (#10278)35207b0types: Forum starter messages do not support polls (#10276)c2432d5types: AdddefaultValuesto respective select menu components data (#10265)914cc4bfix(docs): some link tags didn't resolve correctly (#10269)7816ec2fix(actions): Handle missing poll object (#10266)- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.
The latest updates on your projects. Learn more about Vercel for Git ↗︎
| Name | Status | Preview | Comments | Updated (UTC) |
|---|---|---|---|---|
| ririko-bot | ❌ Failed (Inspect) | Jun 18, 2024 8:52pm |
Code Climate has analyzed commit 7fcf3384 and detected 0 issues on this pull request.
View more on Code Climate.
@dependabot rebase
Superseded by #398.