Skip to content

fix(deps): update all non-major dependencies#256

Open
renovate[bot] wants to merge 2 commits intomainfrom
renovate/all-minor-patch
Open

fix(deps): update all non-major dependencies#256
renovate[bot] wants to merge 2 commits intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 6, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@lynx-js/web-core (source) ^0.19.8^0.20.1 age confidence
@lynx-js/web-elements (source) ^0.11.3^0.12.0 age confidence
@rslib/core (source) 0.19.60.21.0 age confidence
@rspack/cli (source) ^1.7.7^1.7.11 age confidence
@rspack/core (source) ^1.7.7^1.7.11 age confidence
@tanstack/react-query (source) 5.90.215.99.0 age confidence
@tanstack/react-router (source) 1.166.21.168.19 age confidence
@tanstack/router-plugin (source) 1.166.21.167.19 age confidence
babel-loader ^10.0.0^10.1.1 age confidence
babel-preset-solid (source) ^1.9.10^1.9.12 age confidence
dprint ^0.52.0^0.54.0 age confidence
pnpm (source) 10.30.310.33.0 age confidence
react (source) ^19.2.4^19.2.5 age confidence
react-dom (source) ^19.2.4^19.2.5 age confidence
turbo (source) ^2.8.13^2.9.6 age confidence
zustand ^5.0.11^5.0.12 age confidence

Release Notes

lynx-family/lynx-stack (@​lynx-js/web-core)

v0.20.1

Compare Source

Patch Changes
  • Added support for the global-bind event handling modifier in the web platform runtime. (#​2438)

    This mechanism enables seamless cross-element event communication without requiring a formal DOM tree relationship, allowing decoupled elements to observe and respond to standard events occurring anywhere within the component tree.

Usage

Global bindings allow an observer element to react to events triggered on another target element.

1. Define the Global Subscription

Attach global-bindTap (or any equivalent standard event alias) to your observer element:

<view
  id='observer'
  global-bindTap={(event) => {
    // This will trigger whenever 'tap' is caught by a globally bound event.
    console.log('Global tap handled!', event);
  }}
/>;
2. Trigger the Event anywhere

The event will be triggered via normal user interaction (such as tap) on any other constituent elements:

<view
  id='target'
  bindTap={(event) => {
    // Note: To successfully propagate globally, ensure the event bubbles.
  }}
/>;
  • feat(web-core): add support for configurable rem unit transform (#​2403)

    • Description: Added a new configuration option transformREM (also exposed as transform_rem on the Rust layer) to the Web Core renderer. When enabled, it recursively converts static rem unit values in your styles into dynamic CSS custom properties (calc(VALUE * var(--rem-unit))) during template decoding and evaluation. This enables developers to implement responsive font scaling and layout sizing dynamically on the client side simply by modifying the root CSS variable --rem-unit.

    • Usage:
      You can enable this feature when working with LynxView by setting transformREM to true, or directly as an HTML attribute transform-rem:

      <lynx-view
        url="https://example.com/template.js"
        transform-rem="true"
      ></lynx-view>
      const lynxView = document.createElement('lynx-view');
      lynxView.transformREM = true;

      With this enabled, a CSS declaration like font-size: 1.5rem; is transparently evaluated as font-size: calc(1.5 * var(--rem-unit)); by the runtime engine.

  • Updated dependencies [156d64d, 59d11b2]:

v0.20.0

Compare Source

Minor Changes

v0.19.9

Compare Source

Patch Changes
lynx-family/lynx-stack (@​lynx-js/web-elements)

v0.12.0

Compare Source

Minor Changes
  • feat: add willchange event to x-viewpager-ng (#​2305)
Patch Changes
  • fix: firefox @supports(width:1rex) (#​2288)

  • fix: check computed overflow style in getTheMostScrollableKid to avoid treating overflow: visible elements as scroll containers (#​2309)

  • fix: the inline-truncation should only work as a direct child of x-text (#​2287)

  • fix: getVisibleCells cannot work in firefox due to contentvisibilityautostatechange not propagate list-item (#​2308)

  • fix: foldview stuck issue (#​2304)

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

v0.21.0

Compare Source

Highlights 💡

Single Executable Applications

Rslib now supports building Node.js single executable applications with the experimental experiments.exe option.

export default {
  lib: [
    {
      format: 'esm',
      experiments: {
        exe: true,
      },
    },
  ],
};

More details: experiments.exe

Best Practices Skill

Rslib now provides a best practices skill, which can be used when writing, reviewing, or troubleshooting Rslib projects.

  • In an existing project:
npx skills add rstackjs/agent-skills --skill rslib-best-practices
  • When creating a new project:
npx -y create-rslib@latest my-project -t react --skill rslib-best-practices

More details: AI - Agent Skills

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.20.3...v0.21.0

v0.20.3

Compare Source

What's Changed

Other Changes

Full Changelog: web-infra-dev/rslib@v0.20.2...v0.20.3

v0.20.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.20.1...v0.20.2

v0.20.1

Compare Source

What's Changed

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

Full Changelog: web-infra-dev/rslib@v0.20.0...v0.20.1

v0.20.0

Compare Source

Breaking changes 🚨

Drop Node.js 18 support

Rslib v0.20 requires Node.js 20.19+ or 22.12+, Node.js 18 is no longer supported.

Rsbuild / Rspack v2

Rslib v0.20 now depends on beta version of @​rsbuild/core v2 and @​rspack/core v2. If you use custom Rsbuild / Rspack configurations or plugins, you may need to make corresponding adjustments.

See the Rsbuild v2 upgrade guide for all breaking changes.

Deprecate experiments.advancedEsm

experiments.advancedEsm is now deprecated and effectively ignored. Advanced ESM behavior is the default in both bundle and bundleless mode.

What you need to do:

  • Remove experiments.advancedEsm from your config
  • Verify the output behaviour
Rename type StartServerResult

The exported type StartServerResult has been renamed to StartDevServerResult.

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.19.6...v0.20.0

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

v1.7.11

Compare Source

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.10...v1.7.11

v1.7.10

Compare Source

What's Changed

New Features 🎉
  • feat(backport): support regex flags and JavaScript lookaheads in extractComments condition by @​CPunisher in #​13437
Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.9...v1.7.10

v1.7.9

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.8...v1.7.9

v1.7.8

Compare Source

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rspack@v1.7.7...v1.7.8

TanStack/query (@​tanstack/react-query)

v5.99.0

Compare Source

Patch Changes

v5.98.0

Compare Source

Patch Changes

v5.97.0

Compare Source

Patch Changes

v5.96.2

Compare Source

Patch Changes

v5.96.1

Compare Source

Patch Changes

v5.96.0

Compare Source

Patch Changes

v5.95.2

Compare Source

Patch Changes

v5.95.1

Compare Source

Patch Changes

v5.95.0

Compare Source

Patch Changes

v5.94.5

Compare Source

Patch Changes

v5.94.4

Compare Source

Patch Changes

v5.91.3

Compare Source

Patch Changes
  • fix: stop node types from leaking into browser (#​10302)

v5.91.2

Compare Source

Patch Changes

v5.91.0

Compare Source

Minor Changes
Patch Changes
TanStack/router (@​tanstack/react-router)

v1.168.19

Patch Changes
  • Fix route file transforms to preserve route ID quoting, handle more exported Route patterns, and avoid incorrect import rewrites in edge cases. (#​7167)

    Improve transform robustness with clearer route-call detection, safer import removal, and expanded test coverage for quote preservation, constructor swaps, and unsupported route definitions.

v1.168.18

Compare Source

Patch Changes

v1.168.17

Compare Source

Patch Changes

v1.168.16

Compare Source

Patch Changes

v1.168.15

Compare Source

Patch Changes

v1.168.14

Compare Source

Patch Changes

v1.168.13

Compare Source

Patch Changes
  • Fix MatchRoute child callback param inference to resolve params from the target to route instead of the route path key across React, Solid, and Vue adapters. (#​7139)

  • Fix a stale route error boundary state issue that could briefly render the next route's errorComponent after navigating away from a failed route. (#​7136)

v1.168.12

Compare Source

Patch Changes
  • Fix redirected pending route transitions so lazy target routes can finish loading without stale redirected matches causing render errors. (#​7137)

v1.168.11

Compare Source

Patch Changes
  • Fix Link to keep internal routing props like preloadIntentProximity, from, and unsafeRelative from leaking to rendered DOM elements across React, Solid, and Vue. (#​7138)

v1.168.10

Compare Source

Patch Changes
  • Preserve component-thrown notFound() errors through framework error boundaries so route notFoundComponent handlers render without requiring an explicit routeId. (#​7077)

  • Updated dependencies [796406d]:

v1.168.9

Compare Source

Patch Changes

v1.168.8

Compare Source

Patch Changes

v1.168.7

Compare Source

Patch Changes

v1.168.6

Compare Source

Patch Changes
  • Remove the extra SSR sentinel tag used for onRendered in React Router while (#​7054)
    preserving the client-side render timing needed for scroll restoration and
    onRendered subscribers.

v1.168.5

Compare Source

Patch Changes

v1.168.4

Compare Source

Patch Changes

v1.168.3

Compare Source

Patch Changes

v1.168.2

Compare Source

Patch Changes

v1.168.1

Compare Source

Patch Changes

v1.168.0

Compare Source

Minor Changes
  • remove pendingMatches, cachedMatches (#​6704)
    move to signal-based reactivity
    solid uses its own native signals
Patch Changes

v1.167.5

Compare Source

Patch Changes

v1.167.4

Compare Source

Patch Changes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.

@renovate renovate Bot requested a review from colinaaa as a code owner March 6, 2026 09:36
@renovate renovate Bot added the bot:renovate label Mar 6, 2026
@renovate renovate Bot requested a review from HuJean as a code owner March 6, 2026 09:36
@renovate renovate Bot added the bot:renovate label Mar 6, 2026
@renovate renovate Bot enabled auto-merge (squash) March 6, 2026 09:36
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Mar 6, 2026

⚠️ No Changeset found

Latest commit: 7237a59

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from cd25998 to f3a1045 Compare March 6, 2026 17:05
@renovate renovate Bot changed the title chore(deps): update dependency babel-loader to ^10.1.0 chore(deps): update all non-major dependencies Mar 6, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f380fee to cbf81fa Compare March 8, 2026 16:54
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Mar 8, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 566f3cd to 9ac9c26 Compare March 14, 2026 12:29
@renovate renovate Bot requested a review from Huxpro as a code owner March 14, 2026 12:29
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from cceb400 to 26c85f8 Compare March 18, 2026 18:16
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ca42544 to a90610e Compare March 28, 2026 21:47
@colinaaa
Copy link
Copy Markdown
Collaborator

Pending on lynx-family/lynx-stack#2397

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from daf3292 to ac91fa3 Compare April 2, 2026 05:53
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Apr 2, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Scope: all 52 workspace projects
Progress: resolved 1, reused 0, downloaded 0, added 0
Progress: resolved 16, reused 0, downloaded 0, added 0
Progress: resolved 21, reused 0, downloaded 0, added 0
Progress: resolved 22, reused 0, downloaded 0, added 0
Progress: resolved 45, reused 0, downloaded 0, added 0
Progress: resolved 83, reused 0, downloaded 0, added 0
Progress: resolved 124, reused 0, downloaded 0, added 0
Progress: resolved 257, reused 0, downloaded 0, added 0
Progress: resolved 300, reused 0, downloaded 0, added 0
Progress: resolved 431, reused 0, downloaded 0, added 0
Progress: resolved 513, reused 0, downloaded 0, added 0
Progress: resolved 693, reused 0, downloaded 0, added 0
Progress: resolved 820, reused 0, downloaded 0, added 0
Progress: resolved 973, reused 0, downloaded 0, added 0
Progress: resolved 1120, reused 0, downloaded 0, added 0
Progress: resolved 1203, reused 0, downloaded 0, added 0
Progress: resolved 1305, reused 0, downloaded 0, added 0
Progress: resolved 1361, reused 0, downloaded 0, added 0
Progress: resolved 1383, reused 0, downloaded 0, added 0
 WARN  7 deprecated subdependencies found: glob@10.4.5, glob@7.2.3, glob@8.1.0, inflight@1.0.6, rimraf@3.0.2, tar@7.4.3, uid-number@0.0.6
Progress: resolved 1383, reused 0, downloaded 0, added 0, done
 ERR_PNPM_PEER_DEP_ISSUES  Unmet peer dependencies

examples/BankCards
└─┬ @rsbuild/core 2.0.0-rc.1
  └─┬ @rspack/core 2.0.0-rc.1
    └─┬ @rspack/binding 2.0.0-rc.1
      └─┬ @rspack/binding-wasm32-wasi 2.0.0-rc.1
        └─┬ @napi-rs/wasm-runtime 1.1.2
          ├── ✕ unmet peer @emnapi/core@^1.7.1: found 1.5.0
          └── ✕ unmet peer @emnapi/runtime@^1.7.1: found 1.5.0
hint: To disable failing on peer dependency issues, add the following to pnpm-workspace.yaml in your project root:

  strictPeerDependencies: false



@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from b904691 to 5e923f7 Compare April 9, 2026 09:06
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from c5afc51 to a01a733 Compare April 11, 2026 21:02
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Apr 13, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant