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/cli, @wdio/local-runner, @wdio/sauce-service, expect-webdriverio and webdriverio in /ui #2748

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 29, 2024

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

Updates ws from 8.13.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/cli from 8.31.0 to 9.1.2

Release notes

Sourced from @​wdio/cli's releases.

v9.1.2 (2024-09-28)

🐛 Bug Fix

💅 Polish

  • wdio-types, webdriver
  • wdio-cli, wdio-sauce-service, wdio-spec-reporter, wdio-types, webdriverio

Committers: 3

v9.1.1 (2024-09-26)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 4

v9.1.0 (2024-09-24)

🚀 New Feature

  • wdio-cucumber-framework
  • wdio-junit-reporter

... (truncated)

Changelog

Sourced from @​wdio/cli's changelog.

v9.1.2 (2024-09-28)

🐛 Bug Fix

💅 Polish

  • wdio-types, webdriver
  • wdio-cli, wdio-sauce-service, wdio-spec-reporter, wdio-types, webdriverio

Committers: 3

v9.1.1 (2024-09-26)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 4

v9.1.0 (2024-09-24)

🚀 New Feature

  • wdio-cucumber-framework

... (truncated)

Commits

Updates @wdio/local-runner from 8.31.0 to 9.1.2

Release notes

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

v9.1.2 (2024-09-28)

🐛 Bug Fix

💅 Polish

  • wdio-types, webdriver
  • wdio-cli, wdio-sauce-service, wdio-spec-reporter, wdio-types, webdriverio

Committers: 3

v9.1.1 (2024-09-26)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 4

v9.1.0 (2024-09-24)

🚀 New Feature

  • wdio-cucumber-framework
  • wdio-junit-reporter

... (truncated)

Changelog

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

v9.1.2 (2024-09-28)

🐛 Bug Fix

💅 Polish

  • wdio-types, webdriver
  • wdio-cli, wdio-sauce-service, wdio-spec-reporter, wdio-types, webdriverio

Committers: 3

v9.1.1 (2024-09-26)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 4

v9.1.0 (2024-09-24)

🚀 New Feature

  • wdio-cucumber-framework

... (truncated)

Commits

Updates @wdio/sauce-service from 8.31.0 to 9.1.2

Release notes

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

v9.1.2 (2024-09-28)

🐛 Bug Fix

💅 Polish

  • wdio-types, webdriver
  • wdio-cli, wdio-sauce-service, wdio-spec-reporter, wdio-types, webdriverio

Committers: 3

v9.1.1 (2024-09-26)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 4

v9.1.0 (2024-09-24)

🚀 New Feature

  • wdio-cucumber-framework
  • wdio-junit-reporter

... (truncated)

Changelog

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

v9.1.2 (2024-09-28)

🐛 Bug Fix

💅 Polish

  • wdio-types, webdriver
  • wdio-cli, wdio-sauce-service, wdio-spec-reporter, wdio-types, webdriverio

Committers: 3

v9.1.1 (2024-09-26)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 4

v9.1.0 (2024-09-24)

🚀 New Feature

  • wdio-cucumber-framework

... (truncated)

Commits

Updates expect-webdriverio from 4.11.2 to 5.0.3

Release notes

Sourced from expect-webdriverio's releases.

