Skip to content

chore(deps): update safe automerge#203

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/safe-automerge
Open

chore(deps): update safe automerge#203
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/safe-automerge

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 17, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@inquirer/prompts (source) 8.3.28.4.3 age confidence
@platformatic/control 3.41.03.54.0 age confidence
@platformatic/gateway 3.41.03.54.0 age confidence
@platformatic/runtime 3.41.03.54.0 age confidence
@platformatic/service 3.41.03.54.0 age confidence
@platformatic/vite 3.41.03.54.0 age confidence
@platformatic/wattpm-pprof-capture 3.41.03.54.0 age confidence
@playwright/test (source) 1.58.21.60.0 age confidence
@scalar/api-reference-react (source) 0.9.90.9.40 age confidence
@types/node (source) 24.12.024.12.4 age confidence
@types/react (source) 19.2.1419.2.15 age confidence
amaro 1.1.81.1.9 age confidence
autoprefixer 10.4.2710.5.0 age confidence
fastify (source) 5.8.25.8.5 age confidence
massimo-cli 1.2.01.3.0 age confidence
playwright (source) 1.58.21.60.0 age confidence
react (source) 19.2.419.2.6 age confidence
react-dom (source) 19.2.419.2.6 age confidence
react-router-dom (source) 7.13.17.15.1 age confidence
semver 7.7.47.8.1 age confidence
undici (source) 7.24.47.25.0 age confidence
vite (source) 7.3.17.3.3 age confidence
vite-plugin-singlefile (source) 2.3.22.3.3 age confidence
vitest (source) 4.1.04.1.7 age confidence
wattpm (source) 3.41.03.54.0 age confidence
ws 8.19.08.20.1 age confidence
zustand 5.0.125.0.13 age confidence

Release Notes

SBoudrias/Inquirer.js (@​inquirer/prompts)

v8.4.3

Compare Source

  • Fix: Windows rendering bug
  • Fix: Preserve exact literal types in choices array (Typescript only)
  • Fix: Allow input default value to be of type undefined (Typescript only)
  • Bump dependencies

v8.4.2

Compare Source

  • Fix: some Windows terminals would freeze and not react to keypresses.

v8.4.1

Compare Source

  • Improve expand prompt type inferrence.

v8.4.0

Compare Source

  • Feat: Added a loading message while validating editor prompt input.
  • Type improvement: Better type inference with checkbox, search and expand prompts.
  • Fix: editor prompt not always properly handling editor path on windows.
platformatic/platformatic (@​platformatic/control)

v3.54.0

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.53.0...v3.54.0

v3.53.0

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.52.4...v3.53.0

v3.52.4

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.52.3...v3.52.4

v3.52.3

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.52.2...v3.52.3

v3.52.2

Compare Source

What's Changed

New Contributors

Full Changelog: platformatic/platformatic@v3.52.1...v3.52.2

v3.52.1

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.52.0...v3.52.1

v3.52.0

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.51.0...v3.52.0

v3.51.0

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.50.0...v3.51.0

v3.50.0

Compare Source

What's Changed

New Contributors

Full Changelog: platformatic/platformatic@v3.49.1...v3.50.0

v3.49.1

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.49.0...v3.49.1

v3.49.0

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.48.0...v3.49.0

v3.48.0

Compare Source

Full Changelog: platformatic/platformatic@v3.47.0...v3.48.0

v3.47.0

What's Changed

Full Changelog: platformatic/platformatic@v3.45.0...v3.47.0

v3.45.0

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.44.0...v3.45.0

v3.44.0

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.43.0...v3.44.0

v3.43.0

Compare Source

What's Changed

Full Changelog: platformatic/platformatic@v3.42.0...v3.43.0

v3.42.0

Compare Source

What's Changed

New Contributors

Full Changelog: platformatic/platformatic@v3.41.0...v3.42.0

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

scalar/scalar (@​scalar/api-reference-react)

v0.9.40

v0.9.39

v0.9.38

v0.9.37

v0.9.36

v0.9.34

v0.9.33

v0.9.32

v0.9.31

Patch Changes
  • #​9043: chore: move test documents to cdn

v0.9.30

v0.9.29

v0.9.28

v0.9.27

v0.9.26

v0.9.25

v0.9.24

v0.9.23

v0.9.22

v0.9.21

v0.9.20

v0.9.19

