Skip to content

Commit f613100

Browse files
Merge remote-tracking branch 'origin/main' into feat/node-native-http-loader
# Conflicts: # pnpm-lock.yaml
2 parents b89367c + 9958086 commit f613100

34 files changed

Lines changed: 892 additions & 728 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@module-federation/third-party-dts-extractor': patch
3+
---
4+
5+
chore(third-party-dts-extractor): replace `resolve` with `exsolve` (0 transitive deps, ~100KB smaller) for the single `package.json` lookup.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@module-federation/sdk": patch
3+
---
4+
5+
Handle Node.js built-in imports in the Node ESM remote loader.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
'@module-federation/devtools': patch
3+
'@module-federation/treeshake-server': patch
4+
'@module-federation/rspress-plugin': patch
5+
'create-module-federation': patch
6+
'@module-federation/third-party-dts-extractor': patch
7+
---
8+
9+
Bump runtime dependencies: echarts 6.1.0 (devtools), hono 4.12.26 and @hono/node-server 1.19.13 (treeshake-server), lodash-es 4.18.1 (rspress-plugin), handlebars 4.7.9 (create-module-federation), resolve 1.22.12 (third-party-dts-extractor).

apps/3000-home/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dependencies": {
77
"@ant-design/cssinjs": "^1.21.0",
88
"antd": "5.19.1",
9-
"lodash": "4.17.23",
9+
"lodash": "4.18.1",
1010
"next": "14.2.35",
1111
"react": "18.3.1",
1212
"react-dom": "18.3.1"

apps/3001-shop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dependencies": {
77
"@ant-design/cssinjs": "^1.21.0",
88
"antd": "5.19.1",
9-
"lodash": "4.17.23",
9+
"lodash": "4.18.1",
1010
"next": "14.2.35",
1111
"react": "18.3.1",
1212
"react-dom": "18.3.1"

apps/3002-checkout/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dependencies": {
77
"@ant-design/cssinjs": "^1.21.0",
88
"antd": "5.19.1",
9-
"lodash": "4.17.23",
9+
"lodash": "4.18.1",
1010
"next": "14.2.35",
1111
"react": "18.3.1",
1212
"react-dom": "18.3.1"

apps/manifest-demo/3011-rspack-manifest-provider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"dependencies": {
1414
"antd": "4.24.15",
15-
"lodash": "4.17.23",
15+
"lodash": "4.18.1",
1616
"react": "18.3.1",
1717
"react-dom": "18.3.1"
1818
},

apps/manifest-demo/3012-rspack-js-entry-provider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"dependencies": {
1414
"antd": "4.24.15",
15-
"lodash": "4.17.23",
15+
"lodash": "4.18.1",
1616
"react": "18.3.1",
1717
"react-dom": "18.3.1"
1818
},

apps/metro-example-host/e2e/flows/core.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ appId: com.mf.example.host
1010
- copyTextFrom:
1111
id: 'host-lodash'
1212
- assertTrue:
13-
condition: ${maestro.copiedText === "4.17.23"}
13+
condition: ${maestro.copiedText === "4.18.1"}
1414

1515
# Check Mini App Info
1616
- assertNotVisible:
@@ -28,12 +28,12 @@ appId: com.mf.example.host
2828
- copyTextFrom:
2929
id: 'mini-lodash'
3030
- assertTrue:
31-
condition: ${maestro.copiedText === "4.17.23"}
31+
condition: ${maestro.copiedText === "4.18.1"}
3232

3333
# Check Nested Mini App Info
3434
- assertVisible:
3535
id: 'nested-mini-info'
3636
- copyTextFrom:
3737
id: 'nested-mini-lodash'
3838
- assertTrue:
39-
condition: ${maestro.copiedText === "4.17.23"}
39+
condition: ${maestro.copiedText === "4.18.1"}

apps/metro-example-host/metro.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ module.exports = withModuleFederation(
4747
lodash: {
4848
singleton: false,
4949
eager: false,
50-
requiredVersion: '4.17.23',
51-
version: '4.17.23',
50+
requiredVersion: '4.18.1',
51+
version: '4.18.1',
5252
},
5353
},
5454
shareStrategy: 'loaded-first',

0 commit comments

Comments
 (0)