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 all non-major dependencies #89

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@playwright/test (source) 1.41.1 -> 1.47.2 age adoption passing confidence devDependencies minor
@primer/css (source) 21.1.1 -> 21.4.0 age adoption passing confidence devDependencies minor
@storybook/addon-essentials (source) 7.6.10 -> 7.6.20 age adoption passing confidence devDependencies patch
@storybook/cli (source) 7.6.10 -> 7.6.20 age adoption passing confidence devDependencies patch
@storybook/vue3 (source) 7.6.10 -> 7.6.20 age adoption passing confidence devDependencies patch
@storybook/vue3-webpack5 (source) 7.6.10 -> 7.6.20 age adoption passing confidence devDependencies patch
@types/color-convert (source) 2.0.3 -> 2.0.4 age adoption passing confidence devDependencies patch
@types/css-font-loading-module (source) ^0.0.12 -> ^0.0.13 age adoption passing confidence devDependencies patch
@types/google.analytics (source) ^0.0.45 -> ^0.0.46 age adoption passing confidence devDependencies patch
@types/gtag.js (source) ^0.0.18 -> ^0.0.20 age adoption passing confidence dependencies patch
@typescript-eslint/eslint-plugin (source) 6.19.1 -> 6.21.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 6.19.1 -> 6.21.0 age adoption passing confidence devDependencies minor
actions/setup-node v4.0.2 -> v4.0.4 age adoption passing confidence action patch
canvas 0.1.44 -> 0.1.56 age adoption passing confidence devDependencies patch
chromatic (source) 10.6.0 -> 10.9.6 age adoption passing confidence devDependencies minor
css-loader 6.9.1 -> 6.11.0 age adoption passing confidence devDependencies minor
eslint (source) 8.56.0 -> 8.57.1 age adoption passing confidence devDependencies minor
eslint-import-resolver-webpack (source) 0.13.8 -> 0.13.9 age adoption passing confidence devDependencies patch
eslint-plugin-import 2.29.1 -> 2.30.0 age adoption passing confidence devDependencies minor
eslint-plugin-storybook ^0.6.15 -> ^0.9.0 age adoption passing confidence devDependencies minor
eslint-plugin-vue (source) 9.20.1 -> 9.28.0 age adoption passing confidence devDependencies minor
node (source) 20.11.0 -> 20.17.0 age adoption passing confidence minor
postcss (source) 8.4.33 -> 8.4.47 age adoption passing confidence devDependencies patch
postcss-html 1.6.0 -> 1.7.0 age adoption passing confidence devDependencies minor
prettier (source) 3.2.4 -> 3.3.3 age adoption passing confidence devDependencies minor
rollbar 2.26.2 -> 2.26.4 age adoption passing confidence dependencies patch
storybook (source) 7.6.10 -> 7.6.20 age adoption passing confidence devDependencies patch
typescript (source) 5.3.3 -> 5.6.2 age adoption passing confidence devDependencies minor
vue (source) 3.4.15 -> 3.5.10 age adoption passing confidence dependencies minor
webpack 5.90.0 -> 5.95.0 age adoption passing confidence devDependencies minor
webpack-dev-server 4.15.1 -> 4.15.2 age adoption passing confidence devDependencies patch

Release Notes

microsoft/playwright (@​playwright/test)

v1.47.2

Compare Source

Highlights

https://github.com/microsoft/playwright/pull/32699- [REGRESSION]: fix(codegen): use content_frame property in python/.NEThttps://github.com/microsoft/playwright/issues/327066- [REGRESSION]: page.pause() does not pause test timeout after 1.4https://github.com/microsoft/playwright/pull/3266161 - fix(trace-viewer): time delta between local and remote actions

Browser Versions

  • Chromium 129.0.6668.29
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 128
  • Microsoft Edge 128

v1.47.1

Compare Source

v1.47.0

Compare Source

v1.46.1

Compare Source

v1.46.0

Compare Source

v1.45.3

Compare Source

v1.45.2

Compare Source

v1.45.1

Compare Source

v1.45.0

Compare Source

v1.44.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/30779 - [REGRESSION]: When using video: 'on' with VSCode extension the browser got closed
https://github.com/microsoft/playwright/issues/30755 - [REGRESSION]: Electron launch with spaces inside executablePath didn't workhttps://github.com/microsoft/playwright/issues/307700 - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't worhttps://github.com/microsoft/playwright/issues/3085858 - [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

v1.44.0

Compare Source

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:

    $ npx playwright 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:

    $ npx playwright 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

v1.43.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/30300 - [REGRESSION]: UI mode restarts if keep storage statehttps://github.com/microsoft/playwright/issues/303399 - [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

v1.43.0

Compare Source

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

v1.42.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29732 - [Regression]: HEAD requests to webServer.url since v1.42.0https://github.com/microsoft/playwright/issues/297466 - [Regression]: Playwright CT CLI scripts fail due to broken initializePlugin imporhttps://github.com/microsoft/playwright/issues/2973939 - [Bug]: Component tests fails when imported a module with a dot in a nahttps://github.com/microsoft/playwright/issues/29731731 - [Regression]: 1.42.0 breaks some import statemehttps://github.com/microsoft/playwright/issues/297609760 - [Bug]: Possible regression with chained locators in v1.42

Browser Versions
  • Chromium 123.0.6312.4
  • Mozilla Firefox 123.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 122
  • Microsoft Edge 123

v1.42.0

Compare Source

New APIs

  • Test tags

    New tag syntax for adding tags to the tests (@​-tokens in the test title are still supported).

    test('test customer login', { tag: ['@​fast', '@​login'] }, async ({ page }) => {
      // ...
    });

    Use --grep command line option to run only tests with certain tags.

    npx playwright test --grep @​fast
  • Annotating skipped tests

    New annotation syntax for test annotations allows annotating the tests that do not run.

    test('test full report', {
      annotation: [
        { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23180' },
        { type: 'docs', description: 'https://playwright.dev/docs/test-annotations#tag-tests' },
      ],
    }, async ({ page }) => {
      // ...
    });
  • page.addLocatorHandler()

    New method page.addLocatorHandler() registers a callback that will be invoked when specified element becomes visible and may block Playwright actions. The callback can get rid of the overlay. Here is an example that closes a cookie dialog when it appears.

    // Setup the handler.
    await page.addLocatorHandler(
        page.getByRole('heading', { name: 'Hej! You are in control of your cookies.' }),
        async () => {
          await page.getByRole('button', { name: 'Accept all' }).click();
        });
    // Write the test as usual.
    await page.goto('https://www.ikea.com/');
    await page.getByRole('link', { name: 'Collection of blue and white' }).click();
    await expect(page.getByRole('heading', { name: 'Light and easy' })).toBeVisible();
  • Project wildcard filter
    Playwright command line flag now supports '*' wildcard when filtering by project.

    npx playwright test --project='*mobile*'
  • Other APIs

    • expect(callback).toPass({ timeout })
      The timeout can now be configured by expect.toPass.timeout option globally or in project config

    • electronApplication.on('console')
      electronApplication.on('console') event is emitted when Electron main process calls console API methods.

      electronApp.on('console', async msg => {
        const values = [];
        for (const arg of msg.args())
          values.push(await arg.jsonValue());
        console.log(...values);
      });
      await electronApp.evaluate(() => console.log('hello', 5, { foo: 'bar' }));
    • page.pdf() accepts two new options tagged and outline.

Breaking changes

Mixing the test instances in the same suite is no longer supported. Allowing it was an oversight as it makes reasoning about the semantics unnecessarily hard.

const test = baseTest.extend({ item: async ({}, use) => {} });
baseTest.describe('Admin user', () => {
  test('1', async ({ page, item }) => {});
  test('2', async ({ page, item }) => {});
});

Announcements

  • ⚠️ Ubuntu 18 is not supported anymore.

Browser Versions

  • Chromium 123.0.6312.4
  • Mozilla Firefox 123.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 122
  • Microsoft Edge 123

v1.41.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29123 - [REGRESSION] route.continue: Protocol error (Fetch.continueRequest): Invalid InterceptionId.

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120
primer/css (@​primer/css)

v21.4.0

Compare Source

Minor Changes
Patch Changes

v21.3.6

Compare Source

Patch Changes

v21.3.5

Compare Source

Patch Changes

v21.3.4

Compare Source

Patch Changes

v21.3.3

Compare Source

Patch Changes

v21.3.2

Compare Source

Patch Changes

v21.3.1

Compare Source

Patch Changes

v21.2.2

Compare Source

Patch Changes

v21.2.1

Compare Source

Patch Changes

v21.2.0

Compare Source

Minor Changes
Patch Changes
storybookjs/storybook (@​storybook/addon-essentials)

v7.6.20

Compare Source

v7.6.19

Compare Source

v7.6.18

Compare Source

v7.6.17

Compare Source

v7.6.16

Compare Source

v7.6.15

Compare Source

v7.6.14

Compare Source

v7.6.13

Compare Source

v7.6.12

Compare Source

v7.6.11

Compare Source

storybookjs/storybook (@​storybook/cli)

v7.6.20

Compare Source

v7.6.19

Compare Source

v7.6.18

Compare Source

v7.6.17

Compare Source

v7.6.16

Compare Source

v7.6.15

Compare Source

v7.6.14

[Compare Source](https://redirect.github.com/storybookjs/storybook/compare/v


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency chromatic to v10.5.1 Update dependency chromatic to v10.5.2 Jan 25, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d0c6dd4 to 2a7c325 Compare January 26, 2024 03:47
@renovate renovate bot changed the title Update dependency chromatic to v10.5.2 Update dependency chromatic to v10.6.0 Jan 26, 2024
@renovate renovate bot changed the title Update dependency chromatic to v10.6.0 Update dependency chromatic to v10.6.0 - autoclosed Jan 26, 2024
@renovate renovate bot closed this Jan 26, 2024
@renovate renovate bot deleted the renovate/all-minor-patch branch January 26, 2024 07:19
@renovate renovate bot changed the title Update dependency chromatic to v10.6.0 - autoclosed Update dependency chromatic to v10.6.0 Jan 27, 2024
@renovate renovate bot reopened this Jan 27, 2024
@renovate renovate bot restored the renovate/all-minor-patch branch January 27, 2024 00:20
@renovate renovate bot changed the title Update dependency chromatic to v10.6.0 Update dependency chromatic to v10.6.1 Jan 27, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from edc8658 to f6b9b19 Compare January 29, 2024 17:56
@renovate renovate bot changed the title Update dependency chromatic to v10.6.1 Update all non-major dependencies Jan 29, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 78a726b to aaf177d Compare February 5, 2024 19:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 301ea7d to ad5e3dc Compare February 8, 2024 05:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 89bf947 to 48b1774 Compare September 3, 2024 16:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 4fce87a to 86e68a1 Compare September 10, 2024 10:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 998812c to 6b205a8 Compare September 19, 2024 16:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 226197e to 55af9bb Compare September 27, 2024 03:22
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.

0 participants