@module-federation/nextjs-mf 7.0.7 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +423 -325
- package/README.md +26 -12
- package/client/MFClient.js +1 -2
- package/client/MFClient.js.map +1 -1
- package/client/RemoteContainer.js +2 -1
- package/client/RemoteContainer.js.map +1 -1
- package/client/RemotePages.js +2 -1
- package/client/RemotePages.js.map +1 -1
- package/client/UrlNode.js +2 -10
- package/client/UrlNode.js.map +1 -1
- package/node.d.ts +1 -1
- package/node.js.map +1 -1
- package/package.json +5 -9
- package/src/default-delegate.js +290 -3
- package/src/default-delegate.js.map +1 -1
- package/src/index.d.ts +1 -1
- package/src/internal.d.ts +18 -12
- package/src/internal.js +49 -45
- package/src/internal.js.map +1 -1
- package/src/loaders/delegateLoader.d.ts +5 -2
- package/src/loaders/delegateLoader.js +19 -9
- package/src/loaders/delegateLoader.js.map +1 -1
- package/src/loaders/fixImageLoader.d.ts +12 -11
- package/src/loaders/fixImageLoader.js +14 -12
- package/src/loaders/fixImageLoader.js.map +1 -1
- package/src/loaders/fixUrlLoader.d.ts +7 -7
- package/src/loaders/fixUrlLoader.js +11 -11
- package/src/loaders/fixUrlLoader.js.map +1 -1
- package/src/loaders/helpers.d.ts +10 -3
- package/src/loaders/helpers.js +22 -13
- package/src/loaders/helpers.js.map +1 -1
- package/src/loaders/inject-hoist.d.ts +11 -0
- package/src/loaders/inject-hoist.js +7 -0
- package/src/loaders/inject-hoist.js.map +1 -1
- package/src/loaders/nextPageMapLoader.d.ts +12 -3
- package/src/loaders/nextPageMapLoader.js +45 -29
- package/src/loaders/nextPageMapLoader.js.map +1 -1
- package/src/loaders/patchDefaultSharedLoader.d.ts +9 -0
- package/src/loaders/patchDefaultSharedLoader.js +11 -0
- package/src/loaders/patchDefaultSharedLoader.js.map +1 -1
- package/src/loaders/patchNextClientPageLoader.d.ts +4 -2
- package/src/loaders/patchNextClientPageLoader.js +36 -18
- package/src/loaders/patchNextClientPageLoader.js.map +1 -1
- package/src/plugins/CopyFederationPlugin.d.ts +13 -0
- package/src/plugins/CopyFederationPlugin.js +40 -19
- package/src/plugins/CopyFederationPlugin.js.map +1 -1
- package/src/plugins/JsonpChunkLoading.d.ts +11 -0
- package/src/plugins/JsonpChunkLoading.js +25 -4
- package/src/plugins/JsonpChunkLoading.js.map +1 -1
- package/src/plugins/NextFederationPlugin/apply-client-plugins.d.ts +2 -2
- package/src/plugins/NextFederationPlugin/apply-client-plugins.js +2 -2
- package/src/plugins/NextFederationPlugin/apply-server-plugins.d.ts +17 -10
- package/src/plugins/NextFederationPlugin/apply-server-plugins.js +18 -10
- package/src/plugins/NextFederationPlugin/apply-server-plugins.js.map +1 -1
- package/src/plugins/NextFederationPlugin/index.d.ts +8 -2
- package/src/plugins/NextFederationPlugin/index.js +20 -17
- package/src/plugins/NextFederationPlugin/index.js.map +1 -1
- package/src/plugins/NextFederationPlugin/next-fragments.d.ts +22 -16
- package/src/plugins/NextFederationPlugin/next-fragments.js +23 -16
- package/src/plugins/NextFederationPlugin/next-fragments.js.map +1 -1
- package/src/plugins/NextFederationPlugin/regex-equal.d.ts +8 -8
- package/src/plugins/NextFederationPlugin/regex-equal.js +7 -7
- package/src/plugins/NextFederationPlugin/remove-unnecessary-shared-keys.d.ts +7 -0
- package/src/plugins/NextFederationPlugin/remove-unnecessary-shared-keys.js +20 -9
- package/src/plugins/NextFederationPlugin/remove-unnecessary-shared-keys.js.map +1 -1
- package/src/plugins/NextFederationPlugin/set-options.d.ts +6 -6
- package/src/plugins/NextFederationPlugin/set-options.js +10 -6
- package/src/plugins/NextFederationPlugin/set-options.js.map +1 -1
- package/src/plugins/NextFederationPlugin/validate-options.d.ts +12 -13
- package/src/plugins/NextFederationPlugin/validate-options.js +14 -15
- package/src/plugins/NextFederationPlugin/validate-options.js.map +1 -1
- package/src/plugins/container/InvertedContainerPlugin.d.ts +1 -0
- package/src/plugins/container/InvertedContainerPlugin.js +8 -4
- package/src/plugins/container/InvertedContainerPlugin.js.map +1 -1
- package/src/plugins/container/InvertedContainerRuntimeModule.d.ts +16 -4
- package/src/plugins/container/InvertedContainerRuntimeModule.js +67 -32
- package/src/plugins/container/InvertedContainerRuntimeModule.js.map +1 -1
- package/src/plugins/container/RemoveEagerModulesFromRuntimePlugin.d.ts +27 -5
- package/src/plugins/container/RemoveEagerModulesFromRuntimePlugin.js +34 -57
- package/src/plugins/container/RemoveEagerModulesFromRuntimePlugin.js.map +1 -1
- package/src/plugins/container/types.d.ts +1 -1
- package/src/types.d.ts +3 -0
- package/utilities.js.map +1 -1
- package/utils/Template.d.ts +1 -1
- package/utils/Template.js +23 -15
- package/utils/Template.js.map +1 -1
- package/utils/build-utils.d.ts +9 -0
- package/utils/build-utils.js +9 -0
- package/utils/build-utils.js.map +1 -1
- package/utils/flushedChunks.d.ts +15 -0
- package/utils/flushedChunks.js +8 -0
- package/utils/flushedChunks.js.map +1 -1
- package/utils/index.d.ts +26 -2
- package/utils/index.js +21 -0
- package/utils/index.js.map +1 -1
- package/importDelegatedModule.d.ts +0 -3
- package/importDelegatedModule.js +0 -7
- package/importDelegatedModule.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,105 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
# [8.0.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.7...nextjs-mf-8.0.0) (2023-09-14)
|
|
6
6
|
|
|
7
7
|
### Dependency Updates
|
|
8
8
|
|
|
9
|
-
* `utils` updated to version `
|
|
10
|
-
* `node` updated to version `
|
|
11
|
-
* `utils` updated to version `
|
|
12
|
-
* `node` updated to version `
|
|
13
|
-
* `node` updated to version `
|
|
9
|
+
* `utils` updated to version `3.0.1`
|
|
10
|
+
* `node` updated to version `2.0.1`
|
|
11
|
+
* `utils` updated to version `3.0.1`
|
|
12
|
+
* `node` updated to version `2.0.1`
|
|
13
|
+
* `node` updated to version `2.0.1`
|
|
14
14
|
|
|
15
15
|
### Bug Fixes
|
|
16
16
|
|
|
17
|
-
*
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
## [7.0.6](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.5...nextjs-mf-7.0.6) (2023-07-19)
|
|
22
|
-
|
|
23
|
-
### Dependency Updates
|
|
24
|
-
|
|
25
|
-
* `utils` updated to version `2.0.4`
|
|
26
|
-
* `node` updated to version `1.0.5`
|
|
27
|
-
* `utils` updated to version `2.0.4`
|
|
28
|
-
* `node` updated to version `1.0.5`
|
|
29
|
-
* `node` updated to version `1.0.5`
|
|
30
|
-
|
|
31
|
-
### Bug Fixes
|
|
32
|
-
|
|
33
|
-
* Fix call undefined delegate ([#1149](https://github.com/module-federation/nextjs-mf/issues/1149)) ([87a5896](https://github.com/module-federation/nextjs-mf/commit/87a5896221a726578c3433071755fba3465824f4)), closes [#1151](https://github.com/module-federation/nextjs-mf/issues/1151)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
## [7.0.5](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.4...nextjs-mf-7.0.5) (2023-07-18)
|
|
38
|
-
|
|
39
|
-
### Dependency Updates
|
|
40
|
-
|
|
41
|
-
* `utils` updated to version `2.0.2`
|
|
42
|
-
* `node` updated to version `1.0.4`
|
|
43
|
-
* `utils` updated to version `2.0.2`
|
|
44
|
-
* `utils` updated to version `2.0.2`
|
|
45
|
-
* `node` updated to version `1.0.4`
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
## [7.0.4](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.3...nextjs-mf-7.0.4) (2023-07-17)
|
|
49
|
-
|
|
50
|
-
### Dependency Updates
|
|
51
|
-
|
|
52
|
-
* `utils` updated to version `2.0.1`
|
|
53
|
-
* `node` updated to version `1.0.3`
|
|
54
|
-
* `utils` updated to version `2.0.1`
|
|
55
|
-
* `node` updated to version `1.0.3`
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
## [7.0.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.2...nextjs-mf-7.0.3) (2023-07-17)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
### Bug Fixes
|
|
62
|
-
|
|
63
|
-
* **invertedmoduleplugin:** added another check for nextjs api routes ([#1134](https://github.com/module-federation/nextjs-mf/issues/1134)) ([aba26be](https://github.com/module-federation/nextjs-mf/commit/aba26bed61bca4816238e7b7b93e88b108b65d9d))
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
## [7.0.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.1...nextjs-mf-7.0.2) (2023-07-05)
|
|
68
|
-
|
|
69
|
-
### Dependency Updates
|
|
17
|
+
* update readme ([#1265](https://github.com/module-federation/nextjs-mf/issues/1265)) ([49d66bc](https://github.com/module-federation/nextjs-mf/commit/49d66bc7d0d2708edda61c246f08553718af81cf))
|
|
18
|
+
* workaround to self ref module error in prod ([#1205](https://github.com/module-federation/nextjs-mf/issues/1205)) ([1d88beb](https://github.com/module-federation/nextjs-mf/commit/1d88beb0da629f036e132573fee9f05494b1f540))
|
|
70
19
|
|
|
71
|
-
* `node` updated to version `1.0.2`
|
|
72
|
-
* `node` updated to version `1.0.2`
|
|
73
|
-
* `node` updated to version `1.0.2`
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
## [7.0.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.0...nextjs-mf-7.0.1) (2023-07-05)
|
|
77
|
-
|
|
78
|
-
### Dependency Updates
|
|
79
|
-
|
|
80
|
-
* `node` updated to version `1.0.1`
|
|
81
|
-
* `node` updated to version `1.0.1`
|
|
82
|
-
* `node` updated to version `1.0.1`
|
|
83
|
-
|
|
84
|
-
### Bug Fixes
|
|
85
|
-
|
|
86
|
-
* **nextjs-mf:** update broken documentation ([#1103](https://github.com/module-federation/nextjs-mf/issues/1103)) ([f3659b4](https://github.com/module-federation/nextjs-mf/commit/f3659b4f2dec9f37256fc2d87d2799f5d1923df6))
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
# [7.0.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.7.1...nextjs-mf-7.0.0) (2023-07-01)
|
|
91
|
-
|
|
92
|
-
### Dependency Updates
|
|
93
|
-
|
|
94
|
-
* `utils` updated to version `2.0.0`
|
|
95
|
-
* `node` updated to version `1.0.0`
|
|
96
|
-
* `utils` updated to version `2.0.0`
|
|
97
|
-
* `utils` updated to version `2.0.0`
|
|
98
|
-
* `node` updated to version `1.0.0`
|
|
99
|
-
* `node` updated to version `1.0.0`
|
|
100
20
|
|
|
101
21
|
### Features
|
|
102
22
|
|
|
103
|
-
*
|
|
23
|
+
* core package for module federation ([#1093](https://github.com/module-federation/nextjs-mf/issues/1093)) ([d460400](https://github.com/module-federation/nextjs-mf/commit/d46040053e9b627321b5fe8e05556c5bb727c238)), closes [#851](https://github.com/module-federation/nextjs-mf/issues/851) [#864](https://github.com/module-federation/nextjs-mf/issues/864) [#835](https://github.com/module-federation/nextjs-mf/issues/835) [#851](https://github.com/module-federation/nextjs-mf/issues/851) [#864](https://github.com/module-federation/nextjs-mf/issues/864) [#871](https://github.com/module-federation/nextjs-mf/issues/871) [#851](https://github.com/module-federation/nextjs-mf/issues/851) [#864](https://github.com/module-federation/nextjs-mf/issues/864) [#872](https://github.com/module-federation/nextjs-mf/issues/872) [#875](https://github.com/module-federation/nextjs-mf/issues/875) [#884](https://github.com/module-federation/nextjs-mf/issues/884) [#887](https://github.com/module-federation/nextjs-mf/issues/887) [#893](https://github.com/module-federation/nextjs-mf/issues/893) [#885](https://github.com/module-federation/nextjs-mf/issues/885) [#899](https://github.com/module-federation/nextjs-mf/issues/899) [#904](https://github.com/module-federation/nextjs-mf/issues/904) [#932](https://github.com/module-federation/nextjs-mf/issues/932) [#936](https://github.com/module-federation/nextjs-mf/issues/936) [#959](https://github.com/module-federation/nextjs-mf/issues/959) [#960](https://github.com/module-federation/nextjs-mf/issues/960) [#969](https://github.com/module-federation/nextjs-mf/issues/969) [#971](https://github.com/module-federation/nextjs-mf/issues/971) [#1234](https://github.com/module-federation/nextjs-mf/issues/1234) [#1235](https://github.com/module-federation/nextjs-mf/issues/1235)
|
|
24
|
+
* Introduce full test command and improvement on RuntimeRemotesMap manipulation ([61e605d](https://github.com/module-federation/nextjs-mf/commit/61e605dd83c8f95c8ed26237709dba412edf447c))
|
|
25
|
+
* Update ESLint configuration, add test file and update TypeScript configuration ([00a73be](https://github.com/module-federation/nextjs-mf/commit/00a73be7c1c8ec792e2adae111f063e3741a4bb4))
|
|
104
26
|
|
|
105
27
|
|
|
106
28
|
### BREAKING CHANGES
|
|
@@ -295,574 +217,750 @@ likely can remove whole plugin in future
|
|
|
295
217
|
|
|
296
218
|
|
|
297
219
|
|
|
298
|
-
## [
|
|
220
|
+
## [7.0.8](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.7...nextjs-mf-7.0.8) (2023-08-14)
|
|
299
221
|
|
|
222
|
+
### Dependency Updates
|
|
300
223
|
|
|
301
|
-
|
|
224
|
+
- `utils` updated to version `2.0.6`
|
|
225
|
+
- `node` updated to version `1.0.7`
|
|
226
|
+
- `utils` updated to version `2.0.6`
|
|
227
|
+
- `node` updated to version `1.0.7`
|
|
302
228
|
|
|
303
|
-
|
|
229
|
+
### Bug Fixes
|
|
304
230
|
|
|
231
|
+
- workaround to self ref module error in prod ([e134caa](https://github.com/module-federation/nextjs-mf/commit/e134caa9a914da6a226e73dc877a108456b1053f))
|
|
305
232
|
|
|
233
|
+
## [7.0.7](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.6...nextjs-mf-7.0.7) (2023-08-11)
|
|
306
234
|
|
|
307
|
-
|
|
235
|
+
### Dependency Updates
|
|
308
236
|
|
|
237
|
+
- `utils` updated to version `2.0.5`
|
|
238
|
+
- `node` updated to version `1.0.6`
|
|
239
|
+
- `utils` updated to version `2.0.5`
|
|
240
|
+
- `node` updated to version `1.0.6`
|
|
241
|
+
- `node` updated to version `1.0.6`
|
|
309
242
|
|
|
310
243
|
### Bug Fixes
|
|
311
244
|
|
|
312
|
-
|
|
313
|
-
* ts errors ([44de0be](https://github.com/module-federation/nextjs-mf/commit/44de0beb8c2d94028f738849f2bab438ce530ebe))
|
|
314
|
-
|
|
245
|
+
- improve import ordering ([#1199](https://github.com/module-federation/nextjs-mf/issues/1199)) ([7354ed2](https://github.com/module-federation/nextjs-mf/commit/7354ed2b412bd9fd8745778e5212e10e8a3bf17f))
|
|
315
246
|
|
|
247
|
+
## [7.0.6](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.5...nextjs-mf-7.0.6) (2023-07-19)
|
|
316
248
|
|
|
317
|
-
|
|
249
|
+
### Dependency Updates
|
|
318
250
|
|
|
251
|
+
- `utils` updated to version `2.0.4`
|
|
252
|
+
- `node` updated to version `1.0.5`
|
|
253
|
+
- `utils` updated to version `2.0.4`
|
|
254
|
+
- `node` updated to version `1.0.5`
|
|
255
|
+
- `node` updated to version `1.0.5`
|
|
319
256
|
|
|
320
257
|
### Bug Fixes
|
|
321
258
|
|
|
322
|
-
|
|
259
|
+
- Fix call undefined delegate ([#1149](https://github.com/module-federation/nextjs-mf/issues/1149)) ([87a5896](https://github.com/module-federation/nextjs-mf/commit/87a5896221a726578c3433071755fba3465824f4)), closes [#1151](https://github.com/module-federation/nextjs-mf/issues/1151)
|
|
323
260
|
|
|
261
|
+
## [7.0.5](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.4...nextjs-mf-7.0.5) (2023-07-18)
|
|
324
262
|
|
|
263
|
+
### Dependency Updates
|
|
325
264
|
|
|
326
|
-
|
|
265
|
+
- `utils` updated to version `2.0.2`
|
|
266
|
+
- `node` updated to version `1.0.4`
|
|
267
|
+
- `utils` updated to version `2.0.2`
|
|
268
|
+
- `utils` updated to version `2.0.2`
|
|
269
|
+
- `node` updated to version `1.0.4`
|
|
327
270
|
|
|
271
|
+
## [7.0.4](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.3...nextjs-mf-7.0.4) (2023-07-17)
|
|
328
272
|
|
|
273
|
+
### Dependency Updates
|
|
329
274
|
|
|
330
|
-
|
|
275
|
+
- `utils` updated to version `2.0.1`
|
|
276
|
+
- `node` updated to version `1.0.3`
|
|
277
|
+
- `utils` updated to version `2.0.1`
|
|
278
|
+
- `node` updated to version `1.0.3`
|
|
331
279
|
|
|
280
|
+
## [7.0.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.2...nextjs-mf-7.0.3) (2023-07-17)
|
|
332
281
|
|
|
333
282
|
### Bug Fixes
|
|
334
283
|
|
|
335
|
-
|
|
284
|
+
- **invertedmoduleplugin:** added another check for nextjs api routes ([#1134](https://github.com/module-federation/nextjs-mf/issues/1134)) ([aba26be](https://github.com/module-federation/nextjs-mf/commit/aba26bed61bca4816238e7b7b93e88b108b65d9d))
|
|
336
285
|
|
|
286
|
+
## [7.0.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.1...nextjs-mf-7.0.2) (2023-07-05)
|
|
337
287
|
|
|
288
|
+
### Dependency Updates
|
|
338
289
|
|
|
339
|
-
|
|
290
|
+
- `node` updated to version `1.0.2`
|
|
291
|
+
- `node` updated to version `1.0.2`
|
|
292
|
+
- `node` updated to version `1.0.2`
|
|
293
|
+
|
|
294
|
+
## [7.0.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.0...nextjs-mf-7.0.1) (2023-07-05)
|
|
295
|
+
|
|
296
|
+
### Dependency Updates
|
|
340
297
|
|
|
298
|
+
- `node` updated to version `1.0.1`
|
|
299
|
+
- `node` updated to version `1.0.1`
|
|
300
|
+
- `node` updated to version `1.0.1`
|
|
341
301
|
|
|
342
302
|
### Bug Fixes
|
|
343
303
|
|
|
344
|
-
|
|
304
|
+
- **nextjs-mf:** update broken documentation ([#1103](https://github.com/module-federation/nextjs-mf/issues/1103)) ([f3659b4](https://github.com/module-federation/nextjs-mf/commit/f3659b4f2dec9f37256fc2d87d2799f5d1923df6))
|
|
345
305
|
|
|
306
|
+
# [7.0.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.7.1...nextjs-mf-7.0.0) (2023-07-01)
|
|
346
307
|
|
|
308
|
+
### Dependency Updates
|
|
347
309
|
|
|
348
|
-
|
|
310
|
+
- `utils` updated to version `2.0.0`
|
|
311
|
+
- `node` updated to version `1.0.0`
|
|
312
|
+
- `utils` updated to version `2.0.0`
|
|
313
|
+
- `utils` updated to version `2.0.0`
|
|
314
|
+
- `node` updated to version `1.0.0`
|
|
315
|
+
- `node` updated to version `1.0.0`
|
|
349
316
|
|
|
317
|
+
### Features
|
|
350
318
|
|
|
351
|
-
|
|
319
|
+
- Next Federation 7 ([#726](https://github.com/module-federation/nextjs-mf/issues/726)) ([d50ca1e](https://github.com/module-federation/nextjs-mf/commit/d50ca1e4636c4e0a402190f6e9c3f69ed9ec8eac)), closes [#851](https://github.com/module-federation/nextjs-mf/issues/851) [#864](https://github.com/module-federation/nextjs-mf/issues/864) [#835](https://github.com/module-federation/nextjs-mf/issues/835) [#851](https://github.com/module-federation/nextjs-mf/issues/851) [#864](https://github.com/module-federation/nextjs-mf/issues/864) [#871](https://github.com/module-federation/nextjs-mf/issues/871) [#851](https://github.com/module-federation/nextjs-mf/issues/851) [#864](https://github.com/module-federation/nextjs-mf/issues/864) [#872](https://github.com/module-federation/nextjs-mf/issues/872) [#875](https://github.com/module-federation/nextjs-mf/issues/875) [#884](https://github.com/module-federation/nextjs-mf/issues/884) [#887](https://github.com/module-federation/nextjs-mf/issues/887) [#893](https://github.com/module-federation/nextjs-mf/issues/893) [#885](https://github.com/module-federation/nextjs-mf/issues/885) [#899](https://github.com/module-federation/nextjs-mf/issues/899) [#904](https://github.com/module-federation/nextjs-mf/issues/904) [#932](https://github.com/module-federation/nextjs-mf/issues/932) [#936](https://github.com/module-federation/nextjs-mf/issues/936) [#959](https://github.com/module-federation/nextjs-mf/issues/959) [#960](https://github.com/module-federation/nextjs-mf/issues/960) [#969](https://github.com/module-federation/nextjs-mf/issues/969) [#971](https://github.com/module-federation/nextjs-mf/issues/971) [#974](https://github.com/module-federation/nextjs-mf/issues/974) [#984](https://github.com/module-federation/nextjs-mf/issues/984) [#986](https://github.com/module-federation/nextjs-mf/issues/986) [#1015](https://github.com/module-federation/nextjs-mf/issues/1015) [#1086](https://github.com/module-federation/nextjs-mf/issues/1086) [#1084](https://github.com/module-federation/nextjs-mf/issues/1084)
|
|
352
320
|
|
|
353
|
-
|
|
321
|
+
### BREAKING CHANGES
|
|
354
322
|
|
|
323
|
+
- automaticAsyncBoundary option has been removed
|
|
355
324
|
|
|
325
|
+
- fix: exclude specific pages from page map automatically
|
|
356
326
|
|
|
357
|
-
|
|
327
|
+
- refactor: conslidate codebase
|
|
358
328
|
|
|
329
|
+
- fix: improve hot reload share recovery
|
|
359
330
|
|
|
360
|
-
|
|
331
|
+
- refactor: remove server jsonp template
|
|
361
332
|
|
|
362
|
-
|
|
363
|
-
* Resolve condition names ([#974](https://github.com/module-federation/nextjs-mf/issues/974)) ([5e8b49c](https://github.com/module-federation/nextjs-mf/commit/5e8b49cf60f19dae6be4818a1c0ff783c7689393))
|
|
364
|
-
* Resolve conditional exports ([#971](https://github.com/module-federation/nextjs-mf/issues/971)) ([1c42e2a](https://github.com/module-federation/nextjs-mf/commit/1c42e2a721a9e93b2e9acebc09099dda66699a42))
|
|
365
|
-
* Runtime module checking ([#969](https://github.com/module-federation/nextjs-mf/issues/969)) ([b5c7af1](https://github.com/module-federation/nextjs-mf/commit/b5c7af1697a63d9e19f901238a4c0382ea0c3f50))
|
|
333
|
+
- chore: remove dead code from runtime modules
|
|
366
334
|
|
|
335
|
+
- fix: clean up jsonp getCustomJsonpCode
|
|
367
336
|
|
|
337
|
+
getting chunk loading global from compiler output options
|
|
368
338
|
|
|
369
|
-
|
|
339
|
+
- feat: adding cleanInitArrays runtime helper
|
|
370
340
|
|
|
341
|
+
- chore: remove share scope hoist and module hoisting system
|
|
371
342
|
|
|
372
|
-
|
|
343
|
+
- chore: cleanup code
|
|
373
344
|
|
|
374
|
-
|
|
345
|
+
- chore: remove dead code from add module runtime plugin
|
|
375
346
|
|
|
347
|
+
likely can remove whole plugin in future
|
|
376
348
|
|
|
349
|
+
- chore: remove logs from delegate modules
|
|
377
350
|
|
|
378
|
-
|
|
351
|
+
- chore: remove old utils
|
|
379
352
|
|
|
353
|
+
- fix: add warning on auto page stitch
|
|
380
354
|
|
|
381
|
-
|
|
355
|
+
- fix: remove commented out code from InvertedContainerPlugin.ts
|
|
382
356
|
|
|
383
|
-
|
|
357
|
+
- chore: improve logging to see if its local load or remote load
|
|
384
358
|
|
|
359
|
+
- chore: clean up old custom promises factories
|
|
385
360
|
|
|
361
|
+
- fix: remove container proxy code
|
|
386
362
|
|
|
387
|
-
|
|
363
|
+
- fix: remove container proxy code
|
|
364
|
+
- automaticAsyncBoundary option has been removed
|
|
388
365
|
|
|
366
|
+
- fix: exclude specific pages from page map automatically
|
|
389
367
|
|
|
390
|
-
|
|
368
|
+
- refactor: conslidate codebase
|
|
391
369
|
|
|
392
|
-
|
|
393
|
-
* remove default props deprecation on flush chunks ([103fa91](https://github.com/module-federation/nextjs-mf/commit/103fa910d39e25d283076755a2eedf4e926ba242))
|
|
370
|
+
- fix: improve hot reload share recovery
|
|
394
371
|
|
|
372
|
+
- refactor: remove server jsonp template
|
|
395
373
|
|
|
396
|
-
|
|
374
|
+
- chore: remove dead code from runtime modules
|
|
397
375
|
|
|
398
|
-
|
|
376
|
+
- fix: clean up jsonp getCustomJsonpCode
|
|
399
377
|
|
|
378
|
+
getting chunk loading global from compiler output options
|
|
400
379
|
|
|
380
|
+
- feat: adding cleanInitArrays runtime helper
|
|
401
381
|
|
|
402
|
-
|
|
382
|
+
- chore: remove share scope hoist and module hoisting system
|
|
403
383
|
|
|
384
|
+
- chore: cleanup code
|
|
404
385
|
|
|
405
|
-
|
|
386
|
+
- chore: remove dead code from add module runtime plugin
|
|
406
387
|
|
|
407
|
-
|
|
408
|
-
* remove specific module type from package ([ad8caf7](https://github.com/module-federation/nextjs-mf/commit/ad8caf7df575a67a866e882e515d9a4e249f5ad8))
|
|
388
|
+
likely can remove whole plugin in future
|
|
409
389
|
|
|
390
|
+
- chore: remove logs from delegate modules
|
|
410
391
|
|
|
392
|
+
- chore: remove old utils
|
|
411
393
|
|
|
412
|
-
|
|
394
|
+
- fix: add warning on auto page stitch
|
|
413
395
|
|
|
396
|
+
- fix: remove commented out code from InvertedContainerPlugin.ts
|
|
414
397
|
|
|
415
|
-
|
|
398
|
+
- chore: improve logging to see if its local load or remote load
|
|
416
399
|
|
|
417
|
-
|
|
418
|
-
* client prod build issues ([#899](https://github.com/module-federation/nextjs-mf/issues/899)) ([470d7ad](https://github.com/module-federation/nextjs-mf/commit/470d7ad408ae8d64dbccc5a9528eaa2ed60fa2ca))
|
|
419
|
-
* deprecation warnings about chunkGraph ([9af484d](https://github.com/module-federation/nextjs-mf/commit/9af484dedba44b346d25ac5cdd10292ad018143d))
|
|
420
|
-
* externalization and missing runtime chunks ([#887](https://github.com/module-federation/nextjs-mf/issues/887)) ([c79cd62](https://github.com/module-federation/nextjs-mf/commit/c79cd6226d3134f1d6294cd8eba40c8c33af5cb5))
|
|
421
|
-
* missing chunk hashes on exposed modules ([#893](https://github.com/module-federation/nextjs-mf/issues/893)) ([cfa43f5](https://github.com/module-federation/nextjs-mf/commit/cfa43f506999d5ce3ab6afeea513d50d85f7886e))
|
|
400
|
+
- chore: clean up old custom promises factories
|
|
422
401
|
|
|
402
|
+
- fix: remove container proxy code
|
|
423
403
|
|
|
404
|
+
- fix: remove container proxy code
|
|
424
405
|
|
|
425
|
-
|
|
406
|
+
- chore: fix project.json
|
|
426
407
|
|
|
408
|
+
- debugging
|
|
427
409
|
|
|
410
|
+
- fix: resolve backmerge issues with build
|
|
428
411
|
|
|
429
|
-
|
|
412
|
+
- Merge branch 'kill_child_compilers' into fix_backmerge_issues
|
|
430
413
|
|
|
414
|
+
# Conflicts:
|
|
431
415
|
|
|
432
|
-
|
|
416
|
+
# package-lock.json
|
|
433
417
|
|
|
434
|
-
|
|
418
|
+
# package.json
|
|
435
419
|
|
|
420
|
+
# packages/nextjs-mf/src/plugins/NextFederationPlugin/index.ts
|
|
436
421
|
|
|
422
|
+
# packages/nextjs-mf/src/plugins/container/InvertedContainerPlugin.ts
|
|
437
423
|
|
|
438
|
-
|
|
424
|
+
# packages/nextjs-mf/src/plugins/container/InvertedContainerRuntimeModule.ts
|
|
439
425
|
|
|
426
|
+
- feat: enable eager sharing
|
|
440
427
|
|
|
441
|
-
|
|
428
|
+
- refactor: improve module hooks for eager loading and search
|
|
442
429
|
|
|
443
|
-
|
|
444
|
-
* remove old files ([fa281ec](https://github.com/module-federation/nextjs-mf/commit/fa281ecf0a5486bcf995f548deaef993f437c068))
|
|
430
|
+
- refactor: cleanup custom jsonp and make es5
|
|
445
431
|
|
|
432
|
+
- refactor: cleanup inverted container code
|
|
446
433
|
|
|
447
|
-
|
|
434
|
+
- refactor: cleanup inverted container code
|
|
435
|
+
- automaticAsyncBoundary option has been removed
|
|
448
436
|
|
|
449
|
-
|
|
437
|
+
- fix: exclude specific pages from page map automatically
|
|
450
438
|
|
|
439
|
+
- refactor: conslidate codebase
|
|
451
440
|
|
|
441
|
+
- fix: improve hot reload share recovery
|
|
452
442
|
|
|
453
|
-
|
|
443
|
+
- refactor: remove server jsonp template
|
|
454
444
|
|
|
445
|
+
- chore: remove dead code from runtime modules
|
|
455
446
|
|
|
456
|
-
|
|
447
|
+
- fix: clean up jsonp getCustomJsonpCode
|
|
457
448
|
|
|
458
|
-
|
|
449
|
+
getting chunk loading global from compiler output options
|
|
459
450
|
|
|
451
|
+
- feat: adding cleanInitArrays runtime helper
|
|
460
452
|
|
|
453
|
+
- chore: remove share scope hoist and module hoisting system
|
|
461
454
|
|
|
462
|
-
|
|
455
|
+
- chore: cleanup code
|
|
463
456
|
|
|
457
|
+
- chore: remove dead code from add module runtime plugin
|
|
464
458
|
|
|
465
|
-
|
|
459
|
+
likely can remove whole plugin in future
|
|
466
460
|
|
|
467
|
-
|
|
461
|
+
- chore: remove logs from delegate modules
|
|
468
462
|
|
|
463
|
+
- chore: remove old utils
|
|
469
464
|
|
|
465
|
+
- fix: add warning on auto page stitch
|
|
470
466
|
|
|
471
|
-
|
|
467
|
+
- fix: remove commented out code from InvertedContainerPlugin.ts
|
|
472
468
|
|
|
469
|
+
- chore: improve logging to see if its local load or remote load
|
|
473
470
|
|
|
474
|
-
|
|
471
|
+
- chore: clean up old custom promises factories
|
|
475
472
|
|
|
476
|
-
|
|
473
|
+
- fix: remove container proxy code
|
|
477
474
|
|
|
475
|
+
- fix: remove container proxy code
|
|
478
476
|
|
|
477
|
+
- fix: resolve backmerge issues with build
|
|
479
478
|
|
|
480
|
-
|
|
479
|
+
- Merge branch 'kill_child_compilers' into fix_backmerge_issues
|
|
481
480
|
|
|
481
|
+
# Conflicts:
|
|
482
482
|
|
|
483
|
-
|
|
483
|
+
# package-lock.json
|
|
484
484
|
|
|
485
|
-
|
|
486
|
-
* remove commented out code from InvertedContainerPlugin.ts ([7d52961](https://github.com/module-federation/nextjs-mf/commit/7d529612869f061733d7d87c9770036b7c2b0bbb))
|
|
487
|
-
* resolve backmerge issues with build ([2ad095c](https://github.com/module-federation/nextjs-mf/commit/2ad095cc3198dfd153644cee5fb4f37fa3bf6f03))
|
|
485
|
+
# package.json
|
|
488
486
|
|
|
487
|
+
# packages/nextjs-mf/src/plugins/NextFederationPlugin/index.ts
|
|
489
488
|
|
|
490
|
-
|
|
489
|
+
# packages/nextjs-mf/src/plugins/container/InvertedContainerPlugin.ts
|
|
491
490
|
|
|
492
|
-
|
|
493
|
-
* [v7] Async boundary runtime ([#835](https://github.com/module-federation/nextjs-mf/issues/835)) ([840e3b5](https://github.com/module-federation/nextjs-mf/commit/840e3b5bddfbb99b5d8d0f5f24bf5e179e8b52ad)), closes [#851](https://github.com/module-federation/nextjs-mf/issues/851) [#864](https://github.com/module-federation/nextjs-mf/issues/864)
|
|
494
|
-
* enable eager sharing ([b1e4418](https://github.com/module-federation/nextjs-mf/commit/b1e4418304afd30c5f4719469db50c17c279a021))
|
|
491
|
+
# packages/nextjs-mf/src/plugins/container/InvertedContainerRuntimeModule.ts
|
|
495
492
|
|
|
493
|
+
- feat: enable eager sharing
|
|
496
494
|
|
|
497
|
-
|
|
495
|
+
- refactor: improve module hooks for eager loading and search
|
|
498
496
|
|
|
499
|
-
|
|
497
|
+
- refactor: cleanup custom jsonp and make es5
|
|
500
498
|
|
|
501
|
-
|
|
499
|
+
- refactor: cleanup inverted container code
|
|
502
500
|
|
|
503
|
-
|
|
501
|
+
- refactor: cleanup inverted container code
|
|
504
502
|
|
|
505
|
-
|
|
503
|
+
- ci: fix install step with npm and NX
|
|
506
504
|
|
|
507
|
-
|
|
505
|
+
- test: remove tests for now
|
|
508
506
|
|
|
509
|
-
|
|
507
|
+
- chore(utils): release version 1.7.3-beta.0
|
|
510
508
|
|
|
511
|
-
|
|
509
|
+
- chore(utils): release version 1.7.3
|
|
512
510
|
|
|
513
|
-
|
|
511
|
+
- chore(node): release version 0.14.4-beta.0
|
|
514
512
|
|
|
515
|
-
|
|
513
|
+
- chore(node): release version 0.14.4
|
|
516
514
|
|
|
517
|
-
|
|
515
|
+
- chore(nextjs-mf): release version 6.4.1-beta.4
|
|
518
516
|
|
|
519
|
-
|
|
517
|
+
- fix: remove debugging runtime variable
|
|
520
518
|
|
|
521
|
-
|
|
519
|
+
- chore(nextjs-mf): release version 6.4.1-beta.5
|
|
522
520
|
|
|
523
|
-
|
|
521
|
+
## [6.7.2-rc.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.7.2-rc.0...nextjs-mf-6.7.2-rc.1) (2023-07-01)
|
|
524
522
|
|
|
525
|
-
|
|
523
|
+
### Features
|
|
526
524
|
|
|
527
|
-
|
|
525
|
+
- support edge workers ([#1084](https://github.com/module-federation/nextjs-mf/issues/1084)) ([3f5df94](https://github.com/module-federation/nextjs-mf/commit/3f5df944ea787cf958fd4cf7fabed84432a50a10))
|
|
528
526
|
|
|
529
|
-
|
|
527
|
+
## [6.7.2-rc.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.7.1...nextjs-mf-6.7.2-rc.0) (2023-06-30)
|
|
530
528
|
|
|
531
|
-
|
|
529
|
+
### Bug Fixes
|
|
532
530
|
|
|
533
|
-
|
|
531
|
+
- module type errors ([4c7b3ff](https://github.com/module-federation/nextjs-mf/commit/4c7b3ffad0726c6d9f51a8fb72ec7eefb3633073))
|
|
532
|
+
- ts errors ([44de0be](https://github.com/module-federation/nextjs-mf/commit/44de0beb8c2d94028f738849f2bab438ce530ebe))
|
|
534
533
|
|
|
535
|
-
|
|
534
|
+
## [6.5.2-rc8.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.2-rc8.0...nextjs-mf-6.5.2-rc8.1) (2023-06-28)
|
|
536
535
|
|
|
537
|
-
|
|
536
|
+
### Bug Fixes
|
|
538
537
|
|
|
539
|
-
|
|
540
|
-
* automaticAsyncBoundary option has been removed
|
|
538
|
+
- disable flushing remotes to ssr for now ([6c5cfae](https://github.com/module-federation/nextjs-mf/commit/6c5cfaec3be94aeb3f1e12c24965b3904da23bae))
|
|
541
539
|
|
|
542
|
-
|
|
540
|
+
## [6.5.2-rc8.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.2-rc7.0...nextjs-mf-6.5.2-rc8.0) (2023-06-27)
|
|
543
541
|
|
|
544
|
-
|
|
542
|
+
## [6.5.2-rc7.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.2-rc6.0...nextjs-mf-6.5.2-rc7.0) (2023-06-27)
|
|
545
543
|
|
|
546
|
-
|
|
544
|
+
### Bug Fixes
|
|
547
545
|
|
|
548
|
-
|
|
546
|
+
- image path fallback ([fc176ff](https://github.com/module-federation/nextjs-mf/commit/fc176ffa74a082ab0d7a198315f3b0827eb13037))
|
|
549
547
|
|
|
550
|
-
|
|
548
|
+
## [6.5.2-rc6.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.2-rc5.0...nextjs-mf-6.5.2-rc6.0) (2023-06-23)
|
|
551
549
|
|
|
552
|
-
|
|
550
|
+
### Bug Fixes
|
|
553
551
|
|
|
554
|
-
|
|
552
|
+
- remove loggers ([a86b070](https://github.com/module-federation/nextjs-mf/commit/a86b070e11f31303a8833f806f7d2015e55a441b))
|
|
555
553
|
|
|
556
|
-
|
|
554
|
+
## [6.5.2-rc5.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.2-rc4.0...nextjs-mf-6.5.2-rc5.0) (2023-06-23)
|
|
557
555
|
|
|
558
|
-
|
|
556
|
+
### Bug Fixes
|
|
559
557
|
|
|
560
|
-
|
|
558
|
+
- Non-Deterministic Chunk ID Handling ([#986](https://github.com/module-federation/nextjs-mf/issues/986)) ([b051c12](https://github.com/module-federation/nextjs-mf/commit/b051c12bbaf54f7327a4d25407326b6a7d1d9594))
|
|
561
559
|
|
|
560
|
+
## [6.5.2-rc4.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.2-rc3.1...nextjs-mf-6.5.2-rc4.0) (2023-06-21)
|
|
562
561
|
|
|
562
|
+
### Bug Fixes
|
|
563
563
|
|
|
564
|
-
|
|
564
|
+
- Api routes ([#984](https://github.com/module-federation/nextjs-mf/issues/984)) ([903296a](https://github.com/module-federation/nextjs-mf/commit/903296af090d344845288fc940536a3b741eb1e1))
|
|
565
|
+
- Resolve condition names ([#974](https://github.com/module-federation/nextjs-mf/issues/974)) ([5e8b49c](https://github.com/module-federation/nextjs-mf/commit/5e8b49cf60f19dae6be4818a1c0ff783c7689393))
|
|
566
|
+
- Resolve conditional exports ([#971](https://github.com/module-federation/nextjs-mf/issues/971)) ([1c42e2a](https://github.com/module-federation/nextjs-mf/commit/1c42e2a721a9e93b2e9acebc09099dda66699a42))
|
|
567
|
+
- Runtime module checking ([#969](https://github.com/module-federation/nextjs-mf/issues/969)) ([b5c7af1](https://github.com/module-federation/nextjs-mf/commit/b5c7af1697a63d9e19f901238a4c0382ea0c3f50))
|
|
568
|
+
|
|
569
|
+
## [6.5.2-rc3.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.2-rc3.0...nextjs-mf-6.5.2-rc3.1) (2023-06-09)
|
|
570
|
+
|
|
571
|
+
### Bug Fixes
|
|
572
|
+
|
|
573
|
+
- Path loader patches ([#960](https://github.com/module-federation/nextjs-mf/issues/960)) ([d362a77](https://github.com/module-federation/nextjs-mf/commit/d362a7752c4364cc499a27f2b6eeb5399543cb29))
|
|
565
574
|
|
|
575
|
+
## [6.5.2-rc3.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.2-beta.0...nextjs-mf-6.5.2-rc3.0) (2023-06-09)
|
|
566
576
|
|
|
567
577
|
### Bug Fixes
|
|
568
578
|
|
|
569
|
-
|
|
570
|
-
* improve eager modularization ([f593725](https://github.com/module-federation/nextjs-mf/commit/f593725e24672dbf95eae018f2656cab68ec2c4e))
|
|
571
|
-
* improve module and async module loading in runtmie module ([c841a4b](https://github.com/module-federation/nextjs-mf/commit/c841a4bd9e2205b438fc1c8855c66e1eee764e0a))
|
|
572
|
-
* improve stability of chunk push ([98ad6ad](https://github.com/module-federation/nextjs-mf/commit/98ad6ad66ae19429a4808dc9215c6efef6b69fee))
|
|
573
|
-
* improve startup inversion ([42e59f1](https://github.com/module-federation/nextjs-mf/commit/42e59f1b0c58d98c4a16d1efd1ab00d0748311f0))
|
|
574
|
-
* prevent hmr destroying share scope ([ffc1131](https://github.com/module-federation/nextjs-mf/commit/ffc1131b2607387805d3137561df3ae756d07244))
|
|
579
|
+
- remove logs or wrap in debug flag ([#959](https://github.com/module-federation/nextjs-mf/issues/959)) ([5ea321a](https://github.com/module-federation/nextjs-mf/commit/5ea321a6ee4323456f9ad1e62bb2e765df612017))
|
|
575
580
|
|
|
581
|
+
## [6.5.2-beta.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.2-rc1.0...nextjs-mf-6.5.2-beta.0) (2023-05-26)
|
|
582
|
+
|
|
583
|
+
### Bug Fixes
|
|
584
|
+
|
|
585
|
+
- Improve chunk correlation ([#936](https://github.com/module-federation/nextjs-mf/issues/936)) ([4dad1eb](https://github.com/module-federation/nextjs-mf/commit/4dad1eb370feacd6ecb4c1726c435d5c579f424d))
|
|
586
|
+
- remove default props deprecation on flush chunks ([103fa91](https://github.com/module-federation/nextjs-mf/commit/103fa910d39e25d283076755a2eedf4e926ba242))
|
|
576
587
|
|
|
577
588
|
### Features
|
|
578
589
|
|
|
579
|
-
|
|
580
|
-
* install an async boundary runtime module ([cbbc7f5](https://github.com/module-federation/nextjs-mf/commit/cbbc7f53dd908c42cb1897e3aa9e70a9819a002a))
|
|
590
|
+
- support custom distDir ([3d8d540](https://github.com/module-federation/nextjs-mf/commit/3d8d5408f73be9b8798f02fbd2382457510fdc3f))
|
|
581
591
|
|
|
592
|
+
## [6.5.2-rc1.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.2-rc.0...nextjs-mf-6.5.2-rc1.0) (2023-05-25)
|
|
582
593
|
|
|
594
|
+
### Bug Fixes
|
|
583
595
|
|
|
584
|
-
|
|
596
|
+
- Improved Entrypoint Module Detection and Refactoring ([#932](https://github.com/module-federation/nextjs-mf/issues/932)) ([d09e841](https://github.com/module-federation/nextjs-mf/commit/d09e841fb2e01300e61c046e18b9d02842920b4a))
|
|
597
|
+
- remove specific module type from package ([ad8caf7](https://github.com/module-federation/nextjs-mf/commit/ad8caf7df575a67a866e882e515d9a4e249f5ad8))
|
|
585
598
|
|
|
599
|
+
## [6.5.2-rc.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.1...nextjs-mf-6.5.2-rc.0) (2023-05-23)
|
|
586
600
|
|
|
587
601
|
### Bug Fixes
|
|
588
602
|
|
|
589
|
-
|
|
603
|
+
- chunk and module duplications ([#885](https://github.com/module-federation/nextjs-mf/issues/885)) ([199e6b9](https://github.com/module-federation/nextjs-mf/commit/199e6b9937f4a2ca6caedb3ae4767342de463cb6))
|
|
604
|
+
- client prod build issues ([#899](https://github.com/module-federation/nextjs-mf/issues/899)) ([470d7ad](https://github.com/module-federation/nextjs-mf/commit/470d7ad408ae8d64dbccc5a9528eaa2ed60fa2ca))
|
|
605
|
+
- deprecation warnings about chunkGraph ([9af484d](https://github.com/module-federation/nextjs-mf/commit/9af484dedba44b346d25ac5cdd10292ad018143d))
|
|
606
|
+
- externalization and missing runtime chunks ([#887](https://github.com/module-federation/nextjs-mf/issues/887)) ([c79cd62](https://github.com/module-federation/nextjs-mf/commit/c79cd6226d3134f1d6294cd8eba40c8c33af5cb5))
|
|
607
|
+
- missing chunk hashes on exposed modules ([#893](https://github.com/module-federation/nextjs-mf/issues/893)) ([cfa43f5](https://github.com/module-federation/nextjs-mf/commit/cfa43f506999d5ce3ab6afeea513d50d85f7886e))
|
|
590
608
|
|
|
609
|
+
## [6.4.1-rc.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.1-rc.1...nextjs-mf-6.4.1-rc.2) (2023-05-17)
|
|
591
610
|
|
|
611
|
+
## [6.4.1-rc.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.1-rc.0...nextjs-mf-6.4.1-rc.1) (2023-05-17)
|
|
592
612
|
|
|
593
|
-
|
|
613
|
+
### Bug Fixes
|
|
594
614
|
|
|
615
|
+
- **chunk-module-duplication:** prevent runtime reset and share scope loss ([14bfc38](https://github.com/module-federation/nextjs-mf/commit/14bfc38515a4da3be7321d4b6d876905d45ad20b))
|
|
595
616
|
|
|
617
|
+
## [6.4.1-rc.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.1-beta.7...nextjs-mf-6.4.1-rc.0) (2023-05-16)
|
|
596
618
|
|
|
597
|
-
|
|
619
|
+
### Bug Fixes
|
|
598
620
|
|
|
621
|
+
- Improved Share Scope Properties and Fixed Production Build Issues ([#884](https://github.com/module-federation/nextjs-mf/issues/884)) ([de7b2ce](https://github.com/module-federation/nextjs-mf/commit/de7b2cec7518f6b069818a511275e359c616bb73))
|
|
622
|
+
- remove old files ([fa281ec](https://github.com/module-federation/nextjs-mf/commit/fa281ecf0a5486bcf995f548deaef993f437c068))
|
|
599
623
|
|
|
600
624
|
### Features
|
|
601
625
|
|
|
602
|
-
|
|
603
|
-
* Custom Startup Runtime modules ([0f4bb27](https://github.com/module-federation/nextjs-mf/commit/0f4bb278a1e3be602c489d39062e7e236c47cca1))
|
|
604
|
-
* Improve module chunk connections ([#802](https://github.com/module-federation/nextjs-mf/issues/802)) ([ce0bd7b](https://github.com/module-federation/nextjs-mf/commit/ce0bd7b16e080f712e6db0bdcd3955a8167c274f)), closes [#803](https://github.com/module-federation/nextjs-mf/issues/803) [#808](https://github.com/module-federation/nextjs-mf/issues/808) [#811](https://github.com/module-federation/nextjs-mf/issues/811)
|
|
605
|
-
* remove child compiler pluign ([#780](https://github.com/module-federation/nextjs-mf/issues/780)) ([ed7ce3a](https://github.com/module-federation/nextjs-mf/commit/ed7ce3a6220bf0fa142da50d8101ad4693c8b178))
|
|
626
|
+
- remove entry injection ([4e6981f](https://github.com/module-federation/nextjs-mf/commit/4e6981f8d8a312ae383b1c2cd337882b268e2b9b))
|
|
606
627
|
|
|
628
|
+
## [6.4.1-beta.7](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.1-beta.6...nextjs-mf-6.4.1-beta.7) (2023-05-16)
|
|
607
629
|
|
|
608
|
-
###
|
|
630
|
+
### Bug Fixes
|
|
609
631
|
|
|
610
|
-
|
|
611
|
-
BREAKING_CHANGE: Internal child compilers are no longer used
|
|
632
|
+
- ensure eager modules always exist in host (inject dependent modules somewhere in build pipeline) ([12bb896](https://github.com/module-federation/nextjs-mf/commit/12bb896d37324b4f3d0d59da04463b1d04428a01))
|
|
612
633
|
|
|
634
|
+
## [6.4.1-beta.6](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.1-beta.5...nextjs-mf-6.4.1-beta.6) (2023-05-15)
|
|
613
635
|
|
|
636
|
+
### Features
|
|
614
637
|
|
|
615
|
-
|
|
638
|
+
- Quantum Modules ([#872](https://github.com/module-federation/nextjs-mf/issues/872)) ([2991039](https://github.com/module-federation/nextjs-mf/commit/299103932b4e0aa6d8017be588ffa5272f519260))
|
|
616
639
|
|
|
640
|
+
## [6.4.1-beta.5](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.1-beta.4...nextjs-mf-6.4.1-beta.5) (2023-05-13)
|
|
617
641
|
|
|
618
642
|
### Bug Fixes
|
|
619
643
|
|
|
620
|
-
|
|
621
|
-
* ensure app functions with async boundary loader ([717e885](https://github.com/module-federation/nextjs-mf/commit/717e88558475158bf1eb5ae88e53a3624b3277ff))
|
|
622
|
-
* get delegates working ([#527](https://github.com/module-federation/nextjs-mf/issues/527)) ([7655568](https://github.com/module-federation/nextjs-mf/commit/7655568fcef8dbfda40573deb5d3d029c101074c))
|
|
623
|
-
* improved asset pipeline ([63928b2](https://github.com/module-federation/nextjs-mf/commit/63928b28150c2c4e3adb9e14fb7aa54f5cf1578d))
|
|
624
|
-
* move delegate modules into both webpack runtimes ([0570021](https://github.com/module-federation/nextjs-mf/commit/0570021d1040888a9f00394e64f7530a22e74a75))
|
|
625
|
-
* move host remote reg into loader ([188b9e4](https://github.com/module-federation/nextjs-mf/commit/188b9e432b95ba4934a838a49571435ea27b4d0b))
|
|
626
|
-
* peer dependencies metadata ([b603587](https://github.com/module-federation/nextjs-mf/commit/b6035870e5130bfd5b5c70951cc17bb38a50fbdd))
|
|
627
|
-
* put error triggers if delegates are passed non-primitives ([0a780bb](https://github.com/module-federation/nextjs-mf/commit/0a780bb07c9421b58605fc133f236a918ef5a0d8))
|
|
628
|
-
* remove dead code, use commonjs for delegate exports ([ad646d7](https://github.com/module-federation/nextjs-mf/commit/ad646d7306a2442ae6d9b2a72b33fb5ce66a9ba4))
|
|
629
|
-
* solve double async boundary ([88b3f4f](https://github.com/module-federation/nextjs-mf/commit/88b3f4f08b217e2f88b535ec9c7290bad697888b))
|
|
630
|
-
* solve externalization ([49f52e5](https://github.com/module-federation/nextjs-mf/commit/49f52e53ddddc990d31e6aa510d67dc0552a9d9a))
|
|
631
|
-
* support windows paths ([98ca26f](https://github.com/module-federation/nextjs-mf/commit/98ca26f3062b9fa67fc8ba8152fd85eda9b5df10))
|
|
632
|
-
* use EntryPlugin for injection of remotes ([e522c5a](https://github.com/module-federation/nextjs-mf/commit/e522c5ad2b7adcbd6c39f9c5fdb7a3e418277b7a))
|
|
644
|
+
- remove debugging runtime variable ([d15dc2d](https://github.com/module-federation/nextjs-mf/commit/d15dc2dc6f6297532d89295690c6f561fee7955f))
|
|
633
645
|
|
|
646
|
+
## [6.4.1-beta.4](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.1-beta.3...nextjs-mf-6.4.1-beta.4) (2023-05-13)
|
|
634
647
|
|
|
635
|
-
###
|
|
648
|
+
### Bug Fixes
|
|
649
|
+
|
|
650
|
+
- add warning on auto page stitch ([2f068cf](https://github.com/module-federation/nextjs-mf/commit/2f068cfd71f0aad12285b9ab4cfbd515f399211c))
|
|
651
|
+
- remove commented out code from InvertedContainerPlugin.ts ([7d52961](https://github.com/module-federation/nextjs-mf/commit/7d529612869f061733d7d87c9770036b7c2b0bbb))
|
|
652
|
+
- resolve backmerge issues with build ([2ad095c](https://github.com/module-federation/nextjs-mf/commit/2ad095cc3198dfd153644cee5fb4f37fa3bf6f03))
|
|
636
653
|
|
|
637
|
-
|
|
638
|
-
* delegate module support ([3567aa5](https://github.com/module-federation/nextjs-mf/commit/3567aa5f6d0a00ca6df103c796657eb8953bc96a))
|
|
639
|
-
* delegate module support ([8dd154c](https://github.com/module-federation/nextjs-mf/commit/8dd154c261b34183b12250ce204904cd3e085658))
|
|
640
|
-
* delegates part two ([1be2686](https://github.com/module-federation/nextjs-mf/commit/1be2686624798a7df9f447b48279294985b3f592))
|
|
641
|
-
* implement basic single runtime ([2432c3e](https://github.com/module-federation/nextjs-mf/commit/2432c3ec553759ca24d17a46b696c1123a86ec5a))
|
|
642
|
-
* implement module runtime hoisting ([17c5b2f](https://github.com/module-federation/nextjs-mf/commit/17c5b2fc5f67c4321959ae30a69742c3128bc9a5))
|
|
643
|
-
* improve automatic async boundary loader on single compile instance ([63fc327](https://github.com/module-federation/nextjs-mf/commit/63fc3273500d1626c7e8c4dab14268ae5cb9de7a))
|
|
644
|
-
* improve chunk correlation ([22d8afc](https://github.com/module-federation/nextjs-mf/commit/22d8afccff101044fcdeba390656950dbc6eafed))
|
|
645
|
-
* new chunk flushing system for exposed modules ([97a75d8](https://github.com/module-federation/nextjs-mf/commit/97a75d8702f2ddc5e12cff2ac4d24aca1df6f990))
|
|
646
|
-
* new next federation plugin ([7e096df](https://github.com/module-federation/nextjs-mf/commit/7e096df89682369cdc92095be6936b58b9b5787f))
|
|
647
|
-
* new output copy plugin for prod server exposure ([85da209](https://github.com/module-federation/nextjs-mf/commit/85da209103046567bdc93f71d421ea413ac1d37b))
|
|
648
|
-
* remove child compilers ([c124f37](https://github.com/module-federation/nextjs-mf/commit/c124f3797ad327971066a4ad75f0317531653c08))
|
|
649
|
-
* removing old promise template stuff from build utils ([d827cd6](https://github.com/module-federation/nextjs-mf/commit/d827cd60fc12bd65b4091db5f7e3d9b96bcdc12b))
|
|
654
|
+
### Features
|
|
650
655
|
|
|
656
|
+
- [7] Async boundary runtime server ([#851](https://github.com/module-federation/nextjs-mf/issues/851)) ([7fa792a](https://github.com/module-federation/nextjs-mf/commit/7fa792a4b518cd007b5ac41db225e20521063e73)), closes [#864](https://github.com/module-federation/nextjs-mf/issues/864)
|
|
657
|
+
- [v7] Async boundary runtime ([#835](https://github.com/module-federation/nextjs-mf/issues/835)) ([840e3b5](https://github.com/module-federation/nextjs-mf/commit/840e3b5bddfbb99b5d8d0f5f24bf5e179e8b52ad)), closes [#851](https://github.com/module-federation/nextjs-mf/issues/851) [#864](https://github.com/module-federation/nextjs-mf/issues/864)
|
|
658
|
+
- enable eager sharing ([b1e4418](https://github.com/module-federation/nextjs-mf/commit/b1e4418304afd30c5f4719469db50c17c279a021))
|
|
651
659
|
|
|
652
660
|
### BREAKING CHANGES
|
|
653
661
|
|
|
654
|
-
|
|
655
|
-
* deleting support for promiseTemplate
|
|
662
|
+
- automaticAsyncBoundary option has been removed
|
|
656
663
|
|
|
664
|
+
- fix: exclude specific pages from page map automatically
|
|
657
665
|
|
|
666
|
+
- refactor: conslidate codebase
|
|
658
667
|
|
|
659
|
-
|
|
668
|
+
- fix: improve hot reload share recovery
|
|
660
669
|
|
|
670
|
+
- refactor: remove server jsonp template
|
|
661
671
|
|
|
662
|
-
|
|
672
|
+
- chore: remove dead code from runtime modules
|
|
663
673
|
|
|
664
|
-
|
|
674
|
+
- fix: clean up jsonp getCustomJsonpCode
|
|
665
675
|
|
|
676
|
+
getting chunk loading global from compiler output options
|
|
666
677
|
|
|
678
|
+
- feat: adding cleanInitArrays runtime helper
|
|
667
679
|
|
|
668
|
-
|
|
680
|
+
- chore: remove share scope hoist and module hoisting system
|
|
669
681
|
|
|
670
|
-
|
|
682
|
+
- chore: cleanup code
|
|
671
683
|
|
|
672
|
-
|
|
673
|
-
* `node` updated to version `0.16.2`
|
|
674
|
-
* `utils` updated to version `1.9.1`
|
|
675
|
-
* `node` updated to version `0.16.2`
|
|
676
|
-
* `node` updated to version `0.16.2`
|
|
684
|
+
- chore: remove dead code from add module runtime plugin
|
|
677
685
|
|
|
678
|
-
|
|
686
|
+
likely can remove whole plugin in future
|
|
679
687
|
|
|
680
|
-
|
|
688
|
+
- chore: remove logs from delegate modules
|
|
681
689
|
|
|
690
|
+
- chore: remove old utils
|
|
682
691
|
|
|
692
|
+
- fix: add warning on auto page stitch
|
|
683
693
|
|
|
684
|
-
|
|
694
|
+
- fix: remove commented out code from InvertedContainerPlugin.ts
|
|
685
695
|
|
|
696
|
+
- chore: improve logging to see if its local load or remote load
|
|
686
697
|
|
|
698
|
+
- chore: clean up old custom promises factories
|
|
687
699
|
|
|
688
|
-
|
|
700
|
+
- fix: remove container proxy code
|
|
689
701
|
|
|
702
|
+
- fix: remove container proxy code
|
|
703
|
+
- automaticAsyncBoundary option has been removed
|
|
690
704
|
|
|
705
|
+
- fix: exclude specific pages from page map automatically
|
|
691
706
|
|
|
692
|
-
|
|
707
|
+
- refactor: conslidate codebase
|
|
693
708
|
|
|
694
|
-
|
|
709
|
+
- fix: improve hot reload share recovery
|
|
695
710
|
|
|
696
|
-
|
|
697
|
-
* `node` updated to version `0.16.1`
|
|
711
|
+
- refactor: remove server jsonp template
|
|
698
712
|
|
|
713
|
+
- chore: remove dead code from runtime modules
|
|
699
714
|
|
|
700
|
-
|
|
715
|
+
- fix: clean up jsonp getCustomJsonpCode
|
|
701
716
|
|
|
717
|
+
getting chunk loading global from compiler output options
|
|
702
718
|
|
|
719
|
+
- feat: adding cleanInitArrays runtime helper
|
|
703
720
|
|
|
704
|
-
|
|
721
|
+
- chore: remove share scope hoist and module hoisting system
|
|
705
722
|
|
|
706
|
-
|
|
723
|
+
- chore: cleanup code
|
|
707
724
|
|
|
708
|
-
|
|
709
|
-
* `node` updated to version `0.15.1`
|
|
725
|
+
## [6.4.1-beta.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.1-beta.2...nextjs-mf-6.4.1-beta.3) (2023-05-03)
|
|
710
726
|
|
|
727
|
+
### Bug Fixes
|
|
711
728
|
|
|
712
|
-
|
|
729
|
+
- implement exact version resolution ([ee95f5f](https://github.com/module-federation/nextjs-mf/commit/ee95f5f3fb2d0d5757bfff85e85dcf6658673b9c))
|
|
730
|
+
- improve eager modularization ([f593725](https://github.com/module-federation/nextjs-mf/commit/f593725e24672dbf95eae018f2656cab68ec2c4e))
|
|
731
|
+
- improve module and async module loading in runtmie module ([c841a4b](https://github.com/module-federation/nextjs-mf/commit/c841a4bd9e2205b438fc1c8855c66e1eee764e0a))
|
|
732
|
+
- improve stability of chunk push ([98ad6ad](https://github.com/module-federation/nextjs-mf/commit/98ad6ad66ae19429a4808dc9215c6efef6b69fee))
|
|
733
|
+
- improve startup inversion ([42e59f1](https://github.com/module-federation/nextjs-mf/commit/42e59f1b0c58d98c4a16d1efd1ab00d0748311f0))
|
|
734
|
+
- prevent hmr destroying share scope ([ffc1131](https://github.com/module-federation/nextjs-mf/commit/ffc1131b2607387805d3137561df3ae756d07244))
|
|
713
735
|
|
|
714
|
-
###
|
|
736
|
+
### Features
|
|
715
737
|
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
738
|
+
- eager load initial consumes ([6a05a5f](https://github.com/module-federation/nextjs-mf/commit/6a05a5f456dd0c5047f034cf7e9d3945a99f737b))
|
|
739
|
+
- install an async boundary runtime module ([cbbc7f5](https://github.com/module-federation/nextjs-mf/commit/cbbc7f53dd908c42cb1897e3aa9e70a9819a002a))
|
|
740
|
+
|
|
741
|
+
## [6.4.1-beta.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.1-beta.1...nextjs-mf-6.4.1-beta.2) (2023-04-28)
|
|
720
742
|
|
|
721
743
|
### Bug Fixes
|
|
722
744
|
|
|
723
|
-
|
|
745
|
+
- disable next chunk splits ([2f731ee](https://github.com/module-federation/nextjs-mf/commit/2f731eee497c0f4d3057600f22bc2556e8b32410))
|
|
746
|
+
|
|
747
|
+
## [6.4.1-beta.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.1-beta.0...nextjs-mf-6.4.1-beta.1) (2023-04-28)
|
|
724
748
|
|
|
749
|
+
## [6.4.1-beta.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.0...nextjs-mf-6.4.1-beta.0) (2023-04-28)
|
|
725
750
|
|
|
726
751
|
### Features
|
|
727
752
|
|
|
728
|
-
|
|
729
|
-
|
|
753
|
+
- [v7] host inversion ([#769](https://github.com/module-federation/nextjs-mf/issues/769)) ([53b9e4b](https://github.com/module-federation/nextjs-mf/commit/53b9e4b4a0dd11adfaf394140133e9244156b839))
|
|
754
|
+
- Custom Startup Runtime modules ([0f4bb27](https://github.com/module-federation/nextjs-mf/commit/0f4bb278a1e3be602c489d39062e7e236c47cca1))
|
|
755
|
+
- Improve module chunk connections ([#802](https://github.com/module-federation/nextjs-mf/issues/802)) ([ce0bd7b](https://github.com/module-federation/nextjs-mf/commit/ce0bd7b16e080f712e6db0bdcd3955a8167c274f)), closes [#803](https://github.com/module-federation/nextjs-mf/issues/803) [#808](https://github.com/module-federation/nextjs-mf/issues/808) [#811](https://github.com/module-federation/nextjs-mf/issues/811)
|
|
756
|
+
- remove child compiler pluign ([#780](https://github.com/module-federation/nextjs-mf/issues/780)) ([ed7ce3a](https://github.com/module-federation/nextjs-mf/commit/ed7ce3a6220bf0fa142da50d8101ad4693c8b178))
|
|
730
757
|
|
|
758
|
+
### BREAKING CHANGES
|
|
731
759
|
|
|
760
|
+
- Internal child compilers are no longer used
|
|
761
|
+
BREAKING_CHANGE: Internal child compilers are no longer used
|
|
732
762
|
|
|
733
|
-
|
|
763
|
+
## [6.3.1-beta.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.3.1...nextjs-mf-6.3.1-beta.0) (2023-04-19)
|
|
734
764
|
|
|
765
|
+
### Bug Fixes
|
|
735
766
|
|
|
767
|
+
- cache busting and async quirks when mixing delegates ([1fc6e67](https://github.com/module-federation/nextjs-mf/commit/1fc6e67ee33a3efb53ff59d2b3ac333f1d42a158))
|
|
768
|
+
- ensure app functions with async boundary loader ([717e885](https://github.com/module-federation/nextjs-mf/commit/717e88558475158bf1eb5ae88e53a3624b3277ff))
|
|
769
|
+
- get delegates working ([#527](https://github.com/module-federation/nextjs-mf/issues/527)) ([7655568](https://github.com/module-federation/nextjs-mf/commit/7655568fcef8dbfda40573deb5d3d029c101074c))
|
|
770
|
+
- improved asset pipeline ([63928b2](https://github.com/module-federation/nextjs-mf/commit/63928b28150c2c4e3adb9e14fb7aa54f5cf1578d))
|
|
771
|
+
- move delegate modules into both webpack runtimes ([0570021](https://github.com/module-federation/nextjs-mf/commit/0570021d1040888a9f00394e64f7530a22e74a75))
|
|
772
|
+
- move host remote reg into loader ([188b9e4](https://github.com/module-federation/nextjs-mf/commit/188b9e432b95ba4934a838a49571435ea27b4d0b))
|
|
773
|
+
- peer dependencies metadata ([b603587](https://github.com/module-federation/nextjs-mf/commit/b6035870e5130bfd5b5c70951cc17bb38a50fbdd))
|
|
774
|
+
- put error triggers if delegates are passed non-primitives ([0a780bb](https://github.com/module-federation/nextjs-mf/commit/0a780bb07c9421b58605fc133f236a918ef5a0d8))
|
|
775
|
+
- remove dead code, use commonjs for delegate exports ([ad646d7](https://github.com/module-federation/nextjs-mf/commit/ad646d7306a2442ae6d9b2a72b33fb5ce66a9ba4))
|
|
776
|
+
- solve double async boundary ([88b3f4f](https://github.com/module-federation/nextjs-mf/commit/88b3f4f08b217e2f88b535ec9c7290bad697888b))
|
|
777
|
+
- solve externalization ([49f52e5](https://github.com/module-federation/nextjs-mf/commit/49f52e53ddddc990d31e6aa510d67dc0552a9d9a))
|
|
778
|
+
- support windows paths ([98ca26f](https://github.com/module-federation/nextjs-mf/commit/98ca26f3062b9fa67fc8ba8152fd85eda9b5df10))
|
|
779
|
+
- use EntryPlugin for injection of remotes ([e522c5a](https://github.com/module-federation/nextjs-mf/commit/e522c5ad2b7adcbd6c39f9c5fdb7a3e418277b7a))
|
|
736
780
|
|
|
737
|
-
|
|
781
|
+
### Features
|
|
738
782
|
|
|
783
|
+
- delegate module support ([76c9df3](https://github.com/module-federation/nextjs-mf/commit/76c9df3b97d60040466e9a01cfe3f45e8f9c6b78))
|
|
784
|
+
- delegate module support ([3567aa5](https://github.com/module-federation/nextjs-mf/commit/3567aa5f6d0a00ca6df103c796657eb8953bc96a))
|
|
785
|
+
- delegate module support ([8dd154c](https://github.com/module-federation/nextjs-mf/commit/8dd154c261b34183b12250ce204904cd3e085658))
|
|
786
|
+
- delegates part two ([1be2686](https://github.com/module-federation/nextjs-mf/commit/1be2686624798a7df9f447b48279294985b3f592))
|
|
787
|
+
- implement basic single runtime ([2432c3e](https://github.com/module-federation/nextjs-mf/commit/2432c3ec553759ca24d17a46b696c1123a86ec5a))
|
|
788
|
+
- implement module runtime hoisting ([17c5b2f](https://github.com/module-federation/nextjs-mf/commit/17c5b2fc5f67c4321959ae30a69742c3128bc9a5))
|
|
789
|
+
- improve automatic async boundary loader on single compile instance ([63fc327](https://github.com/module-federation/nextjs-mf/commit/63fc3273500d1626c7e8c4dab14268ae5cb9de7a))
|
|
790
|
+
- improve chunk correlation ([22d8afc](https://github.com/module-federation/nextjs-mf/commit/22d8afccff101044fcdeba390656950dbc6eafed))
|
|
791
|
+
- new chunk flushing system for exposed modules ([97a75d8](https://github.com/module-federation/nextjs-mf/commit/97a75d8702f2ddc5e12cff2ac4d24aca1df6f990))
|
|
792
|
+
- new next federation plugin ([7e096df](https://github.com/module-federation/nextjs-mf/commit/7e096df89682369cdc92095be6936b58b9b5787f))
|
|
793
|
+
- new output copy plugin for prod server exposure ([85da209](https://github.com/module-federation/nextjs-mf/commit/85da209103046567bdc93f71d421ea413ac1d37b))
|
|
794
|
+
- remove child compilers ([c124f37](https://github.com/module-federation/nextjs-mf/commit/c124f3797ad327971066a4ad75f0317531653c08))
|
|
795
|
+
- removing old promise template stuff from build utils ([d827cd6](https://github.com/module-federation/nextjs-mf/commit/d827cd60fc12bd65b4091db5f7e3d9b96bcdc12b))
|
|
739
796
|
|
|
740
|
-
###
|
|
797
|
+
### BREAKING CHANGES
|
|
741
798
|
|
|
742
|
-
|
|
799
|
+
- Plugin No longer uses child sidecars to create containers.
|
|
800
|
+
- deleting support for promiseTemplate
|
|
743
801
|
|
|
802
|
+
## [6.7.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.7.0...nextjs-mf-6.7.1) (2023-06-30)
|
|
744
803
|
|
|
804
|
+
### Bug Fixes
|
|
745
805
|
|
|
746
|
-
|
|
806
|
+
- TS builds ([deca4a2](https://github.com/module-federation/nextjs-mf/commit/deca4a22fa83a5f2d7e03de8ff8a2d82b1aecded))
|
|
807
|
+
|
|
808
|
+
# [6.7.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.3...nextjs-mf-6.7.0) (2023-06-30)
|
|
747
809
|
|
|
748
810
|
### Dependency Updates
|
|
749
811
|
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
812
|
+
- `utils` updated to version `1.9.1`
|
|
813
|
+
- `node` updated to version `0.16.2`
|
|
814
|
+
- `utils` updated to version `1.9.1`
|
|
815
|
+
- `node` updated to version `0.16.2`
|
|
816
|
+
- `node` updated to version `0.16.2`
|
|
754
817
|
|
|
755
818
|
### Features
|
|
756
819
|
|
|
757
|
-
|
|
820
|
+
- support use client directive ([#1069](https://github.com/module-federation/nextjs-mf/issues/1069)) ([e20ade1](https://github.com/module-federation/nextjs-mf/commit/e20ade134d96a339dc53fe886a41f2eb81d878d5))
|
|
758
821
|
|
|
822
|
+
## [6.6.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.2...nextjs-mf-6.6.3) (2023-06-29)
|
|
759
823
|
|
|
824
|
+
## [6.6.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.1...nextjs-mf-6.6.2) (2023-06-29)
|
|
760
825
|
|
|
761
|
-
## [6.
|
|
826
|
+
## [6.6.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.0...nextjs-mf-6.6.1) (2023-06-29)
|
|
762
827
|
|
|
763
828
|
### Dependency Updates
|
|
764
829
|
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
* `node` updated to version `0.12.3`
|
|
768
|
-
* `node` updated to version `0.12.3`
|
|
830
|
+
- `node` updated to version `0.16.1`
|
|
831
|
+
- `node` updated to version `0.16.1`
|
|
769
832
|
|
|
770
|
-
|
|
833
|
+
# [6.6.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.1...nextjs-mf-6.6.0) (2023-06-29)
|
|
771
834
|
|
|
772
|
-
|
|
835
|
+
## [6.5.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.0...nextjs-mf-6.5.1) (2023-05-22)
|
|
773
836
|
|
|
837
|
+
### Dependency Updates
|
|
774
838
|
|
|
839
|
+
- `node` updated to version `0.15.1`
|
|
840
|
+
- `node` updated to version `0.15.1`
|
|
775
841
|
|
|
776
|
-
|
|
842
|
+
# [6.5.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.0...nextjs-mf-6.5.0) (2023-05-22)
|
|
777
843
|
|
|
778
844
|
### Dependency Updates
|
|
779
845
|
|
|
780
|
-
|
|
781
|
-
|
|
846
|
+
- `utils` updated to version `1.8.0`
|
|
847
|
+
- `node` updated to version `0.15.0`
|
|
848
|
+
- `utils` updated to version `1.8.0`
|
|
849
|
+
- `node` updated to version `0.15.0`
|
|
850
|
+
|
|
851
|
+
### Bug Fixes
|
|
782
852
|
|
|
853
|
+
- doc ([#860](https://github.com/module-federation/nextjs-mf/issues/860)) ([cb88646](https://github.com/module-federation/nextjs-mf/commit/cb886469b7d8eddbd2c94c2de88010366bb207d7))
|
|
783
854
|
|
|
784
|
-
|
|
855
|
+
### Features
|
|
785
856
|
|
|
857
|
+
- release to npm with next tag to not ruine latest one ([#763](https://github.com/module-federation/nextjs-mf/issues/763)) ([f2d199b](https://github.com/module-federation/nextjs-mf/commit/f2d199b3b3fbbd428514b1ce1f139efc82f7fff0))
|
|
858
|
+
- **website:** initial version of module federation website ([#751](https://github.com/module-federation/nextjs-mf/issues/751)) ([9b4ec04](https://github.com/module-federation/nextjs-mf/commit/9b4ec048652f0d2237e9401912ead7c5bbe060c4))
|
|
786
859
|
|
|
787
|
-
|
|
860
|
+
# [6.4.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.3.1...nextjs-mf-6.4.0) (2023-04-19)
|
|
788
861
|
|
|
789
|
-
|
|
862
|
+
## [6.3.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.3.0...nextjs-mf-6.3.1) (2023-04-13)
|
|
790
863
|
|
|
864
|
+
### Bug Fixes
|
|
791
865
|
|
|
866
|
+
- Add 'react/jsx-dev-runtime' to share scope ([#748](https://github.com/module-federation/nextjs-mf/issues/748)) ([73e870d](https://github.com/module-federation/nextjs-mf/commit/73e870d60e6498e4adcb0e96dfd6b790e079d4ff))
|
|
792
867
|
|
|
793
|
-
# [6.
|
|
868
|
+
# [6.3.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.2.3...nextjs-mf-6.3.0) (2023-04-10)
|
|
794
869
|
|
|
795
870
|
### Dependency Updates
|
|
796
871
|
|
|
797
|
-
|
|
798
|
-
|
|
872
|
+
- `utils` updated to version `1.5.0`
|
|
873
|
+
- `utils` updated to version `1.5.0`
|
|
874
|
+
- `node` updated to version `0.13.0`
|
|
875
|
+
- `node` updated to version `0.13.0`
|
|
799
876
|
|
|
800
877
|
### Features
|
|
801
878
|
|
|
802
|
-
|
|
803
|
-
|
|
879
|
+
- Allow Container Utils to work Server Side ([#723](https://github.com/module-federation/nextjs-mf/issues/723)) ([232ba24](https://github.com/module-federation/nextjs-mf/commit/232ba24072f19bd32d1f745d4edf1518e548df50))
|
|
804
880
|
|
|
881
|
+
## [6.2.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.2.2...nextjs-mf-6.2.3) (2023-04-09)
|
|
805
882
|
|
|
806
|
-
|
|
883
|
+
### Dependency Updates
|
|
807
884
|
|
|
885
|
+
- `utils` updated to version `1.4.1`
|
|
886
|
+
- `utils` updated to version `1.4.1`
|
|
887
|
+
- `node` updated to version `0.12.3`
|
|
888
|
+
- `node` updated to version `0.12.3`
|
|
808
889
|
|
|
809
890
|
### Bug Fixes
|
|
810
891
|
|
|
811
|
-
|
|
812
|
-
* include src folder in paths validation ([#605](https://github.com/module-federation/nextjs-mf/issues/605)) ([89a9417](https://github.com/module-federation/nextjs-mf/commit/89a9417faaad50533c4bca1683ea94406ca6f532))
|
|
892
|
+
- loader handling of getServerProps ([#697](https://github.com/module-federation/nextjs-mf/issues/697)) ([aade75c](https://github.com/module-federation/nextjs-mf/commit/aade75c450c5773c9c21fe4f3d29ed4c1409a532))
|
|
813
893
|
|
|
894
|
+
## [6.2.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.2.1...nextjs-mf-6.2.2) (2023-03-24)
|
|
814
895
|
|
|
896
|
+
### Dependency Updates
|
|
815
897
|
|
|
816
|
-
|
|
898
|
+
- `node` updated to version `0.12.2`
|
|
899
|
+
- `node` updated to version `0.12.2`
|
|
817
900
|
|
|
901
|
+
## [6.2.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.2.0...nextjs-mf-6.2.1) (2023-03-18)
|
|
818
902
|
|
|
819
903
|
### Bug Fixes
|
|
820
904
|
|
|
821
|
-
|
|
905
|
+
- hoist delegate glue code into container when medusa is used ([#642](https://github.com/module-federation/nextjs-mf/issues/642)) ([a63cd94](https://github.com/module-federation/nextjs-mf/commit/a63cd944546a6e5d62055fcec4d7e1f04f618ded))
|
|
822
906
|
|
|
907
|
+
# [6.2.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.1.4...nextjs-mf-6.2.0) (2023-03-14)
|
|
823
908
|
|
|
909
|
+
### Dependency Updates
|
|
824
910
|
|
|
825
|
-
|
|
911
|
+
- `utils` updated to version `1.4.0`
|
|
912
|
+
- `node` updated to version `0.12.0`
|
|
826
913
|
|
|
827
|
-
###
|
|
914
|
+
### Features
|
|
828
915
|
|
|
829
|
-
|
|
916
|
+
- Medusa Support in NextFederationPlugin ([#609](https://github.com/module-federation/nextjs-mf/issues/609)) ([0bbba38](https://github.com/module-federation/nextjs-mf/commit/0bbba384c45b7d149b7a6be2dfbe9851b541b528)), closes [#606](https://github.com/module-federation/nextjs-mf/issues/606)
|
|
917
|
+
|
|
918
|
+
## [6.1.4](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.1.3...nextjs-mf-6.1.4) (2023-03-08)
|
|
830
919
|
|
|
831
920
|
### Bug Fixes
|
|
832
921
|
|
|
833
|
-
|
|
922
|
+
- exclude next middleware from async boundary loader ([#615](https://github.com/module-federation/nextjs-mf/issues/615)) ([9560d92](https://github.com/module-federation/nextjs-mf/commit/9560d926de176e08b6e1b7a32488f5036cb04be3))
|
|
923
|
+
- include src folder in paths validation ([#605](https://github.com/module-federation/nextjs-mf/issues/605)) ([89a9417](https://github.com/module-federation/nextjs-mf/commit/89a9417faaad50533c4bca1683ea94406ca6f532))
|
|
834
924
|
|
|
925
|
+
## [6.1.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.1.2...nextjs-mf-6.1.3) (2023-02-17)
|
|
835
926
|
|
|
927
|
+
### Bug Fixes
|
|
836
928
|
|
|
837
|
-
|
|
929
|
+
- Don't apply async boundary loader for api routes on Windows ([#587](https://github.com/module-federation/nextjs-mf/issues/587)) ([5173845](https://github.com/module-federation/nextjs-mf/commit/5173845aca15509c363e52e71836303d25c09135))
|
|
930
|
+
|
|
931
|
+
## [6.1.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.1.1...nextjs-mf-6.1.2) (2023-02-09)
|
|
838
932
|
|
|
933
|
+
### Dependency Updates
|
|
934
|
+
|
|
935
|
+
- `node` updated to version `0.11.1`
|
|
839
936
|
|
|
840
937
|
### Bug Fixes
|
|
841
938
|
|
|
842
|
-
|
|
939
|
+
- backward compatability with older versions pre 6.1.x ([f27b57a](https://github.com/module-federation/nextjs-mf/commit/f27b57a36a61280124bab4a309edaa1c3fd04ced))
|
|
843
940
|
|
|
941
|
+
## [6.1.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.1.0...nextjs-mf-6.1.1) (2023-02-09)
|
|
942
|
+
|
|
943
|
+
### Bug Fixes
|
|
844
944
|
|
|
945
|
+
- resolve NX build version issues ([c5f7274](https://github.com/module-federation/nextjs-mf/commit/c5f7274265ce325dda3c324074c808cce95699fd))
|
|
845
946
|
|
|
846
947
|
# [6.1.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.0.8...nextjs-mf-6.1.0) (2023-02-09)
|
|
847
948
|
|
|
848
949
|
### Dependency Updates
|
|
849
950
|
|
|
850
|
-
|
|
851
|
-
|
|
951
|
+
- `utils` updated to version `1.3.0`
|
|
952
|
+
- `node` updated to version `0.11.0`
|
|
852
953
|
|
|
853
954
|
### Features
|
|
854
955
|
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
956
|
+
- Delegate Modules ([#509](https://github.com/module-federation/nextjs-mf/issues/509)) ([1a085e7](https://github.com/module-federation/nextjs-mf/commit/1a085e7e03ca0afd5c64389b4b169f3db3382f6b))
|
|
858
957
|
|
|
859
958
|
## [6.0.8](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.0.7...nextjs-mf-6.0.8) (2023-02-09)
|
|
860
959
|
|
|
861
960
|
### Dependency Updates
|
|
862
961
|
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
962
|
+
- `utils` updated to version `1.2.1`
|
|
963
|
+
- `node` updated to version `0.10.5`
|
|
866
964
|
|
|
867
965
|
## [6.0.7](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.0.6...nextjs-mf-6.0.7) (2023-02-02)
|
|
868
966
|
|