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

Update playwright monorepo to ^1.40.1 #66

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 11, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.33.0 -> ^1.40.1 age adoption passing confidence
playwright (source) ^1.33.0 -> ^1.40.1 age adoption passing confidence

Test plan: CI should pass with updated dependencies. No review required: this is an automated dependency update PR.


Release Notes

microsoft/playwright (@​playwright/test)

v1.40.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/28319 - [REGRESSION]: Version 1.40.0 Produces corrupted traceshttps://github.com/microsoft/playwright/issues/283711 - [BUG] The color of the 'ok' text did not change to green in the vs code test results sectiohttps://github.com/microsoft/playwright/issues/2832121 - [BUG] Ambiguous test outcome and status for serial mohttps://github.com/microsoft/playwright/issues/28362362 - [BUG] Merging blobs ends up in Error: Cannot create a string longer than 0x1fffffe8 characthttps://github.com/microsoft/playwright/pull/282398239 - fix: collect all errors in removeFolders

Browser Versions
  • Chromium 120.0.6099.28
  • Mozilla Firefox 119.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 119
  • Microsoft Edge 119

v1.40.0

Compare Source

Test Generator Update

Playwright Test Generator

New tools to generate assertions:

Here is an example of a generated test with assertions:

import { test, expect } from '@​playwright/test';

test('test', async ({ page }) => {
  await page.goto('https://playwright.dev/');
  await page.getByRole('link', { name: 'Get started' }).click();
  await expect(page.getByLabel('Breadcrumbs').getByRole('list')).toContainText('Installation');
  await expect(page.getByLabel('Search')).toBeVisible();
  await page.getByLabel('Search').click();
  await page.getByPlaceholder('Search docs').fill('locator');
  await expect(page.getByPlaceholder('Search docs')).toHaveValue('locator');
});

New APIs

Other Changes

Browser Versions

  • Chromium 120.0.6099.28
  • Mozilla Firefox 119.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 119
  • Microsoft Edge 119

v1.39.0

Compare Source

Add custom matchers to your expect

You can extend Playwright assertions by providing custom matchers. These matchers will be available on the expect object.

import { expect as baseExpect } from '@​playwright/test';
export const expect = baseExpect.extend({
  async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
    // ... see documentation for how to write matchers.
  },
});

test('pass', async ({ page }) => {
  await expect(page.getByTestId('cart')).toHaveAmount(5);
});

See the documentation for a full example.

Merge test fixtures

You can now merge test fixtures from multiple files or modules:

import { mergeTests } from '@​playwright/test';
import { test as dbTest } from 'database-test-utils';
import { test as a11yTest } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);
import { test } from './fixtures';

test('passes', async ({ database, page, a11y }) => {
  // use database and a11y fixtures.
});

Merge custom expect matchers

You can now merge custom expect matchers from multiple files or modules:

import { mergeTests, mergeExpects } from '@​playwright/test';
import { test as dbTest, expect as dbExpect } from 'database-test-utils';
import { test as a11yTest, expect as a11yExpect } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);
export const expect = mergeExpects(dbExpect, a11yExpect);
import { test, expect } from './fixtures';

test('passes', async ({ page, database }) => {
  await expect(database).toHaveDatabaseUser('admin');
  await expect(page).toPassA11yAudit();
});

Hide implementation details: box test steps

You can mark a test.step() as "boxed" so that errors inside it point to the step call site.

async function login(page) {
  await test.step('login', async () => {
    // ...
  }, { box: true });  // Note the "box" option here.
}
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
  ... error details omitted ...

  14 |   await page.goto('https://github.com/login');
> 15 |   await login(page);
     |         ^
  16 | });

See test.step() documentation for a full example.

New APIs

Browser Versions

  • Chromium 119.0.6045.9
  • Mozilla Firefox 118.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 118
  • Microsoft Edge 118

