Skip to content

Commit 8678110

Browse files
Merge remote-tracking branch 'origin/gpt-alias-resolver-refactor' into feat/exp-flag-alias-consumption
# Conflicts: # packages/enhanced/src/schemas/container/ModuleFederationPlugin.json
2 parents 2f65415 + 8c4a777 commit 8678110

File tree

68 files changed

+678
-566
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+678
-566
lines changed

.changeset/curvy-ducks-beg.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@module-federation/enhanced': patch
3+
---
4+
5+
chore(enhanced): update schema

.changeset/great-gifts-care.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@module-federation/node': patch
3+
---
4+
5+
catch runInThisContext errors and handle req error in httpVmStrategy

.changeset/metal-keys-check.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@module-federation/enhanced': patch
3+
---
4+
5+
fix(enhanced): Mark all exports as provided, to avoid webpack's export analysis from marking them as unused since we copy buildMeta

.changeset/old-buttons-hope.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@module-federation/runtime': patch
3+
---
4+
5+
Remove synthetic default import.

.changeset/polite-years-leave.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@module-federation/dts-plugin': patch
3+
---
4+
5+
fix(dts-plugin): correct generateTypes host params

.changeset/six-lies-hang.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@module-federation/manifest': patch
3+
---
4+
5+
fix: the requires type in manifest.exposes shoule be array instead of object

.changeset/strong-kings-act.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@module-federation/esbuild": patch
3+
---
4+
5+
build(esbuild): migrate from rollup to rslib

.changeset/stupid-horses-battle.md

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+
change NameTransformSymbol to literal type for TS <5.7.0

.changeset/wet-pants-sniff.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
"@module-federation/cli": patch
3+
"@module-federation/data-prefetch": patch
4+
"@module-federation/error-codes": patch
5+
"@module-federation/managers": patch
6+
"@module-federation/manifest": patch
7+
"@module-federation/rsbuild-plugin": patch
8+
"@module-federation/rspack": patch
9+
"@module-federation/runtime": patch
10+
"@module-federation/runtime-core": patch
11+
"@module-federation/inject-external-runtime-core-plugin": patch
12+
"@module-federation/runtime-tools": patch
13+
"@module-federation/sdk": patch
14+
"@module-federation/utilities": patch
15+
"@module-federation/webpack-bundler-runtime": patch
16+
---
17+
18+
use TSC instead of SWC

.github/workflows/build-and-test.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: pnpm install
5050

5151
- name: Clear Node Modules Cache
52-
run: rm -rf node_modules/.cache
52+
run: find . -maxdepth 6 -type d \( -name ".cache" -o -name ".modern-js" \) -exec rm -rf {} +
5353

5454
- name: Install Cypress
5555
# if: steps.browsers-cache.outputs.cache-hit != 'true'
@@ -73,7 +73,6 @@ jobs:
7373
[ "$pkg" != "packages/assemble-release-plan" ] && \
7474
[ "$pkg" != "packages/chrome-devtools" ] && \
7575
[ "$pkg" != "packages/core" ] && \
76-
[ "$pkg" != "packages/esbuild" ] && \
7776
[ "$pkg" != "packages/modernjs" ] && \
7877
[ "$pkg" != "packages/utilities" ] && \
7978
[ "$pkg" != "packages/metro-core" ] && \
@@ -88,18 +87,12 @@ jobs:
8887
run: npx nx run-many --targets=build --projects=tag:type:pkg --parallel=4
8988

9089
- name: Run Affected Test
91-
uses: nick-fields/retry@v3
92-
with:
93-
max_attempts: 2
94-
timeout_minutes: 10
95-
command: npx nx affected -t test --parallel=3 --exclude='*,!tag:type:pkg'
90+
timeout-minutes: 10
91+
run: npx nx affected -t test --parallel=3 --exclude='*,!tag:type:pkg'
9692

9793
- name: Run Affected Experimental Tests
98-
uses: nick-fields/retry@v3
99-
with:
100-
max_attempts: 2
101-
timeout_minutes: 10
102-
command: npx nx affected -t test:experiments --parallel=1 --exclude='*,!tag:type:pkg' --skip-nx-cache
94+
timeout-minutes: 10
95+
run: npx nx affected -t test:experiments --parallel=1 --exclude='*,!tag:type:pkg' --skip-nx-cache
10396

10497
e2e-modern:
10598
needs: checkout-install

0 commit comments

Comments
 (0)