fix(deps): update all non-major dependencies #52
Merged
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:
^10.0.14
->^10.3.1
^22.16.0
->^22.16.2
^10.0.14
->^10.0.27
10.12.4
->10.13.1
^24.12.0
->^24.12.1
^16.8.6
->^16.14.0
^16.8.6
->^16.14.0
^7.0.6
->^7.0.7
^0.7.4
->^0.7.5
^7.0.3
->^7.0.4
^1.33.0
->^1.101.2
^5.99.9
->^5.100.0
Release Notes
emotion-js/emotion (@emotion/core)
v10.3.1
Compare Source
Patch Changes
33c01578
Thanks @Methuselah96! - ExportKeyframes
type to avoid TypeScript insertingimport("@​emotion/serialize").Keyframes
references into declaration files emitted based on a source files exportingkeyframes
result. This avoids issues with strict package managers that don't allow accessing undeclared dependencies.v10.3.0
Compare Source
Minor Changes
#2566
122e9f11
Thanks @eps1lon, @Andarist! - Fixed hydration mismatches ifReact.useId
(an upcoming API in React 18) is used within a tree below our components.#2560
b5a26619
Thanks @eps1lon! - Dropped usage of a deprecatedSFC
React type in favor ofFC
. TheFC
type has been introduced in@types/[email protected]
so this version of this package is now a minimum requirement for TypeScript users.v10.1.1
Compare Source
Patch Changes
fe30cbd6
#2066 Thanks @Andarist! - Fixed an issue with React giving warning about static children not having unique keys when using the classicjsx
factory. This example illustrates the situation in which this has been incorrectly happening:v10.1.0
Compare Source
Minor Changes
71514b06
#1970 Thanks @FLGMwt! - Support for the new JSX runtimes has been added. They require compatible React versions and shouldn't be manually used.To use them you can use the new
@jsxImportSource @​emotion/core
pragma instead of the old@jsx jsx
or you can use@emotion/babel-preset-css-prop
with{ runtime: 'automatic' }
option to have it handled automatically for you for the whole project.v10.0.35
Compare Source
Patch Changes
2cf3b16b
#1973 Thanks @santialbo! - Fixed label extraction from the stack traces in node for components wrapped inReact.forwardRef
. This has affected only development builds.v10.0.34
Compare Source
Patch Changes
4979ebb2
#1966 Thanks @chnakamura! - Fixed label extraction from the stack traces in Chrome in certain scenarios. This has affected only development builds.v10.0.28
Compare Source
Patch Changes
d0b2a94
#1714 Thanks @Andarist! - Fixed label extraction from the stack traces in FireFox and Safari. We have failed to match a label in Emotion wrappers like Theme UI which caused SSR mismatches in mentioned browsers. This has affected only development builds.v10.0.27
Compare Source
Patch Changes
4c62ae9
#1698 Thanks @Andarist! - Add LICENSE file4c62ae9
]:v10.0.22
Compare Source
Patch Changes
4fc5657a
#1219 Thanks @Andarist! - Add dev hint about css object being stringified by accident2fc75f26
#1548 Thanks @Andarist! - Accept objects asclassName
in jsx-created components (they are stringified) to match React behavior10211951
#1553 Thanks @Andarist! - Add dev warning about keyframes being interpolated into plain strings.57a767ea
#1560 Thanks @Andarist! - Fix composition of styles without a final semicolon in a declaration blockUpdated dependencies [
4fc5657a
,10211951
,57a767ea
,c3f0bc10
,11bea3a8
]:v10.0.21
Compare Source
Patch Changes
/* #__PURE__ */
annotation to creation of EmotionCssPropInternalv10.0.20
Compare Source
Patch Changes
v10.0.17
Compare Source
v10.0.16
Compare Source
v10.0.15
Compare Source
pnpm/pnpm (pnpm)
v10.13.1
Compare Source
Patch Changes
v10.13.0
Compare Source
Minor Changes
Added the possibility to load multiple pnpmfiles. The
pnpmfile
setting can now accept a list of pnpmfile locations #9702.pnpm will now automatically load the
pnpmfile.cjs
file from any config dependency named@pnpm/plugin-*
orpnpm-plugin-*
#9729.The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the
pnpmfile.cjs
files in the config dependencies can be explicitly listed using thepnpmfile
setting inpnpm-workspace.yaml
.Patch Changes
pkg.pr.new
, treat them as Git tarball URLs #9694.dangerouslyAllowAllBuilds
,onlyBuiltDependencies
,onlyBuiltDependenciesFile
, andneverBuiltDependencies
#9628.pnpm-workspace.yaml
with deep #9701.pnpm rebuild
command should not add pkgs included inignoredBuiltDependencies
toignoredBuilds
innode_modules/.modules.yaml
#9338.shell-quote
withshlex
for quoting command arguments #9381.facebook/react (react)
v16.14.0
Compare Source
React
v16.13.1
Compare Source
React DOM
componentWillReceiveProps
,shouldComponentUpdate
, and so on). (@gaearon in #18330)v16.13.0
Compare Source
React
React.createFactory()
(@trueadm in #17878)React DOM
style
may cause an unexpected collision (@sophiebits in #14181, #18002)unstable_createPortal
(@trueadm in #17880)onMouseEnter
being fired on disabled buttons (@AlfredoGJ in #17675)shouldComponentUpdate
twice when developing inStrictMode
(@bvaughn in #17942)version
property to ReactDOM (@ealush in #15780)toString()
ofdangerouslySetInnerHTML
(@sebmarkbage in #17773)Concurrent Mode (Experimental)
ReactDOM.createRoot()
(@trueadm in #17937)ReactDOM.createRoot()
callback params and added warnings on usage (@bvaughn in #17916)SuspenseList
CPU bound heuristic (@sebmarkbage in #17455)isPending
only being true when transitioning from inside an input event (@acdlite in #17382)React.memo
components dropping updates when interrupted by a higher priority update (@acdlite in #18091)v16.12.0
Compare Source
React DOM
useEffect
) not being fired in a multi-root app. (@acdlite in #17347)React Is
lazy
andmemo
types considered elements instead of components (@bvaughn in #17278)v16.11.0
Compare Source
React DOM
mouseenter
handlers from firing twice inside nested React containers. @yuanoook in #16928unstable_createRoot
andunstable_createSyncRoot
experimental APIs. (These are available in the Experimental channel ascreateRoot
andcreateSyncRoot
.) (@acdlite in #17088)v16.10.2
Compare Source
React DOM
v16.10.1
Compare Source
React DOM
v16.10.0
Compare Source
React DOM
Object.is
instead of inline polyfill, when available. (@ku8ar in #16212)Scheduler (Experimental)
postMessage
loop with short intervals instead of attempting to align to frame boundaries withrequestAnimationFrame
. (@acdlite in #16214)useSubscription
v16.9.0
Compare Source
React
<React.Profiler>
API for gathering performance measurements programmatically. (@bvaughn in #15172)unstable_ConcurrentMode
in favor ofunstable_createRoot
. (@acdlite in #15532)React DOM
UNSAFE_*
lifecycle methods. (@bvaughn in #15186 and @threepointone in #16103)javascript:
URLs as a common attack surface. (@sebmarkbage in #15047)disablePictureInPicture
attribute on<video>
. (@eek in #15334)onLoad
event for<embed>
. (@cherniavskii in #15614)useState
state from DevTools. (@bvaughn in #14906)setState
is called fromuseEffect
, creating a loop. (@gaearon in #15180)findDOMNode
for components wrapped in<Suspense>
. (@acdlite in #15312)!important
style. (@acdlite in #15861 and #15882)React DOM Server
React Test Utilities and Test Renderer
act(async () => ...)
for testing asynchronous state updates. (@threepointone in #14853)act
from different renderers. (@threepointone in #16039 and #16042)act()
call. (@threepointone in #15763 and #16041)act
from the wrong renderer. (@threepointone in #15756)ESLint Plugin: React Hooks
vitejs/rolldown-vite (rolldown-vite)
v7.0.7
Compare Source
Features
output.minifyInternalExports
by default (#322) (287a36e)Bug Fixes
Code Refactoring
@oxc-project/runtime
(#321) (d352c1b)Build System
@oxc-project/runtime
devDep (#20389) (5e29602)vitejs/vite (vite)
v7.0.4
Compare Source
Bug Fixes
Build System
@oxc-project/runtime
devDep (#20389) (5e29602)microsoft/vscode (vscode)
v1.101.2
: May 2025 Recovery 2Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.101.1
: May 2025 Recovery 1Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.101.0
: May 2025Compare Source
Welcome to the May 2025 release of Visual Studio Code. There are many updates in this version that we hope you'll like, some of the key highlights include:
MCP
Chat
Source Control
v1.100.3
: April 2025 Recovery 3Compare Source
The update addresses these issues, including a fix for a security vulnerability.
For the complete release notes go to Updates on code.visualstudio.com.
v1.100.2
: April 2025 Recovery 2Compare Source
The update addresses these issues, including a fix for a security vulnerability.
For the complete release notes go to Updates on code.visualstudio.com.
v1.100.1
: April 2025 Recovery 1Compare Source
The update addresses these issues, including a fix for a security vulnerability.
For the complete release notes go to Updates on code.visualstudio.com.
v1.100.0
: April 2025Compare Source
Welcome to the April 2025 release of Visual Studio Code. There are many updates in this version that we hope you'll like, some of the key highlights include:
Chat
Chat performance
Editor experience
For the complete release notes go to Updates on code.visualstudio.com.
Insiders: Want to try new features as soon as possible? You can download the nightly Insiders build and try the latest updates as soon as they are available.
v1.99.3
: March 2025 Recovery 3Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.99.2
: March 2025 Recovery 2Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.99.1
: March 2025 Recovery 1Compare Source
The update has a fix for the security vulnerability in this issue.
For the complete release notes go to Updates on code.visualstudio.com.
v1.99.0
: March 2025Compare Source
Welcome to the March 2025 release of Visual Studio Code. There are many updates in this version that we hope you'll like, some of the key highlights include:
Agent mode
chat.agent.enabled:true
(more...).Code editing
Chat
Notebook editing
For the complete release notes go to Updates on code.visualstudio.com.
Insiders: Want to try new features as soon as possible? You can download the nightly Insiders build and try the latest updates as soon as they are available.
v1.98.2
: February 2025 Recovery 2Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.98.1
: February 2025 Recovery 1Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.98.0
: February 2025Compare Source
Welcome to the February 2025 release of Visual Studio Code. There are many updates in this version that we hope you'll like, some of the key highlights include:
For the complete release notes go to Updates on code.visualstudio.com.
Insiders: Want to see new features as soon as possible? You can download the nightly Insiders build and try the latest updates as soon as they are available. And for the latest Visual Studio Code news, updates, and content, follow us on Bluesky vscode.dev or Twitter @code!
v1.97.2
: January 2025 Recovery 2Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.97.1
: January 2025 Recovery 1Compare Source
The update addresses these issues, including a fix for a security vulnerability.
For the complete release notes go to Updates on code.visualstudio.com.
v1.97.0
: January 2025Compare Source
Welcome to the January 2025 release of Visual Studio Code. There are many updates in this version that we hope you'll like, some of the key highlights include:
For the complete release notes go to Updates on code.visualstudio.com.
Insiders: Want to see new features as soon as possible? You can download the nightly Insiders build and try the latest updates as soon as they are available. And for the latest Visual Studio Code news, updates, and content, follow us on Bluesky vscode.dev or Twitter @code!
v1.96.4
: November 2024 Recovery 4Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.96.3
: November 2024 Recovery 3Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.96.2
: November 2024 Recovery 2Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.96.1
: November 2024 Recovery 1Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.96.0
: November 2024Compare Source
Welcome to the November 2024 release of Visual Studio Code. There are many updates in this version that we hope you'll like, some of the key highlights include:
For the complete release notes go to Updates on code.visualstudio.com.
Insiders: Want to see new features as soon as possible? You can download the nightly Insiders build and try the latest updates as soon as they are available. And for the latest Visual Studio Code news, updates, and content, follow us on Twitter @code!
v1.95.3
: October 2024 Recovery 3Compare Source
The update addresses these issues.
For the complete release notes go to Updates on code.visualstudio.com.
v1.95.2
: October 2024 Recovery 2[Compare Source](https://redirect.github.com/microsoft/vscode/compare/1.95
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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 was generated by Mend Renovate. View the repository job log.