Skip to content

chore(deps): update devdependencies (non-major)#1817

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/devdependencies-(non-major)
Open

chore(deps): update devdependencies (non-major)#1817
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/devdependencies-(non-major)

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 19, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@actions/github (source) 6.0.06.0.1 age confidence
@commitlint/cli (source) 19.6.119.8.1 age confidence
@commitlint/config-conventional (source) 19.6.019.8.1 age confidence
@playwright/test (source) 1.57.01.60.0 age confidence
@vitest/coverage-v8 (source) 3.0.63.2.6 age confidence
@vscode/test-electron 2.4.12.5.2 age confidence
esbuild ^0.27.1^0.28.0 age confidence
eslint-config-prettier 10.0.110.1.8 age confidence
eslint-plugin-prettier 5.2.15.5.6 age confidence
lint-staged 15.3.015.5.2 age confidence
ovsx (source) 0.10.10.10.12 age confidence
pkg-types 2.2.02.3.1 age confidence
prettier (source) 3.4.23.8.3 age confidence
semver 7.6.37.8.2 age confidence
sinon (source) 21.0.021.1.2 age confidence
turbo (source) 2.6.12.9.16 age confidence
typescript (source) 5.7.35.9.3 age confidence
vitest (source) 3.2.43.2.6 age confidence

Release Notes

actions/toolkit (@​actions/github)

v6.0.1

conventional-changelog/commitlint (@​commitlint/cli)

v19.8.1

Compare Source

Bug Fixes

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/cli

19.6.1 (2024-12-15)

Note: Version bump only for package @​commitlint/cli

v19.7.1

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v19.8.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/config-conventional

v19.7.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

microsoft/playwright (@​playwright/test)

v1.60.0

Compare Source

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});

await page.locator('#dropzone').drop({
  data: {
    'text/plain': 'hello world',
    'text/uri-list': 'https://example.com',
  },
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page
Locators and Assertions
Network
  • webSocketRoute.protocols() returns the WebSocket subprotocols requested by the page.
  • New option noDefaults in browserType.connectOverCDP() disables Playwright's default overrides on the default context (download behavior, focus emulation, media emulation), so attaching to a user's daily-driver browser doesn't disturb its state.
Errors and Reporting
Test runner
  • New {testFileBaseName} token in testProject.snapshotPathTemplate — file name without extension.
  • Test runner now errors when a config tries to override a non-option fixture, and rejects workers: 0 or negative values.

🛠️ Other improvements

  • HTML reporter:
    • npx playwright show-report accepts .zip files directly — no need to unzip first.
    • Steps that contain attachments inside nested children show an indicator on the parent step.
    • The repeatEachIndex is shown in the test header when non-zero.
  • Trace Viewer adds a pretty-print toggle for JSON / form request and response bodies in the network details panel.

Breaking Changes ⚠️

  • Removed long-deprecated APIs:
    • Locator.ariaRef() — use the standard locator.ariaSnapshot() pipeline.
    • handle option on BrowserContext.exposeBinding and Page.exposeBinding.
    • logger option on BrowserType.connect and BrowserType.connectOverCDP — use tracing instead.
    • Context options videosPath / videoSize — use recordVideo instead.

Browser Versions

  • Chromium 148.0.7778.96
  • Mozilla Firefox 150.0.2
  • WebKit 26.4

This version was also tested against the following stable channels:

  • Google Chrome 147
  • Microsoft Edge 147

v1.59.1

Compare Source

v1.59.0

Compare Source

v1.58.2

Compare Source

v1.58.1

Compare Source

Highlights

#​39036 fix(msedge): fix local network permissions
#​39037 chore: update cft download location
#​38995 chore(webkit): disable frame sessions on fronzen builds

Browser Versions
  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.0

Compare Source

vitest-dev/vitest (@​vitest/coverage-v8)

v3.2.6

Compare Source

v3.2.5

Compare Source

v3.2.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.2.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.2.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.1.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.1.2

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v3.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.1.0

Compare Source

🚀 Features

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot enabled auto-merge (squash) February 19, 2025 12:08
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 6 times, most recently from 915e637 to cd4ab73 Compare February 26, 2025 14:07
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 9 times, most recently from e75f65c to fde472f Compare March 7, 2025 15:49
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 4 times, most recently from 9601db8 to 78be05e Compare March 17, 2025 13:59
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 8fdc365 to b15bcac Compare March 25, 2025 11:41
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 4 times, most recently from 3fa978d to 7c7a1d0 Compare April 5, 2025 02:45
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 4 times, most recently from 2efc540 to 04153b1 Compare April 10, 2025 10:51
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 4 times, most recently from 8e2442c to ada1c49 Compare May 12, 2025 18:21
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 4 times, most recently from 4d4c9fd to 6c7df46 Compare May 21, 2025 13:46
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 6 times, most recently from e6e2124 to d988e1a Compare June 4, 2025 06:44
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 3 times, most recently from e6cdc84 to ee4f407 Compare June 9, 2025 13:13
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 5 times, most recently from 5f9616f to 685eb01 Compare June 23, 2025 19:40
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 4 times, most recently from 0412408 to b62d879 Compare July 1, 2025 19:15
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 4c6c3ea to 1af50b5 Compare July 8, 2025 11:00
@renovate renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 1af50b5 to a81cb09 Compare July 10, 2025 12:24
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