Bump ws and browser-sync in /2020
Type: Pull Request
State: Open
Association: None
Comments: 0
(2 months ago)
(2 months ago)
dependencies javascript
Bumps ws to 8.17.1 and updates ancestor dependency browser-sync. These dependencies need to be updated together.
Updates ws from 3.3.3 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 browser-sync from 2.26.12 to 2.29.3
Release notes
Sourced from browser-sync's releases.
The one that fixes snippetOptions
What's Changed
- fix: append to head if body not present yet - fixes #2031 by
@shakyShanein BrowserSync/browser-sync#2041Full Changelog: https://github.com/BrowserSync/browser-sync/compare/v2.29.2...v2.29.3
v2.29.1
What's Changed
- trim-deps by
@shakyShanein BrowserSync/browser-sync#2028Full Changelog: https://github.com/BrowserSync/browser-sync/compare/v2.29.0...v2.29.1
The one that restores IE11 support 💪
What's Changed
- fix ie11 by
@shakyShanein BrowserSync/browser-sync#2024esbuild does not support down-level transpiling as far as IE11 - so when I switched to it, it accidentally broke
IE11support 😢This is an important issue for me - many devs that support old browsers like IE11 are doing so because their projects are used in public services, or internal applications. Not every developer out there has the luxury of supporting evergreen-only browsers.
So, IE11 will work once again 🎉. Please use the issues thread to make me aware of any problem that's preventing you from using Browsersync in your day job 💪 (and be sure to thumbs-up the issues you want to see resolved)
# IE11 works, again npm install browser-sync@latestFull Changelog: https://github.com/BrowserSync/browser-sync/compare/v2.28.3...v2.29.0
the one that finally removes
document.writeWhat's Changed
- browser-sync-2017 use chalk everywhere by
@shakyShanein BrowserSync/browser-sync#2018- fix: remove document.write by
@shakyShanein BrowserSync/browser-sync#2019Full Changelog: https://github.com/BrowserSync/browser-sync/compare/v2.27.12...v2.28.0
2.27.9
What's Changed
- fix(cli): Where's the command help? fixes #1929 by
@shakyShanein BrowserSync/browser-sync#1945A bug prevented the help output from displaying - it was introduced when the CLI parser
yargswas updated, and is now fixed :)Full Changelog: https://github.com/BrowserSync/browser-sync/compare/v2.27.8...v2.27.9
... (truncated)
Commits
02efdffv2.29.362d906efix: append to head if body not present yet - fixes #2031 (#2041)f91440ev2.29.2d0c50e0deps: drop qs (#2040)6ffc212v2.29.17b07798v2.29.1-alpha.0497f216remove client depsbed04d4v2.29.087421b5fix: ie11 support (#2024)59eb01av2.28.3- 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.
Pull Request Statistics
1
1
+2604
-1752
Package Dependencies
browser-sync
npm
2.26.12 → 2.29.3
Minor
/2020
Technical Details
| ID: | 6682622 |
| UUID: | 2793419866 |
| Node ID: | PR_kwDOBQltU86mgDRa |
| Host: | GitHub |
| Repository: | Daniel528/daniel528.github.io |
| Merge State: | Unknown |