René's URL Explorer Experiment


Title: Bump ws, socket.io-client and socket.io by dependabot[bot] · Pull Request #172 · austinjavascript/austinjavascript.com · GitHub

Open Graph Title: Bump ws, socket.io-client and socket.io by dependabot[bot] · Pull Request #172 · austinjavascript/austinjavascript.com

X Title: Bump ws, socket.io-client and socket.io by dependabot[bot] · Pull Request #172 · austinjavascript/austinjavascript.com

Description: Bumps ws, socket.io-client and socket.io. These dependencies needed to be updated together. Updates ws from 8.2.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 the server.maxHeadersCount limit can be sent. ... (truncated) Commits 3c56601 [dist] 8.17.1 e55e510 [security] Fix crash when the Upgrade header cannot be read (#2231) 6a00029 [test] Increase code coverage ddfe4a8 [perf] Reduce the amount of crypto.randomFillSync() calls b73b118 [dist] 8.17.0 29694a5 [test] Use the highWaterMark variable 934c9d6 [ci] Test on node 22 1817bac [ci] Do not test on node 21 96c9b3d [major] Flip the default value of allowSynchronousEvents (#2221) e5f32c7 [fix] Emit at most one event per event loop iteration (#2218) Additional commits viewable in compare view Updates socket.io-client from 4.5.3 to 4.7.5 Release notes Sourced from socket.io-client's releases. 4.7.5 Bug Fixes discard acknowledgements upon disconnection (34cbfbb) Links Diff: socketio/socket.io-client@4.7.4...4.7.5 Server release: 4.7.5 engine.io-client@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.4 There were some minor bug fixes on the server side, which mandate a client bump. Links Diff: socketio/socket.io-client@4.7.3...4.7.4 Server release: 4.7.4 engine.io-client@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.3 Bug Fixes improve compatibility with node16 module resolution (#1595) (605de78) typings: accept string | undefined as init argument (5a3eafe) typings: fix the type of the socket#id attribute (f9c16f2) Links Diff: socketio/socket.io-client@4.7.2...4.7.3 Server release: 4.7.3 engine.io-client@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.2 Some bug fixes are included from the engine.io-client package: webtransport: add proper framing (d55c39e) webtransport: honor the binaryType attribute (8270e00) Links Diff: socketio/socket.io-client@4.7.1...4.7.2 Server release: 4.7.2 engine.io-client@~6.5.2 (diff) ws@~8.11.0 (no change) 4.7.1 ... (truncated) Changelog Sourced from socket.io-client's changelog. 4.7.5 (2024-03-14) Bug Fixes discard acknowledgements upon disconnection (34cbfbb) Dependencies engine.io-client@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.4 (2024-01-12) There were some minor bug fixes on the server side, which mandate a client bump. Dependencies engine.io-client@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.3 (2024-01-03) Bug Fixes improve compatibility with node16 module resolution (#1595) (605de78) typings: accept string | undefined as init argument (5a3eafe) typings: fix the type of the socket#id attribute (f9c16f2) Dependencies engine.io-client@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.2 (2023-08-02) Some bug fixes are included from the engine.io-client package: webtransport: add proper framing (d55c39e) webtransport: honor the binaryType attribute (8270e00) ... (truncated) Commits 4f6030f chore(release): 4.7.5 34cbfbb fix: discard acknowledgements upon disconnection 8cfea8c chore(release): 4.7.4 ca5d50e chore(release): 4.7.3 f9c16f2 fix(typings): fix the type of the socket#id attribute b3f0cab ci: add Node.js 20 in the test matrix 5a3eafe fix(typings): accept string | undefined as init argument 605de78 fix: improve compatibility with node16 module resolution (#1595) d00ccd2 ci: bump appiumVersion for Android tests in SauceLabs 928d76d chore(release): 4.7.2 Additional commits viewable in compare view Updates socket.io from 4.5.3 to 4.7.5 Release notes Sourced from socket.io's releases. 4.7.5 Bug Fixes close the adapters when the server is closed (bf64870) remove duplicate pipeline when serving bundle (e426f3e) Links Diff: socketio/socket.io@4.7.4...4.7.5 Client release: 4.7.5 engine.io@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.4 Bug Fixes typings: calling io.emit with no arguments incorrectly errored (cb6d2e0), closes #4914 Links Diff: socketio/socket.io@4.7.3...4.7.4 Client release: 4.7.4 engine.io@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.3 Bug Fixes return the first response when broadcasting to a single socket (#4878) (df8e70f) typings: allow to bind to a non-secure Http2Server (#4853) (8c9ebc3) Links Diff: socketio/socket.io@4.7.2...4.7.3 Client release: 4.7.3 engine.io@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.2 Bug Fixes clean up child namespace when client is rejected in middleware (#4773) (0731c0d) webtransport: properly handle WebTransport-only connections (3468a19) webtransport: add proper framing (a306db0) Links ... (truncated) Changelog Sourced from socket.io's changelog. 4.7.5 (2024-03-14) Bug Fixes close the adapters when the server is closed (bf64870) remove duplicate pipeline when serving bundle (e426f3e) Dependencies engine.io@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.4 (2024-01-12) Bug Fixes typings: calling io.emit with no arguments incorrectly errored (cb6d2e0), closes #4914 Dependencies engine.io@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.3 (2024-01-03) Bug Fixes return the first response when broadcasting to a single socket (#4878) (df8e70f) typings: allow to bind to a non-secure Http2Server (#4853) (8c9ebc3) Dependencies engine.io@~6.5.2 (no change) ws@~8.11.0 (no change) 4.7.2 (2023-08-02) ... (truncated) Commits 5017681 chore(release): 4.7.5 bf64870 fix: close the adapters when the server is closed 748e18c ci: test with older TypeScript version b9ce6a2 refactor: create specific adapter for parent namespaces (#4950) 54dabe5 ci: upgrade to actions/checkout@4 and actions/setup-node@4 e426f3e fix: remove duplicate pipeline when serving bundle e36062c docs: update the webtransport example 0bbe8ae docs: only execute the passport middleware once 914a8bd docs: add example with JWT d943c3e docs: update the Passport.js example 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 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 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. Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Open Graph Description: Bumps ws, socket.io-client and socket.io. These dependencies needed to be updated together. Updates ws from 8.2.3 to 8.17.1 Release notes Sourced from ws's releases. 8.17.1 Bug fixes Fixed a...

X Description: Bumps ws, socket.io-client and socket.io. These dependencies needed to be updated together. Updates ws from 8.2.3 to 8.17.1 Release notes Sourced from ws&#39;s releases. 8.17.1 Bug fixes Fix...

Opengraph URL: https://github.com/austinjavascript/austinjavascript.com/pull/172

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:d0b87a24-22aa-6d15-a0e6-3b6ec8afa805
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC22C:263D08:523728:6E4E0D:697BEA13
html-safe-nonce8847d6528b6ff9cdaa1a0e26d396c87eb5cce802e95b0d2886b2385dde2f4883
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDMjJDOjI2M0QwODo1MjM3Mjg6NkU0RTBEOjY5N0JFQTEzIiwidmlzaXRvcl9pZCI6IjQ1OTgzNTAwNDc5NTg3ODg2MjciLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacc86b6eb013609c3bbdfd7e8ecaa0fcdb6b7c8137dca4429c48b8e95107734764
hovercard-subject-tagpull_request:2038416129
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/austinjavascript/austinjavascript.com/pull/172/files
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps ws, socket.io-client and socket.io. These dependencies needed to be updated together. Updates ws from 8.2.3 to 8.17.1 Release notes Sourced from ws's releases. 8.17.1 Bug fixes Fixed a...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None11e496cbe5d2a0371113a9b3a27479478e7142b71385ee8295d2fc71e856f899
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/austinjavascript/austinjavascript.com git https://github.com/austinjavascript/austinjavascript.com.git
octolytics-dimension-user_id12473794
octolytics-dimension-user_loginaustinjavascript
octolytics-dimension-repository_id35726990
octolytics-dimension-repository_nwoaustinjavascript/austinjavascript.com
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id35726990
octolytics-dimension-repository_network_root_nwoaustinjavascript/austinjavascript.com
turbo-body-classeslogged-out env-production page-responsive
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release0e8a25656ebf36ff0bc778937941513a5c7c58ee
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/changes#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Faustinjavascript%2Faustinjavascript.com%2Fpull%2F172%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Faustinjavascript%2Faustinjavascript.com%2Fpull%2F172%2Ffiles
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=austinjavascript%2Faustinjavascript.com
Reloadhttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/changes
Reloadhttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/changes
Reloadhttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/changes
austinjavascript https://patch-diff.githubusercontent.com/austinjavascript
austinjavascript.comhttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Faustinjavascript%2Faustinjavascript.com
Fork 15 https://patch-diff.githubusercontent.com/login?return_to=%2Faustinjavascript%2Faustinjavascript.com
Star 14 https://patch-diff.githubusercontent.com/login?return_to=%2Faustinjavascript%2Faustinjavascript.com
Code https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com
Issues 4 https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/issues
Pull requests 13 https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pulls
Actions https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/actions
Projects 0 https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/projects
Security 0 https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/security
Insights https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pulse
Code https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com
Issues https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/issues
Pull requests https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pulls
Actions https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/actions
Projects https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/projects
Security https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/security
Insights https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2Faustinjavascript%2Faustinjavascript.com%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2Faustinjavascript%2Faustinjavascript.com%2Fissues%2Fnew%2Fchoose
dependabothttps://patch-diff.githubusercontent.com/apps/dependabot
masterhttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/tree/master
dependabot/npm_and_yarn/multi-04f04fdf5ehttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/tree/dependabot/npm_and_yarn/multi-04f04fdf5e
Conversation 0 https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172
Commits 1 https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/commits
Checks 0 https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/checks
Files changed https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/files
Please reload this pagehttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/changes
Bump ws, socket.io-client and socket.io https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/changes#top
Show all changes 1 commit https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/files
0ae398f Bump ws, socket.io-client and socket.io dependabot[bot] Aug 26, 2024 https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/commits/0ae398fac4777c9ad9f1b4f213586fa7b020e7ed
Clear filters https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/files
Please reload this pagehttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/changes
Please reload this pagehttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/changes
package-lock.jsonhttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/changes#diff-053150b640a7ce75eff69d1a22cae7f0f94ad64ce9a855db544dda0929316519
View file https://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/blob/0ae398fac4777c9ad9f1b4f213586fa7b020e7ed/package-lock.json
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://patch-diff.githubusercontent.com/austinjavascript/austinjavascript.com/pull/172/changes
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.