Patch Changes
  • #​8656: fix react wrapper production crash by defining Vue bundler flags before importing api-reference

v0.9.18

v0.9.17

v0.9.16

v0.9.15

v0.9.14

v0.9.13

v0.9.12

v0.9.11

Patch Changes

v0.9.10

Patch Changes
Updated Dependencies
nodejs/amaro (amaro)

v1.1.9

Compare Source

Core
  • remove mention of node_modules (2b4249f)
Miscellaneous
  • build wasm from swc v1.15.21 (dfd333f)
  • build wasm from swc v1.15.24 (6eba3b9)
  • build wasm from swc v1.15.30 (10f015a)
  • deps: bump actions/setup-node from 6.2.0 to 6.3.0 (b4b9d53)
  • deps: bump actions/setup-node from 6.3.0 to 6.4.0 (a5b009a)
  • deps: bump actions/upload-artifact from 7.0.0 to 7.0.1 (3a1b232)
  • deps: bump biomejs/setup-biome from 2.7.0 to 2.7.1 (db5c7ad)
  • deps: bump docker/setup-buildx-action from 3.12.0 to 4.0.0 (f39649c)
  • deps: bump github/codeql-action from 4.32.6 to 4.34.1 (bbc38d5)
  • deps: bump github/codeql-action from 4.34.1 to 4.35.1 (f169d7d)
  • deps: bump github/codeql-action from 4.35.1 to 4.35.2 (8906d16)
  • deps: bump googleapis/release-please-action from 4.4.0 to 4.4.1 (97e8bb7)
  • deps: bump step-security/harden-runner from 2.15.0 to 2.15.1 (1037205)
  • deps: bump step-security/harden-runner from 2.15.1 to 2.16.0 (169e82e)
  • deps: bump step-security/harden-runner from 2.16.0 to 2.16.1 (9c2d95f)
  • deps: bump step-security/harden-runner from 2.16.1 to 2.17.0 (797d9c2)
  • deps: bump step-security/harden-runner from 2.17.0 to 2.18.0 (b88f27a)
  • update swc to v1.15.21 (3a1702b)
  • update swc to v1.15.24 (402f99e)
  • update swc to v1.15.30 (f0645e2)
postcss/autoprefixer (autoprefixer)

v10.5.0

Compare Source

  • Added mask-position-x and mask-position-y support (by @​toporek).
fastify/fastify (fastify)

v5.8.5

Compare Source

⚠️ Security Release

This fixes CVE CVE-2026-33806 GHSA-247c-9743-5963.

What's Changed

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 force-pushed the renovate/safe-automerge branch from 9b9568e to e4aec23 Compare March 18, 2026 10:43
@renovate renovate Bot changed the title chore(deps): update dependency @scalar/api-reference-react to v0.9.10 chore(deps): update dependency @scalar/api-reference-react to v0.9.11 Mar 18, 2026
@renovate renovate Bot force-pushed the renovate/safe-automerge branch from e4aec23 to 3507f5b Compare March 20, 2026 02:05
@renovate renovate Bot changed the title chore(deps): update dependency @scalar/api-reference-react to v0.9.11 chore(deps): update safe automerge Mar 20, 2026
@renovate renovate Bot force-pushed the renovate/safe-automerge branch 12 times, most recently from d17e2ea to 82409ef Compare March 26, 2026 19:36
@renovate renovate Bot force-pushed the renovate/safe-automerge branch 10 times, most recently from 7f4d67e to e0f0860 Compare April 3, 2026 14:39
@renovate renovate Bot force-pushed the renovate/safe-automerge branch 4 times, most recently from 2424a50 to f63759e Compare April 6, 2026 14:35
@renovate renovate Bot force-pushed the renovate/safe-automerge branch 8 times, most recently from ad1e0f8 to 4858b7a Compare April 19, 2026 18:28
@renovate renovate Bot force-pushed the renovate/safe-automerge branch 9 times, most recently from 080db65 to 77808f4 Compare April 28, 2026 07:43
@renovate renovate Bot force-pushed the renovate/safe-automerge branch 7 times, most recently from de9e81e to 0feee18 Compare May 6, 2026 15:25
@renovate renovate Bot force-pushed the renovate/safe-automerge branch 5 times, most recently from 0b03348 to afdaac1 Compare May 8, 2026 22:36
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