Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ws, @wdio/appium-service, @wdio/cli, @wdio/local-runner, @wdio/sauce-service and @wdio/shared-store-service #361

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 28, 2025

Bumps ws to 8.18.0 and updates ancestor dependencies ws, @wdio/appium-service, @wdio/cli, @wdio/local-runner, @wdio/sauce-service and @wdio/shared-store-service. These dependencies need to be updated together.

Updates ws from 8.16.0 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 &lt; 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.0
  • 59b9629 [feature] Add support for Blob (#2229)
  • 0d1b5e6 [security] Use more descriptive text for 2017 vulnerability link
  • 15f11a0 [security] Add new DoS vulnerability to SECURITY.md
  • 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
  • Additional commits viewable in compare view

Updates @wdio/appium-service from 8.43.0 to 9.12.2

Release notes

Sourced from @​wdio/appium-service's releases.

v9.12.2 (2025-03-27)

🚀 New Feature

  • webdriver
    • #14304 feat(webdriver): support WebSocket options at the BiDi connection (@​mato533)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 13

v9.12.1 (2025-03-20)

... (truncated)

Changelog

Sourced from @​wdio/appium-service's changelog.

v9.12.2 (2025-03-27)

🚀 New Feature

  • webdriver
    • #14304 feat(webdriver): support WebSocket options at the BiDi connection (@​mato533)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 13

v9.12.1 (2025-03-20)

... (truncated)

Commits

Updates @wdio/cli from 8.43.0 to 9.12.2

Release notes

Sourced from @​wdio/cli's releases.

v9.12.2 (2025-03-27)

🚀 New Feature

  • webdriver
    • #14304 feat(webdriver): support WebSocket options at the BiDi connection (@​mato533)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 13

v9.12.1 (2025-03-20)

... (truncated)

Changelog

Sourced from @​wdio/cli's changelog.

v9.12.2 (2025-03-27)

🚀 New Feature

  • webdriver
    • #14304 feat(webdriver): support WebSocket options at the BiDi connection (@​mato533)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 13

v9.12.1 (2025-03-20)

... (truncated)

Commits

Updates @wdio/local-runner from 8.43.0 to 9.12.2

Release notes

Sourced from @​wdio/local-runner's releases.

v9.12.2 (2025-03-27)

🚀 New Feature

  • webdriver
    • #14304 feat(webdriver): support WebSocket options at the BiDi connection (@​mato533)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 13

v9.12.1 (2025-03-20)

... (truncated)

Changelog

Sourced from @​wdio/local-runner's changelog.

v9.12.2 (2025-03-27)

🚀 New Feature

  • webdriver
    • #14304 feat(webdriver): support WebSocket options at the BiDi connection (@​mato533)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 13

v9.12.1 (2025-03-20)

... (truncated)

Commits

Updates @wdio/sauce-service from 8.43.0 to 9.12.2

Release notes

Sourced from @​wdio/sauce-service's releases.

v9.12.2 (2025-03-27)

🚀 New Feature

  • webdriver
    • #14304 feat(webdriver): support WebSocket options at the BiDi connection (@​mato533)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 13

v9.12.1 (2025-03-20)

... (truncated)

Changelog

Sourced from @​wdio/sauce-service's changelog.

v9.12.2 (2025-03-27)

🚀 New Feature

  • webdriver
    • #14304 feat(webdriver): support WebSocket options at the BiDi connection (@​mato533)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 13

v9.12.1 (2025-03-20)

... (truncated)

Commits

Updates @wdio/shared-store-service from 8.43.0 to 9.12.2

Release notes

Sourced from @​wdio/shared-store-service's releases.

v9.12.2 (2025-03-27)

🚀 New Feature

  • webdriver
    • #14304 feat(webdriver): support WebSocket options at the BiDi connection (@​mato533)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 13

v9.12.1 (2025-03-20)

... (truncated)

Changelog

Sourced from @​wdio/shared-store-service's changelog.

v9.12.2 (2025-03-27)

🚀 New Feature

  • webdriver
    • #14304 feat(webdriver): support WebSocket options at the BiDi connection (@​mato533)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 13

v9.12.1 (2025-03-20)

... (truncated)

Commits
  • dc30cc8 v9.12....

    Description has been truncated

…auce-service and @wdio/shared-store-service

Bumps [ws](https://github.com/websockets/ws) to 8.18.0 and updates ancestor dependencies [ws](https://github.com/websockets/ws), [@wdio/appium-service](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-appium-service), [@wdio/cli](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-cli), [@wdio/local-runner](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-local-runner), [@wdio/sauce-service](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-sauce-service) and [@wdio/shared-store-service](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-shared-store-service). These dependencies need to be updated together.


Updates `ws` from 8.16.0 to 8.18.0
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.16.0...8.18.0)

Updates `@wdio/appium-service` from 8.43.0 to 9.12.2
- [Release notes](https://github.com/webdriverio/webdriverio/releases)
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.12.2/packages/wdio-appium-service)

Updates `@wdio/cli` from 8.43.0 to 9.12.2
- [Release notes](https://github.com/webdriverio/webdriverio/releases)
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.12.2/packages/wdio-cli)

Updates `@wdio/local-runner` from 8.43.0 to 9.12.2
- [Release notes](https://github.com/webdriverio/webdriverio/releases)
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.12.2/packages/wdio-local-runner)

Updates `@wdio/sauce-service` from 8.43.0 to 9.12.2
- [Release notes](https://github.com/webdriverio/webdriverio/releases)
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.12.2/packages/wdio-sauce-service)

Updates `@wdio/shared-store-service` from 8.43.0 to 9.12.2
- [Release notes](https://github.com/webdriverio/webdriverio/releases)
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.12.2/packages/wdio-shared-store-service)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: indirect
- dependency-name: "@wdio/appium-service"
  dependency-type: direct:development
- dependency-name: "@wdio/cli"
  dependency-type: direct:development
- dependency-name: "@wdio/local-runner"
  dependency-type: direct:development
- dependency-name: "@wdio/sauce-service"
  dependency-type: direct:development
- dependency-name: "@wdio/shared-store-service"
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants