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 from 1.45.3 to 1.46.0 #397

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

Conversation

chaitanyapotti
Copy link
Member

snyk-top-banner

Snyk has created this PR to upgrade playwright from 1.45.3 to 1.46.0.

ℹ️ 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 75 versions ahead of your current version.

  • The recommended version was released on 22 days ago.

Release notes
Package name: playwright
  • 1.46.0 - 2024-08-05

    TLS Client Certificates

    Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.

    When client certificates are specified, all browser traffic is routed through a proxy that establishes the secure TLS connection, provides client certificates to the server and validates server certificates.

    The following snippet sets up a client certificate for https://example.com:

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

    export default defineConfig({
    // ...
    use: {
    clientCertificates: [{
    origin: 'https://example.com',
    certPath: './cert.pem',
    keyPath: './key.pem',
    passphrase: 'mysecretpassword',
    }],
    },
    // ...
    });

    You can also provide client certificates to a particular test project or as a parameter of browser.newContext() and apiRequest.newContext().

    --only-changed cli option

    New CLI option --only-changed allows to only run test files that have been changed since the last git commit or from a specific git "ref".

    # Only run test files with uncommitted changes
    npx playwright test --only-changed

    # Only run test files changed relative to the "main" branch
    npx playwright test --only-changed=main

    Component Testing: New router fixture

    This release introduces an experimental router fixture to intercept and handle network requests in component testing.
    There are two ways to use the router fixture:

    • Call router.route(url, handler) that behaves similarly to page.route().
    • Call router.use(handlers) and pass MSW library request handlers to it.

    Here is an example of reusing your existing MSW handlers in the test.

    import { handlers } from '@ src/mocks/handlers';

    test.beforeEach(async ({ router }) => {
    // install common handlers before each test
    await router.use(...handlers);
    });

    test('example test', async ({ mount }) => {
    // test as usual, your handlers are active
    // ...
    });

    This fixture is only available in component tests.

    UI Mode / Trace Viewer Updates

    • Test annotations are now shown in UI mode.
    • Content of text attachments is now rendered inline in the attachments pane.
    • New setting to show/hide routing actions like route.continue().
    • Request method and status are shown in the network details tab.
    • New button to copy source file location to clipboard.
    • Metadata pane now displays the baseURL.

    Miscellaneous

    Possibly breaking change

    Fixture values that are array of objects, when specified in the test.use() block, may require being wrapped into a fixture tuple. This is best seen on the example:

    import { test as base } from '@ playwright/test';

    // Define an option fixture that has an "array of objects" value
    type User = { name: string, password: string };
    const test = base.extend<{ users: User[] }>({
    users: [ [], { option: true } ],
    });

    // Specify option value in the test.use block.
    test.use({
    // WRONG: this syntax may not work for you
    users: [
    { name: 'John Doe', password: 'secret' },
    { name: 'John Smith', password: 's3cr3t' },
    ],
    // CORRECT: this syntax will work. Note extra [] around the value, and the "scope" property.
    users: [[
    { name: 'John Doe', password: 'secret' },
    { name: 'John Smith', password: 's3cr3t' },
    ], { scope: 'test' }],
    });

    test('example test', async () => {
    // ...
    });

    Browser Versions

    • Chromium 128.0.6613.18
    • Mozilla Firefox 128.0
    • WebKit 18.0

    This version was also tested against the following stable channels:

    • Google Chrome 127
    • Microsoft Edge 127
  • 1.46.0-beta-1723832534000 - 2024-08-16
  • 1.46.0-beta-1723801589000 - 2024-08-16
  • 1.46.0-beta-1723720592000 - 2024-08-15
  • 1.46.0-beta-1723720241000 - 2024-08-15
  • 1.46.0-beta-1723710364000 - 2024-08-15
  • 1.46.0-beta-1723660382000 - 2024-08-14
  • 1.46.0-beta-1723133504000 - 2024-08-08
  • 1.46.0-beta-1722921654000 - 2024-08-06
  • 1.46.0-beta-1722864935000 - 2024-08-05
  • 1.46.0-beta-1722862542000 - 2024-08-05
  • 1.46.0-beta-1722861852000 - 2024-08-05
  • 1.46.0-beta-1722861393000 - 2024-08-05
  • 1.46.0-beta-1722619968000 - 2024-08-02
  • 1.46.0-beta-1722548857000 - 2024-08-01
  • 1.46.0-beta-1722543854000 - 2024-08-01
  • 1.46.0-beta-1722539025000 - 2024-08-01
  • 1.46.0-beta-1722538384000 - 2024-08-01
  • 1.46.0-beta-1722536587000 - 2024-08-01
  • 1.46.0-beta-1722529720000 - 2024-08-01
  • 1.46.0-beta-1722515615000 - 2024-08-01
  • 1.46.0-beta-1722491095000 - 2024-08-01
  • 1.46.0-beta-1722473979000 - 2024-08-01
  • 1.46.0-beta-1722473905000 - 2024-08-01
  • 1.46.0-beta-1722473882000 - 2024-08-01
  • 1.46.0-beta-1722449265000 - 2024-07-31
  • 1.46.0-beta-1722359450000 - 2024-07-30
  • 1.46.0-beta-1722356599000 - 2024-07-30
  • 1.46.0-beta-1722335510000 - 2024-07-30
  • 1.46.0-beta-1722264334000 - 2024-07-29
  • 1.46.0-beta-1722257607000 - 2024-07-29
  • 1.46.0-beta-1722008066000 - 2024-07-26
  • 1.46.0-alpha-2024-07-26 - 2024-07-26
  • 1.46.0-alpha-2024-07-25 - 2024-07-25
  • 1.46.0-alpha-2024-07-24 - 2024-07-24
  • 1.46.0-alpha-2024-07-23 - 2024-07-23
  • 1.46.0-alpha-2024-07-22 - 2024-07-22
  • 1.46.0-alpha-2024-07-21 - 2024-07-21
  • 1.46.0-alpha-2024-07-20 - 2024-07-20
  • 1.46.0-alpha-2024-07-19 - 2024-07-19
  • 1.46.0-alpha-2024-07-18 - 2024-07-18
  • 1.46.0-alpha-2024-07-17 - 2024-07-17
  • 1.46.0-alpha-2024-07-16 - 2024-07-16
  • 1.46.0-alpha-2024-07-15 - 2024-07-15
  • 1.46.0-alpha-2024-07-14 - 2024-07-14
  • 1.46.0-alpha-2024-07-13 - 2024-07-13
  • 1.46.0-alpha-2024-07-12 - 2024-07-12
  • 1.46.0-alpha-2024-07-11 - 2024-07-11
  • 1.46.0-alpha-2024-07-10 - 2024-07-10
  • 1.46.0-alpha-2024-07-09 - 2024-07-09
  • 1.46.0-alpha-2024-07-08 - 2024-07-08
  • 1.46.0-alpha-2024-07-07 - 2024-07-07
  • 1.46.0-alpha-2024-07-06 - 2024-07-06
  • 1.46.0-alpha-2024-07-05 - 2024-07-05
  • 1.46.0-alpha-2024-07-04 - 2024-07-04
  • 1.46.0-alpha-2024-07-03 - 2024-07-03
  • 1.46.0-alpha-2024-07-02 - 2024-07-02
  • 1.46.0-alpha-2024-07-01 - 2024-07-01
  • 1.46.0-alpha-2024-06-30 - 2024-06-30
  • 1.46.0-alpha-2024-06-29 - 2024-06-29
  • 1.46.0-alpha-2024-06-28 - 2024-06-28
  • 1.46.0-alpha-2024-06-27 - 2024-06-27
  • 1.46.0-alpha-2024-06-26 - 2024-06-26
  • 1.46.0-alpha-2024-06-25 - 2024-06-25
  • 1.46.0-alpha-2024-06-24 - 2024-06-24
  • 1.46.0-alpha-2024-06-23 - 2024-06-23
  • 1.46.0-alpha-2024-06-22 - 2024-06-22
  • 1.46.0-alpha-2024-06-21 - 2024-06-21
  • 1.46.0-alpha-2024-06-20 - 2024-06-20
  • 1.46.0-alpha-2024-06-19 - 2024-06-19
  • 1.46.0-alpha-2024-06-18 - 2024-06-18
  • 1.46.0-alpha-2024-06-17 - 2024-06-17
  • 1.46.0-alpha-2024-06-16 - 2024-06-16
  • 1.46.0-alpha-1721990585000 - 2024-07-26
  • 1.46.0-alpha-1721813979000 - 2024-07-24
  • 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
from playwright GitHub release notes

Important

  • Check the changes in this PR to ensure they won't cause issues with your project.
  • This PR was automatically created by Snyk using the credentials of a real user.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

Snyk has created this PR to upgrade playwright from 1.45.3 to 1.46.0.

See this package in npm:
playwright

See this project in Snyk:
https://app.snyk.io/org/chai/project/7b6d34ad-a900-46f8-8958-341e339083ca?utm_source=github&utm_medium=referral&page=upgrade-pr
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