Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 23, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
@commitlint/cli (source) ^19.8.0 -> ^19.8.1 age confidence
@commitlint/config-conventional (source) ^19.8.0 -> ^19.8.1 age confidence
@commitlint/types (source) ^19.8.0 -> ^19.8.1 age confidence
@google-cloud/storage ^7.16.0 -> ^7.17.1 age confidence
@playwright/test (source) ^1.52.0 -> ^1.55.1 age confidence
@sanity/comlink (source) ^3.0.4 -> ^3.0.9 age confidence
@sanity/prettier-config ^1.0.3 -> ^1.0.6 age confidence
@testing-library/jest-dom ^6.6.3 -> ^6.9.0 age confidence
@types/node (source) ^22.10.5 -> ^22.18.8 age confidence
@types/react (source) ^19.1.2 -> ^19.1.16 age confidence
@types/react-dom (source) ^19.1.3 -> ^19.1.9 age confidence
@vitejs/plugin-react (source) ^4.4.1 -> ^4.7.0 age confidence
@vitest/coverage-v8 (source) 3.1.2 -> 3.2.4 age confidence
babel-plugin-react-compiler (source) 19.1.0-rc.1 -> 19.1.0-rc.3 age confidence
globals ^16.0.0 -> ^16.4.0 age confidence
husky ^9.1.6 -> ^9.1.7 age confidence
knip (source) ^5.52.0 -> ^5.64.1 age confidence
lint-staged ^15.2.10 -> ^15.5.2 age confidence
minimatch ^10.0.1 -> ^10.0.3 age confidence
prettier (source) ^3.5.3 -> ^3.6.2 age confidence
react (source) ^19.1.0 -> ^19.1.1 age confidence
react-dom (source) ^19.1.0 -> ^19.1.1 age confidence
tsx (source) ^4.7.1 -> ^4.20.6 age confidence
tsx (source) ^4.19.4 -> ^4.20.6 age confidence
turbo (source) ^2.5.2 -> ^2.5.8 age confidence
typedoc (source) ^0.28.3 -> ^0.28.13 age confidence
vitest (source) ^3.1.2 -> ^3.2.4 age confidence
zx (source) ^8.5.3 -> ^8.8.4 age confidence

Release Notes

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

v19.8.1

Compare Source

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

v19.8.1

Compare Source

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

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

v19.8.1

Compare Source

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

googleapis/nodejs-storage (@​google-cloud/storage)

v7.17.1

Compare Source

Bug Fixes
  • Respect useAuthWithCustomEndpoint flag for resumable uploads (#​2637) (707b4f2)

v7.17.0

Compare Source

Features
Bug Fixes
microsoft/playwright (@​playwright/test)

v1.55.1

Compare Source

Highlights

#​37479 - [Bug]: Upgrade Chromium to 140.0.7339.186.
#​37147 - [Regression]: Internal error: step id not found.
#​37146 - [Regression]: HTML reporter displays a broken chip link when there are no projects.
#​37137 - Revert "fix(a11y): track inert elements as hidden".

Browser Versions

  • Chromium 140.0.7339.186
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.55.0

Compare Source

v1.54.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error)https://github.com/microsoft/playwright/issues/368288 - [Regression]: Playwright Codegen keeps spamming with selected optiohttps://github.com/microsoft/playwright/issues/3681010 - [Regression]: Starting Codegen with target language doesn't work anymore

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.54.1

Compare Source

v1.54.0

Compare Source

Highlights

  • New cookie property partitionKey in browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.

  • New option noSnippets to disable code snippets in the html report.

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { noSnippets: true }]]
    });
  • New property location in test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation like test.skip or test.fixme was added.

Command Line

  • New option --user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.

    npx playwright codegen --user-data-dir=./user-data
  • Option -gv has been removed from the npx playwright test command. Use --grep-invert instead.

  • npx playwright open does not open the test recorder anymore. Use npx playwright codegen instead.

Miscellaneous

  • Support for Node.js 16 has been removed.
  • Support for Node.js 18 has been deprecated, and will be removed in the future.

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.53.2

Compare Source

v1.53.1

Compare Source

v1.53.0

Compare Source

Trace Viewer and HTML Reporter Updates

  • New Steps in Trace Viewer and HTML reporter: New Trace Viewer Steps

  • New option in 'html' reporter to set the title of a specific test run:

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { title: 'Custom test run #​1028' }]]
    });

Miscellaneous

  • New option kind in testInfo.snapshotPath() controls which snapshot path template is used.

  • New method locator.describe() to describe a locator. Used for trace viewer and reports.

    const button = page.getByTestId('btn-sub').describe('Subscribe button');
    await button.click();
  • npx playwright install --list will now list all installed browsers, versions and locations.

Browser Versions

  • Chromium 138.0.7204.4
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137
sanity-io/visual-editing (@​sanity/comlink)

v3.0.9

Bug Fixes

v3.0.8

Bug Fixes

v3.0.7

Bug Fixes
  • deps: bump xstate to 5.20 (5a5c004)

v3.0.6

Bug Fixes

v3.0.5

Bug Fixes
sanity-io/prettier-config (@​sanity/prettier-config)

v1.0.6

Compare Source

Bug Fixes

v1.0.5

Compare Source

Bug Fixes

v1.0.4

Compare Source

Bug Fixes
  • deps: update prettier-plugin-packagejson to v2.5.15 (e3c8ee5)
testing-library/jest-dom (@​testing-library/jest-dom)

v6.9.0

Compare Source

v6.8.0

Compare Source

v6.7.0

Compare Source

Features

v6.6.4

Compare Source

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.7.0

Compare Source

Add HMR support for compound components (#​518)

HMR now works for compound components like this:

const Root = () => <div>Accordion Root</div>
const Item = () => <div>Accordion Item</div>

export const Accordion = { Root, Item }
Return Plugin[] instead of PluginOption[] (#​537)

The return type has changed from react(): PluginOption[] to more specialized type react(): Plugin[]. This allows for type-safe manipulation of plugins, for example:

// previously this causes type errors
react({ babel: { plugins: ['babel-plugin-react-compiler'] } })
  .map(p => ({ ...p, applyToEnvironment: e => e.name === 'client' }))

v4.6.0

Compare Source

Add raw Rolldown support

This plugin only worked with Vite. But now it can also be used with raw Rolldown. The main purpose for using this plugin with Rolldown is to use react compiler.

v4.5.2

Compare Source

Suggest @vitejs/plugin-react-oxc if rolldown-vite is detected #​491

Emit a log which recommends @vitejs/plugin-react-oxc when rolldown-vite is detected to improve performance and use Oxc under the hood. The warning can be disabled by setting disableOxcRecommendation: false in the plugin options.

Use optimizeDeps.rollupOptions instead of optimizeDeps.esbuildOptions for rolldown-vite #​489

This suppresses the warning about optimizeDeps.esbuildOptions being deprecated in rolldown-vite.

Add Vite 7-beta to peerDependencies range #​497

React plugins are compatible with Vite 7, this removes the warning when testing the beta.

v4.5.1

Compare Source

Add explicit semicolon in preambleCode #​485

This fixes an edge case when using HTML minifiers that strips line breaks aggressively.

v4.5.0

Compare Source

Add filter for rolldown-vite #​470

Added filter so that it is more performant when running this plugin with rolldown-powered version of Vite.

Skip HMR for JSX files with hooks #​480

This removes the HMR warning for hooks with JSX.

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

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

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), 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 has been generated by Mend Renovate using a curated preset maintained by Sanity. View repository job log here

@renovate renovate bot requested a review from a team as a code owner July 23, 2025 22:05
@renovate renovate bot requested a review from colepeters July 23, 2025 22:05
@renovate renovate bot enabled auto-merge (squash) July 23, 2025 22:05
Copy link

vercel bot commented Jul 23, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
sdk-docs Error Error Oct 1, 2025 4:02am
sdk-kitchensink-react Error Error Oct 1, 2025 4:02am

@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 642221d to 83f92a3 Compare July 24, 2025 15:57
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 83f92a3 to cd5a51a Compare July 24, 2025 16:35
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from cd5a51a to 6bab2ce Compare July 24, 2025 16:44
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 6bab2ce to 52a7d3c Compare July 24, 2025 19:40
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 52a7d3c to 000be7c Compare July 24, 2025 21:34
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 000be7c to 2dc5c07 Compare July 25, 2025 14:52
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 2dc5c07 to 7ee0d53 Compare July 26, 2025 23:56
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 7ee0d53 to a3f519d Compare July 28, 2025 04:34
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 46c1c88 to 6419727 Compare September 26, 2025 03:02
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 6419727 to 0e05a5f Compare September 26, 2025 14:58
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 0e05a5f to 77fce24 Compare September 26, 2025 19:31
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 77fce24 to 51ce3cb Compare September 26, 2025 22:59
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from 51ce3cb to b1cf632 Compare September 28, 2025 14:12
@renovate renovate bot force-pushed the renovate/devdependencies-(non-major) branch from b1cf632 to fa69ab9 Compare September 29, 2025 19:10
Copy link

socket-security bot commented Sep 29, 2025

Warning

Review the following alerts detected in dependencies.

According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Warn Medium
[email protected] has Install scripts.

Install script: postinstall

Source: napi-postinstall oxc-resolver 11.8.4 check

From: pnpm-lock.yamlnpm/[email protected]npm/[email protected]

ℹ Read more on: This package | This alert | What is an install script?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at [email protected].

Suggestion: Packages should not be running non-essential scripts during install and there are often solutions to problems people solve with install scripts that can be run at publish time instead.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/[email protected]. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

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.

0 participants