Release 5.0.3

  • #1616 Populate missing element items to WebdriverIO.ElementArray when using toBeElementsArrayOfSize (#1665) (ce973c5)
  • build(deps): bump rollup from 4.21.1 to 4.22.4 (#1664) (c0212c4)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.5.0 to 8.6.0 (#1661) (996f4ce)
  • build(deps): bump vite from 5.4.2 to 5.4.6 (#1660) (7981c13)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.4.0 to 8.5.0 (#1655) (f78ddb8)
  • build(deps-dev): bump husky from 9.1.5 to 9.1.6 (#1656) (d974697)
  • build(deps-dev): bump @​types/node from 22.5.4 to 22.5.5 (#1657) (fe6b28b)
  • build(deps-dev): bump typescript from 5.5.4 to 5.6.2 (#1654) (930f453)
  • build(deps): bump @​vitest/snapshot from 2.0.5 to 2.1.1 (#1658) (87c862f)
  • build(deps-dev): bump @​types/jest from 29.5.12 to 29.5.13 (#1659) (0ea193d)
  • build(deps-dev): bump npm-run-all2 from 6.2.2 to 6.2.3 (#1652) (0c3e05e)
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin (#1651) (56ed1d1)
  • build(deps-dev): bump eslint-plugin-import from 2.29.1 to 2.30.0 (#1649) (aa226d2)
  • build(deps-dev): bump webdriverio from 9.0.7 to 9.0.9 (#1648) (98baaa8)
  • build(deps-dev): bump @​types/node from 22.5.2 to 22.5.4 (#1647) (54397c3)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.3.0 to 8.4.0 (#1646) (10640b1)
  • build(deps-dev): bump @​types/node from 22.5.0 to 22.5.2 (#1644) (0464114)

Release 5.0.2

  • fix: update deps (f5cb9b9)
  • fix: update peer deps (5213cf1)
  • docs: update README WebdriverIO peer version reqs (#1643) (1f9999f)
  • build(deps): bump micromatch from 4.0.7 to 4.0.8 (#1642) (18cf0f1)
  • build(deps-dev): bump @​types/node from 22.4.1 to 22.5.0 (#1641) (22c46ab)
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin (#1639) (ec55407)
  • build(deps-dev): bump webdriverio from 9.0.4 to 9.0.7 (#1638) (a71a972)
  • build(deps-dev): bump husky from 9.1.4 to 9.1.5 (#1637) (dda74c5)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.1.0 to 8.2.0 (#1636) (392b937)

Release 5.0.1

  • fix expect import (#1631) (a718bc1)
  • build(deps-dev): bump webdriverio from 9.0.0 to 9.0.4 (#1633) (f3b3ad1)
  • build(deps-dev): bump @​types/node from 20.14.15 to 22.4.1 (#1632) (1f69463)

Release 5.0.0

  • fix: release branch (2f2003b)
  • breaking: WebdriverIO v9 Support (#1590) (a3f5dae)

Release 5.0.0-alpha.2

  • fix peer deps (ff9ed38)

Release 5.0.0-alpha.1

  • update version after failed release (8ca56d0)
  • ci: update release pipeline (822638e)
  • lower treshold as we punted on the body payload coverage (a9da0f3)
  • upgrade WebdriverIO to v9 (9274aca)
  • fixes after rebase (2496122)
  • refactor: delete XXXContaining matchers (#1550) (355f23f)
  • ci: update github actions (4cef579)

... (truncated)

Commits
  • 9dd1064 Release 5.0.3
  • ce973c5 #1616 Populate missing element items to WebdriverIO.ElementArray when using t...
  • c0212c4 build(deps): bump rollup from 4.21.1 to 4.22.4 (#1664)
  • 996f4ce build(deps-dev): bump @​typescript-eslint/parser from 8.5.0 to 8.6.0 (#1661)
  • 7981c13 build(deps): bump vite from 5.4.2 to 5.4.6 (#1660)
  • f78ddb8 build(deps-dev): bump @​typescript-eslint/parser from 8.4.0 to 8.5.0 (#1655)
  • d974697 build(deps-dev): bump husky from 9.1.5 to 9.1.6 (#1656)
  • fe6b28b build(deps-dev): bump @​types/node from 22.5.4 to 22.5.5 (#1657)
  • 930f453 build(deps-dev): bump typescript from 5.5.4 to 5.6.2 (#1654)
  • 87c862f build(deps): bump @​vitest/snapshot from 2.0.5 to 2.1.1 (#1658)
  • Additional commits viewable in compare view

Updates webdriverio from 8.31.0 to 9.1.2

Release notes

Sourced from webdriverio's releases.

v9.1.2 (2024-09-28)

🐛 Bug Fix

💅 Polish

  • wdio-types, webdriver
  • wdio-cli, wdio-sauce-service, wdio-spec-reporter, wdio-types, webdriverio

Committers: 3

v9.1.1 (2024-09-26)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 4

v9.1.0 (2024-09-24)

🚀 New Feature

  • wdio-cucumber-framework
  • wdio-junit-reporter

... (truncated)

Changelog

Sourced from webdriverio's changelog.

v9.1.2 (2024-09-28)

🐛 Bug Fix

💅 Polish

  • wdio-types, webdriver
  • wdio-cli, wdio-sauce-service, wdio-spec-reporter, wdio-types, webdriverio

Committers: 3

v9.1.1 (2024-09-26)

🐛 Bug Fix

💅 Polish

📝 Documentation

Committers: 4

v9.1.0 (2024-09-24)

🚀 New Feature

  • wdio-cucumber-framework

... (truncated)

Commits

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 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 <dependency name> 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.

…ebdriverio and webdriverio

Bumps [ws](https://github.com/websockets/ws) to 8.18.0 and updates ancestor dependencies [ws](https://github.com/websockets/ws), [@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), [expect-webdriverio](https://github.com/webdriverio/expect-webdriverio) and [webdriverio](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/webdriverio). These dependencies need to be updated together.


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

Updates `@wdio/cli` from 8.31.0 to 9.1.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.1.2/packages/wdio-cli)

Updates `@wdio/local-runner` from 8.31.0 to 9.1.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.1.2/packages/wdio-local-runner)

Updates `@wdio/sauce-service` from 8.31.0 to 9.1.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.1.2/packages/wdio-sauce-service)

Updates `expect-webdriverio` from 4.11.2 to 5.0.3
- [Release notes](https://github.com/webdriverio/expect-webdriverio/releases)
- [Commits](webdriverio/expect-webdriverio@v4.11.2...v5.0.3)

Updates `webdriverio` from 8.31.0 to 9.1.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.1.2/packages/webdriverio)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: indirect
- 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: expect-webdriverio
  dependency-type: direct:development
- dependency-name: webdriverio
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 29, 2024
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