Skip to content

web: bump packages in /web#18604

Merged
GirlBossRush merged 4 commits intomainfrom
dependabot/npm_and_yarn/web/playwright-1.57.0
Dec 4, 2025
Merged

web: bump packages in /web#18604
GirlBossRush merged 4 commits intomainfrom
dependabot/npm_and_yarn/web/playwright-1.57.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 4, 2025

Bumps playwright from 1.56.1 to 1.57.0.

Release notes

Sourced from playwright's releases.

v1.57.0

Speedboard

In HTML reporter, there's a new tab we call "Speedboard":

It shows you all your executed tests sorted by slowness, and can help you understand where your test suite is taking longer than expected. Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

Chrome for Testing

Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

If you still see an unexpected behaviour change, please file an issue.

On Arm64 Linux, Playwright continues to use Chromium.

Waiting for webserver output

testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run start',
wait: {
stdout: '/Listening on port (?<my_server_port>\d+)/'
},
},
});

If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

import { test, expect } from '@playwright/test';
test.use({ baseUrl: http://localhost:${process.env.MY_SERVER_PORT ?? 3000} });
test('homepage', async ({ page }) => {
await page.goto('/');
});
</tr></table>

... (truncated)

Commits

Dependabot compatibility score

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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 4, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 4, 2025 13:37
@codecov
Copy link

codecov bot commented Dec 4, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 93.24%. Comparing base (17ef75c) to head (7cdf3bf).
⚠️ Report is 1 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main   #18604   +/-   ##
=======================================
  Coverage   93.23%   93.24%           
=======================================
  Files         933      933           
  Lines       51157    51157           
=======================================
+ Hits        47697    47700    +3     
+ Misses       3460     3457    -3     
Flag Coverage Δ
e2e 44.77% <ø> (+0.01%) ⬆️
integration 22.77% <ø> (+<0.01%) ⬆️
unit 91.45% <ø> (+<0.01%) ⬆️
unit-migrate 91.50% <ø> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@netlify
Copy link

netlify bot commented Dec 4, 2025

Deploy Preview for authentik-storybook canceled.

Name Link
🔨 Latest commit 7cdf3bf
🔍 Latest deploy log https://app.netlify.com/projects/authentik-storybook/deploys/6931d481ecfc0a000888dfb5

@netlify
Copy link

netlify bot commented Dec 4, 2025

Deploy Preview for authentik-integrations ready!

Name Link
🔨 Latest commit 7cdf3bf
🔍 Latest deploy log https://app.netlify.com/projects/authentik-integrations/deploys/6931d481f19aff00089282d3
😎 Deploy Preview https://deploy-preview-18604--authentik-integrations.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Dec 4, 2025

Deploy Preview for authentik-docs ready!

Name Link
🔨 Latest commit 7cdf3bf
🔍 Latest deploy log https://app.netlify.com/projects/authentik-docs/deploys/6931d4811f1ff6000810f963
😎 Deploy Preview https://deploy-preview-18604--authentik-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@GirlBossRush GirlBossRush force-pushed the dependabot/npm_and_yarn/web/playwright-1.57.0 branch from 6193205 to b729d8f Compare December 4, 2025 16:46
@GirlBossRush GirlBossRush changed the title web: bump playwright from 1.56.1 to 1.57.0 in /web web: bump packages in /web Dec 4, 2025
@GirlBossRush
Copy link
Contributor

Pushed up a few fixes which prevented this from building

@github-actions
Copy link
Contributor

github-actions bot commented Dec 4, 2025

authentik PR Installation instructions

Instructions for docker-compose

Add the following block to your .env file:

AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-7cdf3bf0be6276c9ff985bf2b194e8763f695f26
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s

Afterwards, run the upgrade commands from the latest release notes.

Instructions for Kubernetes

Add the following block to your values.yml file:

authentik:
    outposts:
        container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
    image:
        repository: ghcr.io/goauthentik/dev-server
        tag: gh-7cdf3bf0be6276c9ff985bf2b194e8763f695f26

Afterwards, run the upgrade commands from the latest release notes.

dependabot bot and others added 4 commits December 4, 2025 19:35
Bumps [playwright](https://github.com/microsoft/playwright) from 1.56.1 to 1.57.0.
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.1...v1.57.0)

---
updated-dependencies:
- dependency-name: playwright
  dependency-version: 1.57.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@GirlBossRush GirlBossRush force-pushed the dependabot/npm_and_yarn/web/playwright-1.57.0 branch from a0c133d to 7cdf3bf Compare December 4, 2025 18:35
@GirlBossRush GirlBossRush enabled auto-merge (squash) December 4, 2025 19:15
@GirlBossRush GirlBossRush merged commit 6683d99 into main Dec 4, 2025
97 checks passed
@GirlBossRush GirlBossRush deleted the dependabot/npm_and_yarn/web/playwright-1.57.0 branch December 4, 2025 19:15
kensternberg-authentik added a commit that referenced this pull request Dec 11, 2025
* main: (40 commits)
  enterprise/stages/mtls: fix traefik certificate parsing (#18607)
  wed/admin: change s to S in "Stage" (#18632)
  flows: refresh unauthenticated tabs (#18621)
  flows: keep ?next url when using cancel (#18619)
  core, web: update translations (#18620)
  ci: bump actions/setup-node from 6.0.0 to 6.1.0 (#18552)
  core: bump goauthentik/fips-debian from `cf233be` to `a80dbbd` (#18594)
  web: bump @sentry/browser from 10.28.0 to 10.29.0 in /web in the sentry group across 1 directory (#18623)
  website/docs: adds note about ak_create_jwt function (#18614)
  api: fix IPC auth (#18612)
  web: bump mermaid from 11.12.1 to 11.12.2 in /web (#18602)
  web: Codemirror fixes (#18610)
  web: bump packages in /web (#18604)
  website/docs: expressions: fix markdown (#18613)
  website/docs: add missing API sidebar entry (#18586)
  web: bump yaml from 2.8.1 to 2.8.2 in /web (#18605)
  web/elements: update AppIcon story with files change (#18608)
  api: test action decorator (#18583)
  crypto: separate permissions for certificate and private keydownload (#18588)
  core: bump github.com/spf13/cobra from 1.10.1 to 1.10.2 (#18592)
  ...
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant