chore(deps): update all patch dependencies #1178
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:
^0.111.1
->^0.111.2
^0.10.1
->^0.10.2
^2.68.2
->^2.68.3
^1.4.6
->^1.4.8
^1.3.0
->^1.3.1
1.4.6
->1.4.8
2.0.0-beta.20
->2.0.0-beta.21
2.0.0-beta.20
->2.0.0-beta.21
1.10.6
->1.10.7
Release Notes
lynx-family/lynx-stack (@lynx-js/react)
v0.111.2
Compare Source
Patch Changes
Optimize
componentAtIndex
by a few hundreds microseconds: avoiding manipulate__pendingListUpdates
unless SnapshotInstance tree is changed (#1201)Support alog of component rendering on production for better error reporting. Enable it by using
REACT_ALOG=true rspeedy dev/build
or defining__ALOG__
totrue
inlynx.config.js
: (#1164)Make
preact/debug
work with@lynx-js/react
. (#1222)Introduce
@lynx-js/react/debug
which would include debugging warnings and error messages for common mistakes found. (#1250)Add the import to
@lynx-js/react/debug
at the first line of the entry:<list-item/>
deferred now accepts an object withunmountRecycled
property to control unmounting behavior when the item is recycled. (#1302)For example, you can use it like this:
Now the component will be unmounted when it is recycled, which can help with performance in certain scenarios.
Avoid some unexpected
__SetAttribute
in hydrate whenundefined
is passed as an attribute value to intrinsic elements, for example: (#1318)lynx-family/lynx-stack (@lynx-js/rspeedy)
v0.10.2
Compare Source
Patch Changes
web-infra-dev/modern.js (@modern-js/module-tools)
v2.68.3
Compare Source
What's Changed
Other Changes
更新内容
其他变更
web-infra-dev/rsbuild (@rsbuild/core)
v1.4.8
Compare Source
What's Changed
New Features 🎉
apply
property by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5620Bug Fixes 🐞
stats.toJson
by @9aoy in https://github.com/web-infra-dev/rsbuild/pull/5615getStats
before the first build is finished by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5622Refactor 🔨
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rsbuild@v1.4.7...v1.4.8
v1.4.7
Compare Source
What's Changed
New Features 🎉
metadata
field to tag object by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5586HtmlTag
type by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5585Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.4.6...v1.4.7
rspack-contrib/rsbuild-plugin-node-polyfill (@rsbuild/plugin-node-polyfill)
v1.3.1
Compare Source
What's Changed
Full Changelog: rspack-contrib/rsbuild-plugin-node-polyfill@v1.3.0...v1.3.1
web-infra-dev/rspack (@rspack/core)
v1.4.8
Compare Source
What's Changed
Performance Improvements ⚡
Bug Fixes 🐞
Other Changes
New Contributors
Full Changelog: web-infra-dev/rspack@v1.4.7...v1.4.8
v1.4.7
Compare Source
Highlights
🚀 Rustify Watcher
Rspack implements a Native Watcher solution rather than using the
watchpack
npm package for file system observation. This architecture allows for incremental watcher system creation with every rebuild cycle.What's Changed
Performance Improvements ⚡
New Features 🎉
Bug Fixes 🐞
RawModule
by @colinaaa in https://github.com/web-infra-dev/rspack/pull/10954--devtool
CLI flag not work as expected by @Meet-student in https://github.com/web-infra-dev/rspack/pull/10880Refactor 🔨
Ref
andRefMut
ofDashMap
by @CPunisher in https://github.com/web-infra-dev/rspack/pull/10982Document Updates 📖
splitChunks.chunks
and update glossary by @chenjiahan in https://github.com/web-infra-dev/rspack/pull/10990Other Changes
x version
command by @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/10994cargo codegen
topnpm x version
script by @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/11018New Contributors
Full Changelog: web-infra-dev/rspack@v1.4.6...v1.4.7
web-infra-dev/rspress (@rspress/plugin-algolia)
v2.0.0-beta.21
Compare Source
Breaking Changes 🚨
🔥Remove
builderPlugins
, migrate tobuilderConfig.plugins
We can already configure Rsbuild in
builderConfig
, there is another configuration that is confusing.https://github.com/web-infra-dev/rspress/discussions/1891#discussioncomment-13729235
Migration step:
Expose type
RspressPlugin
from"rspress/core"
packgehttps://github.com/web-infra-dev/rspress/discussions/1891#discussioncomment-13762129
We do not want users to use our private package like
@rspress/shared
, only"rspress": "2.0.0"
package is all your neededbefore
after
For compatibility,
@rspress/shared
will still exportRspressPlugin
type, but usingrspress/core
and setting"rspress"
as peerDependencies will make it less likely for your plugin to encounter type errors.For example:
FIle code block syntax support in core ```tsx file="./demo.tsx"
Users can import an external demo file as a code block.
As we support this feature in the core. This also means that the syntax external code blocks are used in
plugin-preview
andplugin-playground
will change.before
only using together with
@rspress/plugin-preview
and@rspress/plugin-playground
after
This syntax is supported in the core package.
What's Changed
New Features 🎉
pnpm install packageName
topnpm add packageName
on PackageManagerTabs by @Marukome0743 in https://github.com/web-infra-dev/rspress/pull/2364RspressPlugin
from "rspress/core", "@rspress/shared" which is a private package should not be installed by users by @SoonIter in https://github.com/web-infra-dev/rspress/pull/2360Bug Fixes 🐞
withBase
from runtime by @jbroma in https://github.com/web-infra-dev/rspress/pull/2373rspress.config.ts
should be added to persistent cache deps by @SoonIter in https://github.com/web-infra-dev/rspress/pull/2378Document 📖
Other Changes
node:path
module from e2e tests by @Marukome0743 in https://github.com/web-infra-dev/rspress/pull/2369search
configuration,type: 'remote'
by @SoonIter in https://github.com/web-infra-dev/rspress/pull/2366builderPlugins
and migrate it tobuilderConfig.plugins
by @SoonIter in https://github.com/web-infra-dev/rspress/pull/2371New Contributors
Full Changelog: web-infra-dev/rspress@v2.0.0-beta.20...v2.0.0-beta.21
rspack-contrib/rstack-doc-ui (@rstack-dev/doc-ui)
v1.10.7
Compare Source
What's Changed
Full Changelog: rspack-contrib/rstack-doc-ui@v1.10.6...v1.10.7
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 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.