Closed renovate[bot] closed 1 year ago
Kudos, SonarCloud Quality Gate passed!
0 Bugs
0 Vulnerabilities
0 Security Hotspots
0 Code Smells
No Coverage information
0.0% Duplication
:tada: This PR is included in version 2.0.0-beta.25 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
This PR contains the following updates:
17.7.2
->17.8.0
17.7.0
->17.8.0
17.7.2
->17.8.0
5.0.0
->5.0.1
1.38.1
->1.39.0
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
### [`v17.8.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@commitlint/cli/CHANGELOG.md#1780-2023-10-14) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v17.7.2...v17.8.0) **Note:** Version bump only for package [@commitlint/cli](https://togithub.com/commitlint/cli) #### [17.7.2](https://togithub.com/conventional-changelog/commitlint/compare/v17.7.1...v17.7.2) (2023-09-28) **Note:** Version bump only for package [@commitlint/cli](https://togithub.com/commitlint/cli) #### [17.7.1](https://togithub.com/conventional-changelog/commitlint/compare/v17.7.0...v17.7.1) (2023-08-10) **Note:** Version bump only for package [@commitlint/cli](https://togithub.com/commitlint/cli)conventional-changelog/commitlint (@commitlint/config-conventional)
### [`v17.8.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@commitlint/config-conventional/CHANGELOG.md#1780-2023-10-14) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v17.7.0...v17.8.0) **Note:** Version bump only for package [@commitlint/config-conventional](https://togithub.com/commitlint/config-conventional)conventional-changelog/commitlint (commitlint)
### [`v17.8.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@alias/commitlint/CHANGELOG.md#1780-2023-10-14) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v17.7.2...v17.8.0) **Note:** Version bump only for package commitlint #### [17.7.2](https://togithub.com/conventional-changelog/commitlint/compare/v17.7.1...v17.7.2) (2023-09-28) **Note:** Version bump only for package commitlint #### [17.7.1](https://togithub.com/conventional-changelog/commitlint/compare/v17.7.0...v17.7.1) (2023-08-10) **Note:** Version bump only for package commitlintprettier/eslint-plugin-prettier (eslint-plugin-prettier)
### [`v5.0.1`](https://togithub.com/prettier/eslint-plugin-prettier/blob/HEAD/CHANGELOG.md#501) [Compare Source](https://togithub.com/prettier/eslint-plugin-prettier/compare/v5.0.0...v5.0.1) ##### Patch Changes - [#588](https://togithub.com/prettier/eslint-plugin-prettier/pull/588) [`21a7146`](https://togithub.com/prettier/eslint-plugin-prettier/commit/21a7146d78161307dcc7eaa96f41dac51f7ce89f) Thanks [@krist7599555](https://togithub.com/krist7599555)! - fix: `parserPath` type might be `undefined` on Eslint Falt Configmicrosoft/playwright (playwright)
### [`v1.39.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.39.0) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.38.1...v1.39.0) #### Add custom matchers to your expect You can extend Playwright assertions by providing custom matchers. These matchers will be available on the expect object. ```js 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](https://playwright.dev/docs/test-configuration#add-custom-matchers-using-expectextend). #### Merge test fixtures You can now merge test fixtures from multiple files or modules: ```js 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); ``` ```js 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: ```js 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); ``` ```js 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()`](https://playwright.dev/docs/api/class-test#test-step) as "boxed" so that errors inside it point to the step call site. ```js async function login(page) { await test.step('login', async () => { // ... }, { box: true }); // Note the "box" option here. } ``` ```txt 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()`](https://playwright.dev/docs/api/class-test#test-step) documentation for a full example. #### New APIs - [`expect(locator).toHaveAttribute(name)`](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-attribute-2) #### 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 118Configuration
📅 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.
This PR has been generated by Mend Renovate. View repository job log here.