v1.38.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/27071 - expect(value).toMatchSnapshot() deprecation announcement on V1.38
https://github.com/microsoft/playwright/issues/27072 - [BUG] PWT trace viewer fails to load trace and throws TypeErrorhttps://github.com/microsoft/playwright/issues/270733 - [BUG] RangeError: Invalid time valuhttps://github.com/microsoft/playwright/issues/2708787 - [REGRESSION]: npx playwright test --list prints all tests twihttps://github.com/microsoft/playwright/issues/27113113 - [REGRESSION]: No longer able to extend PlaywrightTest.Matchers type for locators and pahttps://github.com/microsoft/playwright/issues/271447144 - [BUG]can not display thttps://github.com/microsoft/playwright/issues/2716327163 - [REGRESSION] Single Quote Wrongly Escaped by Locator When Using Unicodehttps://github.com/microsoft/playwright/issues/27181/27181 - [BUG] evaluate serializing fails at 1.38

Browser Versions
  • Chromium 117.0.5938.62
  • Mozilla Firefox 117.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 116
  • Microsoft Edge 116

v1.38.0

Compare Source

UI Mode Updates

Playwright UI Mode

  1. Zoom into time range.
  2. Network panel redesign.

New APIs

  • [browserContext.on('weberror')][browserContext.on('weberror')]
  • [locator.pressSequentially()][locator.pressSequentially()]
  • The [reporter.onEnd()][reporter.onEnd()] now reports startTime and total run duration.

Deprecations

  • The following methods were deprecated: [page.type()][page.type()], [frame.type()][frame.type()], [locator.type()][locator.type()] and [elementHandle.type()][elementHandle.type()].
    Please use [locator.fill()][locator.fill()] instead which is much faster. Use [locator.pressSequentially()][locator.pressSequentially()] only if there is a
    special keyboard handling on the page, and you need to press keys one-by-one.

Breaking Changes: Playwright no longer downloads browsers automatically

[!NOTE]
If you are using @playwright/test package, this change does not affect you.

Playwright recommends to use @playwright/test package and download browsers via npx playwright install command. If you are following this recommendation, nothing has changed for you.

However, up to v1.38, installing the playwright package instead of @playwright/test did automatically download browsers. This is no longer the case, and we recommend to explicitly download browsers via npx playwright install command.

v1.37 and earlier

playwright package was downloading browsers during npm install, while @playwright/test was not.

v1.38 and later

playwright and @playwright/test packages do not download browsers during npm install.

Recommended migration

Run npx playwright install to download browsers after npm install. For example, in your CI configuration:

- run: npm ci
- run: npx playwright install --with-deps

Alternative migration option - not recommended

Add @playwright/browser-chromium, @playwright/browser-firefox and @playwright/browser-webkit as a dependency. These packages download respective browsers during npm install. Make sure you keep the version of all playwright packages in sync:

// package.json
{
  "devDependencies": {
    "playwright": "1.38.0",
    "@​playwright/browser-chromium": "1.38.0",
    "@​playwright/browser-firefox": "1.38.0",
    "@​playwright/browser-webkit": "1.38.0"
  }
}
Browser Versions
  • Chromium 117.0.5938.62
  • Mozilla Firefox 117.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 116
  • Microsoft Edge 116

v1.37.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/26496 - [REGRESSION] webServer stdout is always getting printedhttps://github.com/microsoft/playwright/issues/264922 - [REGRESSION] test.only with project dependency is not working

Browser Versions

  • Chromium 116.0.5845.82
  • Mozilla Firefox 115.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 115
  • Microsoft Edge 115

v1.37.0

Compare Source

Watch the overview: Playwright 1.36 & 1.37

✨ New tool to merge reports

If you run tests on multiple shards, you can now merge all reports in a single HTML report (or any other report)
using the new merge-reports CLI tool.

Using merge-reports tool requires the following steps:

  1. Adding a new "blob" reporter to the config when running on CI:

    export default defineConfig({
      testDir: './tests',
      reporter: process.env.CI ? 'blob' : 'html',
    });

    The "blob" reporter will produce ".zip" files that contain all the information
    about the test run.

  2. Copying all "blob" reports in a single shared location and running npx playwright merge-reports:

    npx playwright merge-reports --reporter html ./all-blob-reports

