From d16522eee0db3cd1a6ec20fb5832fd79f89a2264 Mon Sep 17 00:00:00 2001
From: Qingyu Wang <40660121+colinaaa@users.noreply.github.com>
Date: Tue, 13 May 2025 20:20:54 +0800
Subject: [PATCH 1/6] feat(webpack/runtime-wrapper): support
`requestAnimationFrame` (#787)
## Summary
Allow direct access to `requestAnimationFrame` and
`cancelAnimationFrame` in background thread script.
close: #181 since `fetch` is now a parameter of the runtime wrapper.
## Checklist
- [x] Tests updated (or not required).
- [ ] Documentation updated (or not required).
---
.changeset/sweet-tires-flash.md | 7 +++++
.../src/RuntimeWrapperWebpackPlugin.ts | 30 +++++++++++++++++-
.../test/cases.test.js | 31 +++++++++++++++++++
.../request-animation-frame/index.js | 11 +++++++
.../request-animation-frame/rspack.config.js | 8 +++++
.../request-animation-frame/webpack.config.js | 13 ++++++++
.../test/cases/variables/websocket/index.js | 7 +++++
.../variables/websocket/rspack.config.js | 8 +++++
.../variables/websocket/webpack.config.js | 13 ++++++++
9 files changed, 127 insertions(+), 1 deletion(-)
create mode 100644 .changeset/sweet-tires-flash.md
create mode 100644 packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/index.js
create mode 100644 packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/rspack.config.js
create mode 100644 packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/webpack.config.js
create mode 100644 packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/index.js
create mode 100644 packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/rspack.config.js
create mode 100644 packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/webpack.config.js
diff --git a/.changeset/sweet-tires-flash.md b/.changeset/sweet-tires-flash.md
new file mode 100644
index 0000000000..c7693144c9
--- /dev/null
+++ b/.changeset/sweet-tires-flash.md
@@ -0,0 +1,7 @@
+---
+"@lynx-js/runtime-wrapper-webpack-plugin": minor
+---
+
+Add parameter forwarding for Browser Object Model (BOM) APIs.
+
+This allows direct access to APIs like `fetch`, `requestAnimationFrame`.
diff --git a/packages/webpack/runtime-wrapper-webpack-plugin/src/RuntimeWrapperWebpackPlugin.ts b/packages/webpack/runtime-wrapper-webpack-plugin/src/RuntimeWrapperWebpackPlugin.ts
index 477a2c29b3..ec69a88fa0 100644
--- a/packages/webpack/runtime-wrapper-webpack-plugin/src/RuntimeWrapperWebpackPlugin.ts
+++ b/packages/webpack/runtime-wrapper-webpack-plugin/src/RuntimeWrapperWebpackPlugin.ts
@@ -59,7 +59,33 @@ const defaultInjectVars = [
'Behavior',
'LynxJSBI',
'lynx',
+
+ // BOM API
'window',
+ 'document',
+ 'frames',
+ 'self',
+ 'location',
+ 'navigator',
+ 'localStorage',
+ 'history',
+ 'Caches',
+ 'screen',
+ 'alert',
+ 'confirm',
+ 'prompt',
+ 'fetch',
+ 'XMLHttpRequest',
+ '__WebSocket__', // We would provide `WebSocket` using `ProvidePlugin`
+ 'webkit',
+ 'Reporter',
+ 'print',
+ '__Function__', // We should allow using `Function`
+ 'global',
+
+ // Lynx API
+ 'requestAnimationFrame',
+ 'cancelAnimationFrame',
];
/**
@@ -242,7 +268,9 @@ lynx.targetSdkVersion=lynx.targetSdkVersion||${
JSON.stringify(targetSdkVersion)
};
${overrideRuntimePromise ? `var Promise = lynx.Promise;` : ''}
-var fetch = lynx.fetch;
+fetch = fetch || lynx.fetch;
+requestAnimationFrame = requestAnimationFrame || lynx.requestAnimationFrame;
+cancelAnimationFrame = cancelAnimationFrame || lynx.cancelAnimationFrame;
`
);
};
diff --git a/packages/webpack/runtime-wrapper-webpack-plugin/test/cases.test.js b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases.test.js
index c7421f151c..020aafcca0 100644
--- a/packages/webpack/runtime-wrapper-webpack-plugin/test/cases.test.js
+++ b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases.test.js
@@ -48,6 +48,37 @@ describeCases({
null,
null,
console,
+ undefined, // Component
+ undefined, // ReactLynx
+ undefined, // nativeAppId
+ undefined, // Behavior
+ undefined, // LynxJSBI
+ undefined, // lynx
+ undefined, // window
+ // BOM API
+ undefined, // document
+ undefined, // frames
+ undefined, // self
+ undefined, // location
+ undefined, // navigator
+ undefined, // localStorage
+ undefined, // history
+ undefined, // Caches
+ undefined, // screen
+ undefined, // alert
+ undefined, // confirm
+ undefined, // prompt
+ undefined, // fetch
+ undefined, // XMLHttpRequest
+ undefined, // WebSocket
+ undefined, // webkit
+ undefined, // Reporter
+ undefined, // print
+ undefined, // Function
+ undefined, // global
+ // Lynx API
+ vi.fn(), // requestAnimationFrame
+ vi.fn(), // cancelAnimationFrame
);
},
},
diff --git a/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/index.js b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/index.js
new file mode 100644
index 0000000000..521bfcabd3
--- /dev/null
+++ b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/index.js
@@ -0,0 +1,11 @@
+/*
+// Copyright 2024 The Lynx Authors. All rights reserved.
+// Licensed under the Apache License Version 2.0 that can be found in the
+// LICENSE file in the root directory of this source tree.
+*/
+expect(requestAnimationFrame).toStrictEqual(expect.any(Function));
+expect(cancelAnimationFrame).toStrictEqual(expect.any(Function));
+expect(requestAnimationFrame).not.toBe(lynx.requestAnimationFrame);
+expect(cancelAnimationFrame).not.toBe(lynx.cancelAnimationFrame);
+expect(requestAnimationFrame).not.toBe(globalThis.requestAnimationFrame);
+expect(cancelAnimationFrame).not.toBe(globalThis.cancelAnimationFrame);
diff --git a/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/rspack.config.js b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/rspack.config.js
new file mode 100644
index 0000000000..a3db18f129
--- /dev/null
+++ b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/rspack.config.js
@@ -0,0 +1,8 @@
+/*
+// Copyright 2024 The Lynx Authors. All rights reserved.
+// Licensed under the Apache License Version 2.0 that can be found in the
+// LICENSE file in the root directory of this source tree.
+*/
+import config from './webpack.config.js';
+
+export default config;
diff --git a/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/webpack.config.js b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/webpack.config.js
new file mode 100644
index 0000000000..0a26fc2c4f
--- /dev/null
+++ b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/request-animation-frame/webpack.config.js
@@ -0,0 +1,13 @@
+/*
+// Copyright 2024 The Lynx Authors. All rights reserved.
+// Licensed under the Apache License Version 2.0 that can be found in the
+// LICENSE file in the root directory of this source tree.
+*/
+import { RuntimeWrapperWebpackPlugin } from '../../../../src';
+
+/** @type {import('webpack').Configuration} */
+export default {
+ plugins: [
+ new RuntimeWrapperWebpackPlugin(),
+ ],
+};
diff --git a/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/index.js b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/index.js
new file mode 100644
index 0000000000..3c8c4c5b9a
--- /dev/null
+++ b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/index.js
@@ -0,0 +1,7 @@
+/*
+// Copyright 2024 The Lynx Authors. All rights reserved.
+// Licensed under the Apache License Version 2.0 that can be found in the
+// LICENSE file in the root directory of this source tree.
+*/
+
+expect(WebSocket).toBe(globalThis.WebSocket);
diff --git a/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/rspack.config.js b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/rspack.config.js
new file mode 100644
index 0000000000..a3db18f129
--- /dev/null
+++ b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/rspack.config.js
@@ -0,0 +1,8 @@
+/*
+// Copyright 2024 The Lynx Authors. All rights reserved.
+// Licensed under the Apache License Version 2.0 that can be found in the
+// LICENSE file in the root directory of this source tree.
+*/
+import config from './webpack.config.js';
+
+export default config;
diff --git a/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/webpack.config.js b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/webpack.config.js
new file mode 100644
index 0000000000..0a26fc2c4f
--- /dev/null
+++ b/packages/webpack/runtime-wrapper-webpack-plugin/test/cases/variables/websocket/webpack.config.js
@@ -0,0 +1,13 @@
+/*
+// Copyright 2024 The Lynx Authors. All rights reserved.
+// Licensed under the Apache License Version 2.0 that can be found in the
+// LICENSE file in the root directory of this source tree.
+*/
+import { RuntimeWrapperWebpackPlugin } from '../../../../src';
+
+/** @type {import('webpack').Configuration} */
+export default {
+ plugins: [
+ new RuntimeWrapperWebpackPlugin(),
+ ],
+};
From 5795869bf68fde55409d5a0630e5fe60eabdc57f Mon Sep 17 00:00:00 2001
From: Qingyu Wang <40660121+colinaaa@users.noreply.github.com>
Date: Tue, 13 May 2025 20:37:01 +0800
Subject: [PATCH 2/6] ci: upload test results in merge queue to main context
(#792)
## Summary
Fix a regression of #646. The event name should be `merge_group` instead
of `merge_queue`. See:
https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#merge_group.
Also fix an issue that `publish` and `build-all` share the same
`concurrency.group`.
## Checklist
- [ ] Tests updated (or not required).
- [ ] Documentation updated (or not required).
---
.github/workflows/deploy-main.yml | 4 ++--
.github/workflows/workflow-test.yml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/deploy-main.yml b/.github/workflows/deploy-main.yml
index af290e52de..694fb1c841 100644
--- a/.github/workflows/deploy-main.yml
+++ b/.github/workflows/deploy-main.yml
@@ -50,7 +50,7 @@ jobs:
# See: https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache
build-all:
concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
+ group: ${{ github.workflow }}-build-${{ github.ref }}
cancel-in-progress: true
uses: ./.github/workflows/workflow-build.yml
if: github.repository == 'lynx-family/lynx-stack'
@@ -87,7 +87,7 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'lynx-family/lynx-stack'
concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
+ group: ${{ github.workflow }}-publish-${{ github.ref }}
cancel-in-progress: false
environment: main branch
permissions:
diff --git a/.github/workflows/workflow-test.yml b/.github/workflows/workflow-test.yml
index 36aa34b255..61ede944b6 100644
--- a/.github/workflows/workflow-test.yml
+++ b/.github/workflows/workflow-test.yml
@@ -74,7 +74,7 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ inputs.codecov-flags }}
- override_branch: ${{ github.event_name == 'merge_queue' && 'main' || '' }}
+ override_branch: ${{ github.event_name == 'merge_group' && 'main' || '' }}
- name: Upload Test Result
if: ${{ inputs.is-web && failure() }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
From 8ff5de9d71bf576b8bdc848a52f8c8c963217a9a Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Tue, 13 May 2025 12:58:09 +0000
Subject: [PATCH 3/6] chore(deps): update rspack monorepo to v1.3.10 (#793)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@rspack/cli](https://rspack.dev)
([source](https://redirect.github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack-cli))
| [`1.3.9` ->
`1.3.10`](https://renovatebot.com/diffs/npm/@rspack%2fcli/1.3.9/1.3.10)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [@rspack/core](https://rspack.dev)
([source](https://redirect.github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack))
| [`1.3.9` ->
`1.3.10`](https://renovatebot.com/diffs/npm/@rspack%2fcore/1.3.9/1.3.10)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [@rspack/test-tools](https://rspack.dev)
([source](https://redirect.github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack-test-tools))
| [`1.3.9` ->
`1.3.10`](https://renovatebot.com/diffs/npm/@rspack%2ftest-tools/1.3.9/1.3.10)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
web-infra-dev/rspack (@rspack/cli)
###
[`v1.3.10`](https://redirect.github.com/web-infra-dev/rspack/releases/tag/v1.3.10)
[Compare
Source](https://redirect.github.com/web-infra-dev/rspack/compare/v1.3.9...v1.3.10)
#### Highlights π‘
##### Source Map Generation for Rspack Runtime Code
Rspack now supports source map generation for runtime code, enabling
more efficient diagnosing problemsβboth in production and development
environments.

#### What's Changed
##### Performance Improvements β‘
- perf: import node inspector dynamically by
[@chenjiahan](https://redirect.github.com/chenjiahan) in
[https://github.com/web-infra-dev/rspack/pull/10296](https://redirect.github.com/web-infra-dev/rspack/pull/10296)
##### Exciting New Features π
- feat: generate source map for runtime code by
[@SyMind](https://redirect.github.com/SyMind) in
[https://github.com/web-infra-dev/rspack/pull/10245](https://redirect.github.com/web-infra-dev/rspack/pull/10245)
- feat(wasm): support `tracing-chrome` in wasm by
[@CPunisher](https://redirect.github.com/CPunisher) in
[https://github.com/web-infra-dev/rspack/pull/10246](https://redirect.github.com/web-infra-dev/rspack/pull/10246)
- feat: add url config to css parser by
[@stormslowly](https://redirect.github.com/stormslowly) in
[https://github.com/web-infra-dev/rspack/pull/10229](https://redirect.github.com/web-infra-dev/rspack/pull/10229)
- feat: expose hasChunkEntryDependentChunks on ChunkGraph by
[@gaoachao](https://redirect.github.com/gaoachao) in
[https://github.com/web-infra-dev/rspack/pull/10286](https://redirect.github.com/web-infra-dev/rspack/pull/10286)
- feat: support binary option of asset generator by
[@LingyuCoder](https://redirect.github.com/LingyuCoder) in
[https://github.com/web-infra-dev/rspack/pull/10301](https://redirect.github.com/web-infra-dev/rspack/pull/10301)
- feat: js api for compilation code generation results by
[@SyMind](https://redirect.github.com/SyMind) in
[https://github.com/web-infra-dev/rspack/pull/10303](https://redirect.github.com/web-infra-dev/rspack/pull/10303)
- feat: compilation.addEntry support by
[@henryqdineen](https://redirect.github.com/henryqdineen) in
[https://github.com/web-infra-dev/rspack/pull/10268](https://redirect.github.com/web-infra-dev/rspack/pull/10268)
- feat: support `include` and `exclude` of `import.meta.webpackContext`
by [@LingyuCoder](https://redirect.github.com/LingyuCoder) in
[https://github.com/web-infra-dev/rspack/pull/10318](https://redirect.github.com/web-infra-dev/rspack/pull/10318)
- feat(swc): enhance TransformOutput with diagnostics by
[@GiveMe-A-Name](https://redirect.github.com/GiveMe-A-Name) in
[https://github.com/web-infra-dev/rspack/pull/10312](https://redirect.github.com/web-infra-dev/rspack/pull/10312)
- feat(create-rspack): better default browserslist target by
[@vegerot](https://redirect.github.com/vegerot) in
[https://github.com/web-infra-dev/rspack/pull/10290](https://redirect.github.com/web-infra-dev/rspack/pull/10290)
##### Bug Fixes π
- fix(types): export PitchLoaderDefinitionFunction type by
[@henryqdineen](https://redirect.github.com/henryqdineen) in
[https://github.com/web-infra-dev/rspack/pull/10289](https://redirect.github.com/web-infra-dev/rspack/pull/10289)
- fix: allow the SRI plugin to be used without passing options by
[@LingyuCoder](https://redirect.github.com/LingyuCoder) in
[https://github.com/web-infra-dev/rspack/pull/10294](https://redirect.github.com/web-infra-dev/rspack/pull/10294)
- fix: parser generator arg validate by
[@stormslowly](https://redirect.github.com/stormslowly) in
[https://github.com/web-infra-dev/rspack/pull/10298](https://redirect.github.com/web-infra-dev/rspack/pull/10298)
- fix: chunk loading should be import by default when chunk format is
module by [@LingyuCoder](https://redirect.github.com/LingyuCoder)
in
[https://github.com/web-infra-dev/rspack/pull/10307](https://redirect.github.com/web-infra-dev/rspack/pull/10307)
- fix: not evaluate `typeof __dirname` when set to false by
[@LingyuCoder](https://redirect.github.com/LingyuCoder) in
[https://github.com/web-infra-dev/rspack/pull/10308](https://redirect.github.com/web-infra-dev/rspack/pull/10308)
- fix: test no setTimeout by
[@LingyuCoder](https://redirect.github.com/LingyuCoder) in
[https://github.com/web-infra-dev/rspack/pull/10313](https://redirect.github.com/web-infra-dev/rspack/pull/10313)
- fix: environment.dynamicImport should affect chunkFormat and
chunkLoading by
[@LingyuCoder](https://redirect.github.com/LingyuCoder) in
[https://github.com/web-infra-dev/rspack/pull/10309](https://redirect.github.com/web-infra-dev/rspack/pull/10309)
- fix: `dataWebpackPrefix` of load script runtime module by
[@LingyuCoder](https://redirect.github.com/LingyuCoder) in
[https://github.com/web-infra-dev/rspack/pull/10316](https://redirect.github.com/web-infra-dev/rspack/pull/10316)
- fix: simplify trace implementation by removing unused code by
[@chenjiahan](https://redirect.github.com/chenjiahan) in
[https://github.com/web-infra-dev/rspack/pull/10325](https://redirect.github.com/web-infra-dev/rspack/pull/10325)
- fix(template-react-ts): work with newer Node by
[@vegerot](https://redirect.github.com/vegerot) in
[https://github.com/web-infra-dev/rspack/pull/10304](https://redirect.github.com/web-infra-dev/rspack/pull/10304)
##### Document Updates π
- docs(diagnostic): add loader experimental diagnostic API by
[@h-a-n-a](https://redirect.github.com/h-a-n-a) in
[https://github.com/web-infra-dev/rspack/pull/10287](https://redirect.github.com/web-infra-dev/rspack/pull/10287)
- docs: fix invalid link by
[@Timeless0911](https://redirect.github.com/Timeless0911) in
[https://github.com/web-infra-dev/rspack/pull/10299](https://redirect.github.com/web-infra-dev/rspack/pull/10299)
- docs: update tracing doc by
[@hardfist](https://redirect.github.com/hardfist) in
[https://github.com/web-infra-dev/rspack/pull/10328](https://redirect.github.com/web-infra-dev/rspack/pull/10328)
##### Other Changes
- chore(deps): update rspress to 2.0.0-beta.4 by
[@renovate](https://redirect.github.com/renovate) in
[https://github.com/web-infra-dev/rspack/pull/10283](https://redirect.github.com/web-infra-dev/rspack/pull/10283)
- chore(deps): update github-actions by
[@renovate](https://redirect.github.com/renovate) in
[https://github.com/web-infra-dev/rspack/pull/10280](https://redirect.github.com/web-infra-dev/rspack/pull/10280)
- test: remove new code splitting tests as now its the default by
[@JSerFeng](https://redirect.github.com/JSerFeng) in
[https://github.com/web-infra-dev/rspack/pull/9939](https://redirect.github.com/web-infra-dev/rspack/pull/9939)
- test: enable some test cases by
[@LingyuCoder](https://redirect.github.com/LingyuCoder) in
[https://github.com/web-infra-dev/rspack/pull/10288](https://redirect.github.com/web-infra-dev/rspack/pull/10288)
- chore: Revert "test: enable some test cases
([#10288](https://redirect.github.com/web-infra-dev/rspack/issues/10288))"
by [@stormslowly](https://redirect.github.com/stormslowly) in
[https://github.com/web-infra-dev/rspack/pull/10300](https://redirect.github.com/web-infra-dev/rspack/pull/10300)
- test: enable more webpack stats test cases by
[@LingyuCoder](https://redirect.github.com/LingyuCoder) in
[https://github.com/web-infra-dev/rspack/pull/10302](https://redirect.github.com/web-infra-dev/rspack/pull/10302)
- test: enable more webpack config test cases by
[@LingyuCoder](https://redirect.github.com/LingyuCoder) in
[https://github.com/web-infra-dev/rspack/pull/10306](https://redirect.github.com/web-infra-dev/rspack/pull/10306)
- chore: bump SWC to v23.2.0 and remove swc_parallel by
[@GiveMe-A-Name](https://redirect.github.com/GiveMe-A-Name) in
[https://github.com/web-infra-dev/rspack/pull/10293](https://redirect.github.com/web-infra-dev/rspack/pull/10293)
- chore(deps): update dependency less-loader to ^12.3.0 by
[@renovate](https://redirect.github.com/renovate) in
[https://github.com/web-infra-dev/rspack/pull/10322](https://redirect.github.com/web-infra-dev/rspack/pull/10322)
- chore(deps): update dependency
[@babel/core](https://redirect.github.com/babel/core) to ^7.27.1
by [@renovate](https://redirect.github.com/renovate) in
[https://github.com/web-infra-dev/rspack/pull/10321](https://redirect.github.com/web-infra-dev/rspack/pull/10321)
- chore(deps): update rust crate browserslist-rs to 0.18.1 by
[@renovate](https://redirect.github.com/renovate) in
[https://github.com/web-infra-dev/rspack/pull/10323](https://redirect.github.com/web-infra-dev/rspack/pull/10323)
#### New Contributors
- [@vegerot](https://redirect.github.com/vegerot) made their
first contribution in
[https://github.com/web-infra-dev/rspack/pull/10290](https://redirect.github.com/web-infra-dev/rspack/pull/10290)
**Full Changelog**:
https://github.com/web-infra-dev/rspack/compare/v1.3.9...v1.3.10
---
### Configuration
π
**Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
π¦ **Automerge**: Enabled.
β» **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
π **Ignore**: Close this PR and you won't be reminded about these
updates again.
---
- [ ] If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/lynx-family/lynx-stack).
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
---
pnpm-lock.yaml | 274 ++++++++++++++++++++++----------------------
pnpm-workspace.yaml | 6 +-
2 files changed, 140 insertions(+), 140 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index cef7cfa9d9..57b37b7990 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -27,15 +27,15 @@ catalogs:
version: 1.3.0
rspack:
'@rspack/cli':
- specifier: 1.3.9
- version: 1.3.9
+ specifier: 1.3.10
+ version: 1.3.10
'@rspack/test-tools':
- specifier: 1.3.9
- version: 1.3.9
+ specifier: 1.3.10
+ version: 1.3.10
overrides:
- '@rspack/core': 1.3.9
- '@rsbuild/core>@rspack/core': 1.3.9
+ '@rspack/core': 1.3.10
+ '@rsbuild/core>@rspack/core': 1.3.10
patchedDependencies:
'@napi-rs/cli@2.18.4':
@@ -68,8 +68,8 @@ importers:
specifier: ^0.6.9
version: 0.6.9(@microsoft/api-extractor@7.52.7(@types/node@22.15.17))(typescript@5.8.3)
'@rspack/core':
- specifier: 1.3.9
- version: 1.3.9(@swc/helpers@0.5.17)
+ specifier: 1.3.10
+ version: 1.3.10(@swc/helpers@0.5.17)
'@svitejs/changesets-changelog-github-compact':
specifier: ^1.2.0
version: 1.2.0
@@ -289,7 +289,7 @@ importers:
version: 1.0.2(@rsbuild/core@1.3.19)(webpack@5.99.8)
'@rsdoctor/rspack-plugin':
specifier: 1.1.2
- version: 1.1.2(@rsbuild/core@1.3.19)(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
+ version: 1.1.2(@rsbuild/core@1.3.19)(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
typescript:
specifier: 5.1.6 - 5.8.x
version: 5.8.3
@@ -305,7 +305,7 @@ importers:
version: 12.1.2(patch_hash=926ba262ec682d27369f1a8648a0dfb657fb5f1b28539ca3628d292276c91c3d)(rollup@4.34.9)(tslib@2.8.1)(typescript@5.8.3)
'@rsbuild/webpack':
specifier: catalog:rsbuild
- version: 1.3.0(@rsbuild/core@1.3.19)(@rspack/core@1.3.9(@swc/helpers@0.5.17))
+ version: 1.3.0(@rsbuild/core@1.3.19)(@rspack/core@1.3.10(@swc/helpers@0.5.17))
'@samchon/openapi':
specifier: 4.3.0
version: 4.3.0
@@ -451,7 +451,7 @@ importers:
version: 1.1.0(@rsbuild/core@1.3.19)
'@rsbuild/webpack':
specifier: catalog:rsbuild
- version: 1.3.0(@rsbuild/core@1.3.19)(@rspack/core@1.3.9(@swc/helpers@0.5.17))
+ version: 1.3.0(@rsbuild/core@1.3.19)(@rspack/core@1.3.10(@swc/helpers@0.5.17))
'@samchon/openapi':
specifier: 4.3.0
version: 4.3.0
@@ -721,7 +721,7 @@ importers:
version: 1.3.19
'@rsdoctor/rspack-plugin':
specifier: 1.1.2
- version: 1.1.2(@rsbuild/core@1.3.19)(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
+ version: 1.1.2(@rsbuild/core@1.3.19)(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -820,10 +820,10 @@ importers:
version: 1.50.1
'@rspack/cli':
specifier: catalog:rspack
- version: 1.3.9(@rspack/core@1.3.9(@swc/helpers@0.5.17))(@types/express@4.17.21)(webpack@5.99.8)
+ version: 1.3.10(@rspack/core@1.3.10(@swc/helpers@0.5.17))(@types/express@4.17.21)(webpack@5.99.8)
'@rspack/core':
- specifier: 1.3.9
- version: 1.3.9(@swc/helpers@0.5.17)
+ specifier: 1.3.10
+ version: 1.3.10(@swc/helpers@0.5.17)
nyc:
specifier: ^17.1.0
version: 17.1.0
@@ -874,11 +874,11 @@ importers:
specifier: 'catalog:'
version: 7.52.7(@types/node@22.15.17)
'@rspack/core':
- specifier: 1.3.9
- version: 1.3.9(@swc/helpers@0.5.17)
+ specifier: 1.3.10
+ version: 1.3.10(@swc/helpers@0.5.17)
css-loader:
specifier: ^7.1.2
- version: 7.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
+ version: 7.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
mini-css-extract-plugin:
specifier: ^2.9.2
version: 2.9.2(webpack@5.99.8)
@@ -908,14 +908,14 @@ importers:
specifier: 'catalog:'
version: 7.52.7(@types/node@22.15.17)
'@rspack/core':
- specifier: 1.3.9
- version: 1.3.9(@swc/helpers@0.5.17)
+ specifier: 1.3.10
+ version: 1.3.10(@swc/helpers@0.5.17)
css-loader:
specifier: ^7.1.2
- version: 7.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
+ version: 7.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
sass-loader:
specifier: ^16.0.5
- version: 16.0.5(@rspack/core@1.3.9(@swc/helpers@0.5.17))(sass-embedded@1.86.0)(webpack@5.99.8)
+ version: 16.0.5(@rspack/core@1.3.10(@swc/helpers@0.5.17))(sass-embedded@1.86.0)(webpack@5.99.8)
webpack:
specifier: ^5.99.8
version: 5.99.8
@@ -938,8 +938,8 @@ importers:
specifier: 'catalog:'
version: 7.52.7(@types/node@22.15.17)
'@rspack/core':
- specifier: 1.3.9
- version: 1.3.9(@swc/helpers@0.5.17)
+ specifier: 1.3.10
+ version: 1.3.10(@swc/helpers@0.5.17)
swc-loader:
specifier: ^0.2.6
version: 0.2.6(@swc/core@1.7.35(@swc/helpers@0.5.17))(webpack@5.99.8(@swc/core@1.7.35(@swc/helpers@0.5.17)))
@@ -975,11 +975,11 @@ importers:
specifier: 'catalog:'
version: 7.52.7(@types/node@22.15.17)
'@rspack/core':
- specifier: 1.3.9
- version: 1.3.9(@swc/helpers@0.5.17)
+ specifier: 1.3.10
+ version: 1.3.10(@swc/helpers@0.5.17)
css-loader:
specifier: ^7.1.2
- version: 7.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8(@swc/core@1.7.35(@swc/helpers@0.5.17)))
+ version: 7.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8(@swc/core@1.7.35(@swc/helpers@0.5.17)))
swc-loader:
specifier: ^0.2.6
version: 0.2.6(@swc/core@1.7.35(@swc/helpers@0.5.17))(webpack@5.99.8(@swc/core@1.7.35(@swc/helpers@0.5.17)))
@@ -1046,11 +1046,11 @@ importers:
packages/webpack/test-tools:
devDependencies:
'@rspack/core':
- specifier: 1.3.9
- version: 1.3.9(@swc/helpers@0.5.17)
+ specifier: 1.3.10
+ version: 1.3.10(@swc/helpers@0.5.17)
'@rspack/test-tools':
specifier: catalog:rspack
- version: 1.3.9(@rspack/core@1.3.9(@swc/helpers@0.5.17))
+ version: 1.3.10(@rspack/core@1.3.10(@swc/helpers@0.5.17))
'@types/fs-extra':
specifier: 11.0.4
version: 11.0.4
@@ -1104,8 +1104,8 @@ importers:
specifier: 'catalog:'
version: 7.52.7(@types/node@22.15.17)
'@rspack/core':
- specifier: 1.3.9
- version: 1.3.9(@swc/helpers@0.5.17)
+ specifier: 1.3.10
+ version: 1.3.10(@swc/helpers@0.5.17)
website:
dependencies:
@@ -1166,7 +1166,7 @@ importers:
version: 1.3.1(@rsbuild/core@1.3.16)
'@rsbuild/plugin-type-check':
specifier: 1.2.1
- version: 1.2.1(@rsbuild/core@1.3.16)(@rspack/core@1.3.9(@swc/helpers@0.5.17))(typescript@5.8.3)
+ version: 1.2.1(@rsbuild/core@1.3.16)(@rspack/core@1.3.10(@swc/helpers@0.5.17))(typescript@5.8.3)
'@rsbuild/plugin-typed-css-modules':
specifier: 1.0.2
version: 1.0.2(@rsbuild/core@1.3.16)
@@ -2787,7 +2787,7 @@ packages:
'@rsdoctor/rspack-plugin@1.1.2':
resolution: {integrity: sha512-5hp+mAKPHje9WtGILsF42KZ9MT4s/IF+LYKkNG9ior0m1W8aZBQNSaLy/hom1CLeYQ1LYKnjFcdsUlvDNkkSmg==}
peerDependencies:
- '@rspack/core': 1.3.9
+ '@rspack/core': 1.3.10
'@rsdoctor/sdk@1.1.2':
resolution: {integrity: sha512-aplXFM/PXbFDYbFtZF+RTHGetDbQRnoS4BQfFE37BdsTBoCOP2AaG8Y6Jg5mrCn7D9JLmqugB+zJb/OxmXTHTQ==}
@@ -2795,7 +2795,7 @@ packages:
'@rsdoctor/types@1.1.2':
resolution: {integrity: sha512-DtCDXP+vzoPcnjwqycwpMuTfrPtd2+u4r/LPVkMSTotfGQC0PczwvW2B6rXtiIfEWWy3prCwXfb2fkinMh7UHg==}
peerDependencies:
- '@rspack/core': 1.3.9
+ '@rspack/core': 1.3.10
webpack: 5.x
peerDependenciesMeta:
'@rspack/core':
@@ -2819,62 +2819,62 @@ packages:
typescript:
optional: true
- '@rspack/binding-darwin-arm64@1.3.9':
- resolution: {integrity: sha512-lfTmsbUGab9Ak/X6aPLacHLe4MBRra+sLmhoNK8OKEN3qQCjDcomwW5OlmBRV5bcUYWdbK8vgDk2HUUXRuibVg==}
+ '@rspack/binding-darwin-arm64@1.3.10':
+ resolution: {integrity: sha512-0k/j8OeMSVm5u5Nzckp9Ie7S7hprnvNegebnGr+L6VCyD7sMqm4m+4rLHs99ZklYdH0dZtY2+LrzrtjUZCqfew==}
cpu: [arm64]
os: [darwin]
- '@rspack/binding-darwin-x64@1.3.9':
- resolution: {integrity: sha512-rYuOUINhnhLDbG5LHHKurRSuKIsw0LKUHcd6AAsFmijo4RMnGBJ4NOI4tOLAQvkoSTQ+HU5wiTGSQOgHVhYreQ==}
+ '@rspack/binding-darwin-x64@1.3.10':
+ resolution: {integrity: sha512-jOyqYW/18cgxw60wK5oqJvM194pbD4H99xaif89McNtLkH3npFvBkXBHVWWuOHGoXNX0LhRpHcI89p9b9THQZQ==}
cpu: [x64]
os: [darwin]
- '@rspack/binding-linux-arm64-gnu@1.3.9':
- resolution: {integrity: sha512-pBKnS2Fbn9cDtWe1KcD1qRjQlJwQhP9pFW2KpxdjE7qXbaO11IHtem6dLZwdpNqbDn9QgyfdVGXBDvBaP1tGwA==}
+ '@rspack/binding-linux-arm64-gnu@1.3.10':
+ resolution: {integrity: sha512-zhF5ZNaT/7pxrm8xD3dWG1b4x+FO3LbVeZZG448CjpSo5T57kPD+SaGUU1GcPpn6mexf795x0SVS49aH7/e3Dg==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-arm64-musl@1.3.9':
- resolution: {integrity: sha512-0B+iiINW0qOEkBE9exsRcdmcHtYIWAoJGnXrz9tUiiewRxX0Cmm0MjD2HAVUAggJZo+9IN8RGz5PopCjJ/dn1g==}
+ '@rspack/binding-linux-arm64-musl@1.3.10':
+ resolution: {integrity: sha512-o3x7IrOSCHK6lcRvdZgsSuOG1CHRQR00xiyLW7kkWmNm7t417LC9xdFWKIK62C5fKXGC5YcTbUkDMnQujespkg==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-x64-gnu@1.3.9':
- resolution: {integrity: sha512-82izGJw/qxJ4xaHJy/A4MF7aTRT9tE6VlWoWM4rJmqRszfujN/w54xJRie9jkt041TPvJWGNpYD4Hjpt0/n/oA==}
+ '@rspack/binding-linux-x64-gnu@1.3.10':
+ resolution: {integrity: sha512-FMSi28VZhXMr15picOHFynULhqZ/FODPxRIS6uNrvPRYcbNuiO1v+VHV6X88mhOMmJ/aVF6OwjUO/o2l1FVa9Q==}
cpu: [x64]
os: [linux]
- '@rspack/binding-linux-x64-musl@1.3.9':
- resolution: {integrity: sha512-V9nDg63iPI6Z7kM11UPV5kBdOdLXPIu3IgI2ObON5Rd4KEZr7RLo/Q4HKzj0IH27Zwl5qeBJdx69zZdu66eOqg==}
+ '@rspack/binding-linux-x64-musl@1.3.10':
+ resolution: {integrity: sha512-e0xbY9SlbRGIFz41v1yc0HfREvmgMnLV1bLmTSPK8wI2suIEJ7iYYqsocHOAOk86qLZcxVrTnL6EjUcNaRTWlg==}
cpu: [x64]
os: [linux]
- '@rspack/binding-win32-arm64-msvc@1.3.9':
- resolution: {integrity: sha512-owWCJTezFkiBOSRzH+eOTN15H5QYyThHE5crZ0I30UmpoSEchcPSCvddliA0W62ZJIOgG4IUSNamKBiiTwdjLQ==}
+ '@rspack/binding-win32-arm64-msvc@1.3.10':
+ resolution: {integrity: sha512-YHJPvEujWeWjU6EUF6sDpaec9rsOtKVvy16YCtGaxRpDQXqfuxibnp6Ge0ZTTrY+joRiWehRA9OUI+3McqI+QA==}
cpu: [arm64]
os: [win32]
- '@rspack/binding-win32-ia32-msvc@1.3.9':
- resolution: {integrity: sha512-YUuNA8lkGSXJ07fOjkX+yuWrWcsU5x5uGFuAYsglw+rDTWCS6m9HSwQjbCp7HUp81qPszjSk+Ore5XVh07FKeQ==}
+ '@rspack/binding-win32-ia32-msvc@1.3.10':
+ resolution: {integrity: sha512-2iwSBzVBC89ZSk56MYwgirh3bda2WKmL9I3qPajiTEivChXpX7jp83jAtGE6CPqPYcccYz6nrURTHNUZhqXxVw==}
cpu: [ia32]
os: [win32]
- '@rspack/binding-win32-x64-msvc@1.3.9':
- resolution: {integrity: sha512-E0gtYBVt5vRj0zBeplEf8wsVDPDQ6XBdRiFVUgmgwYUYYkXaalaIvbD1ioB8cA05vfz8HrPGXcMrgletUP4ojA==}
+ '@rspack/binding-win32-x64-msvc@1.3.10':
+ resolution: {integrity: sha512-ehWJ9Y5Zezj/+uJpiWbt29RZaRIM00f91PWuabM6/sKmHJhdCEE21u5iI3B8DeW/EjJsH8zkI69YYAxJWwGn9A==}
cpu: [x64]
os: [win32]
- '@rspack/binding@1.3.9':
- resolution: {integrity: sha512-3FFen1/0F2aP5uuCm8vPaJOrzM3karCPNMsc5gLCGfEy2rsK38Qinf9W4p1bw7+FhjOTzoSdkX+LFHeMDVxJhw==}
+ '@rspack/binding@1.3.10':
+ resolution: {integrity: sha512-9TjO+Ig5U4VqdYWpBsv01n4d2KsgFfdXGIE7zdHXDDbry0avL0J4109ESqSeP9uC+Bi7ZCF53iaxJRvZDflNVQ==}
- '@rspack/cli@1.3.9':
- resolution: {integrity: sha512-jGsde6kP1S7QntU4TYNv8KAHRwe5lb21rRVVj6qGFOQ7pckxWadyYyowo6Qg43OYlPAc9ZlDlba3Zg3gQoD73g==}
+ '@rspack/cli@1.3.10':
+ resolution: {integrity: sha512-QqO2gvuzddUMf5psvJGyMAoFknAWv7GDKfxi3/PUxbYTsQ0c2O9BqkGx7KA47Xe4OeSGLGhyQYL04t2JnorzjA==}
hasBin: true
peerDependencies:
- '@rspack/core': 1.3.9
+ '@rspack/core': 1.3.10
- '@rspack/core@1.3.9':
- resolution: {integrity: sha512-u7usd9srCBPBfNJCSvsfh14AOPq6LCVna0Vb/aA2nyJTawHqzfAMz1QRb/e27nP3NrV6RPiwx03W494Dd6r6wg==}
+ '@rspack/core@1.3.10':
+ resolution: {integrity: sha512-YomvSRGuMUQgCE2rNMdff2q1Z0YpZw/z6m5+PVTMSs9l/q69YKUzpbpSD8YyB5i1DddrRxC2RE34DkrBuwlREQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@swc/helpers': '>=0.5.1'
@@ -2886,7 +2886,7 @@ packages:
resolution: {integrity: sha512-9r7vOml2SrFA8cvbcJdSan9wHEo1TPXezF22+s5jvdyAAywg8w7HqDol6TPVv64NUonP1DOdyLxZ+6UW6WZiwg==}
engines: {node: '>= 18.12.0'}
peerDependencies:
- '@rspack/core': 1.3.9
+ '@rspack/core': 1.3.10
'@rspack/lite-tapable@1.0.1':
resolution: {integrity: sha512-VynGOEsVw2s8TAlLf/uESfrgfrq2+rcXB1muPJYBWbsm1Oa6r5qVQhjA5ggM6z/coYPrsVMgovl3Ff7Q7OCp1w==}
@@ -2901,10 +2901,10 @@ packages:
webpack-hot-middleware:
optional: true
- '@rspack/test-tools@1.3.9':
- resolution: {integrity: sha512-2xHgEKhI46TZCUnl9GcXt0DMtteBNiR2y19r2XHJuLPsN5L5fHkoCEylfeVNIHhoI4CV0r4EDl5Ci6iIAHhy8Q==}
+ '@rspack/test-tools@1.3.10':
+ resolution: {integrity: sha512-O93RkP8zZzZ1iLyfQiuni9qi8nVVB7vSV+Fg0YyHwVv3+ndCbBo1VgCDFDq7AaBXKha2rw24RJwsqIOituprmw==}
peerDependencies:
- '@rspack/core': 1.3.9
+ '@rspack/core': 1.3.10
'@rspress/core@2.0.0-beta.4':
resolution: {integrity: sha512-5xPmr9iXTvlGORdDEupwXyCe2XZITEGvMPow7tB7cI/jEewwOv6ZTnyYu8/xtkAVOGDjupUCX6DvwEDclmUscQ==}
@@ -4300,7 +4300,7 @@ packages:
resolution: {integrity: sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
- '@rspack/core': 1.3.9
+ '@rspack/core': 1.3.10
webpack: ^5.27.0
peerDependenciesMeta:
'@rspack/core':
@@ -5459,7 +5459,7 @@ packages:
resolution: {integrity: sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==}
engines: {node: '>=10.13.0'}
peerDependencies:
- '@rspack/core': 1.3.9
+ '@rspack/core': 1.3.10
webpack: ^5.20.0
peerDependenciesMeta:
'@rspack/core':
@@ -7577,7 +7577,7 @@ packages:
resolution: {integrity: sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==}
engines: {node: '>= 18.12.0'}
peerDependencies:
- '@rspack/core': 1.3.9
+ '@rspack/core': 1.3.10
node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
sass: ^1.3.0
sass-embedded: '*'
@@ -8116,7 +8116,7 @@ packages:
resolution: {integrity: sha512-BlpPqnfAmV0TcDg58H+1qV8Zb57ilv0x+ajjnxrVQ6BWgC8HzAdc+TycqDOJ4sZZYIV+hywQGozZFGklzbCR6A==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@rspack/core': 1.3.9
+ '@rspack/core': 1.3.10
typescript: '>=3.8.0'
peerDependenciesMeta:
'@rspack/core':
@@ -10217,7 +10217,7 @@ snapshots:
'@rsbuild/core@1.3.16':
dependencies:
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
'@rspack/lite-tapable': 1.0.1
'@swc/helpers': 0.5.17
core-js: 3.42.0
@@ -10225,7 +10225,7 @@ snapshots:
'@rsbuild/core@1.3.18':
dependencies:
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
'@rspack/lite-tapable': 1.0.1
'@swc/helpers': 0.5.17
core-js: 3.42.0
@@ -10233,7 +10233,7 @@ snapshots:
'@rsbuild/core@1.3.19':
dependencies:
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
'@rspack/lite-tapable': 1.0.1
'@swc/helpers': 0.5.17
core-js: 3.42.0
@@ -10296,12 +10296,12 @@ snapshots:
reduce-configs: 1.1.0
sass-embedded: 1.86.0
- '@rsbuild/plugin-type-check@1.2.1(@rsbuild/core@1.3.16)(@rspack/core@1.3.9(@swc/helpers@0.5.17))(typescript@5.8.3)':
+ '@rsbuild/plugin-type-check@1.2.1(@rsbuild/core@1.3.16)(@rspack/core@1.3.10(@swc/helpers@0.5.17))(typescript@5.8.3)':
dependencies:
deepmerge: 4.3.1
json5: 2.2.3
reduce-configs: 1.1.0
- ts-checker-rspack-plugin: 1.1.1(@rspack/core@1.3.9(@swc/helpers@0.5.17))(typescript@5.8.3)
+ ts-checker-rspack-plugin: 1.1.1(@rspack/core@1.3.10(@swc/helpers@0.5.17))(typescript@5.8.3)
optionalDependencies:
'@rsbuild/core': 1.3.16
transitivePeerDependencies:
@@ -10327,11 +10327,11 @@ snapshots:
picocolors: 1.1.1
semver: 7.7.1
- '@rsbuild/webpack@1.3.0(@rsbuild/core@1.3.19)(@rspack/core@1.3.9(@swc/helpers@0.5.17))':
+ '@rsbuild/webpack@1.3.0(@rsbuild/core@1.3.19)(@rspack/core@1.3.10(@swc/helpers@0.5.17))':
dependencies:
'@rsbuild/core': 1.3.19
copy-webpack-plugin: 11.0.0(webpack@5.99.8)
- html-webpack-plugin: 5.6.3(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
+ html-webpack-plugin: 5.6.3(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
mini-css-extract-plugin: 2.9.2(webpack@5.99.8)
picocolors: 1.1.1
reduce-configs: 1.1.0
@@ -10346,13 +10346,13 @@ snapshots:
'@rsdoctor/client@1.1.2': {}
- '@rsdoctor/core@1.1.2(@rsbuild/core@1.3.19)(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)':
+ '@rsdoctor/core@1.1.2(@rsbuild/core@1.3.19)(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)':
dependencies:
'@rsbuild/plugin-check-syntax': 1.3.0(@rsbuild/core@1.3.19)
- '@rsdoctor/graph': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rsdoctor/sdk': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rsdoctor/types': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rsdoctor/utils': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/graph': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/sdk': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/types': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/utils': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
axios: 1.8.4
browserslist-load-config: 1.0.0
enhanced-resolve: 5.12.0
@@ -10372,10 +10372,10 @@ snapshots:
- utf-8-validate
- webpack
- '@rsdoctor/graph@1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)':
+ '@rsdoctor/graph@1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)':
dependencies:
- '@rsdoctor/types': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rsdoctor/utils': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/types': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/utils': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
lodash.unionby: 4.8.0
socket.io: 4.8.1
source-map: 0.7.4
@@ -10386,14 +10386,14 @@ snapshots:
- utf-8-validate
- webpack
- '@rsdoctor/rspack-plugin@1.1.2(@rsbuild/core@1.3.19)(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)':
+ '@rsdoctor/rspack-plugin@1.1.2(@rsbuild/core@1.3.19)(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)':
dependencies:
- '@rsdoctor/core': 1.1.2(@rsbuild/core@1.3.19)(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rsdoctor/graph': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rsdoctor/sdk': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rsdoctor/types': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rsdoctor/utils': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rsdoctor/core': 1.1.2(@rsbuild/core@1.3.19)(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/graph': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/sdk': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/types': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/utils': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
lodash: 4.17.21
transitivePeerDependencies:
- '@rsbuild/core'
@@ -10403,12 +10403,12 @@ snapshots:
- utf-8-validate
- webpack
- '@rsdoctor/sdk@1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)':
+ '@rsdoctor/sdk@1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)':
dependencies:
'@rsdoctor/client': 1.1.2
- '@rsdoctor/graph': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rsdoctor/types': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
- '@rsdoctor/utils': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/graph': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/types': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/utils': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
'@types/fs-extra': 11.0.4
body-parser: 1.20.3
cors: 2.8.5
@@ -10428,20 +10428,20 @@ snapshots:
- utf-8-validate
- webpack
- '@rsdoctor/types@1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)':
+ '@rsdoctor/types@1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)':
dependencies:
'@types/connect': 3.4.38
'@types/estree': 1.0.5
'@types/tapable': 2.2.7
source-map: 0.7.4
optionalDependencies:
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
webpack: 5.99.8
- '@rsdoctor/utils@1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)':
+ '@rsdoctor/utils@1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)':
dependencies:
'@babel/code-frame': 7.26.2
- '@rsdoctor/types': 1.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8)
+ '@rsdoctor/types': 1.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8)
'@types/estree': 1.0.5
acorn: 8.14.1
acorn-import-attributes: 1.9.5(acorn@8.14.1)
@@ -10471,50 +10471,50 @@ snapshots:
'@microsoft/api-extractor': 7.52.7(@types/node@22.15.17)
typescript: 5.8.3
- '@rspack/binding-darwin-arm64@1.3.9':
+ '@rspack/binding-darwin-arm64@1.3.10':
optional: true
- '@rspack/binding-darwin-x64@1.3.9':
+ '@rspack/binding-darwin-x64@1.3.10':
optional: true
- '@rspack/binding-linux-arm64-gnu@1.3.9':
+ '@rspack/binding-linux-arm64-gnu@1.3.10':
optional: true
- '@rspack/binding-linux-arm64-musl@1.3.9':
+ '@rspack/binding-linux-arm64-musl@1.3.10':
optional: true
- '@rspack/binding-linux-x64-gnu@1.3.9':
+ '@rspack/binding-linux-x64-gnu@1.3.10':
optional: true
- '@rspack/binding-linux-x64-musl@1.3.9':
+ '@rspack/binding-linux-x64-musl@1.3.10':
optional: true
- '@rspack/binding-win32-arm64-msvc@1.3.9':
+ '@rspack/binding-win32-arm64-msvc@1.3.10':
optional: true
- '@rspack/binding-win32-ia32-msvc@1.3.9':
+ '@rspack/binding-win32-ia32-msvc@1.3.10':
optional: true
- '@rspack/binding-win32-x64-msvc@1.3.9':
+ '@rspack/binding-win32-x64-msvc@1.3.10':
optional: true
- '@rspack/binding@1.3.9':
+ '@rspack/binding@1.3.10':
optionalDependencies:
- '@rspack/binding-darwin-arm64': 1.3.9
- '@rspack/binding-darwin-x64': 1.3.9
- '@rspack/binding-linux-arm64-gnu': 1.3.9
- '@rspack/binding-linux-arm64-musl': 1.3.9
- '@rspack/binding-linux-x64-gnu': 1.3.9
- '@rspack/binding-linux-x64-musl': 1.3.9
- '@rspack/binding-win32-arm64-msvc': 1.3.9
- '@rspack/binding-win32-ia32-msvc': 1.3.9
- '@rspack/binding-win32-x64-msvc': 1.3.9
-
- '@rspack/cli@1.3.9(@rspack/core@1.3.9(@swc/helpers@0.5.17))(@types/express@4.17.21)(webpack@5.99.8)':
+ '@rspack/binding-darwin-arm64': 1.3.10
+ '@rspack/binding-darwin-x64': 1.3.10
+ '@rspack/binding-linux-arm64-gnu': 1.3.10
+ '@rspack/binding-linux-arm64-musl': 1.3.10
+ '@rspack/binding-linux-x64-gnu': 1.3.10
+ '@rspack/binding-linux-x64-musl': 1.3.10
+ '@rspack/binding-win32-arm64-msvc': 1.3.10
+ '@rspack/binding-win32-ia32-msvc': 1.3.10
+ '@rspack/binding-win32-x64-msvc': 1.3.10
+
+ '@rspack/cli@1.3.10(@rspack/core@1.3.10(@swc/helpers@0.5.17))(@types/express@4.17.21)(webpack@5.99.8)':
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
- '@rspack/dev-server': 1.1.1(@rspack/core@1.3.9(@swc/helpers@0.5.17))(@types/express@4.17.21)(webpack@5.99.8)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
+ '@rspack/dev-server': 1.1.1(@rspack/core@1.3.10(@swc/helpers@0.5.17))(@types/express@4.17.21)(webpack@5.99.8)
colorette: 2.0.20
exit-hook: 4.0.0
interpret: 3.1.1
@@ -10530,18 +10530,18 @@ snapshots:
- webpack
- webpack-cli
- '@rspack/core@1.3.9(@swc/helpers@0.5.17)':
+ '@rspack/core@1.3.10(@swc/helpers@0.5.17)':
dependencies:
'@module-federation/runtime-tools': 0.13.1
- '@rspack/binding': 1.3.9
+ '@rspack/binding': 1.3.10
'@rspack/lite-tapable': 1.0.1
caniuse-lite: 1.0.30001717
optionalDependencies:
'@swc/helpers': 0.5.17
- '@rspack/dev-server@1.1.1(@rspack/core@1.3.9(@swc/helpers@0.5.17))(@types/express@4.17.21)(webpack@5.99.8)':
+ '@rspack/dev-server@1.1.1(@rspack/core@1.3.10(@swc/helpers@0.5.17))(@types/express@4.17.21)(webpack@5.99.8)':
dependencies:
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
chokidar: 3.6.0
express: 4.21.2
http-proxy-middleware: 2.0.7(@types/express@4.17.21)
@@ -10567,13 +10567,13 @@ snapshots:
html-entities: 2.6.0
react-refresh: 0.17.0
- '@rspack/test-tools@1.3.9(@rspack/core@1.3.9(@swc/helpers@0.5.17))':
+ '@rspack/test-tools@1.3.10(@rspack/core@1.3.10(@swc/helpers@0.5.17))':
dependencies:
'@babel/generator': 7.27.1
'@babel/parser': 7.27.2
'@babel/traverse': 7.27.1
'@babel/types': 7.27.1
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
cross-env: 7.0.3
csv-to-markdown-table: 1.5.0
deepmerge: 4.3.1
@@ -12228,7 +12228,7 @@ snapshots:
dependencies:
postcss: 8.5.3
- css-loader@7.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8(@swc/core@1.7.35(@swc/helpers@0.5.17))):
+ css-loader@7.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8(@swc/core@1.7.35(@swc/helpers@0.5.17))):
dependencies:
icss-utils: 5.1.0(postcss@8.5.3)
postcss: 8.5.3
@@ -12239,10 +12239,10 @@ snapshots:
postcss-value-parser: 4.2.0
semver: 7.7.1
optionalDependencies:
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
webpack: 5.99.8(@swc/core@1.7.35(@swc/helpers@0.5.17))
- css-loader@7.1.2(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8):
+ css-loader@7.1.2(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8):
dependencies:
icss-utils: 5.1.0(postcss@8.5.3)
postcss: 8.5.3
@@ -12253,7 +12253,7 @@ snapshots:
postcss-value-parser: 4.2.0
semver: 7.7.1
optionalDependencies:
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
webpack: 5.99.8
css-minimizer-webpack-plugin@5.0.1(webpack@5.99.8):
@@ -13673,7 +13673,7 @@ snapshots:
htmlparser2: 8.0.2
selderee: 0.11.0
- html-webpack-plugin@5.6.3(@rspack/core@1.3.9(@swc/helpers@0.5.17))(webpack@5.99.8):
+ html-webpack-plugin@5.6.3(@rspack/core@1.3.10(@swc/helpers@0.5.17))(webpack@5.99.8):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -13681,7 +13681,7 @@ snapshots:
pretty-error: 4.0.0
tapable: 2.2.1
optionalDependencies:
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
webpack: 5.99.8
htmlparser2@10.0.0:
@@ -16121,11 +16121,11 @@ snapshots:
sass-embedded-win32-ia32: 1.86.0
sass-embedded-win32-x64: 1.86.0
- sass-loader@16.0.5(@rspack/core@1.3.9(@swc/helpers@0.5.17))(sass-embedded@1.86.0)(webpack@5.99.8):
+ sass-loader@16.0.5(@rspack/core@1.3.10(@swc/helpers@0.5.17))(sass-embedded@1.86.0)(webpack@5.99.8):
dependencies:
neo-async: 2.6.2
optionalDependencies:
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
sass-embedded: 1.86.0
webpack: 5.99.8
@@ -16756,7 +16756,7 @@ snapshots:
dependencies:
typescript: 5.8.3
- ts-checker-rspack-plugin@1.1.1(@rspack/core@1.3.9(@swc/helpers@0.5.17))(typescript@5.8.3):
+ ts-checker-rspack-plugin@1.1.1(@rspack/core@1.3.10(@swc/helpers@0.5.17))(typescript@5.8.3):
dependencies:
'@babel/code-frame': 7.27.1
'@rspack/lite-tapable': 1.0.1
@@ -16766,7 +16766,7 @@ snapshots:
picocolors: 1.1.1
typescript: 5.8.3
optionalDependencies:
- '@rspack/core': 1.3.9(@swc/helpers@0.5.17)
+ '@rspack/core': 1.3.10(@swc/helpers@0.5.17)
ts-interface-checker@0.1.13: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index b179058809..5e1d535b00 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -32,9 +32,9 @@ catalogs:
# Rspack monorepo packages
rspack:
- "@rspack/cli": "1.3.9"
- "@rspack/core": "1.3.9"
- "@rspack/test-tools": "1.3.9"
+ "@rspack/cli": "1.3.10"
+ "@rspack/core": "1.3.10"
+ "@rspack/test-tools": "1.3.10"
overrides:
"@rspack/core": "$@rspack/core"
From 6a8e9bda3ed808d673dfa74038ec809cd0f82688 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Tue, 13 May 2025 21:36:19 +0800
Subject: [PATCH 4/6] chore(deps): update react monorepo (#782)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@types/react](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react))
| [`^19.1.3` ->
`^19.1.4`](https://renovatebot.com/diffs/npm/@types%2freact/19.1.3/19.1.4)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[@types/react-dom](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom))
| [`^19.1.4` ->
`^19.1.5`](https://renovatebot.com/diffs/npm/@types%2freact-dom/19.1.4/19.1.5)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Configuration
π
**Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
π¦ **Automerge**: Enabled.
β» **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
π» **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/lynx-family/lynx-stack).
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
---
pnpm-lock.yaml | 36 ++++++++++++++++++------------------
website/package.json | 4 ++--
2 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 57b37b7990..b45e2dce22 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1177,17 +1177,17 @@ importers:
specifier: 2.0.0-beta.4
version: 2.0.0-beta.4
'@types/react':
- specifier: npm:@types/react@^19.1.3
- version: 19.1.3
+ specifier: npm:@types/react@^19.1.4
+ version: 19.1.4
'@types/react-dom':
- specifier: ^19.1.4
- version: 19.1.4(@types/react@19.1.3)
+ specifier: ^19.1.5
+ version: 19.1.5(@types/react@19.1.4)
change-case:
specifier: ^5.4.4
version: 5.4.4
rspress:
specifier: 2.0.0-beta.4
- version: 2.0.0-beta.4(@types/react@19.1.3)(acorn@8.14.1)(webpack@5.99.8)
+ version: 2.0.0-beta.4(@types/react@19.1.4)(acorn@8.14.1)(webpack@5.99.8)
tailwindcss:
specifier: ^3.4.17
version: 3.4.17
@@ -3309,16 +3309,16 @@ packages:
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@19.1.4':
- resolution: {integrity: sha512-WxYAszDYgsMV31OVyoG4jbAgJI1Gw0Xq9V19zwhy6+hUUJlJIdZ3r/cbdmTqFv++SktQkZ/X+46yGFxp5XJBEg==}
+ '@types/react-dom@19.1.5':
+ resolution: {integrity: sha512-CMCjrWucUBZvohgZxkjd6S9h0nZxXjzus6yDfUb+xLxYM7VvjKNH1tQrE9GWLql1XoOP4/Ds3bwFqShHUYraGg==}
peerDependencies:
'@types/react': ^19.0.0
'@types/react@18.3.21':
resolution: {integrity: sha512-gXLBtmlcRJeT09/sI4PxVwyrku6SaNUj/6cMubjE6T6XdY1fDmBL7r0nX0jbSZPU/Xr0KuwLLZh6aOYY5d91Xw==}
- '@types/react@19.1.3':
- resolution: {integrity: sha512-dLWQ+Z0CkIvK1J8+wrDPwGxEYFA4RAyHoZPxHVGspYmFVnwGSNT24cGIhFJrtfRnWVuW8X7NO52gCXmhkVUWGQ==}
+ '@types/react@19.1.4':
+ resolution: {integrity: sha512-EB1yiiYdvySuIITtD5lhW4yPyJ31RkJkkDw794LaQYrxCSaQV/47y5o1FMC4zF9ZyjUjzJMZwbovEnT5yHTW6g==}
'@types/retry@0.12.2':
resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==}
@@ -9897,10 +9897,10 @@ snapshots:
'@types/react': 18.3.21
react: 19.1.0
- '@mdx-js/react@3.1.0(@types/react@19.1.3)(react@19.1.0)':
+ '@mdx-js/react@3.1.0(@types/react@19.1.4)(react@19.1.0)':
dependencies:
'@types/mdx': 2.0.13
- '@types/react': 19.1.3
+ '@types/react': 19.1.4
react: 19.1.0
'@microsoft/api-documenter@7.23.38(@types/node@22.15.17)':
@@ -10604,11 +10604,11 @@ snapshots:
- utf-8-validate
- webpack-cli
- '@rspress/core@2.0.0-beta.4(@types/react@19.1.3)(acorn@8.14.1)(webpack@5.99.8)':
+ '@rspress/core@2.0.0-beta.4(@types/react@19.1.4)(acorn@8.14.1)(webpack@5.99.8)':
dependencies:
'@mdx-js/loader': 3.1.0(acorn@8.14.1)(webpack@5.99.8)
'@mdx-js/mdx': 3.1.0(acorn@8.14.1)
- '@mdx-js/react': 3.1.0(@types/react@19.1.3)(react@19.1.0)
+ '@mdx-js/react': 3.1.0(@types/react@19.1.4)(react@19.1.0)
'@rsbuild/core': 1.3.16
'@rsbuild/plugin-react': 1.3.1(@rsbuild/core@1.3.16)
'@rspress/mdx-rs': 0.6.6
@@ -11093,16 +11093,16 @@ snapshots:
'@types/range-parser@1.2.7': {}
- '@types/react-dom@19.1.4(@types/react@19.1.3)':
+ '@types/react-dom@19.1.5(@types/react@19.1.4)':
dependencies:
- '@types/react': 19.1.3
+ '@types/react': 19.1.4
'@types/react@18.3.21':
dependencies:
'@types/prop-types': 15.7.13
csstype: 3.1.3
- '@types/react@19.1.3':
+ '@types/react@19.1.4':
dependencies:
csstype: 3.1.3
@@ -15979,10 +15979,10 @@ snapshots:
dependencies:
fs-extra: 11.3.0
- rspress@2.0.0-beta.4(@types/react@19.1.3)(acorn@8.14.1)(webpack@5.99.8):
+ rspress@2.0.0-beta.4(@types/react@19.1.4)(acorn@8.14.1)(webpack@5.99.8):
dependencies:
'@rsbuild/core': 1.3.16
- '@rspress/core': 2.0.0-beta.4(@types/react@19.1.3)(acorn@8.14.1)(webpack@5.99.8)
+ '@rspress/core': 2.0.0-beta.4(@types/react@19.1.4)(acorn@8.14.1)(webpack@5.99.8)
'@rspress/shared': 2.0.0-beta.4
cac: 6.7.14
chokidar: 3.6.0
diff --git a/website/package.json b/website/package.json
index 5a1810a566..a8f8cc1c5a 100644
--- a/website/package.json
+++ b/website/package.json
@@ -38,8 +38,8 @@
"@rsbuild/plugin-typed-css-modules": "1.0.2",
"@rspress/plugin-client-redirects": "2.0.0-beta.4",
"@rspress/shared": "2.0.0-beta.4",
- "@types/react": "npm:@types/react@^19.1.3",
- "@types/react-dom": "^19.1.4",
+ "@types/react": "npm:@types/react@^19.1.4",
+ "@types/react-dom": "^19.1.5",
"change-case": "^5.4.4",
"rspress": "2.0.0-beta.4",
"tailwindcss": "^3.4.17"
From 44bf80800a20f96619c2d56db9f8a9a240aad760 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Tue, 13 May 2025 21:37:17 +0800
Subject: [PATCH 5/6] chore(deps): update dependency typescript-eslint to
^8.32.1 (#781)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint)
([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint))
| [`^8.32.0` ->
`^8.32.1`](https://renovatebot.com/diffs/npm/typescript-eslint/8.32.0/8.32.1)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
typescript-eslint/typescript-eslint
(typescript-eslint)
###
[`v8.32.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8321-2025-05-12)
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.32.0...v8.32.1)
This was a version bump only for typescript-eslint to align it with
other projects, there were no code changes.
You can read about our [versioning
strategy](https://main--typescript-eslint.netlify.app/users/versioning)
and
[releases](https://main--typescript-eslint.netlify.app/users/releases)
on our website.
---
### Configuration
π
**Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
π¦ **Automerge**: Enabled.
β» **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
π **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/lynx-family/lynx-stack).
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
---
package.json | 2 +-
pnpm-lock.yaml | 130 ++++++++++++++++++++++++++-----------------------
2 files changed, 69 insertions(+), 63 deletions(-)
diff --git a/package.json b/package.json
index 1be104263a..31b2f4c51c 100644
--- a/package.json
+++ b/package.json
@@ -44,7 +44,7 @@
"ts-patch": "^3.3.0",
"turbo": "^2.5.3",
"typescript": "^5.8.3",
- "typescript-eslint": "^8.32.0",
+ "typescript-eslint": "^8.32.1",
"vitest": "^3.1.3"
},
"packageManager": "pnpm@10.10.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b45e2dce22..8f7fc6ab26 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -87,7 +87,7 @@ importers:
version: 3.1.3(vitest@3.1.3)
'@vitest/eslint-plugin':
specifier: ^1.1.44
- version: 1.1.44(@typescript-eslint/utils@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.1.3)
+ version: 1.1.44(@typescript-eslint/utils@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.1.3)
'@vitest/ui':
specifier: ^3.1.3
version: 3.1.3(vitest@3.1.3)
@@ -108,7 +108,7 @@ importers:
version: 1.2.1(eslint@9.26.0(jiti@2.4.2))
eslint-plugin-import:
specifier: ^2.31.0
- version: 2.31.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@4.3.4)(eslint@9.26.0(jiti@2.4.2))
+ version: 2.31.0(@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@4.3.4)(eslint@9.26.0(jiti@2.4.2))
eslint-plugin-markdown:
specifier: ^5.1.0
version: 5.1.0(eslint@9.26.0(jiti@2.4.2))
@@ -143,8 +143,8 @@ importers:
specifier: ^5.8.3
version: 5.8.3
typescript-eslint:
- specifier: ^8.32.0
- version: 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ specifier: ^8.32.1
+ version: 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
vitest:
specifier: ^3.1.3
version: 3.1.3(@types/debug@4.1.12)(@types/node@22.15.17)(@vitest/ui@3.1.3)(jsdom@26.1.0)(sass-embedded@1.86.0)(terser@5.31.6)
@@ -3377,51 +3377,51 @@ packages:
'@types/yargs@17.0.33':
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
- '@typescript-eslint/eslint-plugin@8.32.0':
- resolution: {integrity: sha512-/jU9ettcntkBFmWUzzGgsClEi2ZFiikMX5eEQsmxIAWMOn4H3D4rvHssstmAHGVvrYnaMqdWWWg0b5M6IN/MTQ==}
+ '@typescript-eslint/eslint-plugin@8.32.1':
+ resolution: {integrity: sha512-6u6Plg9nP/J1GRpe/vcjjabo6Uc5YQPAMxsgQyGC/I0RuukiG1wIe3+Vtg3IrSCVJDmqK3j8adrtzXSENRtFgg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/parser@8.32.0':
- resolution: {integrity: sha512-B2MdzyWxCE2+SqiZHAjPphft+/2x2FlO9YBx7eKE1BCb+rqBlQdhtAEhzIEdozHd55DXPmxBdpMygFJjfjjA9A==}
+ '@typescript-eslint/parser@8.32.1':
+ resolution: {integrity: sha512-LKMrmwCPoLhM45Z00O1ulb6jwyVr2kr3XJp+G+tSEZcbauNnScewcQwtJqXDhXeYPDEjZ8C1SjXm015CirEmGg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/scope-manager@8.32.0':
- resolution: {integrity: sha512-jc/4IxGNedXkmG4mx4nJTILb6TMjL66D41vyeaPWvDUmeYQzF3lKtN15WsAeTr65ce4mPxwopPSo1yUUAWw0hQ==}
+ '@typescript-eslint/scope-manager@8.32.1':
+ resolution: {integrity: sha512-7IsIaIDeZn7kffk7qXC3o6Z4UblZJKV3UBpkvRNpr5NSyLji7tvTcvmnMNYuYLyh26mN8W723xpo3i4MlD33vA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.32.0':
- resolution: {integrity: sha512-t2vouuYQKEKSLtJaa5bB4jHeha2HJczQ6E5IXPDPgIty9EqcJxpr1QHQ86YyIPwDwxvUmLfP2YADQ5ZY4qddZg==}
+ '@typescript-eslint/type-utils@8.32.1':
+ resolution: {integrity: sha512-mv9YpQGA8iIsl5KyUPi+FGLm7+bA4fgXaeRcFKRDRwDMu4iwrSHeDPipwueNXhdIIZltwCJv+NkxftECbIZWfA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/types@8.32.0':
- resolution: {integrity: sha512-O5Id6tGadAZEMThM6L9HmVf5hQUXNSxLVKeGJYWNhhVseps/0LddMkp7//VDkzwJ69lPL0UmZdcZwggj9akJaA==}
+ '@typescript-eslint/types@8.32.1':
+ resolution: {integrity: sha512-YmybwXUJcgGqgAp6bEsgpPXEg6dcCyPyCSr0CAAueacR/CCBi25G3V8gGQ2kRzQRBNol7VQknxMs9HvVa9Rvfg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.32.0':
- resolution: {integrity: sha512-pU9VD7anSCOIoBFnhTGfOzlVFQIA1XXiQpH/CezqOBaDppRwTglJzCC6fUQGpfwey4T183NKhF1/mfatYmjRqQ==}
+ '@typescript-eslint/typescript-estree@8.32.1':
+ resolution: {integrity: sha512-Y3AP9EIfYwBb4kWGb+simvPaqQoT5oJuzzj9m0i6FCY6SPvlomY2Ei4UEMm7+FXtlNJbor80ximyslzaQF6xhg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.32.0':
- resolution: {integrity: sha512-8S9hXau6nQ/sYVtC3D6ISIDoJzS1NsCK+gluVhLN2YkBPX+/1wkwyUiDKnxRh15579WoOIyVWnoyIf3yGI9REw==}
+ '@typescript-eslint/utils@8.32.1':
+ resolution: {integrity: sha512-DsSFNIgLSrc89gpq1LJB7Hm1YpuhK086DRDJSNrewcGvYloWW1vZLHBTIvarKZDcAORIy/uWNx8Gad+4oMpkSA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/visitor-keys@8.32.0':
- resolution: {integrity: sha512-1rYQTCLFFzOI5Nl0c8LUpJT8HxpwVRn9E4CkMsYfuN6ctmQqExjSTzzSk0Tz2apmXy7WU6/6fyaZVVA/thPN+w==}
+ '@typescript-eslint/visitor-keys@8.32.1':
+ resolution: {integrity: sha512-ar0tjQfObzhSaW3C3QNmTc5ofj0hDoNQ5XWrCy6zDyabdr0TWhCkClp+rywGNj/odAFBVzzJrK4tEq5M4Hmu4w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.3.0':
@@ -5553,6 +5553,10 @@ packages:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
+ ignore@7.0.4:
+ resolution: {integrity: sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==}
+ engines: {node: '>= 4'}
+
immutable@5.0.2:
resolution: {integrity: sha512-1NU7hWZDkV7hJ4PJ9dur9gTNQ4ePNPN4k9/0YhwjzykTi/+3Q5pF93YU5QoVj8BuOnhLgaY8gs0U2pj4kSYVcw==}
@@ -8228,8 +8232,8 @@ packages:
typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
- typescript-eslint@8.32.0:
- resolution: {integrity: sha512-UMq2kxdXCzinFFPsXc9o2ozIpYCCOiEC46MG3yEh5Vipq6BO27otTtEBZA1fQ66DulEUgE97ucQ/3YY66CPg0A==}
+ typescript-eslint@8.32.1:
+ resolution: {integrity: sha512-D7el+eaDHAmXvrZBy1zpzSNIRqnCOrkwTgZxTu3MUqRWk8k0q9m9Ho4+vPf7iHtgUfrK/o8IZaEApsxPlHTFCg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -11183,44 +11187,44 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/eslint-plugin@8.32.1(@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/scope-manager': 8.32.0
- '@typescript-eslint/type-utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.32.0
+ '@typescript-eslint/parser': 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.32.1
+ '@typescript-eslint/type-utils': 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.32.1
eslint: 9.26.0(jiti@2.4.2)
graphemer: 1.4.0
- ignore: 5.3.2
+ ignore: 7.0.4
natural-compare: 1.4.0
ts-api-utils: 2.1.0(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.32.0
- '@typescript-eslint/types': 8.32.0
- '@typescript-eslint/typescript-estree': 8.32.0(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.32.0
+ '@typescript-eslint/scope-manager': 8.32.1
+ '@typescript-eslint/types': 8.32.1
+ '@typescript-eslint/typescript-estree': 8.32.1(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.32.1
debug: 4.4.0
eslint: 9.26.0(jiti@2.4.2)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.32.0':
+ '@typescript-eslint/scope-manager@8.32.1':
dependencies:
- '@typescript-eslint/types': 8.32.0
- '@typescript-eslint/visitor-keys': 8.32.0
+ '@typescript-eslint/types': 8.32.1
+ '@typescript-eslint/visitor-keys': 8.32.1
- '@typescript-eslint/type-utils@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/type-utils@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.32.0(typescript@5.8.3)
- '@typescript-eslint/utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/typescript-estree': 8.32.1(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
debug: 4.4.0
eslint: 9.26.0(jiti@2.4.2)
ts-api-utils: 2.1.0(typescript@5.8.3)
@@ -11228,12 +11232,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.32.0': {}
+ '@typescript-eslint/types@8.32.1': {}
- '@typescript-eslint/typescript-estree@8.32.0(typescript@5.8.3)':
+ '@typescript-eslint/typescript-estree@8.32.1(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/types': 8.32.0
- '@typescript-eslint/visitor-keys': 8.32.0
+ '@typescript-eslint/types': 8.32.1
+ '@typescript-eslint/visitor-keys': 8.32.1
debug: 4.4.0
fast-glob: 3.3.2
is-glob: 4.0.3
@@ -11244,20 +11248,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/utils@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)':
dependencies:
'@eslint-community/eslint-utils': 4.7.0(eslint@9.26.0(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.32.0
- '@typescript-eslint/types': 8.32.0
- '@typescript-eslint/typescript-estree': 8.32.0(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.32.1
+ '@typescript-eslint/types': 8.32.1
+ '@typescript-eslint/typescript-estree': 8.32.1(typescript@5.8.3)
eslint: 9.26.0(jiti@2.4.2)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.32.0':
+ '@typescript-eslint/visitor-keys@8.32.1':
dependencies:
- '@typescript-eslint/types': 8.32.0
+ '@typescript-eslint/types': 8.32.1
eslint-visitor-keys: 4.2.0
'@ungap/structured-clone@1.3.0': {}
@@ -11349,9 +11353,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@vitest/eslint-plugin@1.1.44(@typescript-eslint/utils@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.1.3)':
+ '@vitest/eslint-plugin@1.1.44(@typescript-eslint/utils@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.1.3)':
dependencies:
- '@typescript-eslint/utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
eslint: 9.26.0(jiti@2.4.2)
optionalDependencies:
typescript: 5.8.3
@@ -12815,15 +12819,15 @@ snapshots:
tinyglobby: 0.2.13
unrs-resolver: 1.6.6
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@4.3.4)(eslint@9.26.0(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@4.3.4)(eslint@9.26.0(jiti@2.4.2))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.3.4)(eslint@9.26.0(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.3.4)(eslint@9.26.0(jiti@2.4.2)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
eslint: 9.26.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 4.3.4(eslint-plugin-import@2.31.0)(eslint@9.26.0(jiti@2.4.2))
@@ -12841,7 +12845,7 @@ snapshots:
dependencies:
eslint: 9.26.0(jiti@2.4.2)
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@4.3.4)(eslint@9.26.0(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@4.3.4)(eslint@9.26.0(jiti@2.4.2)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -12852,7 +12856,7 @@ snapshots:
doctrine: 2.1.0
eslint: 9.26.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.3.4)(eslint@9.26.0(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.3.4)(eslint@9.26.0(jiti@2.4.2))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -12864,7 +12868,7 @@ snapshots:
string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -13788,6 +13792,8 @@ snapshots:
ignore@5.3.2: {}
+ ignore@7.0.4: {}
+
immutable@5.0.2: {}
import-fresh@3.3.1:
@@ -16889,11 +16895,11 @@ snapshots:
dependencies:
is-typedarray: 1.0.0
- typescript-eslint@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3):
+ typescript-eslint@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.32.0(@typescript-eslint/parser@8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/parser': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.32.0(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/eslint-plugin': 8.32.1(@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.8.3)
eslint: 9.26.0(jiti@2.4.2)
typescript: 5.8.3
transitivePeerDependencies:
From a0773640ac0e1ad427c8e21b2a5f7edb5a691ba6 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Tue, 13 May 2025 13:35:03 +0000
Subject: [PATCH 6/6] fix(deps): update dependency create-rstack to v1.4.5
(#794)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[create-rstack](https://redirect.github.com/rspack-contrib/create-rstack)
| [`1.4.4` ->
`1.4.5`](https://renovatebot.com/diffs/npm/create-rstack/1.4.4/1.4.5) |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
rspack-contrib/create-rstack (create-rstack)
###
[`v1.4.5`](https://redirect.github.com/rspack-contrib/create-rstack/releases/tag/v1.4.5)
[Compare
Source](https://redirect.github.com/rspack-contrib/create-rstack/compare/v1.4.4...v1.4.5)
#### What's Changed
- fix: placeholder should be lowercase by
[@nyqykk](https://redirect.github.com/nyqykk) in
[https://github.com/rspack-contrib/create-rstack/pull/41](https://redirect.github.com/rspack-contrib/create-rstack/pull/41)
**Full Changelog**:
https://github.com/rspack-contrib/create-rstack/compare/v1.4.4...v1.4.5
---
### Configuration
π
**Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
π¦ **Automerge**: Enabled.
β» **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
π **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/lynx-family/lynx-stack).
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
---
packages/rspeedy/create-rspeedy/package.json | 2 +-
pnpm-lock.yaml | 10 +++++-----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/packages/rspeedy/create-rspeedy/package.json b/packages/rspeedy/create-rspeedy/package.json
index 308472346a..03b8906771 100644
--- a/packages/rspeedy/create-rspeedy/package.json
+++ b/packages/rspeedy/create-rspeedy/package.json
@@ -35,7 +35,7 @@
"test": "vitest"
},
"dependencies": {
- "create-rstack": "1.4.4"
+ "create-rstack": "1.4.5"
},
"devDependencies": {
"@lynx-js/qrcode-rsbuild-plugin": "workspace:^",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 8f7fc6ab26..9db7f4d690 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -358,8 +358,8 @@ importers:
packages/rspeedy/create-rspeedy:
dependencies:
create-rstack:
- specifier: 1.4.4
- version: 1.4.4
+ specifier: 1.4.5
+ version: 1.4.5
devDependencies:
'@lynx-js/qrcode-rsbuild-plugin':
specifier: workspace:^
@@ -4239,8 +4239,8 @@ packages:
resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
engines: {node: '>= 0.10'}
- create-rstack@1.4.4:
- resolution: {integrity: sha512-naPTGUg4ib4DO9j9keXq1X8pepCXoywFQ0kf7AR7duPTA4lnHAffzVRZ59ycQvSGCazLbG4J3ZPyHtFK+OsZDw==}
+ create-rstack@1.4.5:
+ resolution: {integrity: sha512-+35gMGeFjDJE/ms+knFCl4QFjy/zXylfPZyDgbMsrVeO0SAmvLc2MAy3C5ckBVs8lDPo2/1lbf5IQTuqpPJISA==}
cross-env@7.0.3:
resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==}
@@ -12129,7 +12129,7 @@ snapshots:
object-assign: 4.1.1
vary: 1.1.2
- create-rstack@1.4.4: {}
+ create-rstack@1.4.5: {}
cross-env@7.0.3:
dependencies: