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

Merged
merged 1 commit into from
Oct 12, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 25, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.38.0 -> ^1.39.0 age adoption passing confidence
@types/eslint (source) ^8.44.2 -> ^8.44.4 age adoption passing confidence
@types/nightwatch (source) ^2.3.25 -> ^2.3.26 age adoption passing confidence
@types/node (source) ^18.17.17 -> ^18.18.4 age adoption passing confidence
@types/prompts (source) ^2.4.4 -> ^2.4.6 age adoption passing confidence
@vitejs/plugin-vue (source) ^4.3.4 -> ^4.4.0 age adoption passing confidence
chromedriver ^117.0.1 -> ^117.0.3 age adoption passing confidence
cypress ^13.2.0 -> ^13.3.1 age adoption passing confidence
nightwatch (source) ^3.1.3 -> ^3.2.1 age adoption passing confidence
npm-run-all2 ^6.0.6 -> ^6.1.1 age adoption passing confidence
start-server-and-test ^2.0.0 -> ^2.0.1 age adoption passing confidence
vite (source) ^4.4.9 -> ^4.4.11 age adoption passing confidence
vitest ^0.34.4 -> ^0.34.6 age adoption passing confidence
vue-router ^4.2.4 -> ^4.2.5 age adoption passing confidence
vue-tsc ^1.8.11 -> ^1.8.19 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.39.0

Compare Source

Add custom matchers to your expect

You can extend Playwright assertions by providing custom matchers. These matchers will be available on the expect object.

import { expect as baseExpect } from '@​playwright/test';
export const expect = baseExpect.extend({
  async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
    // ... see documentation for how to write matchers.
  },
});

test('pass', async ({ page }) => {
  await expect(page.getByTestId('cart')).toHaveAmount(5);
});

See the documentation for a full example.

Merge test fixtures

You can now merge test fixtures from multiple files or modules:

import { mergeTests } from '@​playwright/test';
import { test as dbTest } from 'database-test-utils';
import { test as a11yTest } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);
import { test } from './fixtures';

test('passes', async ({ database, page, a11y }) => {
  // use database and a11y fixtures.
});

Merge custom expect matchers

You can now merge custom expect matchers from multiple files or modules:

import { mergeTests, mergeExpects } from '@​playwright/test';
import { test as dbTest, expect as dbExpect } from 'database-test-utils';
import { test as a11yTest, expect as a11yExpect } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);
export const expect = mergeExpects(dbExpect, a11yExpect);
import { test, expect } from './fixtures';

test('passes', async ({ page, database }) => {
  await expect(database).toHaveDatabaseUser('admin');
  await expect(page).toPassA11yAudit();
});

Hide implementation details: box test steps

You can mark a test.step() as "boxed" so that errors inside it point to the step call site.

async function login(page) {
  await test.step('login', async () => {
    // ...
  }, { box: true });  // Note the "box" option here.
}
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
  ... error details omitted ...

  14 |   await page.goto('https://github.com/login');
> 15 |   await login(page);
     |         ^
  16 | });

See test.step() documentation for a full example.

New APIs

Browser Versions

  • Chromium 119.0.6045.9
  • Mozilla Firefox 118.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 118
  • Microsoft Edge 118

v1.38.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/27071 - expect(value).toMatchSnapshot() deprecation announcement on V1.38
https://github.com/microsoft/playwright/issues/27072 - [BUG] PWT trace viewer fails to load trace and throws TypeErrorhttps://github.com/microsoft/playwright/issues/270733 - [BUG] RangeError: Invalid time valuhttps://github.com/microsoft/playwright/issues/2708787 - [REGRESSION]: npx playwright test --list prints all tests twihttps://github.com/microsoft/playwright/issues/27113113 - [REGRESSION]: No longer able to extend PlaywrightTest.Matchers type for locators and pahttps://github.com/microsoft/playwright/issues/271447144 - [BUG]can not display thttps://github.com/microsoft/playwright/issues/2716327163 - [REGRESSION] Single Quote Wrongly Escaped by Locator When Using Unicodehttps://github.com/microsoft/playwright/issues/27181/27181 - [BUG] evaluate serializing fails at 1.38

Browser Versions
  • Chromium 117.0.5938.62
  • Mozilla Firefox 117.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 116
  • Microsoft Edge 116
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v4.4.0

giggio/node-chromedriver (chromedriver)

v117.0.3

Compare Source

v117.0.2

Compare Source

cypress-io/cypress (cypress)

v13.3.1

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-3-1

v13.3.0

Compare Source

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

nightwatchjs/nightwatch (nightwatch)

v3.2.1

Compare Source

What's Changed

Full Changelog: nightwatchjs/nightwatch@v3.2.0...v3.2.1

v3.2.0

Compare Source

What's Changed

Full Changelog: nightwatchjs/nightwatch@v3.1.3...v3.2.0

bcomnes/npm-run-all2 (npm-run-all2)

v6.1.1

Compare Source

Commits

v6.1.0

Compare Source

Merged
  • Upgrade: Bump actions/checkout from 3 to 4 #119
Commits
bahmutov/start-server-and-test (start-server-and-test)

v2.0.1

Compare Source

Bug Fixes
vitejs/vite (vite)

v4.4.11

Compare Source

Please refer to CHANGELOG.md for details.

v4.4.10

Compare Source

Please refer to CHANGELOG.md for details.

vitest-dev/vitest (vitest)

v0.34.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.34.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
vuejs/router (vue-router)

v4.2.5

Compare Source

Please refer to CHANGELOG.md for details.

vuejs/language-tools (vue-tsc)

v1.8.19

Compare Source

  • feat: no longer checking save time (#​3650)
  • fix(ts-plugin): tsserver doesnt have updated list of external files when new vue files are added (required TS 5.3) (#​3555) (#​3649)
  • fix: false positive error when accessing local variables in defineProps parameter (#​3643) (#​3644) - thanks @​so1ve
Full-time Support by

WebContainer API is here.

Our Platinum Sponsors
The Intuitive Web Framework
The Progressive JavaScript Framework
Our Silver Sponsors

Add you via GitHub Sponsors or Open Collective

v1.8.18

Compare Source

Upgrade required VSCode version to 1.82.0 (#​3642)

v1.8.17

Compare Source

Full-time Support by

WebContainer API is here.

Our Platinum Sponsors
The Intuitive Web Framework
The Progressive JavaScript Framework
Our Silver Sponsors

Add you via GitHub Sponsors or Open Collective

v1.8.16

Compare Source

  • fix: merge default export's properties properly (#​3600) - thanks @​so1ve
  • fix: accurate exposed type with refs in generic component (#​3604) - thanks @​so1ve
  • fix: make emits type correct when user assigns emit function a custom name (#​3624) - thanks @​so1ve
Volar.js 1.10.3 updates:

v1.8.15

Compare Source

  • fix: props type missing in JS component context (#​3592)
  • fix: ignore $emit return type for Vue 2 (#​3596)

v1.8.14

Compare Source

Full-time Support by

WebContainer API is here.

Our Platinum Sponsors
The Intuitive Web Framework
The Progressive JavaScript Framework
Our Silver Sponsors

Add you via GitHub Sponsors or Open Collective

v1.8.13

Compare Source

  • fix: generate valid syntax when noPropertyAccessFromIndexSignature is not enabled (#​3575) - thanks @​so1ve

v1.8.12

Compare Source

  • feat: support vitepress's code snippet import (#​3559) - thanks @​so1ve
  • fix(component-meta): fix modules interoperability with vue-component-type-helper
  • fix: avoid losing generic types with strictTemplates: false (#​3565) - thanks @​so1ve
  • fix: format slots with typeannotation correctly (#​3573) - thanks @​so1ve

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 9 times, most recently from 72cbe25 to 2eb7b6a Compare October 2, 2023 15:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 1977c4a to e717ab7 Compare October 8, 2023 19:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a550170 to ff9c1d0 Compare October 11, 2023 12:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ff9c1d0 to 6200d34 Compare October 12, 2023 00:50
@haoqunjiang haoqunjiang merged commit 49fd22d into main Oct 12, 2023
101 checks passed
@haoqunjiang haoqunjiang deleted the renovate/all-minor-patch branch October 12, 2023 07:04
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.

1 participant