Read more in our documentation.

📚 Debian 12 Bookworm Support

Playwright now supports Debian 12 Bookworm on both x86_64 and arm64 for Chromium, Firefox and WebKit.
Let us know if you encounter any issues!

Linux support looks like this:

Ubuntu 20.04 Ubuntu 22.04 Debian 11 Debian 12
Chromium
WebKit
Firefox

🌈 UI Mode Updates

  • UI Mode now respects project dependencies. You can control which dependencies to respect by checking/unchecking them in a projects list.
  • Console logs from the test are now displayed in the Console tab.

Browser Versions

  • Chromium 116.0.5845.82
  • Mozilla Firefox 115.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 115
  • Microsoft Edge 115

v1.36.2: 1.36.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/24316 - [REGRESSION] Character classes are not working in globs in 1.36

Browser Versions
  • Chromium 115.0.5790.75
  • Mozilla Firefox 115.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 114
  • Microsoft Edge 114

v1.36.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/24184 - [REGRESSION]: Snapshot name contains some random string after test name when tests are run in container

Browser Versions
  • Chromium 115.0.5790.75
  • Mozilla Firefox 115.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 114
  • Microsoft Edge 114

v1.36.0

Compare Source

Watch the overview: Playwright 1.36 & 1.37

Highlights

🏝️ Summer maintenance release.

Browser Versions
  • Chromium 115.0.5790.75
  • Mozilla Firefox 115.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 114
  • Microsoft Edge 114

v1.35.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/23622 - [Docs] Provide a description how to correctly use expect.configure with poll parameterhttps://github.com/microsoft/playwright/issues/236666 - [BUG] Live Trace does not work with Codespacehttps://github.com/microsoft/playwright/issues/2369393 - [BUG] attachment steps are not hidden inside expect.toHaveScreenshot()

Browser Versions
  • Chromium 115.0.5790.13
  • Mozilla Firefox 113.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 114
  • Microsoft Edge 114

v1.35.0

Compare Source

Playwright v1.35 updates

Highlights
  • UI mode is now available in VSCode Playwright extension via a new "Show trace viewer" button:

    Playwright UI Mode

  • UI mode and trace viewer mark network requests handled with page.route() and browserContext.route() handlers, as well as those issued via the API testing:

    Trace Viewer

  • New option maskColor for methods page.screenshot(), locator.screenshot(), expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot() to change default masking color:

    await page.goto('https://playwright.dev');
    await expect(page).toHaveScreenshot({
      mask: [page.locator('img')],
      maskColor: '#​00FF00', // green
    });
  • New uninstall CLI command to uninstall browser binaries:

    $ npx playwright uninstall # remove browsers installed by this installation
    $ npx playwright uninstall --all # remove all ever-install Playwright browsers
  • Both UI mode and trace viewer now could be opened in a browser tab:

    $ npx playwright test --ui-port 0 # open UI mode in a tab on a random port
    $ npx playwright show-trace --port 0 # open trace viewer in tab on a random port
⚠️ Breaking changes
  • playwright-core binary got renamed from playwright to playwright-core. So if you use playwright-core CLI, make sure to update the name:

    $ npx playwright-core install # the new way to install browsers when using playwright-core

    This change does not affect @playwright/test and playwright package users.

Browser Versions
  • Chromium 115.0.5790.13
  • Mozilla Firefox 113.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 114
  • Microsoft Edge 114

v1.34.3

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/23228 - [BUG] Getting "Please install @​playwright/test package..." after upgrading from 1.34.0 to 1.34.1

Browser Versions

  • Chromium 114.0.5735.26
  • Mozilla Firefox 113.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 113
  • Microsoft Edge 113

v1.34.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/23225 - [BUG] VSCode Extension broken with Playwright 1.34.1

Browser Versions

  • Chromium 114.0.5735.26
  • Mozilla Firefox 113.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 113
  • Microsoft Edge 113

v1.34.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/23186 - [BUG] Container image for v1.34.0 missing library for webkithttps://github.com/microsoft/playwright/issues/232066 - [BUG] Unable to install supported browsers for v1.34.0 from playwright-corhttps://github.com/microsoft/playwright/issues/2320707 - [BUG] importing ES Module JSX component is broken since 1.34

Browser Versions

  • Chromium 114.0.5735.26
  • Mozilla Firefox 113.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 113
  • Microsoft Edge 113

v1.34.0

Compare Source

Playwright v1.33 & v1.34 updates

Highlights
  • UI Mode now shows steps, fixtures and attachments:

  • New property testProject.teardown to specify a project that needs to run after this
    and all dependent projects have finished. Teardown is useful to cleanup any resources acquired by this project.

    A common pattern would be a setup dependency with a corresponding teardown:

    // playwright.config.ts
    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      projects: [
        {
          name: 'setup',
          testMatch: /global.setup\.ts/,
          teardown: 'teardown',
        },
        {
          name: 'teardown',
          testMatch: /global.teardown\.ts/,
        },
        {
          name: 'chromium',
          use: devices['Desktop Chrome'],
          dependencies: ['setup'],
        },
        {
          name: 'firefox',
          use: devices['Desktop Firefox'],
          dependencies: ['setup'],
        },
        {
          name: 'webkit',
          use: devices['Desktop Safari'],
          dependencies: ['setup'],
        },
      ],
    });
  • New method expect.configure to create pre-configured expect instance with its own defaults such as timeout and soft.

    const slowExpect = expect.configure({ timeout: 10000 });
    await slowExpect(locator).toHaveText('Submit');
    
    // Always do soft assertions.
    const softExpect = expect.configure({ soft: true });
  • New options stderr and stdout in testConfig.webServer to configure output handling:

    // playwright.config.ts
    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      // Run your local dev server before starting the tests
      webServer: {
        command: 'npm run start',
        url: 'http://127.0.0.1:3000',
        reuseExistingServer: !process.env.CI,
        stdout: 'pipe',
        stderr: 'pipe',
      },
    });
  • New locator.and() to create a locator that matches both locators.

    const button = page.getByRole('button').and(page.getByTitle('Subscribe'));
  • New events browserContext.on('console') and browserContext.on('dialog') to subscribe to any dialogs
    and console messages from any page from the given browser context. Use the new methods consoleMessage.page()
    and dialog.page() to pin-point event source.

⚠️ Breaking changes
  • npx playwright test no longer works if you install both playwright and @playwright/test. There's no need
    to install both, since you can always import browser automation APIs from @playwright/test directly:

    // automation.ts
    import { chromium, firefox, webkit } from '@​playwright/test';
    /* ... */
  • Node.js 14 is no longer supported since it reached its end-of-life on April 30, 2023.

Browser Versions
  • Chromium 114.0.5735.26
  • Mozilla Firefox 113.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 113
  • Microsoft Edge 113

Configuration

📅 Schedule: Branch creation - "on the 1st through 7th day of the month" in timezone America/Los_Angeles, 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 Mend Renovate. View repository job log here.

