Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 6, 2025

This PR contains the following updates:

Package Change Age Confidence
@lynx-js/react (source) ^0.114.0 -> ^0.114.1 age confidence
@lynx-js/rspeedy (source) ^0.11.4 -> ^0.11.5 age confidence
@rsbuild/core (source) ^1.5.12 -> ^1.5.14 age confidence
@rspack/core (source) 1.5.7 -> 1.5.8 age confidence
@types/react (source) ^18.3.24 -> ^18.3.26 age confidence
semver ^7.7.2 -> ^7.7.3 age confidence

Release Notes

lynx-family/lynx-stack (@​lynx-js/react)

v0.114.1

Patch Changes
  • Add event.stopPropagation and event.stopImmediatePropagation in MTS, to help with event propagation control (#​1835)

    function App() {
      function handleInnerTap(event: MainThread.TouchEvent) {
        'main thread';
        event.stopPropagation();
        // Or stop immediate propagation with
        // event.stopImmediatePropagation();
      }
    
      // OuterTap will not be triggered
      return (
        <view main-thread:bindtap={handleOuterTap}>
          <view main-thread:bindtap={handleInnerTap}>
            <text>Hello, world</text>
          </view>
        </view>
      );
    }

    Note, if this feature is used in Lazy Loading Standalone Project, both the Producer and the Consumer should update to latest version of @lynx-js/react to make sure the feature is available.

  • Fix the "ReferenceError: Node is not defined" error. (#​1850)

    This error would happen when upgrading to @testing-library/jest-dom v6.9.0.

  • fix: optimize main thread event error message (#​1838)

lynx-family/lynx-stack (@​lynx-js/rspeedy)

v0.11.5

Compare Source

Patch Changes
  • Bump Rsbuild v1.5.13 with Rspack v1.5.8. (#​1849)
web-infra-dev/rsbuild (@​rsbuild/core)

v1.5.14

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.5.13...v1.5.14

v1.5.13

Compare Source

Highlights 💡

Browser logs

Rsbuild now forwards browser errors to your terminal — giving your coding agent more context 🤖.

image

This can be disabled via dev.browserLogs config:

export default {
  dev: {
    browserLogs: false,
  },
}

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.5.12...v1.5.13

web-infra-dev/rspack (@​rspack/core)

v1.5.8

Compare Source

Highlights 💡

Enhanced Tree Shaking for Nested Exports in Destructuring

Rspack now supports more precise tree shaking for nested exports accessed through destructuring assignments.

// lib.js
export * as a from "./a";
export * as b from "./b";

// index.js
import * as lib from "./lib";
// Before: All exports under `lib.a` were retained, only `lib.b` was tree-shaken
// Now: Only the specific property `inner` from `lib.a` is kept; everything else is removed
const { a: { inner } } = lib;

What's Changed

Performance Improvements ⚡
New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Document Updates 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspack@v1.5.7...v1.5.8

npm/node-semver (semver)

v7.7.3

Compare Source

Bug Fixes
Chores

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

netlify bot commented Oct 6, 2025

Deploy Preview for rsdoctor ready!

Name Link
🔨 Latest commit b188cd7
🔍 Latest deploy log https://app.netlify.com/projects/rsdoctor/deploys/68e682f00a80ef0008bede90
😎 Deploy Preview https://deploy-preview-1341--rsdoctor.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from 34e90b5 to c01d67b Compare October 8, 2025 01:04
@renovate renovate bot force-pushed the renovate/all-patch branch from c01d67b to b188cd7 Compare October 8, 2025 15:27
@yifancong yifancong merged commit f6fc52d into main Oct 9, 2025
8 checks passed
@yifancong yifancong deleted the renovate/all-patch branch October 9, 2025 06:50
@yifancong yifancong mentioned this pull request Oct 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant