Skip to content

chore(deps): update patch tuesday (playwright) to v1.57.0#48

Open
simonknittel wants to merge 1 commit intomainfrom
renovate-self-hosted/patch-tuesday-(playwright)
Open

chore(deps): update patch tuesday (playwright) to v1.57.0#48
simonknittel wants to merge 1 commit intomainfrom
renovate-self-hosted/patch-tuesday-(playwright)

Conversation

@simonknittel
Copy link
Owner

@simonknittel simonknittel commented Dec 10, 2024

This PR contains the following updates:

Package Type Update Change
@playwright/test (source) devDependencies minor 1.49.0 -> 1.57.0
mcr.microsoft.com/playwright image minor v1.49.0-noble -> v1.57.0-noble
mcr.microsoft.com/playwright container minor v1.49.0-noble -> v1.57.0-noble

Release Notes

microsoft/playwright (@​playwright/test)

v1.57.0

Compare Source

Speedboard

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

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.

new and old logo

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 '@&#8203;playwright/test';

test.use({ baseUrl: `http://localhost:${process.env.MY_SERVER_PORT ?? 3000}` });

test('homepage', async ({ page }) => {
  await page.goto('/');
});

This is not just useful for capturing varying ports of dev servers. You can also use it to wait for readiness of a service that doesn't expose an HTTP readiness check, but instead prints a readiness message to stdout or stderr.

Breaking Change

After 3 years of being deprecated, we removed Page#accessibility from our API. Please use other libraries such as Axe if you need to test page accessibility. See our Node.js guide for integration with Axe.

New APIs

  • New property testConfig.tag adds a tag to all tests in this run. This is useful when using merge-reports.
  • worker.on('console') event is emitted when JavaScript within the worker calls one of console API methods, e.g. console.log or console.dir. worker.waitForEvent() can be used to wait for it.
  • locator.description() returns locator description previously set with locator.describe(), and Locator.toString() now uses the description when available.
  • New option steps in locator.click() and locator.dragTo() that configures the number of mousemove events emitted while moving the mouse pointer to the target element.
  • Network requests issued by Service Workers are now reported and can be routed through the BrowserContext, only in Chromium. You can opt out using the PLAYWRIGHT_DISABLE_SERVICE_WORKER_NETWORK environment variable.
  • Console messages from Service Workers are dispatched through worker.on('console'). You can opt out of this using the PLAYWRIGHT_DISABLE_SERVICE_WORKER_CONSOLE environment variable.

Browser Versions

  • Chromium 143.0.7499.4
  • Mozilla Firefox 144.0.2
  • WebKit 26.0

v1.56.1

Compare Source

Highlights

#​37871 chore: allow local-network-access permission in chromium
#​37891 fix(agents): remove workspaceFolder ref from vscode mcp
#​37759 chore: rename agents to test agents
#​37757 chore(mcp): fallback to cwd when resolving test config

Browser Versions

  • Chromium 141.0.7390.37
  • Mozilla Firefox 142.0.1
  • WebKit 26.0

v1.56.0

Compare Source

Playwright Agents

Introducing Playwright Agents, three custom agent definitions designed to guide LLMs through the core process of building a Playwright test:

  • 🎭 planner explores the app and produces a Markdown test plan
  • 🎭 generator transforms the Markdown plan into the Playwright Test files
  • 🎭 healer executes the test suite and automatically repairs failing tests

Run npx playwright init-agents with your client of choice to generate the latest agent definitions:

### Generate agent files for each agentic loop
### Visual Studio Code
npx playwright init-agents --loop=vscode

### Claude Code
npx playwright init-agents --loop=claude

### opencode
npx playwright init-agents --loop=opencode

[!NOTE]
VS Code v1.105 (currently on the VS Code Insiders channel) is needed for the agentic experience in VS Code. It will become stable shortly, we are a bit ahead of times with this functionality!

Learn more about Playwright Agents

New APIs

UI Mode and HTML Reporter

  • Added option to 'html' reporter to disable the "Copy prompt" button
  • Added option to 'html' reporter and UI Mode to merge files, collapsing test and describe blocks into a single unified list
  • Added option to UI Mode mirroring the --update-snapshots options
  • Added option to UI Mode to run only a single worker at a time

Breaking Changes

Miscellaneous

  • Aria snapshots render and compare input placeholder
  • Added environment variable PLAYWRIGHT_TEST to Playwright worker processes to allow discriminating on testing status

Browser Versions

  • Chromium 141.0.7390.37
  • Mozilla Firefox 142.0.1
  • WebKit 26.0

v1.55.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/37479 - [Bug]: Upgrade Chromium to 140.0.7339.186.https://github.com/microsoft/playwright/issues/371477 - [Regression]: Internal error: step id not foundhttps://github.com/microsoft/playwright/issues/3714646 - [Regression]: HTML reporter displays a broken chip link when there are no projecthttps://github.com/microsoft/playwright/pull/37137137 - Revert "fix(a11y): track inert elements as hiddenhttps://github.com/microsoft/playwright/pull/37532532 - chore: do not use -k option

Browser Versions

  • Chromium 140.0.7339.186
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.55.0

Compare Source

New APIs

  • New Property testStepInfo.titlePath Returns the full title path starting from the test file, including test and step titles.

Codegen

  • Automatic toBeVisible() assertions: Codegen can now generate automatic toBeVisible() assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.

Breaking Changes

  • ⚠️ Dropped support for Chromium extension manifest v2.

Miscellaneous

  • Added support for Debian 13 "Trixie".

Browser Versions

  • Chromium 140.0.7339.16
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.54.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error)https://github.com/microsoft/playwright/issues/368288 - [Regression]: Playwright Codegen keeps spamming with selected optiohttps://github.com/microsoft/playwright/issues/3681010 - [Regression]: Starting Codegen with target language doesn't work anymore

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.54.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/36650 - [Regression]: 1.54.0 breaks downloading browsers when an HTTP(S) proxy is used

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.54.0

Compare Source

Highlights

  • New cookie property partitionKey in browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.

  • New option noSnippets to disable code snippets in the html report.

    import { defineConfig } from '@&#8203;playwright/test';
    
    export default defineConfig({
      reporter: [['html', { noSnippets: true }]]
    });
  • New property location in test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation like test.skip or test.fixme was added.

Command Line

  • New option --user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.

    npx playwright codegen --user-data-dir=./user-data
  • Option -gv has been removed from the npx playwright test command. Use --grep-invert instead.

  • npx playwright open does not open the test recorder anymore. Use npx playwright codegen instead.

Miscellaneous

  • Support for Node.js 16 has been removed.
  • Support for Node.js 18 has been deprecated, and will be removed in the future.

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.53.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/36317 - [Regression]: Merging pre-1.53 blob reports loses attachmentshttps://github.com/microsoft/playwright/pull/363577 - [Regression (Chromium)]: CDP missing trailing slashttps://github.com/microsoft/playwright/issues/3629292 - [Bug (MSEdge)]: Edge fails to launch when using msRelaunchNoCompatLayer

Browser Versions

  • Chromium 138.0.7204.23
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137

v1.53.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/36339 - [Regression]: Click can fail when scrolling requiredhttps://github.com/microsoft/playwright/issues/363077 - [Regression (Chromium)]: Under some scenarios filling a textarea doesn't fill
https://github.com/microsoft/playwright/issues/36294 - [Regression (Firefox)]: setViewportSize times out
https://github.com/microsoft/playwright/pull/36350 - [Fix]: Display HTTP method for fetch trace entries

Browser Versions

  • Chromium 138.0.7204.23
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137

v1.53.0

Compare Source

Trace Viewer and HTML Reporter Updates

  • New Steps in Trace Viewer and HTML reporter: New Trace Viewer Steps

  • New option in 'html' reporter to set the title of a specific test run:

    import { defineConfig } from '@&#8203;playwright/test';
    
    export default defineConfig({
      reporter: [['html', { title: 'Custom test run #&#8203;1028' }]]
    });

Miscellaneous

  • New option kind in testInfo.snapshotPath() controls which snapshot path template is used.

  • New method locator.describe() to describe a locator. Used for trace viewer and reports.

    const button = page.getByTestId('btn-sub').describe('Subscribe button');
    await button.click();
  • npx playwright install --list will now list all installed browsers, versions and locations.

Browser Versions

  • Chromium 138.0.7204.4
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137

v1.52.0

Compare Source

Highlights

  • New method expect(locator).toContainClass() to ergonomically assert individual class names on the element.

    await expect(page.getByRole('listitem', { name: 'Ship v1.52' })).toContainClass('done');
  • Aria Snapshots got two new properties: /children for strict matching and /url for links.

    await expect(locator).toMatchAriaSnapshot(`
      - list
        - /children: equal
        - listitem: Feature A
        - listitem:
          - link "Feature B":
            - /url: "https://playwright.dev"
    `);

Test Runner

  • New property testProject.workers allows to specify the number of concurrent worker processes to use for a test project. The global limit of property testConfig.workers still applies.
  • New testConfig.failOnFlakyTests option to fail the test run if any flaky tests are detected, similarly to --fail-on-flaky-tests. This is useful for CI/CD environments where you want to ensure that all tests are stable before deploying.
  • New property testResult.annotations contains annotations for each test retry.

Miscellaneous

  • New option maxRedirects in apiRequest.newContext() to control the maximum number of redirects.
  • HTML reporter now supports NOT filtering via !@&#8203;my-tag or !my-file.spec.ts or !p:my-project.

Breaking Changes

  • Changes to glob URL patterns in methods like page.route():
    • ? wildcard is not supported any more, it will always match question mark ? character.
    • Ranges/sets [] are not supported anymore. We recommend using regular expressions instead.
  • Method route.continue() does not allow to override the Cookie header anymore. If a Cookie header is provided, it will be ignored, and the cookie will be loaded from the browser's cookie store. To set custom cookies, use browserContext.addCookies().
  • macOS 13 is now deprecated and will no longer receive WebKit updates. Please upgrade to a more recent macOS version to continue benefiting from the latest WebKit improvements.

Browser Versions

  • Chromium 136.0.7103.25
  • Mozilla Firefox 137.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 135
  • Microsoft Edge 135

v1.51.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/35093 - [Regression]: TimeoutOverflowWarning: 2149630.634 does not fit into a 32-bit signed integer
https://github.com/microsoft/playwright/issues/35138 - [Regression]: TypeError: Cannot read properties of undefined (reading 'expectInfo')

Browser Versions

  • Chromium 134.0.6998.35
  • Mozilla Firefox 135.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 133
  • Microsoft Edge 133

v1.51.0

Compare Source

StorageState for indexedDB

  • New option indexedDB for browserContext.storageState() allows to save and restore IndexedDB contents. Useful when your application uses IndexedDB API to store authentication tokens, like Firebase Authentication.

    Here is an example following the authentication guide:

    // tests/auth.setup.ts
    import { test as setup, expect } from '@&#8203;playwright/test';
    import path from 'path';
    
    const authFile = path.join(__dirname, '../playwright/.auth/user.json');
    
    setup('authenticate', async ({ page }) => {
      await page.goto('/');
      // ... perform authentication steps ...
    
      // make sure to save indexedDB
      await page.context().storageState({ path: authFile, indexedDB: true });
    });

Copy prompt

New "Copy prompt" button on errors in the HTML report, trace viewer and UI mode. Click to copy a pre-filled LLM prompt that contains the error message and useful context for fixing the error.

Copy prompt

Filter visible elements

New option visible for locator.filter() allows matching only visible elements.

// example.spec.ts
test('some test', async ({ page }) => {
  // Ignore invisible todo items.
  const todoItems = page.getByTestId('todo-item').filter({ visible: true });
  // Check there are exactly 3 visible ones.
  await expect(todoItems).toHaveCount(3);
});

Git information in HTML report

Set option testConfig.captureGitInfo to capture git information into testConfig.metadata.

// playwright.config.ts
import { defineConfig } from '@&#8203;playwright/test';

export default defineConfig({
  captureGitInfo: { commit: true, diff: true }
});

HTML report will show this information when available:

Git information in the report

Test Step improvements

A new TestStepInfo object is now available in test steps. You can add step attachments or skip the step under some conditions.

test('some test', async ({ page, isMobile }) => {
  // Note the new "step" argument:
  await test.step('here is my step', async step => {
    step.skip(isMobile, 'not relevant on mobile layouts');

    // ...
    await step.attach('my attachment', { body: 'some text' });
    // ...
  });
});

Miscellaneous

Browser Versions

  • Chromium 134.0.6998.35
  • Mozilla Firefox 135.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 133
  • Microsoft Edge 133

v1.50.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/34483 - [Feature]: single aria snapshot for different engines/browsershttps://github.com/microsoft/playwright/issues/344977 - [Bug]: Firefox not handling keepalive: true fetch requesthttps://github.com/microsoft/playwright/issues/3450404 - [Bug]: update snapshots not creating good difhttps://github.com/microsoft/playwright/issues/34507507 - [Bug]: snapshotPathTemplate doesnt work when multiple projehttps://github.com/microsoft/playwright/issues/344624462 - [Bug]: updateSnapshots "changed" throws an error

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

  • New option pathTemplate for toHaveScreenshot and toMatchAriaSnapshot assertions in the testConfig.expect configuration.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.49.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33802 - [Bug]: Codegen's Clear button doesn't work if not recordinghttps://github.com/microsoft/playwright/issues/338066 - [Bug]: playwright hangs while waiting for pending navigationhttps://github.com/microsoft/playwright/issues/3378787 - [Bug]: VSC extension isn't capturing all entered tehttps://github.com/microsoft/playwright/issues/33788788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actihttps://github.com/microsoft/playwright/issues/337723772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attrhttps://github.com/microsoft/playwright/issues/3379133791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snahttps://github.com/microsoft/playwright/issues/33644/33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is nothttps://github.com/microsoft/playwright/issues/33660s/33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions

  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130

Configuration

📅 Schedule: Branch creation - "before 7am on Tuesday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 060959e to 9c84f35 Compare December 17, 2024 06:11
@simonknittel simonknittel changed the title chore(deps): update mcr.microsoft.com/playwright docker tag to v1.49.1 chore(deps): update patch tuesday (playwright) to v1.49.1 Dec 17, 2024
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 9c84f35 to 9ee97fd Compare January 23, 2025 18:10
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.49.1 chore(deps): update patch tuesday (playwright) Jan 23, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 9ee97fd to 77d0965 Compare January 30, 2025 18:10
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.50.0 Jan 30, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 77d0965 to b8fc41f Compare January 31, 2025 18:09
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.50.0 chore(deps): update patch tuesday (playwright) Jan 31, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from b8fc41f to e662eb3 Compare February 7, 2025 18:10
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.50.1 Feb 7, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from e662eb3 to f6da374 Compare March 7, 2025 00:31
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.50.1 chore(deps): update patch tuesday (playwright) Mar 7, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from f6da374 to 677df5b Compare March 13, 2025 18:10
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.51.0 Mar 13, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 677df5b to e459e78 Compare March 17, 2025 18:10
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.51.0 chore(deps): update patch tuesday (playwright) Mar 17, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from e459e78 to 2a26e00 Compare March 24, 2025 18:10
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.51.1 Mar 24, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 2a26e00 to ce62ef6 Compare April 17, 2025 18:11
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.51.1 chore(deps): update patch tuesday (playwright) Apr 17, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from ce62ef6 to 121ae12 Compare April 24, 2025 18:10
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.52.0 Apr 24, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 121ae12 to 11e50ea Compare June 11, 2025 00:36
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.52.0 chore(deps): update patch tuesday (playwright) Jun 11, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 11e50ea to 27f6d08 Compare June 17, 2025 18:11
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.53.0 Jun 17, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 27f6d08 to 149838b Compare June 19, 2025 00:36
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.53.0 chore(deps): update patch tuesday (playwright) Jun 19, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 149838b to beb2521 Compare June 25, 2025 18:11
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.53.1 Jun 25, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch 2 times, most recently from 63a250e to 232a33f Compare July 17, 2025 12:15
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 232a33f to 8f8c9a8 Compare July 18, 2025 18:11
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.54.1 Jul 18, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 8f8c9a8 to 6425404 Compare August 1, 2025 12:15
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.54.1 chore(deps): update patch tuesday (playwright) Aug 1, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 6425404 to f976b53 Compare August 8, 2025 12:15
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.54.2 Aug 8, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from f976b53 to 6a046de Compare August 20, 2025 12:14
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.54.2 chore(deps): update patch tuesday (playwright) Aug 20, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 6a046de to d28527a Compare August 27, 2025 12:14
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.55.0 Aug 27, 2025
@socket-security
Copy link

socket-security bot commented Aug 27, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​playwright/​test@​1.49.0 ⏵ 1.57.010010010099100

View full report

@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from d28527a to d5b8e5d Compare September 23, 2025 12:14
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.55.0 chore(deps): update patch tuesday (playwright) Sep 23, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from d5b8e5d to 458a47a Compare September 30, 2025 12:15
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.55.1 Sep 30, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 458a47a to 59032fe Compare October 6, 2025 18:12
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.55.1 chore(deps): update patch tuesday (playwright) Oct 6, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 59032fe to 1bae3ba Compare October 13, 2025 18:11
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.56.0 Oct 13, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 1bae3ba to b76a23c Compare October 17, 2025 06:12
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.56.0 chore(deps): update patch tuesday (playwright) Oct 17, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from b76a23c to 4635a16 Compare October 24, 2025 06:12
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.56.1 Oct 24, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from 4635a16 to e4bf1c4 Compare November 25, 2025 12:16
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) to v1.56.1 chore(deps): update patch tuesday (playwright) Nov 25, 2025
@simonknittel simonknittel force-pushed the renovate-self-hosted/patch-tuesday-(playwright) branch from e4bf1c4 to e9ebc1e Compare December 2, 2025 12:16
@simonknittel simonknittel changed the title chore(deps): update patch tuesday (playwright) chore(deps): update patch tuesday (playwright) to v1.57.0 Dec 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants