-
Notifications
You must be signed in to change notification settings - Fork 2
chore(deps): update non-major (main) #222
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: main
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
c9f3eac to
e2c7bd9
Compare
e2c7bd9 to
10886e2
Compare
10886e2 to
c0aea9d
Compare
c0aea9d to
c6349f7
Compare
c6349f7 to
cb21d16
Compare
cb21d16 to
fa7b4ff
Compare
fa7b4ff to
0c85a7f
Compare
0c85a7f to
2b2aeb7
Compare
2b2aeb7 to
b2c4a9c
Compare
b2c4a9c to
0188a5f
Compare
0188a5f to
7680480
Compare
7680480 to
1b9f1be
Compare
1b9f1be to
61b8d4c
Compare
61b8d4c to
c0bdc2d
Compare
c0bdc2d to
9c46ce5
Compare
9c46ce5 to
0c2dcbb
Compare
0c2dcbb to
89a8691
Compare
This PR contains the following updates:
^8.1.21->^8.1.29^3.1.10->^3.1.11^1.5.5->^1.5.6^5.0.3->^5.0.5^20.19.21->^20.19.24^5.0.4->^5.1.0^0.25.11->^0.25.12^7.1.10->^7.2.2Release Notes
sanity-io/pkg-utils (@sanity/pkg-utils)
v8.1.29Compare Source
Bug Fixes
v8.1.28Compare Source
Bug Fixes
v8.1.27Compare Source
Bug Fixes
v8.1.26Compare Source
Bug Fixes
v8.1.25Compare Source
Bug Fixes
v8.1.24Compare Source
Bug Fixes
v8.1.23Compare Source
Bug Fixes
v8.1.22Compare Source
Bug Fixes
sanity-io/ui (@sanity/ui)
v3.1.11Compare Source
Bug Fixes
framer-motionwithmotion/react(cc49ab6)vitejs/vite-plugin-react (@vitejs/plugin-react)
v5.1.0Compare Source
Add
@vitejs/plugin-react/preamblevirtual module for SSR HMR (#890)SSR applications can now initialize HMR runtime by importing
@vitejs/plugin-react/preambleat the top of their client entry instead of manually callingtransformIndexHtml. This simplifies SSR setup for applications that don't use thetransformIndexHtmlAPI.Fix raw Rolldown support for Rolldown 1.0.0-beta.44+ (#930)
Rolldown 1.0.0-beta.44+ removed the top-level
jsxoption in favor oftransform.jsx. This plugin now uses thetransform.jsxoption to support Rolldown 1.0.0-beta.44+.evanw/esbuild (esbuild)
v0.25.12Compare Source
Fix a minification regression with CSS media queries (#4315)
The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for
@media <media-type> and <media-condition-without-or> { ... }was missing an equality check for the<media-condition-without-or>part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.Update the list of known JavaScript globals (#4310)
This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global
Arrayproperty is considered to be side-effect free but accessing the globalscrollYproperty can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:From ES2017:
AtomicsSharedArrayBufferFrom ES2020:
BigInt64ArrayBigUint64ArrayFrom ES2021:
FinalizationRegistryWeakRefFrom ES2025:
Float16ArrayIteratorNote that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from
Iterator:Add support for the new
@view-transitionCSS rule (#4313)With this release, esbuild now has improved support for pretty-printing and minifying the new
@view-transitionrule (which esbuild was previously unaware of):The new view transition feature provides a mechanism for creating animated transitions between documents in a multi-page app. You can read more about view transition rules here.
This change was contributed by @yisibl.
Trim CSS rules that will never match
The CSS minifier will now remove rules whose selectors contain
:is()and:where()as those selectors will never match. These selectors can currently be automatically generated by esbuild when you give esbuild nonsensical input such as the following:This input is nonsensical because CSS nesting is (unfortunately) not supported inside of pseudo-elements such as
:before. Currently esbuild generates a rule containing:is()in this case when you tell esbuild to transform nested CSS into non-nested CSS. I think it's reasonable to do that as it sort of helps explain what's going on (or at least indicates that something is wrong in the output). It shouldn't be present in minified code, however, so this release now strips it out.vitejs/vite (vite)
v7.2.2Compare Source
Bug Fixes
v7.2.1Compare Source
Bug Fixes
Code Refactoring
indexOfMatchInSlicetofindPreloadMarker(#21054) (f83264f)v7.2.0Compare Source
Bug Fixes
getBuiltinsresponse JSON serializable (#21029) (ad5b3bf)Miscellaneous Chores
v7.1.12Compare Source
Please refer to CHANGELOG.md for details.
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