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

chore(deps): update all non-major dependencies #9

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 5, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config ^2.12.1 -> ^2.21.0 age adoption passing confidence
@antfu/utils ^0.7.7 -> ^0.7.8 age adoption passing confidence
@types/node (source) ^20.12.4 -> ^20.14.2 age adoption passing confidence
@vitejs/plugin-vue (source) ^5.0.4 -> ^5.0.5 age adoption passing confidence
@vitest/browser (source) ^1.4.0 -> ^1.6.0 age adoption passing confidence
extendable-media-recorder ^9.1.13 -> ^9.2.4 age adoption passing confidence
nanoid ^5.0.6 -> ^5.0.7 age adoption passing confidence
opus-decoder (source) ^0.7.3 -> ^0.7.6 age adoption passing confidence
playwright (source) ^1.43.0 -> ^1.44.1 age adoption passing confidence
typescript (source) ^5.4.4 -> ^5.4.5 age adoption passing confidence
unocss ^0.47.5 -> ^0.60.4 age adoption passing confidence
vite (source) ^5.2.8 -> ^5.2.13 age adoption passing confidence
vite-plugin-dts ^3.8.1 -> ^3.9.1 age adoption passing confidence
vitest (source) ^1.4.0 -> ^1.6.0 age adoption passing confidence
vue (source) ^3.4.21 -> ^3.4.27 age adoption passing confidence
wasm-media-encoders ^0.6.4 -> ^0.7.0 age adoption passing confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v2.21.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.20.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.19.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.19.1

Compare Source

   🚀 Features
    View changes on GitHub

v2.19.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.18.1

Compare Source

   🚀 Features
    View changes on GitHub

v2.18.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.17.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.16.4

Compare Source

No significant changes

    View changes on GitHub

v2.16.3

Compare Source

   🚀 Features
    View changes on GitHub

v2.16.2

Compare Source

No significant changes

    View changes on GitHub

v2.16.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.16.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.15.0

Compare Source

   🚨 Breaking Changes
    View changes on GitHub

v2.14.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.13.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.13.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.13.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.13.1

Compare Source

   🚀 Features
    View changes on GitHub

v2.13.0

Compare Source

   🚀 Features
    View changes on GitHub

v2.12.2

Compare Source

   🚀 Features
    View changes on GitHub
antfu/utils (@​antfu/utils)

v0.7.8

Compare Source

Features
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.0.5

vitest-dev/vitest (@​vitest/browser)

v1.6.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.5.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
chrisguttandin/extendable-media-recorder (extendable-media-recorder)

v9.2.4

Compare Source

all commits

v9.2.3

Compare Source

all commits

v9.2.2

Compare Source

all commits

v9.2.1

Compare Source

all commits

v9.2.0

Compare Source

all commits

v9.1.15

Compare Source

all commits

v9.1.14

Compare Source

all commits

ai/nanoid (nanoid)

v5.0.7

Compare Source

eshaz/wasm-audio-decoders (opus-decoder)

v0.7.6

Compare Source

v0.7.5

Compare Source

v0.7.4

Compare Source

microsoft/playwright (playwright)

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

Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 16 times, most recently from 0987990 to b91a950 Compare April 12, 2024 07:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from e134f74 to 52a3cbd Compare April 18, 2024 12:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3038bcc to f3d1e81 Compare May 5, 2024 16:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from be6f3d1 to fec4a54 Compare May 12, 2024 13:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f2031b3 to 44706b4 Compare May 20, 2024 14:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from c9b9326 to 4fa9c0f Compare May 29, 2024 19:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 3db58da to 0da5658 Compare June 5, 2024 10:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0da5658 to 3281dc0 Compare June 7, 2024 13:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3281dc0 to 1bc785c Compare June 8, 2024 13:35
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.

None yet

0 participants