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, expect-webdriverio and webdriverio in /ui #2815

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 Nov 29, 2024

Bumps ws to 8.18.0 and updates ancestor dependencies ws, @wdio/cli, @wdio/local-runner, 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.4.1

Release notes

Sourced from @​wdio/cli's releases.

v9.4.1 (2024-11-27)

🐛 Bug Fix

Committers: 1

v9.4.0 (2024-11-26)

🚀 New Feature

🐛 Bug Fix

💅 Polish

Committers: 2

v9.3.1 (2024-11-22)

🚀 New Feature

💅 Polish

Committers: 3

v9.3.0 (2024-11-20)

🚀 New Feature

... (truncated)

Changelog

Sourced from @​wdio/cli's changelog.

v9.4.1 (2024-11-27)

🐛 Bug Fix

Committers: 1

v9.4.0 (2024-11-26)

🚀 New Feature

🐛 Bug Fix

💅 Polish

Committers: 2

v9.3.1 (2024-11-22)

🚀 New Feature

💅 Polish

Committers: 3

v9.3.0 (2024-11-20)

🚀 New Feature

... (truncated)

Commits

Updates @wdio/local-runner from 8.31.0 to 9.4.1

Release notes

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

v9.4.1 (2024-11-27)

🐛 Bug Fix

Committers: 1

v9.4.0 (2024-11-26)

🚀 New Feature

🐛 Bug Fix

💅 Polish

Committers: 2

v9.3.1 (2024-11-22)

🚀 New Feature

💅 Polish

Committers: 3

v9.3.0 (2024-11-20)

🚀 New Feature

... (truncated)

Changelog

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

v9.4.1 (2024-11-27)

🐛 Bug Fix

Committers: 1

v9.4.0 (2024-11-26)

🚀 New Feature

🐛 Bug Fix

💅 Polish

Committers: 2

v9.3.1 (2024-11-22)

🚀 New Feature

💅 Polish

Committers: 3

v9.3.0 (2024-11-20)

🚀 New Feature

... (truncated)

Commits

Updates expect-webdriverio from 4.11.2 to 5.0.5

Release notes

Sourced from expect-webdriverio's releases.

Release 5.0.5

  • fix: unit test (fc7ef75)
  • build(deps-dev): bump eslint from 8.57.1 to 9.15.0 (#1707) (9bedc8d)
  • fix(testing): fix eslint (bf55339)
  • fix(testing): adjust coverage treshold (4e7bb26)
  • chore: upgrade to Eslint v9 (28daf3c)
  • build(deps-dev): bump @​vitest/coverage-v8 from 2.1.4 to 2.1.5 (#1710) (667a8ab)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.13.0 to 8.14.0 (#1712) (9e9d9e0)
  • build(deps-dev): bump webdriverio from 9.2.11 to 9.2.14 (#1711) (c382dc5)
  • build(deps): bump @​vitest/snapshot from 2.1.4 to 2.1.5 (#1709) (f32b7a6)
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin (#1708) (b0a1d4e)

Release 5.0.4

  • Make sure toBeElementsArrayOfSize doesn't delete passed in array (#1706) (a46f01a)
  • build(deps-dev): bump webdriverio from 9.2.1 to 9.2.8 (#1704) (62263e1)
  • build(deps): bump @​vitest/snapshot from 2.1.3 to 2.1.4 (#1703) (69cc3e4)
  • build(deps-dev): bump @​types/node from 22.8.1 to 22.8.7 (#1702) (b429b18)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.11.0 to 8.12.2 (#1701) (4daf840)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.10.0 to 8.11.0 (#1698) (fc4624d)
  • build(deps-dev): bump npm-run-all2 from 6.2.4 to 7.0.1 (#1697) (0a0ae10)
  • build(deps-dev): bump @​types/node from 22.7.7 to 22.8.1 (#1696) (c80e42b)
  • build(deps-dev): bump @​types/jest from 29.5.13 to 29.5.14 (#1693) (9d1f7df)
  • build(deps-dev): bump @​types/node from 22.7.5 to 22.7.7 (#1692) (dccfb49)
  • build(deps): bump @​vitest/snapshot from 2.1.2 to 2.1.3 (#1691) (f481f13)
  • build(deps-dev): bump npm-run-all2 from 6.2.3 to 6.2.4 (#1690) (fb3671d)
  • build(deps-dev): bump release-it from 17.8.2 to 17.10.0 (#1689) (02ed471)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.8.1 to 8.10.0 (#1688) (6c061b2)
  • build(deps-dev): bump release-it from 17.7.0 to 17.8.2 (#1685) (a4d809e)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.8.0 to 8.8.1 (#1684) (c08e59e)
  • build(deps-dev): bump typescript from 5.6.2 to 5.6.3 (#1683) (f9ceb71)
  • build(deps-dev): bump webdriverio from 9.1.2 to 9.2.1 (#1681) (8f2edd2)
  • build(deps-dev): bump @​types/node from 22.7.4 to 22.7.5 (#1680) (6c57581)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.7.0 to 8.8.0 (#1678) (fcba498)
  • build(deps): bump @​vitest/snapshot from 2.1.1 to 2.1.2 (#1677) (cb80fdb)
  • build(deps-dev): bump release-it from 17.6.0 to 17.7.0 (#1676) (5ab9627)
  • build(deps-dev): bump eslint-plugin-import from 2.30.0 to 2.31.0 (#1673) (ac8b52b)
  • build(deps-dev): bump eslint-plugin-unicorn from 55.0.0 to 56.0.0 (#1672) (93f24fc)
  • build(deps-dev): bump @​typescript-eslint/parser from 8.6.0 to 8.7.0 (#1669) (d36ea2a)
  • build(deps-dev): bump webdriverio from 9.0.9 to 9.1.2 (#1668) (b47e1a3)
  • build(deps-dev): bump @​types/node from 22.5.5 to 22.7.4 (#1666) (c4cb5be)

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)

... (truncated)

Commits
  • 47bf440 Release 5.0.5
  • fc7ef75 fix: unit test
  • 9bedc8d build(deps-dev): bump eslint from 8.57.1 to 9.15.0 (#1707)
  • bf55339 fix(testing): fix eslint
  • 4e7bb26 fix(testing): adjust coverage treshold
  • 28daf3c chore: upgrade to Eslint v9
  • 667a8ab build(deps-dev): bump @​vitest/coverage-v8 from 2.1.4 to 2.1.5 (#1710)
  • 9e9d9e0 build(deps-dev): bump @​typescript-eslint/parser from 8.13.0 to 8.14.0 (#1712)
  • c382dc5 build(deps-dev): bump webdriverio from 9.2.11 to 9.2.14 (#1711)
  • f32b7a6 build(deps): bump @​vitest/snapshot from 2.1.4 to 2.1.5 (#1709)
  • Additional commits viewable in compare view

Updates webdriverio from 8.31.0 to 9.4.1

Release notes

Sourced from webdriverio's releases.

v9.4.1 (2024-11-27)

🐛 Bug Fix

Committers: 1

v9.4.0 (2024-11-26)

🚀 New Feature

🐛 Bug Fix

💅 Polish

Committers: 2

v9.3.1 (2024-11-22)

🚀 New Feature

💅 Polish

Committers: 3

v9.3.0 (2024-11-20)

🚀 New Feature

... (truncated)

Changelog

Sourced from webdriverio's changelog.

v9.4.1 (2024-11-27)

🐛 Bug Fix

Committers: 1

v9.4.0 (2024-11-26)

🚀 New Feature

🐛 Bug Fix

💅 Polish

Committers: 2

v9.3.1 (2024-11-22)

🚀 New Feature

💅 Polish

Committers: 3

v9.3.0 (2024-11-20)

🚀 New Feature

... (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.

…verio

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), [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.4.1
- [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.4.1/packages/wdio-cli)

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

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

Updates `webdriverio` from 8.31.0 to 9.4.1
- [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.4.1/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: 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 Nov 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