@renovate renovate bot changed the title Update playwright monorepo to ^1.35.1 Update playwright monorepo to ^1.36.0 Jul 11, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from d2041d1 to 2a89e16 Compare July 11, 2023 17:06
@renovate renovate bot changed the title Update playwright monorepo to ^1.36.0 chore(deps): update playwright monorepo to ^1.36.0 Jul 13, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.36.0 chore(deps): update playwright monorepo to ^1.36.1 Jul 14, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from b6e9344 to 5dcc67d Compare July 16, 2023 15:35
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.36.1 Update playwright monorepo to ^1.36.1 Jul 20, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.36.1 chore(deps): update playwright monorepo to ^1.36.1 Jul 20, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.36.1 Update playwright monorepo to ^1.36.1 Jul 21, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.36.1 Update playwright monorepo to ^1.36.2 Jul 25, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 2939fbd to eaaea23 Compare July 27, 2023 09:06
@renovate renovate bot changed the title Update playwright monorepo to ^1.36.2 chore(deps): update playwright monorepo to ^1.36.2 Jul 28, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from eaaea23 to 0e791a8 Compare July 28, 2023 03:06
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.36.2 Update playwright monorepo to ^1.36.2 Jul 28, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 0e791a8 to 2507746 Compare August 1, 2023 04:12
@renovate renovate bot changed the title Update playwright monorepo to ^1.36.2 chore(deps): update playwright monorepo to ^1.36.2 Aug 3, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.36.2 Update playwright monorepo to ^1.36.2 Aug 7, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.36.2 Update playwright monorepo to ^1.37.0 Aug 10, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 3b72521 to 7c7c981 Compare August 14, 2023 02:03
@renovate renovate bot changed the title Update playwright monorepo to ^1.37.0 Update playwright monorepo to ^1.37.1 Aug 17, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 7c7c981 to 5865646 Compare August 17, 2023 22:21
@renovate renovate bot changed the title Update playwright monorepo to ^1.37.1 chore(deps): update playwright monorepo to ^1.37.1 Aug 21, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.37.1 Update playwright monorepo to ^1.37.1 Aug 21, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.37.1 chore(deps): update playwright monorepo to ^1.37.1 Aug 21, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.37.1 Update playwright monorepo to ^1.37.1 Aug 25, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.37.1 chore(deps): update playwright monorepo to ^1.37.1 Aug 25, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.0 chore(deps): update playwright monorepo to ^1.40.0 Nov 22, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.0 Update playwright monorepo to ^1.40.0 Nov 22, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.0 chore(deps): update playwright monorepo to ^1.40.0 Nov 22, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.0 Update playwright monorepo to ^1.40.0 Nov 24, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.0 chore(deps): update playwright monorepo to ^1.40.0 Nov 28, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.0 Update playwright monorepo to ^1.40.0 Nov 28, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 69acd0e to 91035de Compare November 28, 2023 21:39
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.0 Update playwright monorepo to ^1.40.1 Nov 28, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.1 chore(deps): update playwright monorepo to ^1.40.1 Nov 28, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.1 Update playwright monorepo to ^1.40.1 Nov 29, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.1 chore(deps): update playwright monorepo to ^1.40.1 Nov 29, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.1 Update playwright monorepo to ^1.40.1 Nov 30, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.1 chore(deps): update playwright monorepo to ^1.40.1 Dec 5, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.1 Update playwright monorepo to ^1.40.1 Dec 5, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.1 chore(deps): update playwright monorepo to ^1.40.1 Dec 5, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.1 Update playwright monorepo to ^1.40.1 Dec 6, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.1 chore(deps): update playwright monorepo to ^1.40.1 Dec 6, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.1 Update playwright monorepo to ^1.40.1 Dec 6, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.1 chore(deps): update playwright monorepo to ^1.40.1 Dec 6, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.1 Update playwright monorepo to ^1.40.1 Dec 6, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.1 chore(deps): update playwright monorepo to ^1.40.1 Dec 6, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.1 Update playwright monorepo to ^1.40.1 Dec 7, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.1 chore(deps): update playwright monorepo to ^1.40.1 Dec 7, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.1 Update playwright monorepo to ^1.40.1 Dec 7, 2023
@renovate renovate bot changed the title Update playwright monorepo to ^1.40.1 chore(deps): update playwright monorepo to ^1.40.1 Dec 7, 2023
@renovate renovate bot changed the title chore(deps): update playwright monorepo to ^1.40.1 Update playwright monorepo to ^1.40.1 Dec 8, 2023
Copy link
Contributor Author

renovate bot commented Dec 21, 2023

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (^1.40.1). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/playwright-monorepo branch December 21, 2023 11:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant