-
Notifications
You must be signed in to change notification settings - Fork 2
chore(deps): update non-major (static) #209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: static
Are you sure you want to change the base?
Conversation
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
d0e83fc
to
ffda521
Compare
ffda521
to
41e85b8
Compare
41e85b8
to
386d8ab
Compare
386d8ab
to
119f031
Compare
119f031
to
dc1c276
Compare
dc1c276
to
5640839
Compare
5640839
to
2bdbe40
Compare
2bdbe40
to
0ebe670
Compare
0ebe670
to
3a939eb
Compare
3a939eb
to
09ab96f
Compare
09ab96f
to
be30766
Compare
9ebace2
to
ebe24ee
Compare
ebe24ee
to
45cfefe
Compare
45cfefe
to
c6480e9
Compare
c6480e9
to
fcb1c0f
Compare
fcb1c0f
to
2725c40
Compare
2725c40
to
af76b36
Compare
af76b36
to
43ba7f5
Compare
43ba7f5
to
ee6ab4f
Compare
ee6ab4f
to
025834f
Compare
025834f
to
e93077c
Compare
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.
|
e93077c
to
df9c16c
Compare
df9c16c
to
adcde5f
Compare
adcde5f
to
4ce5ebc
Compare
4ce5ebc
to
d323d5b
Compare
This PR contains the following updates:
^7.11.7
->^7.11.9
4.0.0-static.32
->4.0.0-static.36
^20.17.9
->^20.19.19
^2.0.3
->^2.0.4
^19.1.10
->^19.2.2
^19.1.7
->^19.2.1
^5.0.0
->^5.0.4
^0.25.8
->^0.25.10
6.0.0-rc.1
->6.0.0-rc.2
^1.30.1
->^1.30.2
^19.1.1
->^19.2.0
^19.1.1
->^19.2.0
^19.1.1
->^19.2.0
5.9.2
->5.9.3
^7.1.2
->^7.1.9
Release Notes
sanity-io/pkg-utils (@sanity/pkg-utils)
v7.11.9
Compare Source
Bug Fixes
v7.11.8
Compare Source
Bug Fixes
sanity-io/ui (@sanity/ui)
v4.0.0-static.36
Compare Source
Bug Fixes
This release is also available on:
v4.0.0-static.35
Compare Source
Features
This release is also available on:
v4.0.0-static.34
Compare Source
Bug Fixes
useResponsiveProp
(2ea4568)This release is also available on:
v4.0.0-static.33
Compare Source
Bug Fixes
displayName
toReact.createContext
(1787b4d)This release is also available on:
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)
v5.0.1
Compare Source
Set
optimizeDeps.rollupOptions.transform.jsx
instead ofoptimizeDeps.rollupOptions.jsx
for rolldown-vite (#735)optimizeDeps.rollupOptions.jsx
is going to be deprecated in favor ofoptimizeDeps.rollupOptions.transform.jsx
.Perf: skip
babel-plugin-react-compiler
if code has no"use memo"
when{ compilationMode: "annotation" }
(#734)Respect tsconfig
jsxImportSource
(#726)Fix
reactRefreshHost
option on rolldown-vite (#716)Fix
RefreshRuntime
being injected twice for class components on rolldown-vite (#708)Skip
babel-plugin-react-compiler
on non client environment (689)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):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: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:v0.25.9
Compare Source
Better support building projects that use Yarn on Windows (#3131, #3663)
With this release, you can now use esbuild to bundle projects that use Yarn Plug'n'Play on Windows on drives other than the
C:
drive. The problem was as follows:C:
driveD:
drive../..
to get from the project directory to the cache directory..
(soD:\..
is justD:
)Yarn works around this edge case by pretending Windows-style paths beginning with
C:\
are actually Unix-style paths beginning with/C:/
, so the../..
path segments are able to navigate across drives inside Yarn's implementation. This was broken for a long time in esbuild but I finally got access to a Windows machine and was able to debug and fix this edge case. So you should now be able to bundle these projects with esbuild.Preserve parentheses around function expressions (#4252)
The V8 JavaScript VM uses parentheses around function expressions as an optimization hint to immediately compile the function. Otherwise the function would be lazily-compiled, which has additional overhead if that function is always called immediately as lazy compilation involves parsing the function twice. You can read V8's blog post about this for more details.
Previously esbuild did not represent parentheses around functions in the AST so they were lost during compilation. With this change, esbuild will now preserve parentheses around function expressions when they are present in the original source code. This means these optimization hints will not be lost when bundling with esbuild. In addition, esbuild will now automatically add this optimization hint to immediately-invoked function expressions. Here's an example:
Note that you do not want to wrap all function expressions in parentheses. This optimization hint should only be used for functions that are called on initial load. Using this hint for functions that are not called on initial load will unnecessarily delay the initial load. Again, see V8's blog post linked above for details.
Update Go from 1.23.10 to 1.23.12 (#4257, #4258)
This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4674 and CVE-2025-47907) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.
facebook/react (eslint-plugin-react-hooks)
v6.0.0-rc.2
Compare Source
parcel-bundler/lightningcss (lightningcss)
v1.30.2
Compare Source
Fixes
::grammar-error
and::spelling-error
selectorsRust crate changes
paste
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 thecache()
lifetime is over.New React DOM Features
resume
: to resume a prerender to a stream.resumeAndPrerender
: to resume a prerender to HTML.resumeToPipeableStream
: to resume a prerender to a stream.resumeAndPrerenderToNodeStream
: to resume a prerender to HTML.prerender
APIs to return apostponed
state that can be passed to theresume
APIs.Notable changes
<ViewTransition>
Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.prerender
,renderToReadableStream
) to server-side-rendering APIs for Node.js:
IDs generated by useIdAll Changes
React
<Activity />
was developed over many years, starting beforeClassComponent.setState
(@acdlite @sebmarkbage and many others)%o
placeholder (@eps1lon #34198)useDeferredValue
loop in popstate event (@acdlite #32821)useDeferredValue
(@acdlite #34376)cacheSignal
(@sebmarkbage #33557)React DOM
:
for IDs generated byuseId
(@sebmarkbage, @eps1lon: #32001, #33342#33099, #33422)nonce
to be used on hoistable styles (@Andarist #32461)React.use
insideReact.lazy
-ed Component (@hi-ogawa #33941)progressiveChunkSize
option for server-side-rendering APIs (@sebmarkbage #33027)React Server Components
<img>
and<link>
using hints before they're rendered (@sebmarkbage #34604)filterStackFrame
(@eps1lon #33707)React Reconciler
on*
handlers to account for upcoming experimental APIsmicrosoft/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
create-react-app
license (#20865) (166a178)v7.1.7
Compare Source
Bug Fixes
emitAssets: true
whensharedConfigBuild: true
(#20787) (4c4583c)import.meta.hot.prune
callbacks to complete before running other HMRs (#20698) (98a3484)v7.1.6
Compare Source
Bug Fixes
$
variables correctly (#20761) (7e8e004)skipLibCheck
isfalse
(#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.
This PR has been generated by Mend Renovate using a curated preset maintained by
. View repository job log here