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 #515

Merged
merged 1 commit into from
May 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 13, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.43.1 -> ^1.44.0 age adoption passing confidence
@types/node (source) ^20.12.8 -> ^20.12.11 age adoption passing confidence
@vue/test-utils ^2.4.5 -> ^2.4.6 age adoption passing confidence
chromedriver ^124.0.1 -> ^124.0.3 age adoption passing confidence
cypress (source) ^13.8.1 -> ^13.9.0 age adoption passing confidence
eslint-plugin-cypress ^3.1.1 -> ^3.2.0 age adoption passing confidence
eslint-plugin-playwright ^1.6.0 -> ^1.6.1 age adoption passing confidence
nightwatch (source) ^3.6.1 -> ^3.6.2 age adoption passing confidence
pnpm (source) 9.0.6 -> 9.1.1 age adoption passing confidence
vue (source) ^3.4.26 -> ^3.4.27 age adoption passing confidence
vue-tsc (source) ^2.0.16 -> ^2.0.17 age adoption passing confidence
zx ^8.0.2 -> ^8.1.0 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

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
vuejs/test-utils (@​vue/test-utils)

v2.4.6

Compare Source

What's Changed

New Contributors

Full Changelog: vuejs/test-utils@v2.4.5...v2.4.6

giggio/node-chromedriver (chromedriver)

v124.0.3

Compare Source

v124.0.2

Compare Source

cypress-io/cypress (cypress)

v13.9.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-9-0

cypress-io/eslint-plugin-cypress (eslint-plugin-cypress)

v3.2.0

Compare Source

Features
playwright-community/eslint-plugin-playwright (eslint-plugin-playwright)

v1.6.1

Compare Source

Bug Fixes
  • prefer-web-first-assertions: Support variable reassignment (#​287) (b0fb7cd)
Documentation
nightwatchjs/nightwatch (nightwatch)

v3.6.2

Compare Source

What's Changed

Fixes
Dependency updates

New Contributors

Full Changelog: nightwatchjs/nightwatch@v3.6.1...v3.6.2

pnpm/pnpm (pnpm)

v9.1.1

Compare Source

v9.1.0

Compare Source

vuejs/core (vue)

v3.4.27

Compare Source

Bug Fixes
vuejs/language-tools (vue-tsc)

v2.0.17

Compare Source

Features
  • language-core: add JSDod support for component (#​2377)
  • language-core: add JSDoc support for script setup binding variables (#​3409)
  • language-core: add class component support (#​4354)
  • language-service: re-support scoped class links in template (#​4357)
  • typescript-plugin: create script setup block when auto import if needed
  • typescript-plugin: add JSDoc support for events in template (#​4365)
  • component-meta: add JSDoc tags support for events
  • language-core: support defineOptions (#​4362) - Thanks @​zhiyuanzmj
Bug Fixes
  • language-core: hover not working for intrinsic element event name
  • language-core: showing false declared but not used errors for functions used in v-on="{}" (#​4333)
  • language-core: fix nameless event expression formatting
  • language-core: types imported in the <script setup> should not be used as a variable in template (#​4353)
  • language-core: renaming classname within scoped not working (#​4355)
  • language-core: <style> completions and html custom data completions not provided in some cases (#​4092)
  • language-core: improve code action edits mapping fault tolerance
  • language-core: support defineModel for generic component (#​4345) - Thanks @​zhiyuanzmj
  • language-service: completion cannot trigger in SFC root
  • component-meta: forceUseTs options not working
Other Changes
  • Upgrade Volar from v2.2.0 to v2.2.2.
  • Upgrade Volar services from v0.0.42 to v0.0.44.
  • The following extensions have been added to Hybrid Mode’s compatibility whitelist:
    • mxsdev.typescript-explorer
  • Deprecated vueCompilerOptions.experimentalUseElementAccessInTemplate
  • Specify packageManager (#​4358) - Thanks @​so1ve
  • docs: emoved possibly redundant duplicate reference (#​4348) - Thanks @​artshade
  • language-service: temporarily remove references codeLens (#​4364)
  • vscode: auto enabling hybrid mode allows
google/zx (zx)

v8.1.0

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7203031 to d720b8d Compare May 13, 2024 14:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d720b8d to fffa493 Compare May 13, 2024 22:46
@cexbrayat cexbrayat merged commit abbe919 into main May 14, 2024
101 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch May 14, 2024 05:13
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.

None yet

1 participant