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

[Snyk] Upgrade playwright-core from 1.40.1 to 1.45.3 #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ramzimalhas
Copy link
Owner

snyk-top-banner

Snyk has created this PR to upgrade playwright-core from 1.40.1 to 1.45.3.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 299 versions ahead of your current version.

  • The recommended version was released on a month ago.

Release notes
Package name: playwright-core
  • 1.45.3 - 2024-07-22

    Highlights

    #31764 - [Bug]: some actions do not appear in the trace file
    microsoft/playwright-java#1617 - [Bug]: Traceviewer not reporting all actions

    Browser Versions

    • Chromium 127.0.6533.5
    • Mozilla Firefox 127.0
    • WebKit 17.4

    This version was also tested against the following stable channels:

    • Google Chrome 126
    • Microsoft Edge 126
  • 1.45.3-beta-1721669341000 - 2024-07-22
  • 1.45.2 - 2024-07-16

    Highlights

    #31613 - [REGRESSION]: Trace is not showing any screenshots nor test name
    #31601 - [REGRESSION]: missing trace for 2nd browser
    #31541 - [REGRESSION]: Failing tests have a trace with no images and with steps missing

    Browser Versions

    • Chromium 127.0.6533.5
    • Mozilla Firefox 127.0
    • WebKit 17.4

    This version was also tested against the following stable channels:

    • Google Chrome 126
    • Microsoft Edge 126
  • 1.45.2-beta-1721667688000 - 2024-07-22
  • 1.45.2-beta-1721667620000 - 2024-07-22
  • 1.45.2-beta-1721126701000 - 2024-07-16
  • 1.45.1 - 2024-07-02

    Highlights

    #31473 - [REGRESSION]: Playwright raises an error ENOENT: no such file or directory, open 'test-results/.playwright-artifacts-0/hash.zip' with Electron
    #31442 - [REGRESSION]: Locators of elements changing from/to hidden have operations hanging when using --disable-web-security
    #31431 - [REGRESSION]: NewTab doesn't work properly with Chrome with --disable-web-security
    #31425 - [REGRESSION]: beforeEach hooks are not skipped when describe condition depends on fixtures
    #31491 - [REGRESSION]: @ playwright/experimental-ct-react doesn't work with VSCode extension and PNPM

    Browser Versions

    • Chromium 127.0.6533.5
    • Mozilla Firefox 127.0
    • WebKit 17.4

    This version was also tested against the following stable channels:

    • Google Chrome 126
    • Microsoft Edge 126
  • 1.45.1-beta-1721056413000 - 2024-07-15
  • 1.45.1-beta-1720807989000 - 2024-07-12
  • 1.45.1-beta-1719996498000 - 2024-07-03
  • 1.45.1-beta-1719941226000 - 2024-07-02
  • 1.45.0 - 2024-06-24

    Clock

    Utilizing the new Clock API allows to manipulate and control time within tests to verify time-related behavior. This API covers many common scenarios, including:

    • testing with predefined time;
    • keeping consistent time and timers;
    • monitoring inactivity;
    • ticking through time manually.
    // Initialize clock and let the page load naturally.
    await page.clock.install({ time: new Date('2024-02-02T08:00:00') });
    await page.goto('http://localhost:3333');

    // Pretend that the user closed the laptop lid and opened it again at 10am,
    // Pause the time once reached that point.
    await page.clock.pauseAt(new Date('2024-02-02T10:00:00'));

    // Assert the page state.
    await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:00:00 AM');

    // Close the laptop lid again and open it at 10:30am.
    await page.clock.fastForward('30:00');
    await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:30:00 AM');

    See the clock guide for more details.

    Test runner

    • New CLI option --fail-on-flaky-tests that sets exit code to 1 upon any flaky tests. Note that by default, the test runner exits with code 0 when all failed tests recovered upon a retry. With this option, the test run will fail in such case.

    • New enviroment variable PLAYWRIGHT_FORCE_TTY controls whether built-in list, line and dot reporters assume a live terminal. For example, this could be useful to disable tty behavior when your CI environment does not handle ANSI control sequences well. Alternatively, you can enable tty behavior even when to live terminal is present, if you plan to post-process the output and handle control sequences.

      # Avoid TTY features that output ANSI control sequences
      PLAYWRIGHT_FORCE_TTY=0 npx playwright test

      # Enable TTY features, assuming a terminal width 80
      PLAYWRIGHT_FORCE_TTY=80 npx playwright test

    • New options testConfig.respectGitIgnore and testProject.respectGitIgnore control whether files matching .gitignore patterns are excluded when searching for tests.

    • New property timeout is now available for custom expect matchers. This property takes into account playwright.config.ts and expect.configure().

      import { expect as baseExpect } from '@ playwright/test';

      export const expect = baseExpect.extend({
      async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
      // When no timeout option is specified, use the config timeout.
      const timeout = options?.timeout ?? this.timeout;
      // ... implement the assertion ...
      },
      });

    Miscellaneous

    • Method locator.setInputFiles() now supports uploading a directory for <input type=file webkitdirectory> elements.

      await page.getByLabel('Upload directory').setInputFiles(path.join(__dirname, 'mydir'));
    • Multiple methods like locator.click() or locator.press() now support a ControlOrMeta modifier key. This key maps to Meta on macOS and maps to Control on Windows and Linux.

      // Press the common keyboard shortcut Control+S or Meta+S to trigger a "Save" operation.
      await page.keyboard.press('ControlOrMeta+S');
    • New property httpCredentials.send in apiRequest.newContext() that allows to either always send the Authorization header or only send it in response to 401 Unauthorized.

    • New option reason in apiRequestContext.dispose() that will be included in the error message of ongoing operations interrupted by the context disposal.

    • New option host in browserType.launchServer() allows to accept websocket connections on a specific address instead of unspecified 0.0.0.0.

    • Playwright now supports Chromium, Firefox and WebKit on Ubuntu 24.04.

    • v1.45 is the last release to receive WebKit update for macOS 12 Monterey. Please update macOS to keep using the latest WebKit.

    Browser Versions

    • Chromium 127.0.6533.5
    • Mozilla Firefox 127.0
    • WebKit 17.4

    This version was also tested against the following stable channels:

    • Google Chrome 126
    • Microsoft Edge 126
  • 1.45.0-beta-1719854491000 - 2024-07-01
  • 1.45.0-beta-1719819889000 - 2024-07-01
  • 1.45.0-beta-1719505820000 - 2024-06-27
  • 1.45.0-beta-1719443776000 - 2024-06-26
  • 1.45.0-beta-1719257069000 - 2024-06-24
  • 1.45.0-beta-1719257053000 - 2024-06-24
  • 1.45.0-beta-1719253817000 - 2024-06-24
  • 1.45.0-beta-1718972438000 - 2024-06-21
  • 1.45.0-beta-1718813530000 - 2024-06-19
  • 1.45.0-beta-1718782041000 - 2024-06-19
  • 1.45.0-beta-1718733727000 - 2024-06-18
  • 1.45.0-beta-1718419432000 - 2024-06-15
  • 1.45.0-beta-1718411373000 - 2024-06-15
  • 1.45.0-alpha-2024-06-15 - 2024-06-15
  • 1.45.0-alpha-2024-06-14 - 2024-06-14
  • 1.45.0-alpha-2024-06-13 - 2024-06-13
  • 1.45.0-alpha-2024-06-12 - 2024-06-12
  • 1.45.0-alpha-2024-06-11 - 2024-06-11
  • 1.45.0-alpha-2024-06-10 - 2024-06-10
  • 1.45.0-alpha-2024-06-09 - 2024-06-09
  • 1.45.0-alpha-2024-06-08 - 2024-06-08
  • 1.45.0-alpha-2024-06-07 - 2024-06-07
  • 1.45.0-alpha-2024-06-06 - 2024-06-06
  • 1.45.0-alpha-2024-06-05 - 2024-06-05
  • 1.45.0-alpha-2024-06-04 - 2024-06-04
  • 1.45.0-alpha-2024-06-03 - 2024-06-03
  • 1.45.0-alpha-2024-06-02 - 2024-06-02
  • 1.45.0-alpha-2024-06-01 - 2024-06-01
  • 1.45.0-alpha-2024-05-31 - 2024-05-31
  • 1.45.0-alpha-2024-05-30 - 2024-05-30
  • 1.45.0-alpha-2024-05-29 - 2024-05-29
  • 1.45.0-alpha-2024-05-28 - 2024-05-28
  • 1.45.0-alpha-2024-05-27 - 2024-05-27
  • 1.45.0-alpha-2024-05-26 - 2024-05-26
  • 1.45.0-alpha-2024-05-25 - 2024-05-25
  • 1.45.0-alpha-2024-05-24 - 2024-05-24
  • 1.45.0-alpha-2024-05-23 - 2024-05-23
  • 1.45.0-alpha-2024-05-22 - 2024-05-22
  • 1.45.0-alpha-2024-05-21 - 2024-05-21
  • 1.45.0-alpha-2024-05-20 - 2024-05-20
  • 1.45.0-alpha-2024-05-19 - 2024-05-19
  • 1.45.0-alpha-2024-05-18 - 2024-05-18
  • 1.45.0-alpha-2024-05-17 - 2024-05-17
  • 1.45.0-alpha-2024-05-16 - 2024-05-16
  • 1.45.0-alpha-2024-05-15 - 2024-05-15
  • 1.45.0-alpha-2024-05-14 - 2024-05-14
  • 1.45.0-alpha-2024-05-13 - 2024-05-13
  • 1.45.0-alpha-2024-05-12 - 2024-05-12
  • 1.45.0-alpha-2024-05-11 - 2024-05-11
  • 1.45.0-alpha-2024-05-10 - 2024-05-10
  • 1.45.0-alpha-2024-05-09 - 2024-05-09
  • 1.45.0-alpha-2024-05-08 - 2024-05-08
  • 1.45.0-alpha-2024-05-07 - 2024-05-07
  • 1.45.0-alpha-2024-05-06 - 2024-05-06
  • 1.45.0-alpha-2024-04-30 - 2024-04-30
  • 1.45.0-alpha-1716491102000 - 2024-05-23
  • 1.45.0-alpha-1714760563000 - 2024-05-06
  • 1.44.1 - 2024-05-23

    Highlights

    #30779 - [REGRESSION]: When using video: 'on' with VSCode extension the browser got closed
    #30755 - [REGRESSION]: Electron launch with spaces inside executablePath didn't work
    #30770 - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't work
    #30858 - [REGRESSION]: ipv6 got shown instead of localhost in show-trace/show-report

    Browser Versions

    • Chromium 125.0.6422.14
    • Mozilla Firefox 125.0.1
    • WebKit 17.4

    This version was also tested against the following stable channels:

    • Google Chrome 124
    • Microsoft Edge 124
  • 1.44.1-beta-1716453231000 - 2024-05-23
  • 1.44.1-beta-1716449392000 - 2024-05-23
  • 1.44.0 - 2024-05-06

    New APIs

    Accessibility assertions

    • expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:

      const locator = page.getByRole('button');
      await expect(locator).toHaveAccessibleName('Submit');
    • expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:

      const locator = page.getByRole('button');
      await expect(locator).toHaveAccessibleDescription('Upload a photo');
    • expect(locator).toHaveRole() checks if the element has the specified ARIA role:

      const locator = page.getByTestId('save-button');
      await expect(locator).toHaveRole('button');

    Locator handler

    • After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new noWaitAfter option.
    • You can use new times option in page.addLocatorHandler() to specify maximum number of times the handler should be run.
    • The handler in page.addLocatorHandler() now accepts the locator as argument.
    • New page.removeLocatorHandler() method for removing previously added locator handlers.
    const locator = page.getByText('This interstitial covers the button');
    await page.addLocatorHandler(locator, async overlay => {
      await overlay.locator('#close').click();
    }, { times: 3, noWaitAfter: true });
    // Run your tests that can be interrupted by the overlay.
    // ...
    await page.removeLocatorHandler(locator);

    Miscellaneous options

    • multipart option in apiRequestContext.fetch() now accepts FormData and supports repeating fields with the same name.

      const formData = new FormData();
      formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' }));
      formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' }));
      context.request.post('https://example.com/uploadFiles', {
        multipart: formData
      });
    • expect(callback).toPass({ intervals }) can now be configured by expect.toPass.inervals option globally in testConfig.expect or per project in testProject.expect.

    • expect(page).toHaveURL(url) now supports ignoreCase option.

    • testProject.ignoreSnapshots allows to configure per project whether to skip screenshot expectations.

    Reporter API

    • New method suite.entries() returns child test suites and test cases in their declaration order. suite.type and testCase.type can be used to tell apart test cases and suites in the list.
    • Blob reporter now allows overriding report file path with a single option outputFile. The same option can also be specified as PLAYWRIGHT_BLOB_OUTPUT_FILE environment variable that might be more convenient on CI/CD.
    • JUnit reporter now supports includeProjectInTestName option.

    Command line

    • --last-failed CLI option for running only tests that failed in the previous run.

      First run all tests:

      test

      Running 103 tests using 5 workers
      ...
      2 failed
      [chromium] › my-test.spec.ts:8:5 › two ─────────────────────────────────────────────────────────
      [chromium] › my-test.spec.ts:13:5 › three ──────────────────────────────────────────────────────
      101 passed (30.0s)

      Now fix the failing tests and run Playwright again with --last-failed option:

      test --last-failed

      Running 2 tests using 2 workers
      2 passed (1.2s)

    Browser Versions

    • Chromium 125.0.6422.14
    • Mozilla Firefox 125.0.1
    • WebKit 17.4

    This version was also tested against the following stable channels:

    • Google Chrome 124
    • Microsoft Edge 124
  • 1.44.0-beta-1716306049000 - 2024-05-21
  • 1.44.0-beta-1716285871000 - 2024-05-21
  • 1.44.0-beta-1715802478000 - 2024-05-15
  • 1.44.0-beta-1715791608000 - 2024-05-15
  • 1.44.0-beta-1715706051000 - 2024-05-14
  • 1.44.0-beta-1715189091000 - 2024-05-08
  • 1.44.0-beta-1715020014000 - 2024-05-06
  • 1.44.0-beta-1715018865000 - 2024-05-06
  • 1.44.0-beta-1714753004000 - 2024-05-06
  • 1.44.0-beta-1714435420000 - 2024-04-30
  • 1.44.0-beta-1714434520000 - 2024-04-29
  • 1.44.0-alpha-2024-04-29 - 2024-04-29
  • 1.44.0-alpha-2024-04-28 - 2024-04-28
  • 1.44.0-alpha-2024-04-27 - 2024-04-27
  • 1.44.0-alpha-2024-04-26 - 2024-04-26
  • 1.44.0-alpha-2024-04-25 - 2024-04-25
  • 1.44.0-alpha-2024-04-24 - 2024-04-24
  • 1.44.0-alpha-2024-04-23 - 2024-04-23
  • 1.44.0-alpha-2024-04-22 - 2024-04-22
  • 1.44.0-alpha-2024-04-19 - 2024-04-19
  • 1.44.0-alpha-2024-04-18 - 2024-04-18
  • 1.44.0-alpha-2024-04-17 - 2024-04-17
  • 1.44.0-alpha-2024-04-16 - 2024-04-16
  • 1.44.0-alpha-2024-04-15 - 2024-04-15
  • 1.44.0-alpha-2024-04-14 - 2024-04-14
  • 1.44.0-alpha-2024-04-13 - 2024-04-13
  • 1.44.0-alpha-2024-04-12 - 2024-04-12
  • 1.44.0-alpha-2024-04-11 - 2024-04-11
  • 1.44.0-alpha-2024-04-10 - 2024-04-10
  • 1.44.0-alpha-2024-04-09 - 2024-04-09
  • 1.44.0-alpha-2024-04-08 - 2024-04-08
  • 1.44.0-alpha-2024-04-07 - 2024-04-07
  • 1.44.0-alpha-2024-04-06 - 2024-04-06
  • 1.44.0-alpha-2024-04-05 - 2024-04-05
  • 1.44.0-alpha-2024-04-04 - 2024-04-04
  • 1.44.0-alpha-2024-04-03 - 2024-04-03
  • 1.44.0-alpha-2024-04-02 - 2024-04-02
  • 1.44.0-alpha-2024-04-01 - 2024-04-01
  • 1.44.0-alpha-2024-03-31 - 2024-03-31
  • 1.44.0-alpha-2024-03-30 - 2024-03-30
  • 1.44.0-alpha-2024-03-29 - 2024-03-29
  • 1.44.0-alpha-2024-03-28 - 2024-03-28
  • 1.44.0-alpha-2024-03-27 - 2024-03-27
  • 1.44.0-alpha-1714168971000 - 2024-04-26
  • 1.44.0-alpha-1711994091000 - 2024-04-01
  • 1.43.1 - 2024-04-12

    Highlights

    #30300 - [REGRESSION]: UI mode restarts if keep storage state
    #30339 - [REGRESSION]: Brand new install of playwright, unable to run chromium with show browser using vscode

    Browser Versions

    • Chromium 124.0.6367.29
    • Mozilla Firefox 124.0
    • WebKit 17.4

    This version was also tested against the following stable channels:

    • Google Chrome 123
    • Microsoft Edge 123
  • 1.43.1-beta-1712942342000 - 2024-04-12
  • 1.43.0 - 2024-04-04

    New APIs

    • Method browserContext.clearCookies() now supports filters to remove only some cookies.

      // Clear all cookies.
      await context.clearCookies();
      // New: clear cookies with a particular name.
      await context.clearCookies({ name: 'session-id' });
      // New: clear cookies for a particular domain.
      await context.clearCookies({ domain: 'my-origin.com' });
    • New mode retain-on-first-failure for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.

      import { defineConfig } from '@ playwright/test';

      export default defineConfig({
      use: {
      trace: 'retain-on-first-failure',
      },
      });

    • New property testInfo.tags exposes test tags during test execution.

      test('example', async ({ page }) => {
        console.log(test.info().tags);
      });
    • New method locator.contentFrame() converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.

      const locator = page.locator('iframe[name="embedded"]');
      // ...
      const frameLocator = locator.contentFrame();
      await frameLocator.getByRole('button').click();
    • New method frameLocator.owner() converts a FrameLocator object to a Locator. This can be useful when you have a FrameLocator object obtained somewhere, and later on would like to interact with the iframe element.

      const frameLocator = page.frameLocator('iframe[name="embedded"]');
      // ...
      const locator = frameLocator.owner();
      await expect(locator).toBeVisible();

    UI Mode Updates

    Playwright UI Mode

    • See tags in the test list.
    • Filter by tags by typing @ fast or clicking on the tag itself.
    • New shortcuts:
      • F5 to run tests.
      • Shift F5 to stop running tests.
      • Ctrl ` to toggle test output.

    Browser Versions

    • Chromium 124.0.6367.29
    • Mozilla Firefox 124.0
    • WebKit 17.4

    This version was also tested against the following stable channels:

    • Google Chrome 123
    • Microsoft Edge 123
  • 1.43.0-beta-1712871607000 - 2024-04-11
  • 1.43.0-beta-1712860105000 - 2024-04-11
  • 1.43.0-beta-1712646596000 - 2024-04-09
  • 1.43.0-beta-1712258732000 - 2024-04-04
  • 1.43.0-beta-1712217576000 - 2024-04-04
  • 1.43.0-beta-1712173949000 - 2024-04-03
  • 1.43.0-beta-1712010778000 - 2024-04-01
  • 1.43.0-beta-1711849714000 - 2024-03-31
  • 1.43.0-beta-1711742093000 - 2024-03-29
  • 1.43.0-beta-1711653598000 - 2024-03-28
  • 1.43.0-beta-1711554436000 - 2024-03-27
  • 1.43.0-beta-1711493485000 - 2024-03-26
  • 1.43.0-beta-1711484700000 - 2024-03-26
  • 1.43.0-beta-1709675102000 - 2024-03-05
  • 1.43.0-alpha-2024-03-26 - 2024-03-26
  • 1.43.0-alpha-2024-03-25 - 2024-03-25
  • 1.43.0-alpha-2024-03-24 - 2024-03-24
  • 1.43.0-alpha-2024-03-23 - 2024-03-23
  • 1.43.0-alpha-2024-03-22 - 2024-03-22
  • 1.43.0-alpha-2024-03-21 - 2024-03-21
  • 1.43.0-alpha-2024-03-20 - 2024-03-20
  • 1.43.0-alpha-2024-03-19 - 2024-03-19
  • 1.43.0-alpha-2024-03-18 - 2024-03-18
  • 1.43.0-alpha-2024-03-17 - 2024-03-17
  • 1.43.0-alpha-2024-03-16 - 2024-03-16
  • 1.43.0-alpha-2024-03-15 - 2024-03-15
  • 1.43.0-alpha-2024-03-14 - 2024-03-14
  • 1.43.0-alpha-2024-03-13 - 2024-03-13
  • 1.43.0-alpha-2024-03-12 - 2024-03-12
  • 1.43.0-alpha-2024-03-11 - 2024-03-11
  • 1.43.0-alpha-2024-03-10 - 2024-03-10
  • 1.43.0-alpha-2024-03-09 - 2024-03-09
  • 1.43.0-alpha-2024-03-08 - 2024-03-08
  • 1.43.0-alpha-2024-03-07 - 2024-03-07
  • 1.43.0-alpha-2024-03-06 - 2024-03-06
  • 1.43.0-alpha-2024-03-05 - 2024-03-05
  • 1.43.0-alpha-2024-03-04 - 2024-03-04
  • 1.43.0-alpha-2024-03-03 - 2024-03-03
  • 1.43.0-alpha-2024-03-02 - 2024-03-02
  • 1.43.0-alpha-2024-03-01 - 2024-03-01
  • 1.43.0-alpha-2024-02-29 - 2024-02-29
  • 1.43.0-alpha-2024-02-28 - 2024-02-28
  • 1.43.0-alpha-1711470013000 - 2024-03-26
  • 1.43.0-alpha-1711027602000 - 2024-03-21
  • 1.43.0-alpha-1710520846000 - 2024-03-15
  • 1.43.0-alpha-1709847741000 - 2024-03-07
  • 1.43.0-alpha-1709823751000 - 2024-03-07
  • 1.42.1 - 2024-03-02
  • 1.42.1-beta-1710270182000 - 2024-03-12
  • 1.42.1-beta-1710200485000 - 2024-03-11
  • 1.42.1-beta-1710181789000 - 2024-03-11
  • 1.42.1-beta-1709718680000 - 2024-03-06
  • 1.42.1-beta-1709665345000 - 2024-03-05
  • 1.42.1-beta-1709332975000 - 2024-03-01
  • 1.42.0 - 2024-02-27
  • 1.42.0-beta-1709320822000 - 2024-03-01
  • 1.42.0-beta-1709314844000 - 2024-03-01
  • 1.42.0-beta-1709314651000 - 2024-03-01
  • 1.42.0-beta-1709262915000 - 2024-03-01
  • 1.42.0-beta-1709254258000 - 2024-03-01
  • 1.42.0-beta-1709239763000 - 2024-02-29
  • 1.42.0-beta-1709226226000 - 2024-02-29
  • 1.42.0-beta-1709198925000 - 2024-02-29
  • 1.42.0-beta-1709158069000 - 2024-02-28
  • 1.42.0-beta-1709060724000 - 2024-02-27
  • 1.42.0-beta-1709049149000 - 2024-02-27
  • 1.42.0-beta-1708998235000 - 2024-02-27
  • 1.42.0-beta-1708998003000 - 2024-02-27
  • 1.42.0-beta-1708994059000 - 2024-02-27
  • 1.42.0-beta-1708467899000 - 2024-02-21
  • 1.42.0-alpha-jan-18-2024 - 2024-01-18
  • 1.42.0-alpha-jan-17-2024 - 2024-01-17
  • 1.42.0-alpha-jan-16-2024 - 2024-01-16
  • 1.42.0-alpha-jan-15-2024 - 2024-01-15
  • 1.42.0-alpha-jan-14-2024 - 2024-01-14
  • 1.42.0-alpha-jan-13-2024 - 2024-01-13
  • 1.42.0-alpha-2024-02-27 - 2024-02-27
  • 1.42.0-alpha-2024-02-26 - 2024-02-26
  • 1.42.0-alpha-2024-02-25 - 2024-02-25
  • 1.42.0-alpha-2024-02-24 - 2024-02-24
  • 1.42.0-alpha-2024-02-23 - 2024-02-23
  • 1.42.0-alpha-2024-02-22 - 2024-02-22
  • 1.42.0-alpha-2024-02-21 - 2024-02-21
  • 1.42.0-alpha-2024-02-20 - 2024-02-20
  • 1.42.0-alpha-2024-02-19 - 2024-02-19
  • 1.42.0-alpha-2024-02-18 - 2024-02-18
  • 1.42.0-alpha-2024-02-17 - 2024-02-17
  • 1.42.0-alpha-2024-02-16 - 2024-02-16
  • 1.42.0-alpha-2024-02-15 - 2024-02-15
  • 1.42.0-alpha-2024-02-14 - 2024-02-14
  • 1.42.0-alpha-2024-02-13 - 2024-02-13
  • 1.42.0-alpha-2024-02-12 - 2024-02-12
  • 1.42.0-alpha-2024-02-11 - 2024-02-11
  • 1.42.0-alpha-2024-02-10 - 2024-02-10
  • 1.42.0-alpha-2024-02-09 - 2024-02-09
  • 1.42.0-alpha-2024-02-08 - 2024-02-08
  • 1.42.0-alpha-2024-02-07 - 2024-02-07
  • 1.42.0-alpha-2024-02-06 - 2024-02-06
  • 1.42.0-alpha-2024-02-05 - 2024-02-05
  • 1.42.0-alpha-2024-02-04 - 2024-02-04
  • 1.42.0-alpha-2024-02-03 - 2024-02-03
  • 1.42.0-alpha-2024-02-02 - 2024-02-02
  • 1.42.0-alpha-2024-02-01 - 2024-02-01
  • 1.42.0-alpha-2024-01-31 - 2024-01-31
  • 1.42.0-alpha-2024-01-30 - 2024-01-30
  • 1.42.0-alpha-1708140911000 - 2024-02-17
  • 1.42.0-alpha-1707967288000 - 2024-02-15
  • 1.42.0-alpha-1707816346000 - 2024-02-13
  • 1.42.0-alpha-1706562895000 - 2024-01-29
  • 1.41.2 - 2024-02-01
  • 1.41.2-beta-1706815456000 - 2024-02-01
  • 1.41.1 - 2024-01-19
  • 1.41.1-beta-1706807510000 - 2024-02-01
  • 1.41.1-beta-1706549589000 - 2024-01-29
  • 1.41.1-beta-1705705504000 - 2024-01-19
  • 1.41.0 - 2024-01-16
  • 1.41.0-beta-1705698523000 - 2024-01-19
  • 1.41.0-beta-1705691527000 - 2024-01-19
  • 1.41.0-beta-1705607048000 - 2024-01-18
  • 1.41.0-beta-1705568792000 - 2024-01-18
  • 1.41.0-beta-1705516904000 - 2024-01-17
  • 1.41.0-beta-1705429643000 - 2024-01-16
  • 1.41.0-beta-1705101589000 - 2024-01-12
  • 1.41.0-beta-1705092460000 - 2024-01-12
  • 1.41.0-alpha-nov-29-2023 - 2023-11-29
  • 1.41.0-alpha-nov-28-2023 - 2023-11-28
  • 1.41.0-alpha-nov-27-2023 - 2023-11-27
  • 1.41.0-alpha-nov-26-2023 - 2023-11-26
  • 1.41.0-alpha-nov-25-2023 - 2023-11-25
  • 1.41.0-alpha-nov-24-2023 - 2023-11-24
  • 1.41.0-alpha-nov-23-2023 - 2023-11-23
  • 1.41.0-alpha-nov-22-2023 - 2023-11-22
  • 1.41.0-alpha-nov-21-2023 - 2023-11-21
  • 1.41.0-alpha-nov-20-2023 - 2023-11-20
  • 1.41.0-alpha-nov-19-2023 - 2023-11-19
  • 1.41.0-alpha-nov-18-2023 - 2023-11-18
  • 1.41.0-alpha-nov-17-2023 - 2023-11-17
  • 1.41.0-alpha-jan-9-2024 - 2024-01-09
  • 1.41.0-alpha-jan-8-2024 - 2024-01-08
  • 1.41.0-alpha-jan-7-2024 - 2024-01-07
  • 1.41.0-alpha-jan-6-2024 - 2024-01-06

Snyk has created this PR to upgrade playwright-core from 1.40.1 to 1.45.3.

See this package in npm:
playwright-core

See this project in Snyk:
https://app.snyk.io/org/ramzimalhas/project/3903753d-4c02-4bb6-a726-7960905a1497?utm_source=github&utm_medium=referral&page=upgrade-pr
Copy link

height bot commented Aug 22, 2024

Link Height tasks by mentioning a task ID in the pull request title or commit messages, or description and comments with the keyword link (e.g. "Link T-123").

💡Tip: You can also use "Close T-X" to automatically close a task when the pull request is merged.

Copy link

coderabbitai bot commented Aug 22, 2024

Important

Review skipped

Ignore keyword(s) in the title.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

Changes made by this pull request:

package-lock.json
Updated the version of "playwright-core" from "1.40.1" to "1.45.3" and also updated the "node" engine requirement from ">=16" to ">=18". Additionally, it added the license information for "playwright-core" as "Apache-2.0".

package.json
Updated the version of "playwright-core" from "^1.40.1" to "^1.45.3".

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