authentik
authentik copied to clipboard
web: bump ws, @wdio/browser-runner and @wdio/cli in /web
Bumps ws to 8.18.0 and updates ancestor dependencies ws, @wdio/browser-runner and @wdio/cli. 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 < 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.059b9629[feature] Add support forBlob(#2229)0d1b5e6[security] Use more descriptive text for 2017 vulnerability link15f11a0[security] Add new DoS vulnerability to SECURITY.md3c56601[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 thehighWaterMarkvariable- Additional commits viewable in compare view
Updates @wdio/browser-runner from 8.40.2 to 9.0.7
Release notes
Sourced from @wdio/browser-runner's releases.
v9.0.7 (2024-08-21)
:bug: Bug Fix
wdio-spec-reporter
- #13435 fix(
@wdio/spec-reporter): recognise appPackage capability in spec reporter (@christian-bromann)webdriver,webdriverio
- #13434 fix(webdriverio): don't have commands rely on browser global (
@christian-bromann)Committers: 1
- Christian Bromann (
@christian-bromann)v9.0.6 (2024-08-21)
:bug: Bug Fix
webdriver
- #13431 fix(webdriver): lowercase browserName when checking whether to opt-in for bidi (
@christian-bromann)webdriver,webdriverio
- #13430 fix(webdriverio): better approach to amend custom component prototype (
@christian-bromann)wdio-utils
- #13426 fix(
@wdio/cli): correctly detect chrome headless shell as chrome #13390 (@BorisOsipov)Committers: 2
- Boris Osipov (
@BorisOsipov)- Christian Bromann (
@christian-bromann)v9.0.5 (2024-08-20)
:bug: Bug Fix
eslint-plugin-wdio,wdio-browser-runner,wdio-cli,wdio-globals,wdio-jasmine-framework,wdio-runner
- #13422 fix(website): update expect-webdriverio to latest (
@christian-bromann)wdio-cli
- #13421 fix(
@wdio/cli): preset type should benull(@christian-bromann)- #13416 fix(webdriverio): issue generating sample project on V9 (#13413) (
@giuseppe-salvatore)wdio-utils,webdriver
- #13417 fix(webdriver): better type check for webSocketUrl capability (
@christian-bromann):nail_care: Polish
webdriver
- #13423 polish(webdriver): throw better error message if 'incognito' is used as chrome arg (
@christian-bromann):memo: Documentation
- #13424 fix(docs): remove docs around intercept assertions in jasmine (
@christian-bromann)Committers: 2
- Christian Bromann (
@christian-bromann)- Giuseppe Salvatore (
@giuseppe-salvatore)v9.0.4 (2024-08-19)
:bug: Bug Fix
... (truncated)
Changelog
Sourced from @wdio/browser-runner's changelog.
v9.0.7 (2024-08-21)
:bug: Bug Fix
wdio-spec-reporter
- #13435 fix(
@wdio/spec-reporter): recognise appPackage capability in spec reporter (@christian-bromann)webdriver,webdriverio
- #13434 fix(webdriverio): don't have commands rely on browser global (
@christian-bromann)Committers: 1
- Christian Bromann (
@christian-bromann)v9.0.6 (2024-08-21)
:bug: Bug Fix
webdriver
- #13431 fix(webdriver): lowercase browserName when checking whether to opt-in for bidi (
@christian-bromann)webdriver,webdriverio
- #13430 fix(webdriverio): better approach to amend custom component prototype (
@christian-bromann)wdio-utils
- #13426 fix(
@wdio/cli): correctly detect chrome headless shell as chrome #13390 (@BorisOsipov)Committers: 2
- Boris Osipov (
@BorisOsipov)- Christian Bromann (
@christian-bromann)v9.0.5 (2024-08-20)
:bug: Bug Fix
eslint-plugin-wdio,wdio-browser-runner,wdio-cli,wdio-globals,wdio-jasmine-framework,wdio-runner
- #13422 fix(website): update expect-webdriverio to latest (
@christian-bromann)wdio-cli
- #13421 fix(
@wdio/cli): preset type should benull(@christian-bromann)- #13416 fix(webdriverio): issue generating sample project on V9 (#13413) (
@giuseppe-salvatore)wdio-utils,webdriver
- #13417 fix(webdriver): better type check for webSocketUrl capability (
@christian-bromann):nail_care: Polish
webdriver
- #13423 polish(webdriver): throw better error message if 'incognito' is used as chrome arg (
@christian-bromann):memo: Documentation
- #13424 fix(docs): remove docs around intercept assertions in jasmine (
@christian-bromann)Committers: 2
- Christian Bromann (
@christian-bromann)- Giuseppe Salvatore (
@giuseppe-salvatore)
... (truncated)
Commits
ce6d35ev9.0.75dff8a8v9.0.65ec4340v9.0.5f83918ffix(website): update expect-webdriverio to latest (#13422)1f3d6f7v9.0.4b84bcf6fix(infra): retry type generation (#13385)660998afix(internal): fix repository.url url2a869e5v9.0.132d2be3fix(webdriverio): don't allow to pass in empty array for startNodes (#13373)9576934v9.0.0- Additional commits viewable in compare view
Updates @wdio/cli from 8.40.2 to 9.0.7
Release notes
Sourced from @wdio/cli's releases.
v9.0.7 (2024-08-21)
:bug: Bug Fix
wdio-spec-reporter
- #13435 fix(
@wdio/spec-reporter): recognise appPackage capability in spec reporter (@christian-bromann)webdriver,webdriverio
- #13434 fix(webdriverio): don't have commands rely on browser global (
@christian-bromann)Committers: 1
- Christian Bromann (
@christian-bromann)v9.0.6 (2024-08-21)
:bug: Bug Fix
webdriver
- #13431 fix(webdriver): lowercase browserName when checking whether to opt-in for bidi (
@christian-bromann)webdriver,webdriverio
- #13430 fix(webdriverio): better approach to amend custom component prototype (
@christian-bromann)wdio-utils
- #13426 fix(
@wdio/cli): correctly detect chrome headless shell as chrome #13390 (@BorisOsipov)Committers: 2
- Boris Osipov (
@BorisOsipov)- Christian Bromann (
@christian-bromann)v9.0.5 (2024-08-20)
:bug: Bug Fix
eslint-plugin-wdio,wdio-browser-runner,wdio-cli,wdio-globals,wdio-jasmine-framework,wdio-runner
- #13422 fix(website): update expect-webdriverio to latest (
@christian-bromann)wdio-cli
- #13421 fix(
@wdio/cli): preset type should benull(@christian-bromann)- #13416 fix(webdriverio): issue generating sample project on V9 (#13413) (
@giuseppe-salvatore)wdio-utils,webdriver
- #13417 fix(webdriver): better type check for webSocketUrl capability (
@christian-bromann):nail_care: Polish
webdriver
- #13423 polish(webdriver): throw better error message if 'incognito' is used as chrome arg (
@christian-bromann):memo: Documentation
- #13424 fix(docs): remove docs around intercept assertions in jasmine (
@christian-bromann)Committers: 2
- Christian Bromann (
@christian-bromann)- Giuseppe Salvatore (
@giuseppe-salvatore)v9.0.4 (2024-08-19)
:bug: Bug Fix
... (truncated)
Changelog
Sourced from @wdio/cli's changelog.
v9.0.7 (2024-08-21)
:bug: Bug Fix
wdio-spec-reporter
- #13435 fix(
@wdio/spec-reporter): recognise appPackage capability in spec reporter (@christian-bromann)webdriver,webdriverio
- #13434 fix(webdriverio): don't have commands rely on browser global (
@christian-bromann)Committers: 1
- Christian Bromann (
@christian-bromann)v9.0.6 (2024-08-21)
:bug: Bug Fix
webdriver
- #13431 fix(webdriver): lowercase browserName when checking whether to opt-in for bidi (
@christian-bromann)webdriver,webdriverio
- #13430 fix(webdriverio): better approach to amend custom component prototype (
@christian-bromann)wdio-utils
- #13426 fix(
@wdio/cli): correctly detect chrome headless shell as chrome #13390 (@BorisOsipov)Committers: 2
- Boris Osipov (
@BorisOsipov)- Christian Bromann (
@christian-bromann)v9.0.5 (2024-08-20)
:bug: Bug Fix
eslint-plugin-wdio,wdio-browser-runner,wdio-cli,wdio-globals,wdio-jasmine-framework,wdio-runner
- #13422 fix(website): update expect-webdriverio to latest (
@christian-bromann)wdio-cli
- #13421 fix(
@wdio/cli): preset type should benull(@christian-bromann)- #13416 fix(webdriverio): issue generating sample project on V9 (#13413) (
@giuseppe-salvatore)wdio-utils,webdriver
- #13417 fix(webdriver): better type check for webSocketUrl capability (
@christian-bromann):nail_care: Polish
webdriver
- #13423 polish(webdriver): throw better error message if 'incognito' is used as chrome arg (
@christian-bromann):memo: Documentation
- #13424 fix(docs): remove docs around intercept assertions in jasmine (
@christian-bromann)Committers: 2
- Christian Bromann (
@christian-bromann)- Giuseppe Salvatore (
@giuseppe-salvatore)
... (truncated)
Commits
ce6d35ev9.0.75dff8a8v9.0.65ec4340v9.0.5f83918ffix(website): update expect-webdriverio to latest (#13422)fa59142fix(@wdio/cli): preset type should benull(#13421)11577f5fix(webdriverio): issue generating sample project on V9 (#13413) (#13416)1f3d6f7v9.0.4660998afix(internal): fix repository.url urle59369cv9.0.306e30dffix(@wdio/cli): fix path for copy templates (#13381)- 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.
Deploy Preview for authentik-storybook ready!
| Name | Link |
|---|---|
| Latest commit | f9b5d219a7567577ee3545c882e121a3e8c98c82 |
| Latest deploy log | https://app.netlify.com/sites/authentik-storybook/deploys/66d83580464b380008025917 |
| Deploy Preview | https://deploy-preview-11121--authentik-storybook.netlify.app |
| Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
Deploy Preview for authentik-docs canceled.
| Name | Link |
|---|---|
| Latest commit | f9b5d219a7567577ee3545c882e121a3e8c98c82 |
| Latest deploy log | https://app.netlify.com/sites/authentik-docs/deploys/66d835809930030008d9f370 |
Superseded by #11227.