Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 26, 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
@sanity/ui (source) ^3.0.7 -> ^3.1.8 age confidence
@types/node (source) ^20.19.11 -> ^20.19.19 age confidence
@types/react (source) ^19.1.11 -> ^19.2.0 age confidence
@types/react-dom (source) ^19.1.7 -> ^19.2.0 age confidence
@vitejs/plugin-react (source) ^5.0.1 -> ^5.0.4 age confidence
esbuild ^0.25.9 -> ^0.25.10 age confidence
eslint-plugin-react-hooks (source) 6.0.0-rc.1 -> 6.0.0-rc.2 age confidence
react (source) ^19.1.1 -> ^19.2.0 age confidence
react-dom (source) ^19.1.1 -> ^19.2.0 age confidence
react-is (source) ^19.1.1 -> ^19.2.0 age confidence
typescript (source) 5.9.2 -> 5.9.3 age confidence
vite (source) ^7.1.3 -> ^7.1.9 age confidence

Release Notes

sanity-io/ui (@​sanity/ui)

v3.1.8

Compare Source

Bug Fixes
  • deps: update dependency framer-motion to ^12.23.22 (main) (#​2109) (2d605cf)

v3.1.7

Compare Source

Bug Fixes
  • deps: update dependency framer-motion to ^12.23.21 (main) (#​2101) (0ee41d2)

v3.1.6

Compare Source

Bug Fixes
  • deps: update dependency framer-motion to ^12.23.19 (main) (#​2097) (43a8ee2)

v3.1.5

Compare Source

Bug Fixes
  • deps: update dependency framer-motion to ^12.23.18 (main) (#​2084) (cd740ab)

v3.1.4

Compare Source

Bug Fixes
  • deps: update dependency framer-motion to ^12.23.16 (main) (#​2080) (11bc8d0)

v3.1.3

Compare Source

Bug Fixes

v3.1.2

Compare Source

Bug Fixes
  • deps: update dependency framer-motion to ^12.23.15 (main) (#​2064) (ee0ca00)

v3.1.1

Compare Source

Bug Fixes

v3.1.0

Compare Source

Features

v3.0.14

Compare Source

Bug Fixes

v3.0.13

Compare Source

Bug Fixes

v3.0.12

Compare Source

Bug Fixes

v3.0.11

Compare Source

Bug Fixes

v3.0.10

Compare Source

Bug Fixes

v3.0.9

Compare Source

Bug Fixes

v3.0.8

Compare Source

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

v5.0.4

Compare Source

Perf: use native refresh wrapper plugin in rolldown-vite (#​881)

v5.0.3

Compare Source

HMR did not work for components imported with queries with rolldown-vite (#​872)
Perf: simplify refresh wrapper generation (#​835)

v5.0.2

Compare Source

Skip transform hook completely in rolldown-vite in dev if possible (#​783)
evanw/esbuild (esbuild)

v0.25.10

Compare Source

  • Fix a panic in a minification edge case (#​4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
  • Fix @supports nested inside pseudo-element (#​4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @​supports (color: blue) { color: blue }
    }
    
    /* Old output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
       {
        color: blue;
      }
    }
    
    /* New output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
      ::placeholder {
        color: blue;
      }
    }
facebook/react (eslint-plugin-react-hooks)

v6.0.0-rc.2

Compare Source

facebook/react (react)

v19.2.0

Compare Source

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features
  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools
New React DOM Features
  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.
Notable changes
  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId
All Changes
React
React DOM
React Server Components
React Reconciler
microsoft/TypeScript (typescript)

v5.9.3

Compare Source

vitejs/vite (vite)

v7.1.9

Compare Source

Reverts

v7.1.8

Compare Source

Bug Fixes
Documentation
Miscellaneous Chores

v7.1.7

Compare Source

Bug Fixes
  • build: fix ssr environment emitAssets: true when sharedConfigBuild: true (#​20787) (4c4583c)
  • client: use CSP nonce when rendering error overlay (#​20791) (9bc9d12)
  • deps: update all non-major dependencies (#​20811) (9f2247c)
  • glob: handle glob imports from folders starting with dot (#​20800) (105abe8)
  • hmr: trigger prune event when import is removed from non hmr module (#​20768) (9f32b1d)
  • hmr: wait for import.meta.hot.prune callbacks to complete before running other HMRs (#​20698) (98a3484)

v7.1.6

Compare Source

Bug Fixes
  • deps: update all non-major dependencies (#​20773) (88af2ae)
  • esbuild: inject esbuild helper functions with minified $ variables correctly (#​20761) (7e8e004)
  • fallback terser to main thread when nameCache is provided (#​20750) (a679a64)
  • types: strict env typings fail when skipLibCheck is false (#​20755) (cc54e29)
Miscellaneous Chores

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), 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.


  • 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

Copy link

vercel bot commented Aug 26, 2025

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

Project Deployment Preview Comments Updated (UTC)
ui-workshop Ready Ready Preview Comment Oct 3, 2025 2:48am

Copy link

socket-security bot commented Aug 26, 2025

@renovate renovate bot changed the title chore(deps): update dependency @types/react-dom to ^19.1.8 (main) chore(deps): update non-major (main) Aug 27, 2025
@renovate renovate bot force-pushed the renovate/main-non-major branch from 9b4aae2 to 9a86fa5 Compare August 27, 2025 20:43
@renovate renovate bot force-pushed the renovate/main-non-major branch from 9a86fa5 to 83af9f2 Compare August 28, 2025 04:16
@renovate renovate bot force-pushed the renovate/main-non-major branch from 83af9f2 to c661c6d Compare August 31, 2025 12:40
@renovate renovate bot force-pushed the renovate/main-non-major branch from c661c6d to 98db82c Compare September 1, 2025 12:18
@renovate renovate bot force-pushed the renovate/main-non-major branch from 98db82c to b541554 Compare September 3, 2025 10:16
@renovate renovate bot force-pushed the renovate/main-non-major branch from b541554 to 1e241c2 Compare September 4, 2025 10:47
@renovate renovate bot force-pushed the renovate/main-non-major branch from 1e241c2 to ac8a610 Compare September 4, 2025 15:15
@renovate renovate bot force-pushed the renovate/main-non-major branch from ac8a610 to e80e94d Compare September 4, 2025 22:06
@renovate renovate bot force-pushed the renovate/main-non-major branch from e80e94d to e30c1fe Compare September 5, 2025 10:40
@renovate renovate bot force-pushed the renovate/main-non-major branch from e30c1fe to 5f1520d Compare September 8, 2025 07:54
@renovate renovate bot force-pushed the renovate/main-non-major branch from 5f1520d to 41ab38d Compare September 9, 2025 22:53
@renovate renovate bot force-pushed the renovate/main-non-major branch from c6731bc to 04495c2 Compare September 23, 2025 15:33
@renovate renovate bot force-pushed the renovate/main-non-major branch from 04495c2 to e2e7b61 Compare September 23, 2025 20:59
@renovate renovate bot force-pushed the renovate/main-non-major branch from e2e7b61 to 22c4060 Compare September 25, 2025 11:10
@renovate renovate bot force-pushed the renovate/main-non-major branch from 22c4060 to b022b43 Compare September 25, 2025 17:59
@renovate renovate bot force-pushed the renovate/main-non-major branch from b022b43 to a92903a Compare September 26, 2025 19:25
@renovate renovate bot force-pushed the renovate/main-non-major branch from a92903a to 56b4f93 Compare September 26, 2025 22:42
@renovate renovate bot force-pushed the renovate/main-non-major branch from 56b4f93 to 9dac331 Compare September 27, 2025 18:00
@renovate renovate bot force-pushed the renovate/main-non-major branch from 9dac331 to 419631d Compare September 28, 2025 14:15
@renovate renovate bot force-pushed the renovate/main-non-major branch from 419631d to d528773 Compare September 29, 2025 19:02
@renovate renovate bot force-pushed the renovate/main-non-major branch from d528773 to e90c700 Compare September 30, 2025 06:54
@renovate renovate bot force-pushed the renovate/main-non-major branch from e90c700 to a85b43d Compare October 1, 2025 04:26
@renovate renovate bot force-pushed the renovate/main-non-major branch from a85b43d to 67763d3 Compare October 1, 2025 22:44
Copy link

socket-security bot commented Oct 1, 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 High
[email protected] has a License Policy Violation.

License: LicenseRef-W3C-Community-Final-Specification-Agreement (package/ThirdPartyNoticeText.txt)

From: package.jsonnpm/[email protected]

ℹ Read more on: This package | This alert | What is a license policy violation?

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: Find a package that does not violate your license policy or adjust your policy to allow this package's license.

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