fix(deps): update react packages#1668
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
February 2, 2026 12:08
e302ba1 to
b4f3f19
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
February 3, 2026 13:11
b4f3f19 to
f323f18
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
February 12, 2026 12:36
f323f18 to
d4c45a5
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
February 17, 2026 18:51
d4c45a5 to
d2d00fa
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
February 21, 2026 18:14
d2d00fa to
7d4745b
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
February 23, 2026 14:16
7d4745b to
c1c20bb
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
February 23, 2026 14:53
c1c20bb to
87654a9
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
February 26, 2026 11:36
87654a9 to
804ebc1
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
March 3, 2026 06:16
804ebc1 to
8b2607d
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
March 6, 2026 07:10
8b2607d to
e09562b
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
March 13, 2026 13:08
e09562b to
edc4c5a
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
March 27, 2026 10:51
edc4c5a to
2dd0e8b
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
April 8, 2026 22:18
2dd0e8b to
aa1660b
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
April 13, 2026 13:34
58fc75e to
78b664d
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
April 13, 2026 23:35
78b664d to
2cac61a
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
April 14, 2026 07:14
2cac61a to
3e8e132
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
April 14, 2026 08:50
3e8e132 to
e7f4835
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
April 14, 2026 08:54
e7f4835 to
6ef9eea
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
April 17, 2026 07:23
6ef9eea to
7c1c4c1
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
April 17, 2026 09:46
7c1c4c1 to
5e5bda2
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
from
April 24, 2026 06:14
5e5bda2 to
9e0f083
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
2 times, most recently
from
April 29, 2026 11:14
38df063 to
200d072
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
5 times, most recently
from
May 12, 2026 13:36
b9c9e8e to
5b89411
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
2 times, most recently
from
June 1, 2026 11:40
d5b8b75 to
95e0f90
Compare
renovate
Bot
force-pushed
the
renovate/react-packages
branch
3 times, most recently
from
June 9, 2026 12:01
52518b0 to
691b96b
Compare
aulonm
approved these changes
Jul 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
19.2.3→19.2.719.2.3→19.2.70.9.1→0.11.0Release Notes
react/react (react)
v19.2.7Compare Source
React Server Components
FormDataentries in Server Actions which regressed in 19.2.6 (@unstubbable #36566)v19.2.6Compare Source
React Server Components
v19.2.5Compare Source
React Server Components
v19.2.4Compare Source
React Server Components
AVGVSTVS96/react-shiki (react-shiki)
v0.11.0Compare Source
Minor Changes
Feat: add
highlightLineNumbersoption to highlight specific lines by displayed line number (respectsstartingLineNumber)#172cdf859a@aouxwouxHighlighted lines get the
rs-highlighted-lineclass. The highlight color adapts to the active theme, deriving from its text color. With default styles, backgrounds automatically extend into the pre's horizontal padding so they reach the container edges.New CSS variables:
--rs-highlighted-line-background: highlight color (default: theme text color at 10% opacity)--rs-highlighted-line-number-foreground: line number color on highlighted lines (default: theme text color at 65% opacity)Add experimental
outputFormat: 'tokens'support touseShikiHighlighter, returning Shiki's rawTokensResultfor custom rendering. The hook's return type narrows based on the literaloutputFormatpassed:'react'returnsReactElement,'html'returnsstring, and'tokens'returnsTokensResult.#1464937a4c@AVGVSTVS96Token output is hook-only.
'tokens'is accepted through the hook's generic signature but excluded fromHighlighterOptionsand the component's props, so existing option objects and wrappers keep their current types. TheShikiHighlightercomponent warns and falls back to'react'if'tokens'is passed at runtime.Fix(css): default styles no longer use
@layer base, which broke Tailwind v3 builds (its PostCSS plugin treats@layer baseas a Tailwind directive). Default styles are now unlayered with zero-specificity:where()selectors: CSS resets (e.g. Tailwind preflight) can no longer override them, while any rule in your own CSS still can.#1743907885@AVGVSTVS96BREAKING CHANGE (css): Small risk for users with
applyDefaultStylesenabled:prepadding orborder-radiusoverrides from cascade layers (e.g. Tailwind[&_pre]:p-3.5) no longer apply. Use!/!importantor disable default styles. Plain (unlayered) CSS is unaffected.Patch Changes
#1837b22c1e@aouxwoux#166a8c491f@renovate#167721b1b1@renovatev0.10.1Compare Source
Patch Changes
Fix:
react-shiki/coreunstable factory identity causing re-tokenization on every render.#1631ac60cf@AVGVSTVS96Scope CSS to react-shiki's own DOM and drop deprecated unprefixed aliases (closes #162).
#165e1a4d3c@AVGVSTVS96Breaking: unprefixed classes and CSS variables are removed. Substitute as follows:
.line-numbers.rs-line-number.has-line-numbers.rs-has-line-numbers--line-numbers-foreground--rs-line-numbers-foreground--line-numbers-width--rs-line-numbers-width--line-numbers-padding-left--rs-line-numbers-padding-left--line-numbers-padding-right--rs-line-numbers-padding-right--line-numbers-font-size--rs-line-numbers-font-size--line-numbers-font-weight--rs-line-numbers-font-weight--line-numbers-line-height--rs-line-numbers-line-height--line-numbers-font-family--rs-line-numbers-font-family--line-numbers-opacity--rs-line-numbers-opacityv0.10.0Compare Source
Minor Changes
ShikiHighlightercontainer element frompretodiv#1352cd48c1@AVGVSTVS96Patch Changes
.mjsand.d.mtsentrypoints.#15730da8e9@AVGVSTVS96#1349eeecf6@AVGVSTVS96jsdomto^29.1.1.#15375fc5b9@renovate@vitejs/plugin-reactto^6.0.1.#151653d1a6@renovatehtml-react-parserto^6.1.0.#1525569114@renovateactions/node-versionsto24.15.0.dd06826@AVGVSTVS96@biomejs/biometo^2.4.14.dd06826@AVGVSTVS96@changesets/clito^2.31.0.dd06826@AVGVSTVS96pnpmto10.33.4.dd06826@AVGVSTVS96react-domto^19.2.6.dd06826@AVGVSTVS96reactto^19.2.6.dd06826@AVGVSTVS96shikito^4.0.2.dd06826@AVGVSTVS96@types/nodeto25.6.0.dd06826@AVGVSTVS96@types/react-domto^19.2.3.dd06826@AVGVSTVS96@types/reactto^19.2.14.dd06826@AVGVSTVS96v0.9.3Compare Source
Patch Changes
@layer baseand rename classnames and line-number CSS variables tors-prefixed names, with legacy selector and variable aliases kept for backwards compatibility until the next release.#141aa59bd5@AVGVSTVS96#1446bbd930@AVGVSTVS96v0.9.2Compare Source
Patch Changes
Feat: auto-load embedded languages
#12734a87b2@AVGVSTVS96Chore: update dependencies
#125b691861@AVGVSTVS96Deprecate
customLanguagesin favor ofpreloadLanguagesfor language preloading.#128121517f@AVGVSTVS96preloadLanguagessupports both bundled language IDs and custom language registrations.This also enables preloading bundled IDs directly (previously preloading focused on custom grammars).
Refactor: consolidate language resolution and use stricter Shiki type for grammars
#12330024f7@AVGVSTVS96LanguageRegistrationtype for textmate grammarsLanguageRegistrationtype for convenienceBREAKING CHANGES:
'repository'property needLanguageRegistrationcastingConfiguration
📅 Schedule: (in timezone Europe/Oslo)
🚦 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 preset from
. View repository job log here