Skip to content

Commit 8b5b231

Browse files
author
zhouxiao.shaw
committed
chore(release): v0.0.4
1 parent 966c737 commit 8b5b231

18 files changed

+1669
-1564
lines changed

.changeset/chilly-colts-eat.md

-5
This file was deleted.

.changeset/config.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,11 @@
1515
"access": "restricted",
1616
"baseBranch": "canary",
1717
"updateInternalDependencies": "patch",
18-
"ignore": []
18+
"ignore": [
19+
"node-host",
20+
"node-host-e2e",
21+
"node-host-e2e",
22+
"node-local-remote",
23+
"node-remote"
24+
]
1925
}

.changeset/nice-days-learn.md

-5
This file was deleted.

packages/enhanced/CHANGELOG.md

+15-13
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,36 @@
11
# [0.2.0-canary.5](https://github.com/module-federation/universe/compare/enhanced-0.2.0-canary.4...enhanced-0.2.0-canary.5) (2023-11-20)
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- @module-federation/sdk@0.0.4
38

49
### Bug Fixes
510

6-
* align with bytedance linting ([8000055](https://github.com/module-federation/universe/commit/800005571f37e0d1b31590834ddcd4d98bbd3086))
7-
* **enhanced:** refactory async boundary plugin ([230a105](https://github.com/module-federation/universe/commit/230a105b230ba108318d3e0aab6bea8e94fb3699))
8-
* nx build dep sync ([38c0902](https://github.com/module-federation/universe/commit/38c09025aeee8b3bb91f45721678d59ff814b8ba))
11+
- align with bytedance linting ([8000055](https://github.com/module-federation/universe/commit/800005571f37e0d1b31590834ddcd4d98bbd3086))
12+
- **enhanced:** refactory async boundary plugin ([230a105](https://github.com/module-federation/universe/commit/230a105b230ba108318d3e0aab6bea8e94fb3699))
13+
- nx build dep sync ([38c0902](https://github.com/module-federation/universe/commit/38c09025aeee8b3bb91f45721678d59ff814b8ba))
914

1015
# [0.2.0-canary.4](https://github.com/module-federation/universe/compare/enhanced-0.2.0-canary.3...enhanced-0.2.0-canary.4) (2023-11-20)
1116

12-
1317
### Bug Fixes
1418

15-
* **enhanced:** use getAllReferencedChunks api for federation indexing ([b8846be](https://github.com/module-federation/universe/commit/b8846be5135c58841c3c22453e45751bebbecdeb))
16-
* **nextjs-mf:** Improved async startup dep track ([839e47b](https://github.com/module-federation/universe/commit/839e47bc7e1b887f0729c17257e6dd17cc3e3a5d))
17-
* rename plugin took tap ([b1e0f58](https://github.com/module-federation/universe/commit/b1e0f58d689a60223b03277fbffe3c5bd18dd481))
18-
19+
- **enhanced:** use getAllReferencedChunks api for federation indexing ([b8846be](https://github.com/module-federation/universe/commit/b8846be5135c58841c3c22453e45751bebbecdeb))
20+
- **nextjs-mf:** Improved async startup dep track ([839e47b](https://github.com/module-federation/universe/commit/839e47bc7e1b887f0729c17257e6dd17cc3e3a5d))
21+
- rename plugin took tap ([b1e0f58](https://github.com/module-federation/universe/commit/b1e0f58d689a60223b03277fbffe3c5bd18dd481))
1922

2023
### Features
2124

22-
* **enhanced:** ✨ Reference Hoisting ([6ab3e72](https://github.com/module-federation/universe/commit/6ab3e72b147bf8338a4e50fee2ff49cc79c53195))
23-
* **enhanced:** HoistContainerReferencesPlugin ([adc00e7](https://github.com/module-federation/universe/commit/adc00e744522d3a96cbac7ff4f6fdfa435f77896))
24-
* **nextjs-mf:** Use HoistReferencePlugin over DelegatePlugin ([e8f1e43](https://github.com/module-federation/universe/commit/e8f1e437f13ad0b922c7e147c4911d83ebf1b226))
25+
- **enhanced:** ✨ Reference Hoisting ([6ab3e72](https://github.com/module-federation/universe/commit/6ab3e72b147bf8338a4e50fee2ff49cc79c53195))
26+
- **enhanced:** HoistContainerReferencesPlugin ([adc00e7](https://github.com/module-federation/universe/commit/adc00e744522d3a96cbac7ff4f6fdfa435f77896))
27+
- **nextjs-mf:** Use HoistReferencePlugin over DelegatePlugin ([e8f1e43](https://github.com/module-federation/universe/commit/e8f1e437f13ad0b922c7e147c4911d83ebf1b226))
2528

2629
# [0.2.0-canary.3](https://github.com/module-federation/universe/compare/enhanced-0.2.0-canary.2...enhanced-0.2.0-canary.3) (2023-11-08)
2730

28-
2931
### Bug Fixes
3032

31-
* **enhanced:** correct schema validation issues ([5a04a81](https://github.com/module-federation/universe/commit/5a04a812f505ab8287d206abd0a6996057a994fc))
33+
- **enhanced:** correct schema validation issues ([5a04a81](https://github.com/module-federation/universe/commit/5a04a812f505ab8287d206abd0a6996057a994fc))
3234

3335
# [0.2.0-canary.2](https://github.com/module-federation/universe/compare/enhanced-0.2.0-canary.1...enhanced-0.2.0-canary.2) (2023-11-07)
3436

packages/enhanced/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@module-federation/enhanced",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"type": "commonjs",
55
"main": "./dist/src/index.js",
66
"types": "./dist/src/index.d.ts",

packages/nextjs-mf/CHANGELOG.md

+22-17
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,48 @@
11
# [8.1.0-canary.7](https://github.com/module-federation/universe/compare/nextjs-mf-8.1.0-canary.6...nextjs-mf-8.1.0-canary.7) (2023-11-21)
22

3+
## 8.1.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [966c737]
8+
- @module-federation/utilities@3.0.5
9+
- @module-federation/node@2.0.2
10+
- @module-federation/enhanced@0.0.4
11+
- @module-federation/sdk@0.0.4
312

413
### Bug Fixes
514

6-
* align with bytedance linting ([8000055](https://github.com/module-federation/universe/commit/800005571f37e0d1b31590834ddcd4d98bbd3086))
7-
* **enhanced:** refactory async boundary plugin ([230a105](https://github.com/module-federation/universe/commit/230a105b230ba108318d3e0aab6bea8e94fb3699))
15+
- align with bytedance linting ([8000055](https://github.com/module-federation/universe/commit/800005571f37e0d1b31590834ddcd4d98bbd3086))
16+
- **enhanced:** refactory async boundary plugin ([230a105](https://github.com/module-federation/universe/commit/230a105b230ba108318d3e0aab6bea8e94fb3699))
817

918
# [8.1.0-canary.6](https://github.com/module-federation/universe/compare/nextjs-mf-8.1.0-canary.5...nextjs-mf-8.1.0-canary.6) (2023-11-20)
1019

11-
1220
### Bug Fixes
1321

14-
* **enhanced:** use getAllReferencedChunks api for federation indexing ([b8846be](https://github.com/module-federation/universe/commit/b8846be5135c58841c3c22453e45751bebbecdeb))
15-
* **nextjs-mf:** Improved async startup dep track ([839e47b](https://github.com/module-federation/universe/commit/839e47bc7e1b887f0729c17257e6dd17cc3e3a5d))
16-
* **nextjs-mf:** shared module proxies ([0929029](https://github.com/module-federation/universe/commit/092902911880c6fb58b5f5f003772d3a31879dd8))
17-
* **nextjs-mf:** update share scope rules ([39d69ba](https://github.com/module-federation/universe/commit/39d69ba3c7b550b67dc3bf793e1411b46c9b5eb5))
18-
* nx build dep sync ([38c0902](https://github.com/module-federation/universe/commit/38c09025aeee8b3bb91f45721678d59ff814b8ba))
19-
* rename plugin took tap ([b1e0f58](https://github.com/module-federation/universe/commit/b1e0f58d689a60223b03277fbffe3c5bd18dd481))
20-
22+
- **enhanced:** use getAllReferencedChunks api for federation indexing ([b8846be](https://github.com/module-federation/universe/commit/b8846be5135c58841c3c22453e45751bebbecdeb))
23+
- **nextjs-mf:** Improved async startup dep track ([839e47b](https://github.com/module-federation/universe/commit/839e47bc7e1b887f0729c17257e6dd17cc3e3a5d))
24+
- **nextjs-mf:** shared module proxies ([0929029](https://github.com/module-federation/universe/commit/092902911880c6fb58b5f5f003772d3a31879dd8))
25+
- **nextjs-mf:** update share scope rules ([39d69ba](https://github.com/module-federation/universe/commit/39d69ba3c7b550b67dc3bf793e1411b46c9b5eb5))
26+
- nx build dep sync ([38c0902](https://github.com/module-federation/universe/commit/38c09025aeee8b3bb91f45721678d59ff814b8ba))
27+
- rename plugin took tap ([b1e0f58](https://github.com/module-federation/universe/commit/b1e0f58d689a60223b03277fbffe3c5bd18dd481))
2128

2229
### Features
2330

24-
* **enhanced:** ✨ Reference Hoisting ([6ab3e72](https://github.com/module-federation/universe/commit/6ab3e72b147bf8338a4e50fee2ff49cc79c53195))
25-
* **enhanced:** HoistContainerReferencesPlugin ([adc00e7](https://github.com/module-federation/universe/commit/adc00e744522d3a96cbac7ff4f6fdfa435f77896))
26-
* **nextjs-mf:** Use HoistReferencePlugin over DelegatePlugin ([e8f1e43](https://github.com/module-federation/universe/commit/e8f1e437f13ad0b922c7e147c4911d83ebf1b226))
31+
- **enhanced:** ✨ Reference Hoisting ([6ab3e72](https://github.com/module-federation/universe/commit/6ab3e72b147bf8338a4e50fee2ff49cc79c53195))
32+
- **enhanced:** HoistContainerReferencesPlugin ([adc00e7](https://github.com/module-federation/universe/commit/adc00e744522d3a96cbac7ff4f6fdfa435f77896))
33+
- **nextjs-mf:** Use HoistReferencePlugin over DelegatePlugin ([e8f1e43](https://github.com/module-federation/universe/commit/e8f1e437f13ad0b922c7e147c4911d83ebf1b226))
2734

2835
# [8.1.0-canary.5](https://github.com/module-federation/universe/compare/nextjs-mf-8.1.0-canary.4...nextjs-mf-8.1.0-canary.5) (2023-11-08)
2936

30-
3137
### Bug Fixes
3238

33-
* **enhanced:** correct schema validation issues ([5a04a81](https://github.com/module-federation/universe/commit/5a04a812f505ab8287d206abd0a6996057a994fc))
39+
- **enhanced:** correct schema validation issues ([5a04a81](https://github.com/module-federation/universe/commit/5a04a812f505ab8287d206abd0a6996057a994fc))
3440

3541
# [8.1.0-canary.4](https://github.com/module-federation/universe/compare/nextjs-mf-8.1.0-canary.3...nextjs-mf-8.1.0-canary.4) (2023-11-08)
3642

37-
3843
### Bug Fixes
3944

40-
* fix version missmatch ([2d45df4](https://github.com/module-federation/universe/commit/2d45df485e72471bd2d5b116a050a0ae2416acc1))
45+
- fix version missmatch ([2d45df4](https://github.com/module-federation/universe/commit/2d45df485e72471bd2d5b116a050a0ae2416acc1))
4146

4247
# [8.1.0-canary.3](https://github.com/module-federation/universe/compare/nextjs-mf-8.1.0-canary.2...nextjs-mf-8.1.0-canary.3) (2023-11-07)
4348

packages/nextjs-mf/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@module-federation/nextjs-mf",
3-
"version": "8.1.0-canary.7",
3+
"version": "8.1.0",
44
"license": "MIT",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",

packages/node/CHANGELOG.md

+18-13
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,39 @@
11
# [2.1.0-canary.6](https://github.com/module-federation/universe/compare/node-2.1.0-canary.5...node-2.1.0-canary.6) (2023-11-21)
22

3+
## 2.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [966c737]
8+
- @module-federation/utilities@3.0.5
9+
- @module-federation/enhanced@0.0.4
10+
- @module-federation/sdk@0.0.4
311

412
### Bug Fixes
513

6-
* align with bytedance linting ([8000055](https://github.com/module-federation/universe/commit/800005571f37e0d1b31590834ddcd4d98bbd3086))
7-
* **enhanced:** refactory async boundary plugin ([230a105](https://github.com/module-federation/universe/commit/230a105b230ba108318d3e0aab6bea8e94fb3699))
14+
- align with bytedance linting ([8000055](https://github.com/module-federation/universe/commit/800005571f37e0d1b31590834ddcd4d98bbd3086))
15+
- **enhanced:** refactory async boundary plugin ([230a105](https://github.com/module-federation/universe/commit/230a105b230ba108318d3e0aab6bea8e94fb3699))
816

917
# [2.1.0-canary.5](https://github.com/module-federation/universe/compare/node-2.1.0-canary.4...node-2.1.0-canary.5) (2023-11-20)
1018

11-
1219
### Bug Fixes
1320

14-
* **enhanced:** use getAllReferencedChunks api for federation indexing ([b8846be](https://github.com/module-federation/universe/commit/b8846be5135c58841c3c22453e45751bebbecdeb))
15-
* **nextjs-mf:** Improved async startup dep track ([839e47b](https://github.com/module-federation/universe/commit/839e47bc7e1b887f0729c17257e6dd17cc3e3a5d))
16-
* nx build dep sync ([38c0902](https://github.com/module-federation/universe/commit/38c09025aeee8b3bb91f45721678d59ff814b8ba))
17-
* rename plugin took tap ([b1e0f58](https://github.com/module-federation/universe/commit/b1e0f58d689a60223b03277fbffe3c5bd18dd481))
18-
21+
- **enhanced:** use getAllReferencedChunks api for federation indexing ([b8846be](https://github.com/module-federation/universe/commit/b8846be5135c58841c3c22453e45751bebbecdeb))
22+
- **nextjs-mf:** Improved async startup dep track ([839e47b](https://github.com/module-federation/universe/commit/839e47bc7e1b887f0729c17257e6dd17cc3e3a5d))
23+
- nx build dep sync ([38c0902](https://github.com/module-federation/universe/commit/38c09025aeee8b3bb91f45721678d59ff814b8ba))
24+
- rename plugin took tap ([b1e0f58](https://github.com/module-federation/universe/commit/b1e0f58d689a60223b03277fbffe3c5bd18dd481))
1925

2026
### Features
2127

22-
* **enhanced:** ✨ Reference Hoisting ([6ab3e72](https://github.com/module-federation/universe/commit/6ab3e72b147bf8338a4e50fee2ff49cc79c53195))
23-
* **enhanced:** HoistContainerReferencesPlugin ([adc00e7](https://github.com/module-federation/universe/commit/adc00e744522d3a96cbac7ff4f6fdfa435f77896))
24-
* **nextjs-mf:** Use HoistReferencePlugin over DelegatePlugin ([e8f1e43](https://github.com/module-federation/universe/commit/e8f1e437f13ad0b922c7e147c4911d83ebf1b226))
28+
- **enhanced:** ✨ Reference Hoisting ([6ab3e72](https://github.com/module-federation/universe/commit/6ab3e72b147bf8338a4e50fee2ff49cc79c53195))
29+
- **enhanced:** HoistContainerReferencesPlugin ([adc00e7](https://github.com/module-federation/universe/commit/adc00e744522d3a96cbac7ff4f6fdfa435f77896))
30+
- **nextjs-mf:** Use HoistReferencePlugin over DelegatePlugin ([e8f1e43](https://github.com/module-federation/universe/commit/e8f1e437f13ad0b922c7e147c4911d83ebf1b226))
2531

2632
# [2.1.0-canary.4](https://github.com/module-federation/universe/compare/node-2.1.0-canary.3...node-2.1.0-canary.4) (2023-11-08)
2733

28-
2934
### Bug Fixes
3035

31-
* **enhanced:** correct schema validation issues ([5a04a81](https://github.com/module-federation/universe/commit/5a04a812f505ab8287d206abd0a6996057a994fc))
36+
- **enhanced:** correct schema validation issues ([5a04a81](https://github.com/module-federation/universe/commit/5a04a812f505ab8287d206abd0a6996057a994fc))
3237

3338
# [2.1.0-canary.3](https://github.com/module-federation/universe/compare/node-2.1.0-canary.2...node-2.1.0-canary.3) (2023-11-08)
3439

packages/node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"public": true,
33
"name": "@module-federation/node",
4-
"version": "2.0.2-beta.6",
4+
"version": "2.0.2",
55
"type": "commonjs",
66
"main": "./dist/src/index.js",
77
"exports": {

packages/runtime/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# @module-federation/runtime
2+
3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- 3af2723: fix: add runtime api
8+
- @module-federation/sdk@0.0.4

packages/runtime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@module-federation/runtime",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"author": "zhouxiao <[email protected]>",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.esm.js",

0 commit comments

Comments
 (0)