@module-federation/nextjs-mf 7.0.8 → 8.0.1-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.
Files changed (107) hide show
  1. package/CHANGELOG.md +545 -411
  2. package/README.md +29 -15
  3. package/client/MFClient.js +1 -2
  4. package/client/MFClient.js.map +1 -1
  5. package/client/RemoteContainer.js +2 -1
  6. package/client/RemoteContainer.js.map +1 -1
  7. package/client/RemotePages.js +2 -1
  8. package/client/RemotePages.js.map +1 -1
  9. package/client/UrlNode.js +2 -10
  10. package/client/UrlNode.js.map +1 -1
  11. package/node.d.ts +1 -1
  12. package/node.js.map +1 -1
  13. package/package.json +7 -5
  14. package/src/default-delegate.js +64 -9
  15. package/src/default-delegate.js.map +1 -1
  16. package/src/federation-noop.js +13 -1
  17. package/src/federation-noop.js.map +1 -1
  18. package/src/index.d.ts +1 -1
  19. package/src/internal.d.ts +18 -12
  20. package/src/internal.js +83 -71
  21. package/src/internal.js.map +1 -1
  22. package/src/loaders/delegateLoader.d.ts +5 -2
  23. package/src/loaders/delegateLoader.js +19 -9
  24. package/src/loaders/delegateLoader.js.map +1 -1
  25. package/src/loaders/fixImageLoader.d.ts +12 -11
  26. package/src/loaders/fixImageLoader.js +17 -13
  27. package/src/loaders/fixImageLoader.js.map +1 -1
  28. package/src/loaders/fixUrlLoader.d.ts +7 -7
  29. package/src/loaders/fixUrlLoader.js +11 -11
  30. package/src/loaders/fixUrlLoader.js.map +1 -1
  31. package/src/loaders/helpers.d.ts +10 -3
  32. package/src/loaders/helpers.js +22 -13
  33. package/src/loaders/helpers.js.map +1 -1
  34. package/src/loaders/inject-hoist.d.ts +11 -0
  35. package/src/loaders/inject-hoist.js +7 -0
  36. package/src/loaders/inject-hoist.js.map +1 -1
  37. package/src/loaders/nextPageMapLoader.d.ts +12 -3
  38. package/src/loaders/nextPageMapLoader.js +45 -29
  39. package/src/loaders/nextPageMapLoader.js.map +1 -1
  40. package/src/loaders/patchDefaultSharedLoader.d.ts +9 -0
  41. package/src/loaders/patchDefaultSharedLoader.js +11 -0
  42. package/src/loaders/patchDefaultSharedLoader.js.map +1 -1
  43. package/src/loaders/patchNextClientPageLoader.d.ts +4 -2
  44. package/src/loaders/patchNextClientPageLoader.js +36 -18
  45. package/src/loaders/patchNextClientPageLoader.js.map +1 -1
  46. package/src/plugins/CopyFederationPlugin.d.ts +13 -0
  47. package/src/plugins/CopyFederationPlugin.js +40 -19
  48. package/src/plugins/CopyFederationPlugin.js.map +1 -1
  49. package/src/plugins/NextFederationPlugin/apply-client-plugins.d.ts +2 -3
  50. package/src/plugins/NextFederationPlugin/apply-client-plugins.js +9 -6
  51. package/src/plugins/NextFederationPlugin/apply-client-plugins.js.map +1 -1
  52. package/src/plugins/NextFederationPlugin/apply-server-plugins.d.ts +17 -10
  53. package/src/plugins/NextFederationPlugin/apply-server-plugins.js +35 -27
  54. package/src/plugins/NextFederationPlugin/apply-server-plugins.js.map +1 -1
  55. package/src/plugins/NextFederationPlugin/index.d.ts +18 -6
  56. package/src/plugins/NextFederationPlugin/index.js +108 -75
  57. package/src/plugins/NextFederationPlugin/index.js.map +1 -1
  58. package/src/plugins/NextFederationPlugin/next-fragments.d.ts +23 -17
  59. package/src/plugins/NextFederationPlugin/next-fragments.js +26 -18
  60. package/src/plugins/NextFederationPlugin/next-fragments.js.map +1 -1
  61. package/src/plugins/NextFederationPlugin/regex-equal.d.ts +8 -8
  62. package/src/plugins/NextFederationPlugin/regex-equal.js +7 -7
  63. package/src/plugins/NextFederationPlugin/remove-unnecessary-shared-keys.d.ts +7 -0
  64. package/src/plugins/NextFederationPlugin/remove-unnecessary-shared-keys.js +20 -9
  65. package/src/plugins/NextFederationPlugin/remove-unnecessary-shared-keys.js.map +1 -1
  66. package/src/plugins/NextFederationPlugin/set-options.d.ts +6 -6
  67. package/src/plugins/NextFederationPlugin/set-options.js +10 -6
  68. package/src/plugins/NextFederationPlugin/set-options.js.map +1 -1
  69. package/src/plugins/NextFederationPlugin/validate-options.d.ts +13 -14
  70. package/src/plugins/NextFederationPlugin/validate-options.js +15 -15
  71. package/src/plugins/NextFederationPlugin/validate-options.js.map +1 -1
  72. package/src/plugins/container/EmbeddedContainerPlugin.d.ts +40 -0
  73. package/src/plugins/container/EmbeddedContainerPlugin.js +73 -0
  74. package/src/plugins/container/EmbeddedContainerPlugin.js.map +1 -0
  75. package/src/plugins/container/InvertedContainerPlugin.d.ts +21 -14
  76. package/src/plugins/container/InvertedContainerPlugin.js +21 -148
  77. package/src/plugins/container/InvertedContainerPlugin.js.map +1 -1
  78. package/src/plugins/container/InvertedContainerRuntimeModule.d.ts +3 -33
  79. package/src/plugins/container/InvertedContainerRuntimeModule.js +64 -518
  80. package/src/plugins/container/InvertedContainerRuntimeModule.js.map +1 -1
  81. package/src/plugins/container/ModuleFederationPlugin.d.ts +17 -0
  82. package/src/plugins/container/ModuleFederationPlugin.js +97 -0
  83. package/src/plugins/container/ModuleFederationPlugin.js.map +1 -0
  84. package/src/plugins/container/RemoveEagerModulesFromRuntimePlugin.d.ts +28 -6
  85. package/src/plugins/container/RemoveEagerModulesFromRuntimePlugin.js +34 -57
  86. package/src/plugins/container/RemoveEagerModulesFromRuntimePlugin.js.map +1 -1
  87. package/src/plugins/container/types.d.ts +1 -1
  88. package/src/types.d.ts +3 -0
  89. package/utilities.js.map +1 -1
  90. package/utils/Template.d.ts +1 -1
  91. package/utils/Template.js +23 -15
  92. package/utils/Template.js.map +1 -1
  93. package/utils/build-utils.d.ts +9 -0
  94. package/utils/build-utils.js +9 -0
  95. package/utils/build-utils.js.map +1 -1
  96. package/utils/flushedChunks.d.ts +15 -0
  97. package/utils/flushedChunks.js +8 -0
  98. package/utils/flushedChunks.js.map +1 -1
  99. package/utils/index.d.ts +27 -3
  100. package/utils/index.js +45 -1
  101. package/utils/index.js.map +1 -1
  102. package/src/plugins/JsonpChunkLoading.d.ts +0 -7
  103. package/src/plugins/JsonpChunkLoading.js +0 -43
  104. package/src/plugins/JsonpChunkLoading.js.map +0 -1
  105. package/src/plugins/container/custom-jsonp.d.ts +0 -2
  106. package/src/plugins/container/custom-jsonp.js +0 -90
  107. package/src/plugins/container/custom-jsonp.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -2,882 +2,1016 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
- ## [7.0.8](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.7...nextjs-mf-7.0.8) (2023-08-14)
6
-
7
- ### Dependency Updates
5
+ ## [8.0.1-0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-8.0.0...nextjs-mf-8.0.1-0) (2023-10-03)
8
6
 
9
- * `utils` updated to version `2.0.6`
10
- * `node` updated to version `1.0.7`
11
- * `utils` updated to version `2.0.6`
12
- * `node` updated to version `1.0.7`
13
7
 
14
8
  ### Bug Fixes
15
9
 
16
- * workaround to self ref module error in prod ([e134caa](https://github.com/module-federation/nextjs-mf/commit/e134caa9a914da6a226e73dc877a108456b1053f))
10
+ * add styled-jsx to internal share ([a50dae8](https://github.com/module-federation/nextjs-mf/commit/a50dae8ead5ed46491bf3cfa8452a536ba0de622))
11
+ * bad impleentation during federation port ([cc2e53f](https://github.com/module-federation/nextjs-mf/commit/cc2e53f0351fb94c9068223ad6b8d990a913ab53))
12
+ * enable path fixes ([2f9e14b](https://github.com/module-federation/nextjs-mf/commit/2f9e14b602c71d357063a8168d8ea8c554bcb2ca))
13
+ * enable path fixes again ([6098fee](https://github.com/module-federation/nextjs-mf/commit/6098fee3b3734018ec0f4866656709f3b5d20173))
14
+ * ensure sharing of react/jsx runtime and dev runtime ([ae890d5](https://github.com/module-federation/nextjs-mf/commit/ae890d5e5698c729618d602053b4336b067dd34a))
15
+ * ignore TS issues in async plugin ([f6e3e7f](https://github.com/module-federation/nextjs-mf/commit/f6e3e7f9ca6aabdf26752f8f794e1176fc73af1c))
16
+ * improve image loader public path calc ([d86dcde](https://github.com/module-federation/nextjs-mf/commit/d86dcde344d5d9b7430512672ec26c53ac0f100e))
17
+ * lint container module ([ea4f105](https://github.com/module-federation/nextjs-mf/commit/ea4f105e4949f041a8747a0e3ce50e7020598f88))
18
+ * module order of inverted container runtime ([90caa8d](https://github.com/module-federation/nextjs-mf/commit/90caa8dc80f9af7c6c6f8d7a4a437e337540ddc3))
19
+ * reduce noise on async boundary plugin ([9bab3de](https://github.com/module-federation/nextjs-mf/commit/9bab3de0b556120e60303921881fa4d857fe71d4))
20
+ * remote global share scope ([e05d32f](https://github.com/module-federation/nextjs-mf/commit/e05d32f489880d6b4e0fc21a3807e619a40bc5b3))
21
+ * remove hard coded share scope ([105c124](https://github.com/module-federation/nextjs-mf/commit/105c12441199621b11a85eb5368315175f127523))
22
+ * resupport delegate modules ([f4843ec](https://github.com/module-federation/nextjs-mf/commit/f4843ecd28b4361064be4342565e6d32eafacb2d))
23
+ * server sharing ([1c5c6a8](https://github.com/module-federation/nextjs-mf/commit/1c5c6a8cc8519c157842ae5bf79655710f7acaaf))
24
+ * set requiredVersion to false on utils ([1e325a6](https://github.com/module-federation/nextjs-mf/commit/1e325a6dedb4249c18dde8ce3ae7e57ece26a3ae))
25
+ * stats plugin updates ([c1db325](https://github.com/module-federation/nextjs-mf/commit/c1db325d3311b2126964f4ad2ddbfa9d82a50674))
26
+ * TS imports to webpack ([d506b49](https://github.com/module-federation/nextjs-mf/commit/d506b492b724ccfb7fdcf6234196ac421564c153))
27
+ * ts in template string ([0a0d03d](https://github.com/module-federation/nextjs-mf/commit/0a0d03dd9acb465f0b80bdd9787150e586e6bfcf))
28
+ * ts in template string ([0edbbea](https://github.com/module-federation/nextjs-mf/commit/0edbbeaa42503237b88132252e29a34a79bade51))
29
+ * use ES5 for renderStartup of entrypoint ([d14324a](https://github.com/module-federation/nextjs-mf/commit/d14324a9af856fca974a8f9945ba7d0d2a96be48))
17
30
 
18
31
 
32
+ ### Features
19
33
 
20
- ## [7.0.7](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.6...nextjs-mf-7.0.7) (2023-08-11)
34
+ * container inversion module injection ([52ad258](https://github.com/module-federation/nextjs-mf/commit/52ad258a8eea90fcf40100e3b2378cd219bc4422))
35
+ * checkInvalidContext as tapable hook ([a3eb553](https://github.com/module-federation/nextjs-mf/commit/a3eb5537ff462ead2230615f578569ec46199f50))
36
+ * **enhanced:** async boundary plugin ([17640dc](https://github.com/module-federation/nextjs-mf/commit/17640dcf3286ccd8c5e66378c0d6bdbc640ba3ce))
37
+ * **enhanced:** Embedded Container Plugin ([66ac81d](https://github.com/module-federation/nextjs-mf/commit/66ac81db05491eb7bbb618eb267c5331760badd1))
38
+ * implement custom next vanity federation plugin ([5e584e6](https://github.com/module-federation/nextjs-mf/commit/5e584e6415820f15c32ef683796f02aac72e207d))
39
+ * improved async init ([08aa0fa](https://github.com/module-federation/nextjs-mf/commit/08aa0faf00781b19a3360af15492142e6f7e0999))
40
+ * improved async init ([019694e](https://github.com/module-federation/nextjs-mf/commit/019694e55fe1f6bebfdab0701bf9087bf0034b8f))
41
+ * prefer host modules for next and react ([7f253f1](https://github.com/module-federation/nextjs-mf/commit/7f253f123b21504148221ef4727c41b3d43a19f0))
42
+ * remove custom jsonp runtime patching ([718c3fc](https://github.com/module-federation/nextjs-mf/commit/718c3fc497d89d5228680d0949e4192070f59cf9))
43
+ * rewrite next federation vanity plugin ([b8c9859](https://github.com/module-federation/nextjs-mf/commit/b8c98599ba78102183f59964ccee3d29bbe2bedf))
44
+ * share next/image ([f4b0386](https://github.com/module-federation/nextjs-mf/commit/f4b03869743cf9188c2227c1e28321367a199955))
45
+ * use enhanced federation plugin ([1ec5f0f](https://github.com/module-federation/nextjs-mf/commit/1ec5f0f98986b21605714565d3543f92b8b9aeaf))
46
+ * Use enhanced Federation Plugin ([e021d66](https://github.com/module-federation/nextjs-mf/commit/e021d6667996962f154137d164bed13f53a6a135))
21
47
 
22
- ### Dependency Updates
23
48
 
24
- * `utils` updated to version `2.0.5`
25
- * `node` updated to version `1.0.6`
26
- * `utils` updated to version `2.0.5`
27
- * `node` updated to version `1.0.6`
28
- * `node` updated to version `1.0.6`
29
49
 
30
- ### Bug Fixes
50
+ # [8.0.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.7...nextjs-mf-8.0.0) (2023-09-14)
31
51
 
32
- * improve import ordering ([#1199](https://github.com/module-federation/nextjs-mf/issues/1199)) ([7354ed2](https://github.com/module-federation/nextjs-mf/commit/7354ed2b412bd9fd8745778e5212e10e8a3bf17f))
52
+ ### Dependency Updates
33
53
 
54
+ - `utils` updated to version `3.0.1`
55
+ - `node` updated to version `2.0.1`
56
+ - `utils` updated to version `3.0.1`
57
+ - `node` updated to version `2.0.1`
58
+ - `node` updated to version `2.0.1`
34
59
 
60
+ ### Bug Fixes
35
61
 
36
- ## [7.0.6](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.5...nextjs-mf-7.0.6) (2023-07-19)
62
+ - update readme ([#1265](https://github.com/module-federation/nextjs-mf/issues/1265)) ([49d66bc](https://github.com/module-federation/nextjs-mf/commit/49d66bc7d0d2708edda61c246f08553718af81cf))
63
+ - 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))
37
64
 
38
- ### Dependency Updates
65
+ ### Features
39
66
 
40
- * `utils` updated to version `2.0.4`
41
- * `node` updated to version `1.0.5`
42
- * `utils` updated to version `2.0.4`
43
- * `node` updated to version `1.0.5`
44
- * `node` updated to version `1.0.5`
67
+ - 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)
68
+ - Introduce full test command and improvement on RuntimeRemotesMap manipulation ([61e605d](https://github.com/module-federation/nextjs-mf/commit/61e605dd83c8f95c8ed26237709dba412edf447c))
69
+ - Update ESLint configuration, add test file and update TypeScript configuration ([00a73be](https://github.com/module-federation/nextjs-mf/commit/00a73be7c1c8ec792e2adae111f063e3741a4bb4))
45
70
 
46
- ### Bug Fixes
71
+ ### BREAKING CHANGES
47
72
 
48
- * 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)
73
+ - automaticAsyncBoundary option has been removed
49
74
 
75
+ - fix: exclude specific pages from page map automatically
50
76
 
77
+ - refactor: conslidate codebase
51
78
 
52
- ## [7.0.5](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.4...nextjs-mf-7.0.5) (2023-07-18)
79
+ - fix: improve hot reload share recovery
53
80
 
54
- ### Dependency Updates
81
+ - refactor: remove server jsonp template
55
82
 
56
- * `utils` updated to version `2.0.2`
57
- * `node` updated to version `1.0.4`
58
- * `utils` updated to version `2.0.2`
59
- * `utils` updated to version `2.0.2`
60
- * `node` updated to version `1.0.4`
83
+ - chore: remove dead code from runtime modules
61
84
 
85
+ - fix: clean up jsonp getCustomJsonpCode
62
86
 
63
- ## [7.0.4](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.3...nextjs-mf-7.0.4) (2023-07-17)
87
+ getting chunk loading global from compiler output options
64
88
 
65
- ### Dependency Updates
89
+ - feat: adding cleanInitArrays runtime helper
66
90
 
67
- * `utils` updated to version `2.0.1`
68
- * `node` updated to version `1.0.3`
69
- * `utils` updated to version `2.0.1`
70
- * `node` updated to version `1.0.3`
91
+ - chore: remove share scope hoist and module hoisting system
71
92
 
93
+ - chore: cleanup code
72
94
 
73
- ## [7.0.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.2...nextjs-mf-7.0.3) (2023-07-17)
95
+ - chore: remove dead code from add module runtime plugin
74
96
 
97
+ likely can remove whole plugin in future
75
98
 
76
- ### Bug Fixes
99
+ - chore: remove logs from delegate modules
77
100
 
78
- * **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))
101
+ - chore: remove old utils
79
102
 
103
+ - fix: add warning on auto page stitch
80
104
 
105
+ - fix: remove commented out code from InvertedContainerPlugin.ts
81
106
 
82
- ## [7.0.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.1...nextjs-mf-7.0.2) (2023-07-05)
107
+ - chore: improve logging to see if its local load or remote load
83
108
 
84
- ### Dependency Updates
109
+ - chore: clean up old custom promises factories
85
110
 
86
- * `node` updated to version `1.0.2`
87
- * `node` updated to version `1.0.2`
88
- * `node` updated to version `1.0.2`
111
+ - fix: remove container proxy code
89
112
 
113
+ - fix: remove container proxy code
114
+ - automaticAsyncBoundary option has been removed
90
115
 
91
- ## [7.0.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.0...nextjs-mf-7.0.1) (2023-07-05)
116
+ - fix: exclude specific pages from page map automatically
92
117
 
93
- ### Dependency Updates
118
+ - refactor: conslidate codebase
94
119
 
95
- * `node` updated to version `1.0.1`
96
- * `node` updated to version `1.0.1`
97
- * `node` updated to version `1.0.1`
120
+ - fix: improve hot reload share recovery
98
121
 
99
- ### Bug Fixes
122
+ - refactor: remove server jsonp template
100
123
 
101
- * **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))
124
+ - chore: remove dead code from runtime modules
102
125
 
126
+ - fix: clean up jsonp getCustomJsonpCode
103
127
 
128
+ getting chunk loading global from compiler output options
104
129
 
105
- # [7.0.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.7.1...nextjs-mf-7.0.0) (2023-07-01)
130
+ - feat: adding cleanInitArrays runtime helper
106
131
 
107
- ### Dependency Updates
132
+ - chore: remove share scope hoist and module hoisting system
108
133
 
109
- * `utils` updated to version `2.0.0`
110
- * `node` updated to version `1.0.0`
111
- * `utils` updated to version `2.0.0`
112
- * `utils` updated to version `2.0.0`
113
- * `node` updated to version `1.0.0`
114
- * `node` updated to version `1.0.0`
134
+ - chore: cleanup code
115
135
 
116
- ### Features
136
+ - chore: remove dead code from add module runtime plugin
117
137
 
118
- * 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)
138
+ likely can remove whole plugin in future
119
139
 
140
+ - chore: remove logs from delegate modules
120
141
 
121
- ### BREAKING CHANGES
142
+ - chore: remove old utils
122
143
 
123
- * automaticAsyncBoundary option has been removed
144
+ - fix: add warning on auto page stitch
124
145
 
125
- * fix: exclude specific pages from page map automatically
146
+ - fix: remove commented out code from InvertedContainerPlugin.ts
126
147
 
127
- * refactor: conslidate codebase
148
+ - chore: improve logging to see if its local load or remote load
128
149
 
129
- * fix: improve hot reload share recovery
150
+ - chore: clean up old custom promises factories
130
151
 
131
- * refactor: remove server jsonp template
152
+ - fix: remove container proxy code
132
153
 
133
- * chore: remove dead code from runtime modules
154
+ - fix: remove container proxy code
134
155
 
135
- * fix: clean up jsonp getCustomJsonpCode
156
+ - chore: fix project.json
136
157
 
137
- getting chunk loading global from compiler output options
158
+ - debugging
138
159
 
139
- * feat: adding cleanInitArrays runtime helper
160
+ - fix: resolve backmerge issues with build
140
161
 
141
- * chore: remove share scope hoist and module hoisting system
162
+ - Merge branch 'kill_child_compilers' into fix_backmerge_issues
142
163
 
143
- * chore: cleanup code
164
+ # Conflicts:
144
165
 
145
- * chore: remove dead code from add module runtime plugin
166
+ # package-lock.json
146
167
 
147
- likely can remove whole plugin in future
168
+ # package.json
148
169
 
149
- * chore: remove logs from delegate modules
170
+ # packages/nextjs-mf/src/plugins/NextFederationPlugin/index.ts
150
171
 
151
- * chore: remove old utils
172
+ # packages/nextjs-mf/src/plugins/container/InvertedContainerPlugin.ts
152
173
 
153
- * fix: add warning on auto page stitch
174
+ # packages/nextjs-mf/src/plugins/container/InvertedContainerRuntimeModule.ts
154
175
 
155
- * fix: remove commented out code from InvertedContainerPlugin.ts
176
+ - feat: enable eager sharing
156
177
 
157
- * chore: improve logging to see if its local load or remote load
178
+ - refactor: improve module hooks for eager loading and search
158
179
 
159
- * chore: clean up old custom promises factories
180
+ - refactor: cleanup custom jsonp and make es5
160
181
 
161
- * fix: remove container proxy code
182
+ - refactor: cleanup inverted container code
162
183
 
163
- * fix: remove container proxy code
164
- * automaticAsyncBoundary option has been removed
184
+ - refactor: cleanup inverted container code
185
+ - automaticAsyncBoundary option has been removed
165
186
 
166
- * fix: exclude specific pages from page map automatically
187
+ - fix: exclude specific pages from page map automatically
167
188
 
168
- * refactor: conslidate codebase
189
+ - refactor: conslidate codebase
169
190
 
170
- * fix: improve hot reload share recovery
191
+ - fix: improve hot reload share recovery
171
192
 
172
- * refactor: remove server jsonp template
193
+ - refactor: remove server jsonp template
173
194
 
174
- * chore: remove dead code from runtime modules
195
+ - chore: remove dead code from runtime modules
175
196
 
176
- * fix: clean up jsonp getCustomJsonpCode
197
+ - fix: clean up jsonp getCustomJsonpCode
177
198
 
178
199
  getting chunk loading global from compiler output options
179
200
 
180
- * feat: adding cleanInitArrays runtime helper
201
+ - feat: adding cleanInitArrays runtime helper
181
202
 
182
- * chore: remove share scope hoist and module hoisting system
203
+ - chore: remove share scope hoist and module hoisting system
183
204
 
184
- * chore: cleanup code
205
+ - chore: cleanup code
185
206
 
186
- * chore: remove dead code from add module runtime plugin
207
+ - chore: remove dead code from add module runtime plugin
187
208
 
188
209
  likely can remove whole plugin in future
189
210
 
190
- * chore: remove logs from delegate modules
211
+ - chore: remove logs from delegate modules
191
212
 
192
- * chore: remove old utils
213
+ - chore: remove old utils
193
214
 
194
- * fix: add warning on auto page stitch
215
+ - fix: add warning on auto page stitch
195
216
 
196
- * fix: remove commented out code from InvertedContainerPlugin.ts
217
+ - fix: remove commented out code from InvertedContainerPlugin.ts
197
218
 
198
- * chore: improve logging to see if its local load or remote load
219
+ - chore: improve logging to see if its local load or remote load
199
220
 
200
- * chore: clean up old custom promises factories
221
+ - chore: clean up old custom promises factories
201
222
 
202
- * fix: remove container proxy code
223
+ - fix: remove container proxy code
203
224
 
204
- * fix: remove container proxy code
225
+ - fix: remove container proxy code
205
226
 
206
- * chore: fix project.json
227
+ - fix: resolve backmerge issues with build
207
228
 
208
- * debugging
229
+ - Merge branch 'kill_child_compilers' into fix_backmerge_issues
209
230
 
210
- * fix: resolve backmerge issues with build
231
+ # Conflicts:
211
232
 
212
- * Merge branch 'kill_child_compilers' into fix_backmerge_issues
233
+ # package-lock.json
213
234
 
214
- # Conflicts:
215
- # package-lock.json
216
- # package.json
217
- # packages/nextjs-mf/src/plugins/NextFederationPlugin/index.ts
218
- # packages/nextjs-mf/src/plugins/container/InvertedContainerPlugin.ts
219
- # packages/nextjs-mf/src/plugins/container/InvertedContainerRuntimeModule.ts
235
+ # package.json
220
236
 
221
- * feat: enable eager sharing
237
+ # packages/nextjs-mf/src/plugins/NextFederationPlugin/index.ts
222
238
 
223
- * refactor: improve module hooks for eager loading and search
239
+ # packages/nextjs-mf/src/plugins/container/InvertedContainerPlugin.ts
224
240
 
225
- * refactor: cleanup custom jsonp and make es5
241
+ # packages/nextjs-mf/src/plugins/container/InvertedContainerRuntimeModule.ts
226
242
 
227
- * refactor: cleanup inverted container code
243
+ - feat: enable eager sharing
228
244
 
229
- * refactor: cleanup inverted container code
230
- * automaticAsyncBoundary option has been removed
245
+ - refactor: improve module hooks for eager loading and search
231
246
 
232
- * fix: exclude specific pages from page map automatically
247
+ - refactor: cleanup custom jsonp and make es5
233
248
 
234
- * refactor: conslidate codebase
249
+ - refactor: cleanup inverted container code
235
250
 
236
- * fix: improve hot reload share recovery
251
+ - refactor: cleanup inverted container code
237
252
 
238
- * refactor: remove server jsonp template
253
+ - ci: fix install step with npm and NX
239
254
 
240
- * chore: remove dead code from runtime modules
255
+ - test: remove tests for now
241
256
 
242
- * fix: clean up jsonp getCustomJsonpCode
257
+ - chore(utils): release version 1.7.3-beta.0
243
258
 
244
- getting chunk loading global from compiler output options
259
+ - chore(utils): release version 1.7.3
245
260
 
246
- * feat: adding cleanInitArrays runtime helper
261
+ - chore(node): release version 0.14.4-beta.0
247
262
 
248
- * chore: remove share scope hoist and module hoisting system
263
+ - chore(node): release version 0.14.4
249
264
 
250
- * chore: cleanup code
265
+ - chore(nextjs-mf): release version 6.4.1-beta.4
251
266
 
252
- * chore: remove dead code from add module runtime plugin
267
+ - fix: remove debugging runtime variable
253
268
 
254
- likely can remove whole plugin in future
269
+ - chore(nextjs-mf): release version 6.4.1-beta.5
255
270
 
256
- * chore: remove logs from delegate modules
271
+ ## [7.0.8](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.7...nextjs-mf-7.0.8) (2023-08-14)
257
272
 
258
- * chore: remove old utils
273
+ ### Dependency Updates
259
274
 
260
- * fix: add warning on auto page stitch
275
+ - `utils` updated to version `2.0.6`
276
+ - `node` updated to version `1.0.7`
277
+ - `utils` updated to version `2.0.6`
278
+ - `node` updated to version `1.0.7`
261
279
 
262
- * fix: remove commented out code from InvertedContainerPlugin.ts
280
+ ### Bug Fixes
263
281
 
264
- * chore: improve logging to see if its local load or remote load
282
+ - workaround to self ref module error in prod ([e134caa](https://github.com/module-federation/nextjs-mf/commit/e134caa9a914da6a226e73dc877a108456b1053f))
265
283
 
266
- * chore: clean up old custom promises factories
284
+ ## [7.0.7](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.6...nextjs-mf-7.0.7) (2023-08-11)
267
285
 
268
- * fix: remove container proxy code
286
+ ### Dependency Updates
269
287
 
270
- * fix: remove container proxy code
288
+ - `utils` updated to version `2.0.5`
289
+ - `node` updated to version `1.0.6`
290
+ - `utils` updated to version `2.0.5`
291
+ - `node` updated to version `1.0.6`
292
+ - `node` updated to version `1.0.6`
271
293
 
272
- * fix: resolve backmerge issues with build
294
+ ### Bug Fixes
273
295
 
274
- * Merge branch 'kill_child_compilers' into fix_backmerge_issues
296
+ - improve import ordering ([#1199](https://github.com/module-federation/nextjs-mf/issues/1199)) ([7354ed2](https://github.com/module-federation/nextjs-mf/commit/7354ed2b412bd9fd8745778e5212e10e8a3bf17f))
275
297
 
276
- # Conflicts:
277
- # package-lock.json
278
- # package.json
279
- # packages/nextjs-mf/src/plugins/NextFederationPlugin/index.ts
280
- # packages/nextjs-mf/src/plugins/container/InvertedContainerPlugin.ts
281
- # packages/nextjs-mf/src/plugins/container/InvertedContainerRuntimeModule.ts
298
+ ## [7.0.6](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.5...nextjs-mf-7.0.6) (2023-07-19)
282
299
 
283
- * feat: enable eager sharing
300
+ ### Dependency Updates
284
301
 
285
- * refactor: improve module hooks for eager loading and search
302
+ - `utils` updated to version `2.0.4`
303
+ - `node` updated to version `1.0.5`
304
+ - `utils` updated to version `2.0.4`
305
+ - `node` updated to version `1.0.5`
306
+ - `node` updated to version `1.0.5`
286
307
 
287
- * refactor: cleanup custom jsonp and make es5
308
+ ### Bug Fixes
288
309
 
289
- * refactor: cleanup inverted container code
310
+ - 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)
290
311
 
291
- * refactor: cleanup inverted container code
312
+ ## [7.0.5](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.4...nextjs-mf-7.0.5) (2023-07-18)
292
313
 
293
- * ci: fix install step with npm and NX
314
+ ### Dependency Updates
294
315
 
295
- * test: remove tests for now
316
+ - `utils` updated to version `2.0.2`
317
+ - `node` updated to version `1.0.4`
318
+ - `utils` updated to version `2.0.2`
319
+ - `utils` updated to version `2.0.2`
320
+ - `node` updated to version `1.0.4`
296
321
 
297
- * chore(utils): release version 1.7.3-beta.0
322
+ ## [7.0.4](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.3...nextjs-mf-7.0.4) (2023-07-17)
298
323
 
299
- * chore(utils): release version 1.7.3
324
+ ### Dependency Updates
300
325
 
301
- * chore(node): release version 0.14.4-beta.0
326
+ - `utils` updated to version `2.0.1`
327
+ - `node` updated to version `1.0.3`
328
+ - `utils` updated to version `2.0.1`
329
+ - `node` updated to version `1.0.3`
302
330
 
303
- * chore(node): release version 0.14.4
331
+ ## [7.0.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.2...nextjs-mf-7.0.3) (2023-07-17)
304
332
 
305
- * chore(nextjs-mf): release version 6.4.1-beta.4
333
+ ### Bug Fixes
306
334
 
307
- * fix: remove debugging runtime variable
335
+ - **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))
308
336
 
309
- * chore(nextjs-mf): release version 6.4.1-beta.5
337
+ ## [7.0.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.1...nextjs-mf-7.0.2) (2023-07-05)
310
338
 
339
+ ### Dependency Updates
311
340
 
341
+ - `node` updated to version `1.0.2`
342
+ - `node` updated to version `1.0.2`
343
+ - `node` updated to version `1.0.2`
312
344
 
313
- ## [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)
345
+ ## [7.0.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-7.0.0...nextjs-mf-7.0.1) (2023-07-05)
314
346
 
347
+ ### Dependency Updates
315
348
 
316
- ### Features
349
+ - `node` updated to version `1.0.1`
350
+ - `node` updated to version `1.0.1`
351
+ - `node` updated to version `1.0.1`
317
352
 
318
- * support edge workers ([#1084](https://github.com/module-federation/nextjs-mf/issues/1084)) ([3f5df94](https://github.com/module-federation/nextjs-mf/commit/3f5df944ea787cf958fd4cf7fabed84432a50a10))
353
+ ### Bug Fixes
319
354
 
355
+ - **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))
320
356
 
357
+ # [7.0.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.7.1...nextjs-mf-7.0.0) (2023-07-01)
321
358
 
322
- ## [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)
359
+ ### Dependency Updates
323
360
 
361
+ - `utils` updated to version `2.0.0`
362
+ - `node` updated to version `1.0.0`
363
+ - `utils` updated to version `2.0.0`
364
+ - `utils` updated to version `2.0.0`
365
+ - `node` updated to version `1.0.0`
366
+ - `node` updated to version `1.0.0`
324
367
 
325
- ### Bug Fixes
368
+ ### Features
326
369
 
327
- * module type errors ([4c7b3ff](https://github.com/module-federation/nextjs-mf/commit/4c7b3ffad0726c6d9f51a8fb72ec7eefb3633073))
328
- * ts errors ([44de0be](https://github.com/module-federation/nextjs-mf/commit/44de0beb8c2d94028f738849f2bab438ce530ebe))
370
+ - 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)
329
371
 
372
+ ### BREAKING CHANGES
330
373
 
374
+ - automaticAsyncBoundary option has been removed
331
375
 
332
- ## [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)
376
+ - fix: exclude specific pages from page map automatically
333
377
 
378
+ - refactor: conslidate codebase
334
379
 
335
- ### Bug Fixes
380
+ - fix: improve hot reload share recovery
336
381
 
337
- * disable flushing remotes to ssr for now ([6c5cfae](https://github.com/module-federation/nextjs-mf/commit/6c5cfaec3be94aeb3f1e12c24965b3904da23bae))
382
+ - refactor: remove server jsonp template
338
383
 
384
+ - chore: remove dead code from runtime modules
339
385
 
386
+ - fix: clean up jsonp getCustomJsonpCode
340
387
 
341
- ## [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)
388
+ getting chunk loading global from compiler output options
342
389
 
390
+ - feat: adding cleanInitArrays runtime helper
343
391
 
392
+ - chore: remove share scope hoist and module hoisting system
344
393
 
345
- ## [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)
394
+ - chore: cleanup code
346
395
 
396
+ - chore: remove dead code from add module runtime plugin
347
397
 
348
- ### Bug Fixes
398
+ likely can remove whole plugin in future
349
399
 
350
- * image path fallback ([fc176ff](https://github.com/module-federation/nextjs-mf/commit/fc176ffa74a082ab0d7a198315f3b0827eb13037))
400
+ - chore: remove logs from delegate modules
351
401
 
402
+ - chore: remove old utils
352
403
 
404
+ - fix: add warning on auto page stitch
353
405
 
354
- ## [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)
406
+ - fix: remove commented out code from InvertedContainerPlugin.ts
355
407
 
408
+ - chore: improve logging to see if its local load or remote load
356
409
 
357
- ### Bug Fixes
410
+ - chore: clean up old custom promises factories
358
411
 
359
- * remove loggers ([a86b070](https://github.com/module-federation/nextjs-mf/commit/a86b070e11f31303a8833f806f7d2015e55a441b))
412
+ - fix: remove container proxy code
360
413
 
414
+ - fix: remove container proxy code
415
+ - automaticAsyncBoundary option has been removed
361
416
 
417
+ - fix: exclude specific pages from page map automatically
362
418
 
363
- ## [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)
419
+ - refactor: conslidate codebase
364
420
 
421
+ - fix: improve hot reload share recovery
365
422
 
366
- ### Bug Fixes
423
+ - refactor: remove server jsonp template
367
424
 
368
- * 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))
425
+ - chore: remove dead code from runtime modules
369
426
 
427
+ - fix: clean up jsonp getCustomJsonpCode
370
428
 
429
+ getting chunk loading global from compiler output options
371
430
 
372
- ## [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)
431
+ - feat: adding cleanInitArrays runtime helper
373
432
 
433
+ - chore: remove share scope hoist and module hoisting system
374
434
 
375
- ### Bug Fixes
435
+ - chore: cleanup code
376
436
 
377
- * Api routes ([#984](https://github.com/module-federation/nextjs-mf/issues/984)) ([903296a](https://github.com/module-federation/nextjs-mf/commit/903296af090d344845288fc940536a3b741eb1e1))
378
- * Resolve condition names ([#974](https://github.com/module-federation/nextjs-mf/issues/974)) ([5e8b49c](https://github.com/module-federation/nextjs-mf/commit/5e8b49cf60f19dae6be4818a1c0ff783c7689393))
379
- * Resolve conditional exports ([#971](https://github.com/module-federation/nextjs-mf/issues/971)) ([1c42e2a](https://github.com/module-federation/nextjs-mf/commit/1c42e2a721a9e93b2e9acebc09099dda66699a42))
380
- * Runtime module checking ([#969](https://github.com/module-federation/nextjs-mf/issues/969)) ([b5c7af1](https://github.com/module-federation/nextjs-mf/commit/b5c7af1697a63d9e19f901238a4c0382ea0c3f50))
437
+ - chore: remove dead code from add module runtime plugin
381
438
 
439
+ likely can remove whole plugin in future
382
440
 
441
+ - chore: remove logs from delegate modules
383
442
 
384
- ## [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)
443
+ - chore: remove old utils
385
444
 
445
+ - fix: add warning on auto page stitch
386
446
 
387
- ### Bug Fixes
447
+ - fix: remove commented out code from InvertedContainerPlugin.ts
388
448
 
389
- * Path loader patches ([#960](https://github.com/module-federation/nextjs-mf/issues/960)) ([d362a77](https://github.com/module-federation/nextjs-mf/commit/d362a7752c4364cc499a27f2b6eeb5399543cb29))
449
+ - chore: improve logging to see if its local load or remote load
390
450
 
451
+ - chore: clean up old custom promises factories
391
452
 
453
+ - fix: remove container proxy code
392
454
 
393
- ## [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)
455
+ - fix: remove container proxy code
394
456
 
457
+ - chore: fix project.json
395
458
 
396
- ### Bug Fixes
459
+ - debugging
397
460
 
398
- * 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))
461
+ - fix: resolve backmerge issues with build
399
462
 
463
+ - Merge branch 'kill_child_compilers' into fix_backmerge_issues
400
464
 
465
+ # Conflicts:
401
466
 
402
- ## [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)
467
+ # package-lock.json
403
468
 
469
+ # package.json
404
470
 
405
- ### Bug Fixes
471
+ # packages/nextjs-mf/src/plugins/NextFederationPlugin/index.ts
406
472
 
407
- * Improve chunk correlation ([#936](https://github.com/module-federation/nextjs-mf/issues/936)) ([4dad1eb](https://github.com/module-federation/nextjs-mf/commit/4dad1eb370feacd6ecb4c1726c435d5c579f424d))
408
- * remove default props deprecation on flush chunks ([103fa91](https://github.com/module-federation/nextjs-mf/commit/103fa910d39e25d283076755a2eedf4e926ba242))
473
+ # packages/nextjs-mf/src/plugins/container/InvertedContainerPlugin.ts
409
474
 
475
+ # packages/nextjs-mf/src/plugins/container/InvertedContainerRuntimeModule.ts
410
476
 
411
- ### Features
477
+ - feat: enable eager sharing
412
478
 
413
- * support custom distDir ([3d8d540](https://github.com/module-federation/nextjs-mf/commit/3d8d5408f73be9b8798f02fbd2382457510fdc3f))
479
+ - refactor: improve module hooks for eager loading and search
414
480
 
481
+ - refactor: cleanup custom jsonp and make es5
415
482
 
483
+ - refactor: cleanup inverted container code
416
484
 
417
- ## [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)
485
+ - refactor: cleanup inverted container code
486
+ - automaticAsyncBoundary option has been removed
418
487
 
488
+ - fix: exclude specific pages from page map automatically
419
489
 
420
- ### Bug Fixes
490
+ - refactor: conslidate codebase
421
491
 
422
- * 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))
423
- * remove specific module type from package ([ad8caf7](https://github.com/module-federation/nextjs-mf/commit/ad8caf7df575a67a866e882e515d9a4e249f5ad8))
492
+ - fix: improve hot reload share recovery
424
493
 
494
+ - refactor: remove server jsonp template
425
495
 
496
+ - chore: remove dead code from runtime modules
426
497
 
427
- ## [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)
498
+ - fix: clean up jsonp getCustomJsonpCode
428
499
 
500
+ getting chunk loading global from compiler output options
429
501
 
430
- ### Bug Fixes
502
+ - feat: adding cleanInitArrays runtime helper
431
503
 
432
- * chunk and module duplications ([#885](https://github.com/module-federation/nextjs-mf/issues/885)) ([199e6b9](https://github.com/module-federation/nextjs-mf/commit/199e6b9937f4a2ca6caedb3ae4767342de463cb6))
433
- * client prod build issues ([#899](https://github.com/module-federation/nextjs-mf/issues/899)) ([470d7ad](https://github.com/module-federation/nextjs-mf/commit/470d7ad408ae8d64dbccc5a9528eaa2ed60fa2ca))
434
- * deprecation warnings about chunkGraph ([9af484d](https://github.com/module-federation/nextjs-mf/commit/9af484dedba44b346d25ac5cdd10292ad018143d))
435
- * 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))
436
- * 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))
504
+ - chore: remove share scope hoist and module hoisting system
437
505
 
506
+ - chore: cleanup code
438
507
 
508
+ - chore: remove dead code from add module runtime plugin
439
509
 
440
- ## [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)
510
+ likely can remove whole plugin in future
441
511
 
512
+ - chore: remove logs from delegate modules
442
513
 
514
+ - chore: remove old utils
443
515
 
444
- ## [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)
516
+ - fix: add warning on auto page stitch
445
517
 
518
+ - fix: remove commented out code from InvertedContainerPlugin.ts
446
519
 
447
- ### Bug Fixes
520
+ - chore: improve logging to see if its local load or remote load
448
521
 
449
- * **chunk-module-duplication:** prevent runtime reset and share scope loss ([14bfc38](https://github.com/module-federation/nextjs-mf/commit/14bfc38515a4da3be7321d4b6d876905d45ad20b))
522
+ - chore: clean up old custom promises factories
450
523
 
524
+ - fix: remove container proxy code
451
525
 
526
+ - fix: remove container proxy code
452
527
 
453
- ## [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)
528
+ - fix: resolve backmerge issues with build
454
529
 
530
+ - Merge branch 'kill_child_compilers' into fix_backmerge_issues
455
531
 
456
- ### Bug Fixes
532
+ # Conflicts:
457
533
 
458
- * 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))
459
- * remove old files ([fa281ec](https://github.com/module-federation/nextjs-mf/commit/fa281ecf0a5486bcf995f548deaef993f437c068))
534
+ # package-lock.json
460
535
 
536
+ # package.json
461
537
 
462
- ### Features
538
+ # packages/nextjs-mf/src/plugins/NextFederationPlugin/index.ts
463
539
 
464
- * remove entry injection ([4e6981f](https://github.com/module-federation/nextjs-mf/commit/4e6981f8d8a312ae383b1c2cd337882b268e2b9b))
540
+ # packages/nextjs-mf/src/plugins/container/InvertedContainerPlugin.ts
465
541
 
542
+ # packages/nextjs-mf/src/plugins/container/InvertedContainerRuntimeModule.ts
466
543
 
544
+ - feat: enable eager sharing
467
545
 
468
- ## [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)
546
+ - refactor: improve module hooks for eager loading and search
469
547
 
548
+ - refactor: cleanup custom jsonp and make es5
470
549
 
471
- ### Bug Fixes
550
+ - refactor: cleanup inverted container code
472
551
 
473
- * ensure eager modules always exist in host (inject dependent modules somewhere in build pipeline) ([12bb896](https://github.com/module-federation/nextjs-mf/commit/12bb896d37324b4f3d0d59da04463b1d04428a01))
552
+ - refactor: cleanup inverted container code
474
553
 
554
+ - ci: fix install step with npm and NX
475
555
 
556
+ - test: remove tests for now
476
557
 
477
- ## [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)
558
+ - chore(utils): release version 1.7.3-beta.0
478
559
 
560
+ - chore(utils): release version 1.7.3
479
561
 
480
- ### Features
562
+ - chore(node): release version 0.14.4-beta.0
481
563
 
482
- * Quantum Modules ([#872](https://github.com/module-federation/nextjs-mf/issues/872)) ([2991039](https://github.com/module-federation/nextjs-mf/commit/299103932b4e0aa6d8017be588ffa5272f519260))
564
+ - chore(node): release version 0.14.4
483
565
 
566
+ - chore(nextjs-mf): release version 6.4.1-beta.4
484
567
 
568
+ - fix: remove debugging runtime variable
485
569
 
486
- ## [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)
570
+ - chore(nextjs-mf): release version 6.4.1-beta.5
487
571
 
572
+ ## [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)
488
573
 
489
- ### Bug Fixes
574
+ ### Features
490
575
 
491
- * remove debugging runtime variable ([d15dc2d](https://github.com/module-federation/nextjs-mf/commit/d15dc2dc6f6297532d89295690c6f561fee7955f))
576
+ - support edge workers ([#1084](https://github.com/module-federation/nextjs-mf/issues/1084)) ([3f5df94](https://github.com/module-federation/nextjs-mf/commit/3f5df944ea787cf958fd4cf7fabed84432a50a10))
492
577
 
578
+ ## [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)
493
579
 
580
+ ### Bug Fixes
494
581
 
495
- ## [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)
582
+ - module type errors ([4c7b3ff](https://github.com/module-federation/nextjs-mf/commit/4c7b3ffad0726c6d9f51a8fb72ec7eefb3633073))
583
+ - ts errors ([44de0be](https://github.com/module-federation/nextjs-mf/commit/44de0beb8c2d94028f738849f2bab438ce530ebe))
496
584
 
585
+ ## [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)
497
586
 
498
587
  ### Bug Fixes
499
588
 
500
- * add warning on auto page stitch ([2f068cf](https://github.com/module-federation/nextjs-mf/commit/2f068cfd71f0aad12285b9ab4cfbd515f399211c))
501
- * remove commented out code from InvertedContainerPlugin.ts ([7d52961](https://github.com/module-federation/nextjs-mf/commit/7d529612869f061733d7d87c9770036b7c2b0bbb))
502
- * resolve backmerge issues with build ([2ad095c](https://github.com/module-federation/nextjs-mf/commit/2ad095cc3198dfd153644cee5fb4f37fa3bf6f03))
589
+ - disable flushing remotes to ssr for now ([6c5cfae](https://github.com/module-federation/nextjs-mf/commit/6c5cfaec3be94aeb3f1e12c24965b3904da23bae))
503
590
 
591
+ ## [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)
504
592
 
505
- ### Features
593
+ ## [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)
506
594
 
507
- * [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)
508
- * [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)
509
- * enable eager sharing ([b1e4418](https://github.com/module-federation/nextjs-mf/commit/b1e4418304afd30c5f4719469db50c17c279a021))
595
+ ### Bug Fixes
510
596
 
597
+ - image path fallback ([fc176ff](https://github.com/module-federation/nextjs-mf/commit/fc176ffa74a082ab0d7a198315f3b0827eb13037))
511
598
 
512
- ### BREAKING CHANGES
599
+ ## [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)
513
600
 
514
- * automaticAsyncBoundary option has been removed
601
+ ### Bug Fixes
515
602
 
516
- * fix: exclude specific pages from page map automatically
603
+ - remove loggers ([a86b070](https://github.com/module-federation/nextjs-mf/commit/a86b070e11f31303a8833f806f7d2015e55a441b))
517
604
 
518
- * refactor: conslidate codebase
605
+ ## [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)
519
606
 
520
- * fix: improve hot reload share recovery
607
+ ### Bug Fixes
521
608
 
522
- * refactor: remove server jsonp template
609
+ - 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))
523
610
 
524
- * chore: remove dead code from runtime modules
611
+ ## [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)
525
612
 
526
- * fix: clean up jsonp getCustomJsonpCode
613
+ ### Bug Fixes
527
614
 
528
- getting chunk loading global from compiler output options
615
+ - Api routes ([#984](https://github.com/module-federation/nextjs-mf/issues/984)) ([903296a](https://github.com/module-federation/nextjs-mf/commit/903296af090d344845288fc940536a3b741eb1e1))
616
+ - Resolve condition names ([#974](https://github.com/module-federation/nextjs-mf/issues/974)) ([5e8b49c](https://github.com/module-federation/nextjs-mf/commit/5e8b49cf60f19dae6be4818a1c0ff783c7689393))
617
+ - Resolve conditional exports ([#971](https://github.com/module-federation/nextjs-mf/issues/971)) ([1c42e2a](https://github.com/module-federation/nextjs-mf/commit/1c42e2a721a9e93b2e9acebc09099dda66699a42))
618
+ - Runtime module checking ([#969](https://github.com/module-federation/nextjs-mf/issues/969)) ([b5c7af1](https://github.com/module-federation/nextjs-mf/commit/b5c7af1697a63d9e19f901238a4c0382ea0c3f50))
529
619
 
530
- * feat: adding cleanInitArrays runtime helper
620
+ ## [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)
531
621
 
532
- * chore: remove share scope hoist and module hoisting system
622
+ ### Bug Fixes
533
623
 
534
- * chore: cleanup code
624
+ - Path loader patches ([#960](https://github.com/module-federation/nextjs-mf/issues/960)) ([d362a77](https://github.com/module-federation/nextjs-mf/commit/d362a7752c4364cc499a27f2b6eeb5399543cb29))
535
625
 
536
- * chore: remove dead code from add module runtime plugin
626
+ ## [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)
537
627
 
538
- likely can remove whole plugin in future
628
+ ### Bug Fixes
539
629
 
540
- * chore: remove logs from delegate modules
630
+ - 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))
541
631
 
542
- * chore: remove old utils
632
+ ## [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)
543
633
 
544
- * fix: add warning on auto page stitch
634
+ ### Bug Fixes
545
635
 
546
- * fix: remove commented out code from InvertedContainerPlugin.ts
636
+ - Improve chunk correlation ([#936](https://github.com/module-federation/nextjs-mf/issues/936)) ([4dad1eb](https://github.com/module-federation/nextjs-mf/commit/4dad1eb370feacd6ecb4c1726c435d5c579f424d))
637
+ - remove default props deprecation on flush chunks ([103fa91](https://github.com/module-federation/nextjs-mf/commit/103fa910d39e25d283076755a2eedf4e926ba242))
547
638
 
548
- * chore: improve logging to see if its local load or remote load
639
+ ### Features
549
640
 
550
- * chore: clean up old custom promises factories
641
+ - support custom distDir ([3d8d540](https://github.com/module-federation/nextjs-mf/commit/3d8d5408f73be9b8798f02fbd2382457510fdc3f))
551
642
 
552
- * fix: remove container proxy code
643
+ ## [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)
553
644
 
554
- * fix: remove container proxy code
555
- * automaticAsyncBoundary option has been removed
645
+ ### Bug Fixes
556
646
 
557
- * fix: exclude specific pages from page map automatically
647
+ - 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))
648
+ - remove specific module type from package ([ad8caf7](https://github.com/module-federation/nextjs-mf/commit/ad8caf7df575a67a866e882e515d9a4e249f5ad8))
558
649
 
559
- * refactor: conslidate codebase
650
+ ## [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)
560
651
 
561
- * fix: improve hot reload share recovery
652
+ ### Bug Fixes
562
653
 
563
- * refactor: remove server jsonp template
654
+ - chunk and module duplications ([#885](https://github.com/module-federation/nextjs-mf/issues/885)) ([199e6b9](https://github.com/module-federation/nextjs-mf/commit/199e6b9937f4a2ca6caedb3ae4767342de463cb6))
655
+ - client prod build issues ([#899](https://github.com/module-federation/nextjs-mf/issues/899)) ([470d7ad](https://github.com/module-federation/nextjs-mf/commit/470d7ad408ae8d64dbccc5a9528eaa2ed60fa2ca))
656
+ - deprecation warnings about chunkGraph ([9af484d](https://github.com/module-federation/nextjs-mf/commit/9af484dedba44b346d25ac5cdd10292ad018143d))
657
+ - 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))
658
+ - 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))
564
659
 
565
- * chore: remove dead code from runtime modules
660
+ ## [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)
566
661
 
567
- * fix: clean up jsonp getCustomJsonpCode
662
+ ## [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)
568
663
 
569
- getting chunk loading global from compiler output options
664
+ ### Bug Fixes
570
665
 
571
- * feat: adding cleanInitArrays runtime helper
666
+ - **chunk-module-duplication:** prevent runtime reset and share scope loss ([14bfc38](https://github.com/module-federation/nextjs-mf/commit/14bfc38515a4da3be7321d4b6d876905d45ad20b))
572
667
 
573
- * chore: remove share scope hoist and module hoisting system
668
+ ## [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)
574
669
 
575
- * chore: cleanup code
670
+ ### Bug Fixes
576
671
 
672
+ - 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))
673
+ - remove old files ([fa281ec](https://github.com/module-federation/nextjs-mf/commit/fa281ecf0a5486bcf995f548deaef993f437c068))
577
674
 
675
+ ### Features
578
676
 
579
- ## [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)
677
+ - remove entry injection ([4e6981f](https://github.com/module-federation/nextjs-mf/commit/4e6981f8d8a312ae383b1c2cd337882b268e2b9b))
580
678
 
679
+ ## [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)
581
680
 
582
681
  ### Bug Fixes
583
682
 
584
- * implement exact version resolution ([ee95f5f](https://github.com/module-federation/nextjs-mf/commit/ee95f5f3fb2d0d5757bfff85e85dcf6658673b9c))
585
- * improve eager modularization ([f593725](https://github.com/module-federation/nextjs-mf/commit/f593725e24672dbf95eae018f2656cab68ec2c4e))
586
- * improve module and async module loading in runtmie module ([c841a4b](https://github.com/module-federation/nextjs-mf/commit/c841a4bd9e2205b438fc1c8855c66e1eee764e0a))
587
- * improve stability of chunk push ([98ad6ad](https://github.com/module-federation/nextjs-mf/commit/98ad6ad66ae19429a4808dc9215c6efef6b69fee))
588
- * improve startup inversion ([42e59f1](https://github.com/module-federation/nextjs-mf/commit/42e59f1b0c58d98c4a16d1efd1ab00d0748311f0))
589
- * prevent hmr destroying share scope ([ffc1131](https://github.com/module-federation/nextjs-mf/commit/ffc1131b2607387805d3137561df3ae756d07244))
683
+ - ensure eager modules always exist in host (inject dependent modules somewhere in build pipeline) ([12bb896](https://github.com/module-federation/nextjs-mf/commit/12bb896d37324b4f3d0d59da04463b1d04428a01))
590
684
 
685
+ ## [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)
591
686
 
592
687
  ### Features
593
688
 
594
- * eager load initial consumes ([6a05a5f](https://github.com/module-federation/nextjs-mf/commit/6a05a5f456dd0c5047f034cf7e9d3945a99f737b))
595
- * install an async boundary runtime module ([cbbc7f5](https://github.com/module-federation/nextjs-mf/commit/cbbc7f53dd908c42cb1897e3aa9e70a9819a002a))
689
+ - Quantum Modules ([#872](https://github.com/module-federation/nextjs-mf/issues/872)) ([2991039](https://github.com/module-federation/nextjs-mf/commit/299103932b4e0aa6d8017be588ffa5272f519260))
596
690
 
691
+ ## [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)
597
692
 
693
+ ### Bug Fixes
598
694
 
599
- ## [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)
695
+ - remove debugging runtime variable ([d15dc2d](https://github.com/module-federation/nextjs-mf/commit/d15dc2dc6f6297532d89295690c6f561fee7955f))
600
696
 
697
+ ## [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)
601
698
 
602
699
  ### Bug Fixes
603
700
 
604
- * disable next chunk splits ([2f731ee](https://github.com/module-federation/nextjs-mf/commit/2f731eee497c0f4d3057600f22bc2556e8b32410))
701
+ - add warning on auto page stitch ([2f068cf](https://github.com/module-federation/nextjs-mf/commit/2f068cfd71f0aad12285b9ab4cfbd515f399211c))
702
+ - remove commented out code from InvertedContainerPlugin.ts ([7d52961](https://github.com/module-federation/nextjs-mf/commit/7d529612869f061733d7d87c9770036b7c2b0bbb))
703
+ - resolve backmerge issues with build ([2ad095c](https://github.com/module-federation/nextjs-mf/commit/2ad095cc3198dfd153644cee5fb4f37fa3bf6f03))
605
704
 
705
+ ### Features
606
706
 
707
+ - [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)
708
+ - [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)
709
+ - enable eager sharing ([b1e4418](https://github.com/module-federation/nextjs-mf/commit/b1e4418304afd30c5f4719469db50c17c279a021))
607
710
 
608
- ## [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)
711
+ ### BREAKING CHANGES
609
712
 
713
+ - automaticAsyncBoundary option has been removed
610
714
 
715
+ - fix: exclude specific pages from page map automatically
611
716
 
612
- ## [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)
717
+ - refactor: conslidate codebase
613
718
 
719
+ - fix: improve hot reload share recovery
614
720
 
615
- ### Features
721
+ - refactor: remove server jsonp template
616
722
 
617
- * [v7] host inversion ([#769](https://github.com/module-federation/nextjs-mf/issues/769)) ([53b9e4b](https://github.com/module-federation/nextjs-mf/commit/53b9e4b4a0dd11adfaf394140133e9244156b839))
618
- * Custom Startup Runtime modules ([0f4bb27](https://github.com/module-federation/nextjs-mf/commit/0f4bb278a1e3be602c489d39062e7e236c47cca1))
619
- * 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)
620
- * remove child compiler pluign ([#780](https://github.com/module-federation/nextjs-mf/issues/780)) ([ed7ce3a](https://github.com/module-federation/nextjs-mf/commit/ed7ce3a6220bf0fa142da50d8101ad4693c8b178))
723
+ - chore: remove dead code from runtime modules
621
724
 
725
+ - fix: clean up jsonp getCustomJsonpCode
622
726
 
623
- ### BREAKING CHANGES
727
+ getting chunk loading global from compiler output options
624
728
 
625
- * Internal child compilers are no longer used
626
- BREAKING_CHANGE: Internal child compilers are no longer used
729
+ - feat: adding cleanInitArrays runtime helper
627
730
 
731
+ - chore: remove share scope hoist and module hoisting system
628
732
 
733
+ - chore: cleanup code
629
734
 
630
- ## [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)
735
+ - chore: remove dead code from add module runtime plugin
631
736
 
737
+ likely can remove whole plugin in future
632
738
 
633
- ### Bug Fixes
739
+ - chore: remove logs from delegate modules
634
740
 
635
- * cache busting and async quirks when mixing delegates ([1fc6e67](https://github.com/module-federation/nextjs-mf/commit/1fc6e67ee33a3efb53ff59d2b3ac333f1d42a158))
636
- * ensure app functions with async boundary loader ([717e885](https://github.com/module-federation/nextjs-mf/commit/717e88558475158bf1eb5ae88e53a3624b3277ff))
637
- * get delegates working ([#527](https://github.com/module-federation/nextjs-mf/issues/527)) ([7655568](https://github.com/module-federation/nextjs-mf/commit/7655568fcef8dbfda40573deb5d3d029c101074c))
638
- * improved asset pipeline ([63928b2](https://github.com/module-federation/nextjs-mf/commit/63928b28150c2c4e3adb9e14fb7aa54f5cf1578d))
639
- * move delegate modules into both webpack runtimes ([0570021](https://github.com/module-federation/nextjs-mf/commit/0570021d1040888a9f00394e64f7530a22e74a75))
640
- * move host remote reg into loader ([188b9e4](https://github.com/module-federation/nextjs-mf/commit/188b9e432b95ba4934a838a49571435ea27b4d0b))
641
- * peer dependencies metadata ([b603587](https://github.com/module-federation/nextjs-mf/commit/b6035870e5130bfd5b5c70951cc17bb38a50fbdd))
642
- * put error triggers if delegates are passed non-primitives ([0a780bb](https://github.com/module-federation/nextjs-mf/commit/0a780bb07c9421b58605fc133f236a918ef5a0d8))
643
- * remove dead code, use commonjs for delegate exports ([ad646d7](https://github.com/module-federation/nextjs-mf/commit/ad646d7306a2442ae6d9b2a72b33fb5ce66a9ba4))
644
- * solve double async boundary ([88b3f4f](https://github.com/module-federation/nextjs-mf/commit/88b3f4f08b217e2f88b535ec9c7290bad697888b))
645
- * solve externalization ([49f52e5](https://github.com/module-federation/nextjs-mf/commit/49f52e53ddddc990d31e6aa510d67dc0552a9d9a))
646
- * support windows paths ([98ca26f](https://github.com/module-federation/nextjs-mf/commit/98ca26f3062b9fa67fc8ba8152fd85eda9b5df10))
647
- * use EntryPlugin for injection of remotes ([e522c5a](https://github.com/module-federation/nextjs-mf/commit/e522c5ad2b7adcbd6c39f9c5fdb7a3e418277b7a))
741
+ - chore: remove old utils
648
742
 
743
+ - fix: add warning on auto page stitch
649
744
 
650
- ### Features
745
+ - fix: remove commented out code from InvertedContainerPlugin.ts
651
746
 
652
- * delegate module support ([76c9df3](https://github.com/module-federation/nextjs-mf/commit/76c9df3b97d60040466e9a01cfe3f45e8f9c6b78))
653
- * delegate module support ([3567aa5](https://github.com/module-federation/nextjs-mf/commit/3567aa5f6d0a00ca6df103c796657eb8953bc96a))
654
- * delegate module support ([8dd154c](https://github.com/module-federation/nextjs-mf/commit/8dd154c261b34183b12250ce204904cd3e085658))
655
- * delegates part two ([1be2686](https://github.com/module-federation/nextjs-mf/commit/1be2686624798a7df9f447b48279294985b3f592))
656
- * implement basic single runtime ([2432c3e](https://github.com/module-federation/nextjs-mf/commit/2432c3ec553759ca24d17a46b696c1123a86ec5a))
657
- * implement module runtime hoisting ([17c5b2f](https://github.com/module-federation/nextjs-mf/commit/17c5b2fc5f67c4321959ae30a69742c3128bc9a5))
658
- * improve automatic async boundary loader on single compile instance ([63fc327](https://github.com/module-federation/nextjs-mf/commit/63fc3273500d1626c7e8c4dab14268ae5cb9de7a))
659
- * improve chunk correlation ([22d8afc](https://github.com/module-federation/nextjs-mf/commit/22d8afccff101044fcdeba390656950dbc6eafed))
660
- * new chunk flushing system for exposed modules ([97a75d8](https://github.com/module-federation/nextjs-mf/commit/97a75d8702f2ddc5e12cff2ac4d24aca1df6f990))
661
- * new next federation plugin ([7e096df](https://github.com/module-federation/nextjs-mf/commit/7e096df89682369cdc92095be6936b58b9b5787f))
662
- * new output copy plugin for prod server exposure ([85da209](https://github.com/module-federation/nextjs-mf/commit/85da209103046567bdc93f71d421ea413ac1d37b))
663
- * remove child compilers ([c124f37](https://github.com/module-federation/nextjs-mf/commit/c124f3797ad327971066a4ad75f0317531653c08))
664
- * removing old promise template stuff from build utils ([d827cd6](https://github.com/module-federation/nextjs-mf/commit/d827cd60fc12bd65b4091db5f7e3d9b96bcdc12b))
747
+ - chore: improve logging to see if its local load or remote load
665
748
 
749
+ - chore: clean up old custom promises factories
666
750
 
667
- ### BREAKING CHANGES
751
+ - fix: remove container proxy code
668
752
 
669
- * Plugin No longer uses child sidecars to create containers.
670
- * deleting support for promiseTemplate
753
+ - fix: remove container proxy code
754
+ - automaticAsyncBoundary option has been removed
671
755
 
756
+ - fix: exclude specific pages from page map automatically
672
757
 
758
+ - refactor: conslidate codebase
673
759
 
674
- ## [6.7.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.7.0...nextjs-mf-6.7.1) (2023-06-30)
760
+ - fix: improve hot reload share recovery
675
761
 
762
+ - refactor: remove server jsonp template
676
763
 
677
- ### Bug Fixes
764
+ - chore: remove dead code from runtime modules
678
765
 
679
- * TS builds ([deca4a2](https://github.com/module-federation/nextjs-mf/commit/deca4a22fa83a5f2d7e03de8ff8a2d82b1aecded))
766
+ - fix: clean up jsonp getCustomJsonpCode
680
767
 
768
+ getting chunk loading global from compiler output options
681
769
 
770
+ - feat: adding cleanInitArrays runtime helper
682
771
 
683
- # [6.7.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.3...nextjs-mf-6.7.0) (2023-06-30)
772
+ - chore: remove share scope hoist and module hoisting system
684
773
 
685
- ### Dependency Updates
774
+ - chore: cleanup code
775
+
776
+ ## [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)
686
777
 
687
- * `utils` updated to version `1.9.1`
688
- * `node` updated to version `0.16.2`
689
- * `utils` updated to version `1.9.1`
690
- * `node` updated to version `0.16.2`
691
- * `node` updated to version `0.16.2`
778
+ ### Bug Fixes
779
+
780
+ - implement exact version resolution ([ee95f5f](https://github.com/module-federation/nextjs-mf/commit/ee95f5f3fb2d0d5757bfff85e85dcf6658673b9c))
781
+ - improve eager modularization ([f593725](https://github.com/module-federation/nextjs-mf/commit/f593725e24672dbf95eae018f2656cab68ec2c4e))
782
+ - improve module and async module loading in runtmie module ([c841a4b](https://github.com/module-federation/nextjs-mf/commit/c841a4bd9e2205b438fc1c8855c66e1eee764e0a))
783
+ - improve stability of chunk push ([98ad6ad](https://github.com/module-federation/nextjs-mf/commit/98ad6ad66ae19429a4808dc9215c6efef6b69fee))
784
+ - improve startup inversion ([42e59f1](https://github.com/module-federation/nextjs-mf/commit/42e59f1b0c58d98c4a16d1efd1ab00d0748311f0))
785
+ - prevent hmr destroying share scope ([ffc1131](https://github.com/module-federation/nextjs-mf/commit/ffc1131b2607387805d3137561df3ae756d07244))
692
786
 
693
787
  ### Features
694
788
 
695
- * support use client directive ([#1069](https://github.com/module-federation/nextjs-mf/issues/1069)) ([e20ade1](https://github.com/module-federation/nextjs-mf/commit/e20ade134d96a339dc53fe886a41f2eb81d878d5))
789
+ - eager load initial consumes ([6a05a5f](https://github.com/module-federation/nextjs-mf/commit/6a05a5f456dd0c5047f034cf7e9d3945a99f737b))
790
+ - install an async boundary runtime module ([cbbc7f5](https://github.com/module-federation/nextjs-mf/commit/cbbc7f53dd908c42cb1897e3aa9e70a9819a002a))
696
791
 
792
+ ## [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)
697
793
 
794
+ ### Bug Fixes
698
795
 
699
- ## [6.6.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.2...nextjs-mf-6.6.3) (2023-06-29)
796
+ - disable next chunk splits ([2f731ee](https://github.com/module-federation/nextjs-mf/commit/2f731eee497c0f4d3057600f22bc2556e8b32410))
700
797
 
798
+ ## [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)
701
799
 
800
+ ## [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)
702
801
 
703
- ## [6.6.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.1...nextjs-mf-6.6.2) (2023-06-29)
802
+ ### Features
704
803
 
804
+ - [v7] host inversion ([#769](https://github.com/module-federation/nextjs-mf/issues/769)) ([53b9e4b](https://github.com/module-federation/nextjs-mf/commit/53b9e4b4a0dd11adfaf394140133e9244156b839))
805
+ - Custom Startup Runtime modules ([0f4bb27](https://github.com/module-federation/nextjs-mf/commit/0f4bb278a1e3be602c489d39062e7e236c47cca1))
806
+ - 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)
807
+ - remove child compiler pluign ([#780](https://github.com/module-federation/nextjs-mf/issues/780)) ([ed7ce3a](https://github.com/module-federation/nextjs-mf/commit/ed7ce3a6220bf0fa142da50d8101ad4693c8b178))
705
808
 
809
+ ### BREAKING CHANGES
706
810
 
707
- ## [6.6.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.0...nextjs-mf-6.6.1) (2023-06-29)
811
+ - Internal child compilers are no longer used
812
+ BREAKING_CHANGE: Internal child compilers are no longer used
708
813
 
709
- ### Dependency Updates
814
+ ## [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)
710
815
 
711
- * `node` updated to version `0.16.1`
712
- * `node` updated to version `0.16.1`
816
+ ### Bug Fixes
713
817
 
818
+ - cache busting and async quirks when mixing delegates ([1fc6e67](https://github.com/module-federation/nextjs-mf/commit/1fc6e67ee33a3efb53ff59d2b3ac333f1d42a158))
819
+ - ensure app functions with async boundary loader ([717e885](https://github.com/module-federation/nextjs-mf/commit/717e88558475158bf1eb5ae88e53a3624b3277ff))
820
+ - get delegates working ([#527](https://github.com/module-federation/nextjs-mf/issues/527)) ([7655568](https://github.com/module-federation/nextjs-mf/commit/7655568fcef8dbfda40573deb5d3d029c101074c))
821
+ - improved asset pipeline ([63928b2](https://github.com/module-federation/nextjs-mf/commit/63928b28150c2c4e3adb9e14fb7aa54f5cf1578d))
822
+ - move delegate modules into both webpack runtimes ([0570021](https://github.com/module-federation/nextjs-mf/commit/0570021d1040888a9f00394e64f7530a22e74a75))
823
+ - move host remote reg into loader ([188b9e4](https://github.com/module-federation/nextjs-mf/commit/188b9e432b95ba4934a838a49571435ea27b4d0b))
824
+ - peer dependencies metadata ([b603587](https://github.com/module-federation/nextjs-mf/commit/b6035870e5130bfd5b5c70951cc17bb38a50fbdd))
825
+ - put error triggers if delegates are passed non-primitives ([0a780bb](https://github.com/module-federation/nextjs-mf/commit/0a780bb07c9421b58605fc133f236a918ef5a0d8))
826
+ - remove dead code, use commonjs for delegate exports ([ad646d7](https://github.com/module-federation/nextjs-mf/commit/ad646d7306a2442ae6d9b2a72b33fb5ce66a9ba4))
827
+ - solve double async boundary ([88b3f4f](https://github.com/module-federation/nextjs-mf/commit/88b3f4f08b217e2f88b535ec9c7290bad697888b))
828
+ - solve externalization ([49f52e5](https://github.com/module-federation/nextjs-mf/commit/49f52e53ddddc990d31e6aa510d67dc0552a9d9a))
829
+ - support windows paths ([98ca26f](https://github.com/module-federation/nextjs-mf/commit/98ca26f3062b9fa67fc8ba8152fd85eda9b5df10))
830
+ - use EntryPlugin for injection of remotes ([e522c5a](https://github.com/module-federation/nextjs-mf/commit/e522c5ad2b7adcbd6c39f9c5fdb7a3e418277b7a))
714
831
 
715
- # [6.6.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.1...nextjs-mf-6.6.0) (2023-06-29)
832
+ ### Features
716
833
 
834
+ - delegate module support ([76c9df3](https://github.com/module-federation/nextjs-mf/commit/76c9df3b97d60040466e9a01cfe3f45e8f9c6b78))
835
+ - delegate module support ([3567aa5](https://github.com/module-federation/nextjs-mf/commit/3567aa5f6d0a00ca6df103c796657eb8953bc96a))
836
+ - delegate module support ([8dd154c](https://github.com/module-federation/nextjs-mf/commit/8dd154c261b34183b12250ce204904cd3e085658))
837
+ - delegates part two ([1be2686](https://github.com/module-federation/nextjs-mf/commit/1be2686624798a7df9f447b48279294985b3f592))
838
+ - implement basic single runtime ([2432c3e](https://github.com/module-federation/nextjs-mf/commit/2432c3ec553759ca24d17a46b696c1123a86ec5a))
839
+ - implement module runtime hoisting ([17c5b2f](https://github.com/module-federation/nextjs-mf/commit/17c5b2fc5f67c4321959ae30a69742c3128bc9a5))
840
+ - improve automatic async boundary loader on single compile instance ([63fc327](https://github.com/module-federation/nextjs-mf/commit/63fc3273500d1626c7e8c4dab14268ae5cb9de7a))
841
+ - improve chunk correlation ([22d8afc](https://github.com/module-federation/nextjs-mf/commit/22d8afccff101044fcdeba390656950dbc6eafed))
842
+ - new chunk flushing system for exposed modules ([97a75d8](https://github.com/module-federation/nextjs-mf/commit/97a75d8702f2ddc5e12cff2ac4d24aca1df6f990))
843
+ - new next federation plugin ([7e096df](https://github.com/module-federation/nextjs-mf/commit/7e096df89682369cdc92095be6936b58b9b5787f))
844
+ - new output copy plugin for prod server exposure ([85da209](https://github.com/module-federation/nextjs-mf/commit/85da209103046567bdc93f71d421ea413ac1d37b))
845
+ - remove child compilers ([c124f37](https://github.com/module-federation/nextjs-mf/commit/c124f3797ad327971066a4ad75f0317531653c08))
846
+ - removing old promise template stuff from build utils ([d827cd6](https://github.com/module-federation/nextjs-mf/commit/d827cd60fc12bd65b4091db5f7e3d9b96bcdc12b))
717
847
 
848
+ ### BREAKING CHANGES
718
849
 
719
- ## [6.5.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.0...nextjs-mf-6.5.1) (2023-05-22)
850
+ - Plugin No longer uses child sidecars to create containers.
851
+ - deleting support for promiseTemplate
720
852
 
721
- ### Dependency Updates
853
+ ## [6.7.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.7.0...nextjs-mf-6.7.1) (2023-06-30)
722
854
 
723
- * `node` updated to version `0.15.1`
724
- * `node` updated to version `0.15.1`
855
+ ### Bug Fixes
725
856
 
857
+ - TS builds ([deca4a2](https://github.com/module-federation/nextjs-mf/commit/deca4a22fa83a5f2d7e03de8ff8a2d82b1aecded))
726
858
 
727
- # [6.5.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.0...nextjs-mf-6.5.0) (2023-05-22)
859
+ # [6.7.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.3...nextjs-mf-6.7.0) (2023-06-30)
728
860
 
729
861
  ### Dependency Updates
730
862
 
731
- * `utils` updated to version `1.8.0`
732
- * `node` updated to version `0.15.0`
733
- * `utils` updated to version `1.8.0`
734
- * `node` updated to version `0.15.0`
863
+ - `utils` updated to version `1.9.1`
864
+ - `node` updated to version `0.16.2`
865
+ - `utils` updated to version `1.9.1`
866
+ - `node` updated to version `0.16.2`
867
+ - `node` updated to version `0.16.2`
735
868
 
736
- ### Bug Fixes
869
+ ### Features
737
870
 
738
- * doc ([#860](https://github.com/module-federation/nextjs-mf/issues/860)) ([cb88646](https://github.com/module-federation/nextjs-mf/commit/cb886469b7d8eddbd2c94c2de88010366bb207d7))
871
+ - support use client directive ([#1069](https://github.com/module-federation/nextjs-mf/issues/1069)) ([e20ade1](https://github.com/module-federation/nextjs-mf/commit/e20ade134d96a339dc53fe886a41f2eb81d878d5))
739
872
 
873
+ ## [6.6.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.2...nextjs-mf-6.6.3) (2023-06-29)
740
874
 
741
- ### Features
875
+ ## [6.6.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.1...nextjs-mf-6.6.2) (2023-06-29)
742
876
 
743
- * 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))
744
- * **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))
877
+ ## [6.6.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.6.0...nextjs-mf-6.6.1) (2023-06-29)
745
878
 
879
+ ### Dependency Updates
746
880
 
881
+ - `node` updated to version `0.16.1`
882
+ - `node` updated to version `0.16.1`
747
883
 
748
- # [6.4.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.3.1...nextjs-mf-6.4.0) (2023-04-19)
884
+ # [6.6.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.1...nextjs-mf-6.6.0) (2023-06-29)
749
885
 
886
+ ## [6.5.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.5.0...nextjs-mf-6.5.1) (2023-05-22)
750
887
 
888
+ ### Dependency Updates
751
889
 
752
- ## [6.3.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.3.0...nextjs-mf-6.3.1) (2023-04-13)
890
+ - `node` updated to version `0.15.1`
891
+ - `node` updated to version `0.15.1`
753
892
 
893
+ # [6.5.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.4.0...nextjs-mf-6.5.0) (2023-05-22)
894
+
895
+ ### Dependency Updates
896
+
897
+ - `utils` updated to version `1.8.0`
898
+ - `node` updated to version `0.15.0`
899
+ - `utils` updated to version `1.8.0`
900
+ - `node` updated to version `0.15.0`
754
901
 
755
902
  ### Bug Fixes
756
903
 
757
- * 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))
904
+ - doc ([#860](https://github.com/module-federation/nextjs-mf/issues/860)) ([cb88646](https://github.com/module-federation/nextjs-mf/commit/cb886469b7d8eddbd2c94c2de88010366bb207d7))
758
905
 
906
+ ### Features
907
+
908
+ - 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))
909
+ - **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))
759
910
 
911
+ # [6.4.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.3.1...nextjs-mf-6.4.0) (2023-04-19)
912
+
913
+ ## [6.3.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.3.0...nextjs-mf-6.3.1) (2023-04-13)
914
+
915
+ ### Bug Fixes
916
+
917
+ - 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))
760
918
 
761
919
  # [6.3.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.2.3...nextjs-mf-6.3.0) (2023-04-10)
762
920
 
763
921
  ### Dependency Updates
764
922
 
765
- * `utils` updated to version `1.5.0`
766
- * `utils` updated to version `1.5.0`
767
- * `node` updated to version `0.13.0`
768
- * `node` updated to version `0.13.0`
923
+ - `utils` updated to version `1.5.0`
924
+ - `utils` updated to version `1.5.0`
925
+ - `node` updated to version `0.13.0`
926
+ - `node` updated to version `0.13.0`
769
927
 
770
928
  ### Features
771
929
 
772
- * 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))
773
-
774
-
930
+ - 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))
775
931
 
776
932
  ## [6.2.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.2.2...nextjs-mf-6.2.3) (2023-04-09)
777
933
 
778
934
  ### Dependency Updates
779
935
 
780
- * `utils` updated to version `1.4.1`
781
- * `utils` updated to version `1.4.1`
782
- * `node` updated to version `0.12.3`
783
- * `node` updated to version `0.12.3`
936
+ - `utils` updated to version `1.4.1`
937
+ - `utils` updated to version `1.4.1`
938
+ - `node` updated to version `0.12.3`
939
+ - `node` updated to version `0.12.3`
784
940
 
785
941
  ### Bug Fixes
786
942
 
787
- * loader handling of getServerProps ([#697](https://github.com/module-federation/nextjs-mf/issues/697)) ([aade75c](https://github.com/module-federation/nextjs-mf/commit/aade75c450c5773c9c21fe4f3d29ed4c1409a532))
788
-
789
-
943
+ - loader handling of getServerProps ([#697](https://github.com/module-federation/nextjs-mf/issues/697)) ([aade75c](https://github.com/module-federation/nextjs-mf/commit/aade75c450c5773c9c21fe4f3d29ed4c1409a532))
790
944
 
791
945
  ## [6.2.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.2.1...nextjs-mf-6.2.2) (2023-03-24)
792
946
 
793
947
  ### Dependency Updates
794
948
 
795
- * `node` updated to version `0.12.2`
796
- * `node` updated to version `0.12.2`
797
-
949
+ - `node` updated to version `0.12.2`
950
+ - `node` updated to version `0.12.2`
798
951
 
799
952
  ## [6.2.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.2.0...nextjs-mf-6.2.1) (2023-03-18)
800
953
 
801
-
802
954
  ### Bug Fixes
803
955
 
804
- * 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))
805
-
806
-
956
+ - 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))
807
957
 
808
958
  # [6.2.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.1.4...nextjs-mf-6.2.0) (2023-03-14)
809
959
 
810
960
  ### Dependency Updates
811
961
 
812
- * `utils` updated to version `1.4.0`
813
- * `node` updated to version `0.12.0`
962
+ - `utils` updated to version `1.4.0`
963
+ - `node` updated to version `0.12.0`
814
964
 
815
965
  ### Features
816
966
 
817
- * 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)
818
-
819
-
967
+ - 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)
820
968
 
821
969
  ## [6.1.4](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.1.3...nextjs-mf-6.1.4) (2023-03-08)
822
970
 
823
-
824
971
  ### Bug Fixes
825
972
 
826
- * 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))
827
- * 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))
828
-
829
-
973
+ - 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))
974
+ - 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))
830
975
 
831
976
  ## [6.1.3](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.1.2...nextjs-mf-6.1.3) (2023-02-17)
832
977
 
833
-
834
978
  ### Bug Fixes
835
979
 
836
- * 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))
837
-
838
-
980
+ - 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))
839
981
 
840
982
  ## [6.1.2](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.1.1...nextjs-mf-6.1.2) (2023-02-09)
841
983
 
842
984
  ### Dependency Updates
843
985
 
844
- * `node` updated to version `0.11.1`
986
+ - `node` updated to version `0.11.1`
845
987
 
846
988
  ### Bug Fixes
847
989
 
848
- * backward compatability with older versions pre 6.1.x ([f27b57a](https://github.com/module-federation/nextjs-mf/commit/f27b57a36a61280124bab4a309edaa1c3fd04ced))
849
-
850
-
990
+ - backward compatability with older versions pre 6.1.x ([f27b57a](https://github.com/module-federation/nextjs-mf/commit/f27b57a36a61280124bab4a309edaa1c3fd04ced))
851
991
 
852
992
  ## [6.1.1](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.1.0...nextjs-mf-6.1.1) (2023-02-09)
853
993
 
854
-
855
994
  ### Bug Fixes
856
995
 
857
- * resolve NX build version issues ([c5f7274](https://github.com/module-federation/nextjs-mf/commit/c5f7274265ce325dda3c324074c808cce95699fd))
858
-
859
-
996
+ - resolve NX build version issues ([c5f7274](https://github.com/module-federation/nextjs-mf/commit/c5f7274265ce325dda3c324074c808cce95699fd))
860
997
 
861
998
  # [6.1.0](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.0.8...nextjs-mf-6.1.0) (2023-02-09)
862
999
 
863
1000
  ### Dependency Updates
864
1001
 
865
- * `utils` updated to version `1.3.0`
866
- * `node` updated to version `0.11.0`
1002
+ - `utils` updated to version `1.3.0`
1003
+ - `node` updated to version `0.11.0`
867
1004
 
868
1005
  ### Features
869
1006
 
870
- * Delegate Modules ([#509](https://github.com/module-federation/nextjs-mf/issues/509)) ([1a085e7](https://github.com/module-federation/nextjs-mf/commit/1a085e7e03ca0afd5c64389b4b169f3db3382f6b))
871
-
872
-
1007
+ - Delegate Modules ([#509](https://github.com/module-federation/nextjs-mf/issues/509)) ([1a085e7](https://github.com/module-federation/nextjs-mf/commit/1a085e7e03ca0afd5c64389b4b169f3db3382f6b))
873
1008
 
874
1009
  ## [6.0.8](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.0.7...nextjs-mf-6.0.8) (2023-02-09)
875
1010
 
876
1011
  ### Dependency Updates
877
1012
 
878
- * `utils` updated to version `1.2.1`
879
- * `node` updated to version `0.10.5`
880
-
1013
+ - `utils` updated to version `1.2.1`
1014
+ - `node` updated to version `0.10.5`
881
1015
 
882
1016
  ## [6.0.7](https://github.com/module-federation/nextjs-mf/compare/nextjs-mf-6.0.6...nextjs-mf-6.0.7) (2023-02-02)
883
1017