Skip to content

fix(deps): update all non-major dependencies#47

Merged
SyMind merged 3 commits into
mainfrom
renovate/all-minor-patch
May 13, 2026
Merged

fix(deps): update all non-major dependencies#47
SyMind merged 3 commits into
mainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 26, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) ^1.59.1^1.60.0 age confidence
@rsbuild/core (source) ^2.0.5^2.0.6 age confidence
@rslib/core (source) ^0.21.2^0.21.4 age confidence
@rslint/core ^0.4.2^0.5.2 age confidence
@rstest/core (source) ^0.9.8^0.9.10 age confidence
@types/node (source) ^25.6.0^25.7.0 age confidence
fs-extra ^11.3.4^11.3.5 age confidence
playwright (source) ^1.59.1^1.60.0 age confidence
react (source) ^19.2.5^19.2.6 age confidence
react-dom (source) ^19.2.5^19.2.6 age confidence

Release Notes

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
web-infra-dev/rsbuild (@​rsbuild/core)

v2.0.6

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rsbuild@v2.0.5...v2.0.6

web-infra-dev/rslib (@​rslib/core)

v0.21.4

Compare Source

What's Changed

New Features 🎉
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.3...v0.21.4

v0.21.3

Compare Source

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rslib@v0.21.2...v0.21.3

web-infra-dev/rslint (@​rslint/core)

v0.5.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
  • fix: mark type-checker-dependent rules with RequiresTypeInfo to fix LSP false positives on gap files by @​fansenze in #​824
  • fix: deflake vscode-extension JS config hot-reload tests by @​fansenze in #​836
  • fix: align --type-check with tsc --noEmit when tsconfig omits noEmit by @​fansenze in #​855
Other Changes

Full Changelog: web-infra-dev/rslint@v0.5.1...v0.5.2

v0.5.1

Compare Source

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
  • fix: align dot-notation with ESLint implementation by @​fansenze in #​784
  • fix: accept bare-object options from CLI / JS config in no-floating-promises by @​fansenze in #​782
  • fix(react): guard nil TypeChecker in no-danger-with-children and style-prop-object by @​fansenze in #​783
  • fix: align prefer-optional-chain with ESLint implementation by @​fansenze in #​790
  • fix: skip no-import-assign member-write when wrapped in type assertion by @​fansenze in #​789
  • fix: align no-use-before-define with typescript-eslint for heritage clauses by @​fansenze in #​788
  • fix: detect unused TypeScript type parameters in no-unused-vars by @​fansenze in #​787
  • fix: align no-redundant-type-constituents with ESLint implementation by @​fansenze in #​802
  • fix: exclude property-name positions from no-unused-vars unresolved-ref fallback by @​fansenze in #​804
Documentation 📖
  • docs: unify plugin rule doc titles and refactor rules-and-presets page by @​fansenze in #​816
Other Changes

Full Changelog: web-infra-dev/rslint@v0.5.0...v0.5.1

v0.5.0

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 force-pushed the renovate/all-minor-patch branch 7 times, most recently from e98faab to eb8c58a Compare May 1, 2026 13:38
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from cdea38b to a8fdf63 Compare May 7, 2026 21:27
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies May 7, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a3cbaf2 to 0153e21 Compare May 12, 2026 21:36
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1f430ac to 69c7429 Compare May 13, 2026 03:13
@SyMind SyMind force-pushed the renovate/all-minor-patch branch from 69c7429 to 83a2a7f Compare May 13, 2026 03:27
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented May 13, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@SyMind SyMind merged commit b7fe47e into main May 13, 2026
4 checks passed
@SyMind SyMind deleted the renovate/all-minor-patch branch May 13, 2026 03:43
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.

1 participant