@module-federation/enhanced 2.1.0 → 2.2.1

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 (285) hide show
  1. package/dist/CHANGELOG.md +2375 -0
  2. package/dist/README.md +213 -0
  3. package/dist/rstestmigrate.md +140 -0
  4. package/dist/src/_virtual/_rolldown/runtime.js +47 -0
  5. package/dist/src/index.d.ts +22 -19
  6. package/dist/src/index.js +47 -43
  7. package/dist/src/index.js.map +1 -1
  8. package/dist/src/lib/Constants.d.ts +25 -29
  9. package/dist/src/lib/Constants.js +136 -116
  10. package/dist/src/lib/Constants.js.map +1 -1
  11. package/dist/src/lib/container/AsyncBoundaryPlugin.d.ts +20 -16
  12. package/dist/src/lib/container/AsyncBoundaryPlugin.js +137 -200
  13. package/dist/src/lib/container/AsyncBoundaryPlugin.js.map +1 -1
  14. package/dist/src/lib/container/ContainerEntryDependency.d.ts +28 -23
  15. package/dist/src/lib/container/ContainerEntryDependency.js +39 -39
  16. package/dist/src/lib/container/ContainerEntryDependency.js.map +1 -1
  17. package/dist/src/lib/container/ContainerEntryModule.d.ts +93 -84
  18. package/dist/src/lib/container/ContainerEntryModule.js +219 -234
  19. package/dist/src/lib/container/ContainerEntryModule.js.map +1 -1
  20. package/dist/src/lib/container/ContainerEntryModuleFactory.d.ts +15 -10
  21. package/dist/src/lib/container/ContainerEntryModuleFactory.js +21 -25
  22. package/dist/src/lib/container/ContainerEntryModuleFactory.js.map +1 -1
  23. package/dist/src/lib/container/ContainerExposedDependency.d.ts +29 -24
  24. package/dist/src/lib/container/ContainerExposedDependency.js +47 -47
  25. package/dist/src/lib/container/ContainerExposedDependency.js.map +1 -1
  26. package/dist/src/lib/container/ContainerPlugin.d.ts +12 -8
  27. package/dist/src/lib/container/ContainerPlugin.js +147 -211
  28. package/dist/src/lib/container/ContainerPlugin.js.map +1 -1
  29. package/dist/src/lib/container/ContainerReferencePlugin.d.ts +16 -12
  30. package/dist/src/lib/container/ContainerReferencePlugin.js +74 -102
  31. package/dist/src/lib/container/ContainerReferencePlugin.js.map +1 -1
  32. package/dist/src/lib/container/FallbackDependency.d.ts +24 -19
  33. package/dist/src/lib/container/FallbackDependency.js +46 -44
  34. package/dist/src/lib/container/FallbackDependency.js.map +1 -1
  35. package/dist/src/lib/container/FallbackItemDependency.d.ts +13 -8
  36. package/dist/src/lib/container/FallbackItemDependency.js +24 -24
  37. package/dist/src/lib/container/FallbackItemDependency.js.map +1 -1
  38. package/dist/src/lib/container/FallbackModule.d.ts +82 -71
  39. package/dist/src/lib/container/FallbackModule.js +133 -145
  40. package/dist/src/lib/container/FallbackModule.js.map +1 -1
  41. package/dist/src/lib/container/FallbackModuleFactory.d.ts +15 -10
  42. package/dist/src/lib/container/FallbackModuleFactory.js +20 -24
  43. package/dist/src/lib/container/FallbackModuleFactory.js.map +1 -1
  44. package/dist/src/lib/container/HoistContainerReferencesPlugin.d.ts +11 -7
  45. package/dist/src/lib/container/HoistContainerReferencesPlugin.js +125 -188
  46. package/dist/src/lib/container/HoistContainerReferencesPlugin.js.map +1 -1
  47. package/dist/src/lib/container/ModuleFederationPlugin.d.ts +20 -16
  48. package/dist/src/lib/container/ModuleFederationPlugin.js +143 -181
  49. package/dist/src/lib/container/ModuleFederationPlugin.js.map +1 -1
  50. package/dist/src/lib/container/RemoteModule.d.ts +79 -74
  51. package/dist/src/lib/container/RemoteModule.js +143 -153
  52. package/dist/src/lib/container/RemoteModule.js.map +1 -1
  53. package/dist/src/lib/container/RemoteRuntimeModule.d.ts +12 -7
  54. package/dist/src/lib/container/RemoteRuntimeModule.js +86 -132
  55. package/dist/src/lib/container/RemoteRuntimeModule.js.map +1 -1
  56. package/dist/src/lib/container/RemoteToExternalDependency.d.ts +13 -8
  57. package/dist/src/lib/container/RemoteToExternalDependency.js +25 -23
  58. package/dist/src/lib/container/RemoteToExternalDependency.js.map +1 -1
  59. package/dist/src/lib/container/constant.d.ts +3 -0
  60. package/dist/src/lib/container/constant.js +11 -14
  61. package/dist/src/lib/container/constant.js.map +1 -1
  62. package/dist/src/lib/container/options.d.ts +7 -3
  63. package/dist/src/lib/container/options.js +51 -69
  64. package/dist/src/lib/container/options.js.map +1 -1
  65. package/dist/src/lib/container/runtime/EmbedFederationRuntimeModule.d.ts +14 -9
  66. package/dist/src/lib/container/runtime/EmbedFederationRuntimeModule.js +56 -64
  67. package/dist/src/lib/container/runtime/EmbedFederationRuntimeModule.js.map +1 -1
  68. package/dist/src/lib/container/runtime/EmbedFederationRuntimePlugin.d.ts +23 -19
  69. package/dist/src/lib/container/runtime/EmbedFederationRuntimePlugin.js +71 -101
  70. package/dist/src/lib/container/runtime/EmbedFederationRuntimePlugin.js.map +1 -1
  71. package/dist/src/lib/container/runtime/FederationModulesPlugin.d.ts +20 -16
  72. package/dist/src/lib/container/runtime/FederationModulesPlugin.js +55 -47
  73. package/dist/src/lib/container/runtime/FederationModulesPlugin.js.map +1 -1
  74. package/dist/src/lib/container/runtime/FederationRuntimeDependency.d.ts +9 -4
  75. package/dist/src/lib/container/runtime/FederationRuntimeDependency.js +16 -12
  76. package/dist/src/lib/container/runtime/FederationRuntimeDependency.js.map +1 -1
  77. package/dist/src/lib/container/runtime/FederationRuntimeModule.d.ts +16 -11
  78. package/dist/src/lib/container/runtime/FederationRuntimeModule.js +39 -46
  79. package/dist/src/lib/container/runtime/FederationRuntimeModule.js.map +1 -1
  80. package/dist/src/lib/container/runtime/FederationRuntimePlugin.d.ts +31 -20
  81. package/dist/src/lib/container/runtime/FederationRuntimePlugin.js +265 -358
  82. package/dist/src/lib/container/runtime/FederationRuntimePlugin.js.map +1 -1
  83. package/dist/src/lib/container/runtime/getFederationGlobal.d.ts +9 -4
  84. package/dist/src/lib/container/runtime/getFederationGlobal.js +43 -41
  85. package/dist/src/lib/container/runtime/getFederationGlobal.js.map +1 -1
  86. package/dist/src/lib/container/runtime/utils.d.ts +24 -13
  87. package/dist/src/lib/container/runtime/utils.js +83 -101
  88. package/dist/src/lib/container/runtime/utils.js.map +1 -1
  89. package/dist/src/lib/sharing/ConsumeSharedFallbackDependency.d.ts +15 -10
  90. package/dist/src/lib/sharing/ConsumeSharedFallbackDependency.js +27 -25
  91. package/dist/src/lib/sharing/ConsumeSharedFallbackDependency.js.map +1 -1
  92. package/dist/src/lib/sharing/ConsumeSharedModule.d.ts +77 -68
  93. package/dist/src/lib/sharing/ConsumeSharedModule.js +186 -214
  94. package/dist/src/lib/sharing/ConsumeSharedModule.js.map +1 -1
  95. package/dist/src/lib/sharing/ConsumeSharedPlugin.d.ts +13 -9
  96. package/dist/src/lib/sharing/ConsumeSharedPlugin.js +308 -475
  97. package/dist/src/lib/sharing/ConsumeSharedPlugin.js.map +1 -1
  98. package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.d.ts +16 -11
  99. package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.js +107 -137
  100. package/dist/src/lib/sharing/ConsumeSharedRuntimeModule.js.map +1 -1
  101. package/dist/src/lib/sharing/ProvideForSharedDependency.d.ts +14 -9
  102. package/dist/src/lib/sharing/ProvideForSharedDependency.js +25 -25
  103. package/dist/src/lib/sharing/ProvideForSharedDependency.js.map +1 -1
  104. package/dist/src/lib/sharing/ProvideSharedDependency.d.ts +44 -39
  105. package/dist/src/lib/sharing/ProvideSharedDependency.js +72 -76
  106. package/dist/src/lib/sharing/ProvideSharedDependency.js.map +1 -1
  107. package/dist/src/lib/sharing/ProvideSharedModule.d.ts +91 -82
  108. package/dist/src/lib/sharing/ProvideSharedModule.js +177 -184
  109. package/dist/src/lib/sharing/ProvideSharedModule.js.map +1 -1
  110. package/dist/src/lib/sharing/ProvideSharedModuleFactory.d.ts +14 -9
  111. package/dist/src/lib/sharing/ProvideSharedModuleFactory.js +19 -25
  112. package/dist/src/lib/sharing/ProvideSharedModuleFactory.js.map +1 -1
  113. package/dist/src/lib/sharing/ProvideSharedPlugin.d.ts +27 -21
  114. package/dist/src/lib/sharing/ProvideSharedPlugin.js +341 -550
  115. package/dist/src/lib/sharing/ProvideSharedPlugin.js.map +1 -1
  116. package/dist/src/lib/sharing/SharePlugin.d.ts +53 -49
  117. package/dist/src/lib/sharing/SharePlugin.js +86 -100
  118. package/dist/src/lib/sharing/SharePlugin.js.map +1 -1
  119. package/dist/src/lib/sharing/ShareRuntimeModule.d.ts +12 -7
  120. package/dist/src/lib/sharing/ShareRuntimeModule.js +81 -103
  121. package/dist/src/lib/sharing/ShareRuntimeModule.js.map +1 -1
  122. package/dist/src/lib/sharing/resolveMatchedConfigs.d.ts +11 -7
  123. package/dist/src/lib/sharing/resolveMatchedConfigs.js +58 -71
  124. package/dist/src/lib/sharing/resolveMatchedConfigs.js.map +1 -1
  125. package/dist/src/lib/sharing/tree-shaking/CollectSharedEntryPlugin.d.ts +18 -14
  126. package/dist/src/lib/sharing/tree-shaking/CollectSharedEntryPlugin.js +74 -128
  127. package/dist/src/lib/sharing/tree-shaking/CollectSharedEntryPlugin.js.map +1 -1
  128. package/dist/src/lib/sharing/tree-shaking/IndependentSharedPlugin.d.ts +39 -34
  129. package/dist/src/lib/sharing/tree-shaking/IndependentSharedPlugin.js +234 -328
  130. package/dist/src/lib/sharing/tree-shaking/IndependentSharedPlugin.js.map +1 -1
  131. package/dist/src/lib/sharing/tree-shaking/IndependentSharedRuntimeModule.d.ts +16 -11
  132. package/dist/src/lib/sharing/tree-shaking/IndependentSharedRuntimeModule.js +30 -28
  133. package/dist/src/lib/sharing/tree-shaking/IndependentSharedRuntimeModule.js.map +1 -1
  134. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedContainerPlugin.d.ts +28 -24
  135. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedContainerPlugin.js +91 -95
  136. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedContainerPlugin.js.map +1 -1
  137. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedDependency.d.ts +29 -24
  138. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedDependency.js +47 -43
  139. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedDependency.js.map +1 -1
  140. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryDependency.d.ts +20 -15
  141. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryDependency.js +33 -29
  142. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryDependency.js.map +1 -1
  143. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModule.d.ts +85 -77
  144. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModule.js +141 -153
  145. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModule.js.map +1 -1
  146. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModuleFactory.d.ts +15 -10
  147. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModuleFactory.js +20 -24
  148. package/dist/src/lib/sharing/tree-shaking/SharedContainerPlugin/SharedEntryModuleFactory.js.map +1 -1
  149. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerPlugin.d.ts +21 -16
  150. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerPlugin.js +157 -231
  151. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerPlugin.js.map +1 -1
  152. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerRuntimeModule.d.ts +14 -9
  153. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerRuntimeModule.js +26 -27
  154. package/dist/src/lib/sharing/tree-shaking/SharedUsedExportsOptimizerRuntimeModule.js.map +1 -1
  155. package/dist/src/lib/sharing/tree-shaking/TreeShakingSharedPlugin.d.ts +18 -13
  156. package/dist/src/lib/sharing/tree-shaking/TreeShakingSharedPlugin.js +41 -49
  157. package/dist/src/lib/sharing/tree-shaking/TreeShakingSharedPlugin.js.map +1 -1
  158. package/dist/src/lib/sharing/utils.d.ts +27 -24
  159. package/dist/src/lib/sharing/utils.js +224 -367
  160. package/dist/src/lib/sharing/utils.js.map +1 -1
  161. package/dist/src/lib/startup/MfStartupChunkDependenciesPlugin.d.ts +11 -7
  162. package/dist/src/lib/startup/MfStartupChunkDependenciesPlugin.js +56 -75
  163. package/dist/src/lib/startup/MfStartupChunkDependenciesPlugin.js.map +1 -1
  164. package/dist/src/lib/startup/StartupHelpers.d.ts +11 -6
  165. package/dist/src/lib/startup/StartupHelpers.js +128 -178
  166. package/dist/src/lib/startup/StartupHelpers.js.map +1 -1
  167. package/dist/src/prefetch.d.ts +3 -2
  168. package/dist/src/prefetch.js +17 -8
  169. package/dist/src/rspack.d.ts +3 -2
  170. package/dist/src/rspack.js +35 -11
  171. package/dist/src/runtime/AddRuntimeRequirementToPromiseExternalPlugin.d.ts +8 -4
  172. package/dist/src/runtime/AddRuntimeRequirementToPromiseExternalPlugin.js +19 -16
  173. package/dist/src/runtime/AddRuntimeRequirementToPromiseExternalPlugin.js.map +1 -1
  174. package/dist/src/runtime.d.ts +1 -1
  175. package/dist/src/runtime.js +11 -18
  176. package/dist/src/schemas/container/ContainerPlugin.check.d.ts +13 -5
  177. package/dist/src/schemas/container/ContainerPlugin.check.js +958 -1218
  178. package/dist/src/schemas/container/ContainerPlugin.check.js.map +1 -1
  179. package/dist/src/schemas/container/ContainerPlugin.d.ts +271 -268
  180. package/dist/src/schemas/container/ContainerPlugin.js +273 -361
  181. package/dist/src/schemas/container/ContainerPlugin.js.map +1 -1
  182. package/dist/src/schemas/container/ContainerReferencePlugin.check.d.ts +13 -5
  183. package/dist/src/schemas/container/ContainerReferencePlugin.check.js +335 -443
  184. package/dist/src/schemas/container/ContainerReferencePlugin.check.js.map +1 -1
  185. package/dist/src/schemas/container/ContainerReferencePlugin.d.ts +102 -99
  186. package/dist/src/schemas/container/ContainerReferencePlugin.js +122 -162
  187. package/dist/src/schemas/container/ContainerReferencePlugin.js.map +1 -1
  188. package/dist/src/schemas/container/ExternalsType.check.d.ts +13 -5
  189. package/dist/src/schemas/container/ExternalsType.check.js +36 -62
  190. package/dist/src/schemas/container/ExternalsType.check.js.map +1 -1
  191. package/dist/src/schemas/container/ExternalsType.d.ts +5 -2
  192. package/dist/src/schemas/container/ExternalsType.js +8 -11
  193. package/dist/src/schemas/container/ExternalsType.js.map +1 -1
  194. package/dist/src/schemas/container/ModuleFederationPlugin.check.js +3001 -4812
  195. package/dist/src/schemas/container/ModuleFederationPlugin.check.js.map +1 -1
  196. package/dist/src/schemas/container/ModuleFederationPlugin.d.ts +819 -814
  197. package/dist/src/schemas/container/ModuleFederationPlugin.js +780 -1053
  198. package/dist/src/schemas/container/ModuleFederationPlugin.js.map +1 -1
  199. package/dist/src/schemas/sharing/ConsumeSharedPlugin.check.d.ts +13 -5
  200. package/dist/src/schemas/sharing/ConsumeSharedPlugin.check.js +568 -768
  201. package/dist/src/schemas/sharing/ConsumeSharedPlugin.check.js.map +1 -1
  202. package/dist/src/schemas/sharing/ConsumeSharedPlugin.d.ts +197 -194
  203. package/dist/src/schemas/sharing/ConsumeSharedPlugin.js +212 -238
  204. package/dist/src/schemas/sharing/ConsumeSharedPlugin.js.map +1 -1
  205. package/dist/src/schemas/sharing/ProvideSharedPlugin.check.d.ts +13 -5
  206. package/dist/src/schemas/sharing/ProvideSharedPlugin.check.js +598 -804
  207. package/dist/src/schemas/sharing/ProvideSharedPlugin.check.js.map +1 -1
  208. package/dist/src/schemas/sharing/ProvideSharedPlugin.d.ts +184 -181
  209. package/dist/src/schemas/sharing/ProvideSharedPlugin.js +196 -229
  210. package/dist/src/schemas/sharing/ProvideSharedPlugin.js.map +1 -1
  211. package/dist/src/schemas/sharing/ProviderSharedPlugin.check.d.ts +12 -4
  212. package/dist/src/schemas/sharing/ProviderSharedPlugin.check.js +285 -482
  213. package/dist/src/schemas/sharing/ProviderSharedPlugin.check.js.map +1 -1
  214. package/dist/src/schemas/sharing/ProviderSharedPlugin.d.ts +103 -100
  215. package/dist/src/schemas/sharing/ProviderSharedPlugin.js +104 -126
  216. package/dist/src/schemas/sharing/ProviderSharedPlugin.js.map +1 -1
  217. package/dist/src/schemas/sharing/SharePlugin.check.d.ts +13 -5
  218. package/dist/src/schemas/sharing/SharePlugin.check.js +749 -965
  219. package/dist/src/schemas/sharing/SharePlugin.check.js.map +1 -1
  220. package/dist/src/schemas/sharing/SharePlugin.d.ts +245 -242
  221. package/dist/src/schemas/sharing/SharePlugin.js +256 -293
  222. package/dist/src/schemas/sharing/SharePlugin.js.map +1 -1
  223. package/dist/src/utils.d.ts +3 -0
  224. package/dist/src/utils.js +35 -26
  225. package/dist/src/utils.js.map +1 -1
  226. package/dist/src/webpack.d.ts +2 -2
  227. package/dist/src/webpack.js +6 -40
  228. package/dist/src/wrapper/AsyncBoundaryPlugin.d.ts +9 -4
  229. package/dist/src/wrapper/AsyncBoundaryPlugin.js +12 -11
  230. package/dist/src/wrapper/AsyncBoundaryPlugin.js.map +1 -1
  231. package/dist/src/wrapper/BaseWrapperPlugin.d.ts +18 -13
  232. package/dist/src/wrapper/BaseWrapperPlugin.js +39 -39
  233. package/dist/src/wrapper/BaseWrapperPlugin.js.map +1 -1
  234. package/dist/src/wrapper/ConsumeSharedPlugin.d.ts +10 -4
  235. package/dist/src/wrapper/ConsumeSharedPlugin.js +12 -11
  236. package/dist/src/wrapper/ConsumeSharedPlugin.js.map +1 -1
  237. package/dist/src/wrapper/ContainerPlugin.d.ts +9 -4
  238. package/dist/src/wrapper/ContainerPlugin.js +12 -11
  239. package/dist/src/wrapper/ContainerPlugin.js.map +1 -1
  240. package/dist/src/wrapper/ContainerReferencePlugin.d.ts +9 -4
  241. package/dist/src/wrapper/ContainerReferencePlugin.js +12 -11
  242. package/dist/src/wrapper/ContainerReferencePlugin.js.map +1 -1
  243. package/dist/src/wrapper/FederationModulesPlugin.d.ts +18 -10
  244. package/dist/src/wrapper/FederationModulesPlugin.js +19 -19
  245. package/dist/src/wrapper/FederationModulesPlugin.js.map +1 -1
  246. package/dist/src/wrapper/FederationRuntimePlugin.d.ts +11 -6
  247. package/dist/src/wrapper/FederationRuntimePlugin.js +18 -17
  248. package/dist/src/wrapper/FederationRuntimePlugin.js.map +1 -1
  249. package/dist/src/wrapper/HoistContainerReferencesPlugin.d.ts +8 -3
  250. package/dist/src/wrapper/HoistContainerReferencesPlugin.js +12 -11
  251. package/dist/src/wrapper/HoistContainerReferencesPlugin.js.map +1 -1
  252. package/dist/src/wrapper/ModuleFederationPlugin.d.ts +12 -7
  253. package/dist/src/wrapper/ModuleFederationPlugin.js +73 -99
  254. package/dist/src/wrapper/ModuleFederationPlugin.js.map +1 -1
  255. package/dist/src/wrapper/ProvideSharedPlugin.d.ts +10 -4
  256. package/dist/src/wrapper/ProvideSharedPlugin.js +12 -11
  257. package/dist/src/wrapper/ProvideSharedPlugin.js.map +1 -1
  258. package/dist/src/wrapper/SharePlugin.d.ts +10 -4
  259. package/dist/src/wrapper/SharePlugin.js +12 -11
  260. package/dist/src/wrapper/SharePlugin.js.map +1 -1
  261. package/dist/src/wrapper/TreeShakingSharedPlugin.d.ts +9 -4
  262. package/dist/src/wrapper/TreeShakingSharedPlugin.js +12 -11
  263. package/dist/src/wrapper/TreeShakingSharedPlugin.js.map +1 -1
  264. package/package.json +23 -14
  265. package/dist/package.json +0 -110
  266. package/dist/src/declarations/plugins/container/AsyncDependenciesBlock.d.ts +0 -57
  267. package/dist/src/declarations/plugins/container/ModuleFactory.d.ts +0 -33
  268. package/dist/src/declarations/plugins/container/ObjectDeserializerContext.d.ts +0 -4
  269. package/dist/src/declarations/plugins/container/StaticExportsDependency.d.ts +0 -28
  270. package/dist/src/declarations/plugins/container/Template.d.ts +0 -198
  271. package/dist/src/declarations/plugins/container/WebpackError.d.ts +0 -33
  272. package/dist/src/declarations/plugins/sharing/ConsumeSharedModule.d.ts +0 -86
  273. package/dist/src/declarations/plugins/sharing/ConsumeSharedPlugin.d.ts +0 -100
  274. package/dist/src/declarations/plugins/sharing/ProvideSharedPlugin.d.ts +0 -102
  275. package/dist/src/declarations/plugins/sharing/SharePlugin.d.ts +0 -116
  276. package/dist/src/lib/container/runtime/ChildCompilationRuntimePlugin.d.ts +0 -20
  277. package/dist/src/lib/container/runtime/ChildCompilationRuntimePlugin.js +0 -222
  278. package/dist/src/lib/container/runtime/ChildCompilationRuntimePlugin.js.map +0 -1
  279. package/dist/src/prefetch.js.map +0 -1
  280. package/dist/src/rspack.js.map +0 -1
  281. package/dist/src/runtime.js.map +0 -1
  282. package/dist/src/types/runtime.d.ts +0 -10
  283. package/dist/src/types/runtime.js +0 -3
  284. package/dist/src/types/runtime.js.map +0 -1
  285. package/dist/src/webpack.js.map +0 -1
@@ -0,0 +1,2375 @@
1
+ # @module-federation/enhanced
2
+
3
+ ## 2.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(enhanced): fix missed deps
8
+ - @module-federation/rspack@2.2.1
9
+ - @module-federation/webpack-bundler-runtime@2.2.1
10
+ - @module-federation/sdk@2.2.1
11
+ - @module-federation/runtime-tools@2.2.1
12
+ - @module-federation/managers@2.2.1
13
+ - @module-federation/manifest@2.2.1
14
+ - @module-federation/dts-plugin@2.2.1
15
+ - @module-federation/bridge-react-webpack-plugin@2.2.1
16
+ - @module-federation/data-prefetch@2.2.1
17
+ - @module-federation/error-codes@2.2.1
18
+ - @module-federation/inject-external-runtime-core-plugin@2.2.1
19
+ - @module-federation/cli@2.2.1
20
+
21
+ ## 2.2.0
22
+
23
+ ### Patch Changes
24
+
25
+ - 90758e9: Remove the unused `ChildCompilationRuntimePlugin` implementation from the
26
+ enhanced runtime container internals.
27
+ - Updated dependencies [c856ec1]
28
+ - Updated dependencies [12240bb]
29
+ - Updated dependencies [e5dd6ef]
30
+ - Updated dependencies [079aecd]
31
+ - Updated dependencies [83662e3]
32
+ - @module-federation/sdk@2.2.0
33
+ - @module-federation/dts-plugin@2.2.0
34
+ - @module-federation/rspack@2.2.0
35
+ - @module-federation/bridge-react-webpack-plugin@2.2.0
36
+ - @module-federation/cli@2.2.0
37
+ - @module-federation/data-prefetch@2.2.0
38
+ - @module-federation/managers@2.2.0
39
+ - @module-federation/manifest@2.2.0
40
+ - @module-federation/runtime-tools@2.2.0
41
+ - @module-federation/inject-external-runtime-core-plugin@2.2.0
42
+ - @module-federation/error-codes@2.2.0
43
+
44
+ ## 2.1.0
45
+
46
+ ### Patch Changes
47
+
48
+ - 987716a: fix(enhanced): correct the condition for provideExternalRuntime field
49
+ - 0172491: Fix federation runtime bootstrap to rehydrate bundler runtime in workers.
50
+ - a0faa70: Security fix: bump Ajv usage to 8.18.0 to prevent CVE-2025-69873 from affecting `schema-utils` validation paths.
51
+ - 918294f: Add runtime-safe access helpers for webpack require, webpack share-scope globals, and ignored dynamic imports, and migrate core/node runtime loaders to use these helpers. The helpers are exposed via a standalone `@module-federation/sdk/bundler` entrypoint so they can be built and consumed independently from the SDK main index bundle.
52
+ - Updated dependencies [6235711]
53
+ - Updated dependencies [5a4f503]
54
+ - Updated dependencies [918294f]
55
+ - Updated dependencies [24bf84d]
56
+ - Updated dependencies [918294f]
57
+ - Updated dependencies [5954fe7]
58
+ - Updated dependencies [918294f]
59
+ - @module-federation/dts-plugin@2.1.0
60
+ - @module-federation/manifest@2.1.0
61
+ - @module-federation/error-codes@2.1.0
62
+ - @module-federation/cli@2.1.0
63
+ - @module-federation/managers@2.1.0
64
+ - @module-federation/sdk@2.1.0
65
+ - @module-federation/runtime-tools@2.1.0
66
+ - @module-federation/data-prefetch@2.1.0
67
+ - @module-federation/rspack@2.1.0
68
+ - @module-federation/inject-external-runtime-core-plugin@2.1.0
69
+ - @module-federation/bridge-react-webpack-plugin@2.1.0
70
+
71
+ ## 2.0.1
72
+
73
+ ### Patch Changes
74
+
75
+ - Updated dependencies [28a2db4]
76
+ - @module-federation/dts-plugin@2.0.1
77
+ - @module-federation/cli@2.0.1
78
+ - @module-federation/manifest@2.0.1
79
+ - @module-federation/rspack@2.0.1
80
+ - @module-federation/data-prefetch@2.0.1
81
+ - @module-federation/runtime-tools@2.0.1
82
+ - @module-federation/inject-external-runtime-core-plugin@2.0.1
83
+ - @module-federation/sdk@2.0.1
84
+ - @module-federation/managers@2.0.1
85
+ - @module-federation/bridge-react-webpack-plugin@2.0.1
86
+ - @module-federation/error-codes@2.0.1
87
+
88
+ ## 2.0.0
89
+
90
+ ### Patch Changes
91
+
92
+ - Updated dependencies [2bd445d]
93
+ - @module-federation/rspack@2.0.0
94
+ - @module-federation/sdk@2.0.0
95
+ - @module-federation/runtime-tools@2.0.0
96
+ - @module-federation/managers@2.0.0
97
+ - @module-federation/manifest@2.0.0
98
+ - @module-federation/dts-plugin@2.0.0
99
+ - @module-federation/bridge-react-webpack-plugin@2.0.0
100
+ - @module-federation/data-prefetch@2.0.0
101
+ - @module-federation/error-codes@2.0.0
102
+ - @module-federation/inject-external-runtime-core-plugin@2.0.0
103
+ - @module-federation/cli@2.0.0
104
+
105
+ ## 0.24.1
106
+
107
+ ### Patch Changes
108
+
109
+ - @module-federation/data-prefetch@0.24.1
110
+ - @module-federation/dts-plugin@0.24.1
111
+ - @module-federation/runtime-tools@0.24.1
112
+ - @module-federation/rspack@0.24.1
113
+ - @module-federation/inject-external-runtime-core-plugin@0.24.1
114
+ - @module-federation/sdk@0.24.1
115
+ - @module-federation/managers@0.24.1
116
+ - @module-federation/manifest@0.24.1
117
+ - @module-federation/bridge-react-webpack-plugin@0.24.1
118
+ - @module-federation/error-codes@0.24.1
119
+ - @module-federation/cli@0.24.1
120
+
121
+ ## 0.24.0
122
+
123
+ ### Patch Changes
124
+
125
+ - c3c068e: chore(enhanced): upgrade node@20
126
+ - Updated dependencies [6c45347]
127
+ - @module-federation/manifest@0.24.0
128
+ - @module-federation/rspack@0.24.0
129
+ - @module-federation/sdk@0.24.0
130
+ - @module-federation/runtime-tools@0.24.0
131
+ - @module-federation/managers@0.24.0
132
+ - @module-federation/dts-plugin@0.24.0
133
+ - @module-federation/bridge-react-webpack-plugin@0.24.0
134
+ - @module-federation/data-prefetch@0.24.0
135
+ - @module-federation/error-codes@0.24.0
136
+ - @module-federation/inject-external-runtime-core-plugin@0.24.0
137
+ - @module-federation/cli@0.24.0
138
+
139
+ ## 0.23.0
140
+
141
+ ### Patch Changes
142
+
143
+ - Updated dependencies [9373882]
144
+ - @module-federation/dts-plugin@0.23.0
145
+ - @module-federation/cli@0.23.0
146
+ - @module-federation/manifest@0.23.0
147
+ - @module-federation/rspack@0.23.0
148
+ - @module-federation/data-prefetch@0.23.0
149
+ - @module-federation/runtime-tools@0.23.0
150
+ - @module-federation/inject-external-runtime-core-plugin@0.23.0
151
+ - @module-federation/sdk@0.23.0
152
+ - @module-federation/managers@0.23.0
153
+ - @module-federation/bridge-react-webpack-plugin@0.23.0
154
+ - @module-federation/error-codes@0.23.0
155
+
156
+ ## 0.22.1
157
+
158
+ ### Patch Changes
159
+
160
+ - @module-federation/rspack@0.22.1
161
+ - @module-federation/sdk@0.22.1
162
+ - @module-federation/runtime-tools@0.22.1
163
+ - @module-federation/managers@0.22.1
164
+ - @module-federation/manifest@0.22.1
165
+ - @module-federation/dts-plugin@0.22.1
166
+ - @module-federation/bridge-react-webpack-plugin@0.22.1
167
+ - @module-federation/data-prefetch@0.22.1
168
+ - @module-federation/error-codes@0.22.1
169
+ - @module-federation/inject-external-runtime-core-plugin@0.22.1
170
+ - @module-federation/cli@0.22.1
171
+
172
+ ## 0.22.0
173
+
174
+ ### Patch Changes
175
+
176
+ - @module-federation/rspack@0.22.0
177
+ - @module-federation/sdk@0.22.0
178
+ - @module-federation/runtime-tools@0.22.0
179
+ - @module-federation/managers@0.22.0
180
+ - @module-federation/manifest@0.22.0
181
+ - @module-federation/dts-plugin@0.22.0
182
+ - @module-federation/bridge-react-webpack-plugin@0.22.0
183
+ - @module-federation/data-prefetch@0.22.0
184
+ - @module-federation/error-codes@0.22.0
185
+ - @module-federation/inject-external-runtime-core-plugin@0.22.0
186
+ - @module-federation/cli@0.22.0
187
+
188
+ ## 0.21.6
189
+
190
+ ### Patch Changes
191
+
192
+ - @module-federation/rspack@0.21.6
193
+ - @module-federation/sdk@0.21.6
194
+ - @module-federation/runtime-tools@0.21.6
195
+ - @module-federation/managers@0.21.6
196
+ - @module-federation/manifest@0.21.6
197
+ - @module-federation/dts-plugin@0.21.6
198
+ - @module-federation/bridge-react-webpack-plugin@0.21.6
199
+ - @module-federation/data-prefetch@0.21.6
200
+ - @module-federation/error-codes@0.21.6
201
+ - @module-federation/inject-external-runtime-core-plugin@0.21.6
202
+ - @module-federation/cli@0.21.6
203
+
204
+ ## 0.21.5
205
+
206
+ ### Patch Changes
207
+
208
+ - Updated dependencies [f8ff0d8]
209
+ - Updated dependencies [9dfcbb3]
210
+ - Updated dependencies [2fc4050]
211
+ - Updated dependencies [35c3695]
212
+ - Updated dependencies [94d8868]
213
+ - @module-federation/dts-plugin@0.21.5
214
+ - @module-federation/manifest@0.21.5
215
+ - @module-federation/cli@0.21.5
216
+ - @module-federation/sdk@0.21.5
217
+ - @module-federation/rspack@0.21.5
218
+ - @module-federation/bridge-react-webpack-plugin@0.21.5
219
+ - @module-federation/data-prefetch@0.21.5
220
+ - @module-federation/managers@0.21.5
221
+ - @module-federation/runtime-tools@0.21.5
222
+ - @module-federation/inject-external-runtime-core-plugin@0.21.5
223
+ - @module-federation/error-codes@0.21.5
224
+
225
+ ## 0.21.4
226
+
227
+ ### Patch Changes
228
+
229
+ - a50e068: refactor(manifest): collect assets from build hook
230
+ - Updated dependencies [d729167]
231
+ - Updated dependencies [a50e068]
232
+ - @module-federation/dts-plugin@0.21.4
233
+ - @module-federation/manifest@0.21.4
234
+ - @module-federation/rspack@0.21.4
235
+ - @module-federation/sdk@0.21.4
236
+ - @module-federation/cli@0.21.4
237
+ - @module-federation/bridge-react-webpack-plugin@0.21.4
238
+ - @module-federation/data-prefetch@0.21.4
239
+ - @module-federation/managers@0.21.4
240
+ - @module-federation/runtime-tools@0.21.4
241
+ - @module-federation/inject-external-runtime-core-plugin@0.21.4
242
+ - @module-federation/error-codes@0.21.4
243
+
244
+ ## 0.21.3
245
+
246
+ ### Patch Changes
247
+
248
+ - @module-federation/data-prefetch@0.21.3
249
+ - @module-federation/dts-plugin@0.21.3
250
+ - @module-federation/runtime-tools@0.21.3
251
+ - @module-federation/rspack@0.21.3
252
+ - @module-federation/inject-external-runtime-core-plugin@0.21.3
253
+ - @module-federation/sdk@0.21.3
254
+ - @module-federation/managers@0.21.3
255
+ - @module-federation/manifest@0.21.3
256
+ - @module-federation/bridge-react-webpack-plugin@0.21.3
257
+ - @module-federation/error-codes@0.21.3
258
+ - @module-federation/cli@0.21.3
259
+
260
+ ## 0.21.2
261
+
262
+ ### Patch Changes
263
+
264
+ - Updated dependencies [4cada54]
265
+ - @module-federation/dts-plugin@0.21.2
266
+ - @module-federation/cli@0.21.2
267
+ - @module-federation/manifest@0.21.2
268
+ - @module-federation/rspack@0.21.2
269
+ - @module-federation/sdk@0.21.2
270
+ - @module-federation/runtime-tools@0.21.2
271
+ - @module-federation/managers@0.21.2
272
+ - @module-federation/bridge-react-webpack-plugin@0.21.2
273
+ - @module-federation/data-prefetch@0.21.2
274
+ - @module-federation/error-codes@0.21.2
275
+ - @module-federation/inject-external-runtime-core-plugin@0.21.2
276
+
277
+ ## 0.21.1
278
+
279
+ ### Patch Changes
280
+
281
+ - @module-federation/rspack@0.21.1
282
+ - @module-federation/sdk@0.21.1
283
+ - @module-federation/runtime-tools@0.21.1
284
+ - @module-federation/managers@0.21.1
285
+ - @module-federation/manifest@0.21.1
286
+ - @module-federation/dts-plugin@0.21.1
287
+ - @module-federation/bridge-react-webpack-plugin@0.21.1
288
+ - @module-federation/data-prefetch@0.21.1
289
+ - @module-federation/error-codes@0.21.1
290
+ - @module-federation/inject-external-runtime-core-plugin@0.21.1
291
+ - @module-federation/cli@0.21.1
292
+
293
+ ## 0.21.0
294
+
295
+ ### Patch Changes
296
+
297
+ - Updated dependencies [d1e90a4]
298
+ - Updated dependencies [d225658]
299
+ - @module-federation/sdk@0.21.0
300
+ - @module-federation/bridge-react-webpack-plugin@0.21.0
301
+ - @module-federation/cli@0.21.0
302
+ - @module-federation/data-prefetch@0.21.0
303
+ - @module-federation/dts-plugin@0.21.0
304
+ - @module-federation/managers@0.21.0
305
+ - @module-federation/manifest@0.21.0
306
+ - @module-federation/rspack@0.21.0
307
+ - @module-federation/runtime-tools@0.21.0
308
+ - @module-federation/inject-external-runtime-core-plugin@0.21.0
309
+ - @module-federation/error-codes@0.21.0
310
+
311
+ ## 0.20.0
312
+
313
+ ### Minor Changes
314
+
315
+ - c66c21e: rename the share resolver option to `allowNodeModulesSuffixMatch` and update generated schemas, declarations, and tests to use the new name.
316
+
317
+ ### Patch Changes
318
+
319
+ - dcc290e: chore(enhanced): update schema
320
+ - 2eea0d0: feat(enhanced): runtimePlugins support pass params
321
+ - 22b9ff9: fix(enhanced): Populate `buildMeta` and `buildInfo` on `ConsumeSharedPlugin` using fallbacks
322
+ - 8a80605: fix(enhanced): Mark all exports as provided, to avoid webpack's export analysis from marking them as unused since we copy buildMeta
323
+ - 8038f61: fix(webpack-bundler-runtime): align with rspack bundler runtime variable
324
+ - Updated dependencies [1e96509]
325
+ - Updated dependencies [c171400]
326
+ - Updated dependencies [37346d4]
327
+ - Updated dependencies [639a83b]
328
+ - @module-federation/dts-plugin@0.20.0
329
+ - @module-federation/manifest@0.20.0
330
+ - @module-federation/sdk@0.20.0
331
+ - @module-federation/cli@0.20.0
332
+ - @module-federation/data-prefetch@0.20.0
333
+ - @module-federation/error-codes@0.20.0
334
+ - @module-federation/managers@0.20.0
335
+ - @module-federation/rspack@0.20.0
336
+ - @module-federation/inject-external-runtime-core-plugin@0.20.0
337
+ - @module-federation/runtime-tools@0.20.0
338
+ - @module-federation/bridge-react-webpack-plugin@0.20.0
339
+
340
+ ## 0.19.1
341
+
342
+ ### Patch Changes
343
+
344
+ - Updated dependencies
345
+ - @module-federation/sdk@0.19.1
346
+ - @module-federation/bridge-react-webpack-plugin@0.19.1
347
+ - @module-federation/cli@0.19.1
348
+ - @module-federation/data-prefetch@0.19.1
349
+ - @module-federation/dts-plugin@0.19.1
350
+ - @module-federation/managers@0.19.1
351
+ - @module-federation/manifest@0.19.1
352
+ - @module-federation/rspack@0.19.1
353
+ - @module-federation/runtime-tools@0.19.1
354
+ - @module-federation/inject-external-runtime-core-plugin@0.19.1
355
+ - @module-federation/error-codes@0.19.1
356
+
357
+ ## 0.19.0
358
+
359
+ ### Patch Changes
360
+
361
+ - @module-federation/rspack@0.19.0
362
+ - @module-federation/sdk@0.19.0
363
+ - @module-federation/runtime-tools@0.19.0
364
+ - @module-federation/managers@0.19.0
365
+ - @module-federation/manifest@0.19.0
366
+ - @module-federation/dts-plugin@0.19.0
367
+ - @module-federation/bridge-react-webpack-plugin@0.19.0
368
+ - @module-federation/data-prefetch@0.19.0
369
+ - @module-federation/error-codes@0.19.0
370
+ - @module-federation/inject-external-runtime-core-plugin@0.19.0
371
+ - @module-federation/cli@0.19.0
372
+
373
+ ## 0.18.4
374
+
375
+ ### Patch Changes
376
+
377
+ - Updated dependencies [8061f8c]
378
+ - @module-federation/inject-external-runtime-core-plugin@0.18.4
379
+ - @module-federation/data-prefetch@0.18.4
380
+ - @module-federation/runtime-tools@0.18.4
381
+ - @module-federation/error-codes@0.18.4
382
+ - @module-federation/managers@0.18.4
383
+ - @module-federation/manifest@0.18.4
384
+ - @module-federation/rspack@0.18.4
385
+ - @module-federation/cli@0.18.4
386
+ - @module-federation/sdk@0.18.4
387
+ - @module-federation/dts-plugin@0.18.4
388
+ - @module-federation/bridge-react-webpack-plugin@0.18.4
389
+
390
+ ## 0.18.3
391
+
392
+ ### Patch Changes
393
+
394
+ - @module-federation/rspack@0.18.3
395
+ - @module-federation/sdk@0.18.3
396
+ - @module-federation/runtime-tools@0.18.3
397
+ - @module-federation/managers@0.18.3
398
+ - @module-federation/manifest@0.18.3
399
+ - @module-federation/dts-plugin@0.18.3
400
+ - @module-federation/bridge-react-webpack-plugin@0.18.3
401
+ - @module-federation/data-prefetch@0.18.3
402
+ - @module-federation/error-codes@0.18.3
403
+ - @module-federation/inject-external-runtime-core-plugin@0.18.3
404
+ - @module-federation/cli@0.18.3
405
+
406
+ ## 0.18.2
407
+
408
+ ### Patch Changes
409
+
410
+ - 756750e: test: add test coverage for ConsumeSharedPlugin
411
+ - Add 70+ tests for createConsumeSharedModule method covering all critical business logic
412
+ - Implement tests for import resolution logic including error handling and direct fallback regex matching
413
+ - Add requiredVersion resolution tests for package name extraction and version resolution
414
+ - Implement include/exclude version filtering tests with fallback version support
415
+ - Add singleton warning generation tests for version filters as specified
416
+ - Implement package.json reading error scenarios and edge case handling
417
+ - Add apply method tests for plugin registration logic and hook setup
418
+ - Achieve test coverage parity with ProvideSharedPlugin (70+ tests each)
419
+
420
+ - 756750e: test: add test coverage for ProvideSharedPlugin
421
+ - Add 73 tests covering all critical business logic and edge cases
422
+ - Implement complete shouldProvideSharedModule method coverage (15 tests) for version filtering with semver validation
423
+ - Add provideSharedModule method tests (16 tests) covering version resolution, request pattern filtering, and warning generation
424
+ - Implement module matching and resolution stage tests (20 tests) for multi-stage resolution logic
425
+ - Validate business rules: warnings only for version filters with singleton, not request filters
426
+ - Cover all critical private methods with proper TypeScript handling using @ts-ignore
427
+ - Fix container utils mock for dependency factory operations
428
+ - Add performance and memory usage tests for large-scale scenarios
429
+
430
+ - 756750e: test: add test coverage for ConsumeSharedPlugin and ProvideSharedPlugin
431
+ - Add 70+ tests for ConsumeSharedPlugin covering all critical business logic including multi-stage module resolution, import resolution logic, version filtering, and error handling
432
+ - Add 73 tests for ProvideSharedPlugin covering shouldProvideSharedModule method, provideSharedModule method, module matching, and resolution stages
433
+ - Fix minor bug in ProvideSharedPlugin where originalRequestString was used instead of modulePathAfterNodeModules for prefix matching
434
+ - Add layer property to resolved provide map entries for better layer support
435
+ - Improve test infrastructure stability and CI reliability with better assertions and mocking
436
+
437
+ - Updated dependencies [297c9a7]
438
+ - @module-federation/dts-plugin@0.18.2
439
+ - @module-federation/cli@0.18.2
440
+ - @module-federation/manifest@0.18.2
441
+ - @module-federation/rspack@0.18.2
442
+ - @module-federation/data-prefetch@0.18.2
443
+ - @module-federation/runtime-tools@0.18.2
444
+ - @module-federation/inject-external-runtime-core-plugin@0.18.2
445
+ - @module-federation/sdk@0.18.2
446
+ - @module-federation/managers@0.18.2
447
+ - @module-federation/bridge-react-webpack-plugin@0.18.2
448
+ - @module-federation/error-codes@0.18.2
449
+
450
+ ## 0.18.1
451
+
452
+ ### Patch Changes
453
+
454
+ - 0bf3a3a: test: add comprehensive test coverage for request pattern filtering
455
+ - Add integration tests for request pattern filtering in provide-filters test case
456
+ - Add test cases verifying modules match/don't match request include filters
457
+ - Add unit tests for `extractPathAfterNodeModules` utility function
458
+ - Add unit tests for `createLookupKeyForSharing` utility function
459
+ - Add test files for request filtering scenarios (components/Button.js, utils/helper.js, etc.)
460
+
461
+ This enhances test coverage to ensure request pattern filtering functionality works correctly and prevents regressions.
462
+
463
+ - Updated dependencies [0bf3a3a]
464
+ - Updated dependencies [9f16eac]
465
+ - @module-federation/sdk@0.18.1
466
+ - @module-federation/manifest@0.18.1
467
+ - @module-federation/bridge-react-webpack-plugin@0.18.1
468
+ - @module-federation/cli@0.18.1
469
+ - @module-federation/data-prefetch@0.18.1
470
+ - @module-federation/dts-plugin@0.18.1
471
+ - @module-federation/managers@0.18.1
472
+ - @module-federation/rspack@0.18.1
473
+ - @module-federation/runtime-tools@0.18.1
474
+ - @module-federation/inject-external-runtime-core-plugin@0.18.1
475
+ - @module-federation/error-codes@0.18.1
476
+
477
+ ## 0.18.0
478
+
479
+ ### Minor Changes
480
+
481
+ - 0ab51b8: fix(enhanced): add module factory for EntryDependency when entry is empty
482
+ - bind normalModuleFactory for EntryDependency when no moduleFactory is bound for EntryDependency
483
+
484
+ - 98a29c3: feat(enhanced): add include/exclude filtering for shared modules
485
+ - Add include/exclude filtering for both ConsumeSharedPlugin and ProvideSharedPlugin
486
+ - Support version-based filtering using semantic version ranges (e.g., `include: { version: '^18.0.0' }`)
487
+ - Support request pattern filtering with string and RegExp (e.g., `include: { request: /^Button/ }`)
488
+ - Add singleton warnings when filters are used to prevent multiple shared instances
489
+ - Enhanced type definitions and JSON schema validation for filtering options
490
+
491
+ ### Patch Changes
492
+
493
+ - Updated dependencies [08f089a]
494
+ - Updated dependencies [f6381e6]
495
+ - @module-federation/dts-plugin@0.18.0
496
+ - @module-federation/sdk@0.18.0
497
+ - @module-federation/data-prefetch@0.18.0
498
+ - @module-federation/runtime-tools@0.18.0
499
+ - @module-federation/cli@0.18.0
500
+ - @module-federation/manifest@0.18.0
501
+ - @module-federation/rspack@0.18.0
502
+ - @module-federation/bridge-react-webpack-plugin@0.18.0
503
+ - @module-federation/managers@0.18.0
504
+ - @module-federation/inject-external-runtime-core-plugin@0.18.0
505
+ - @module-federation/error-codes@0.18.0
506
+
507
+ ## 0.17.1
508
+
509
+ ### Patch Changes
510
+
511
+ - bc3bc10: enhance HoistContainerReferencesPlugin for better module hoisting
512
+ - Separate handling for container, federation, and remote dependencies
513
+ - Improved support for `runtimeChunk: 'single'` configuration
514
+ - Proper remote module hoisting using the new `addRemoteDependency` hook
515
+ - Simplified cleanup logic for better performance
516
+ - Changed runtime chunk detection to include all chunks with runtime (not just entry chunks)
517
+ - Added comprehensive unit tests for the plugin functionality
518
+
519
+ - 7000c1f: fix: BuildVersion now correctly reads from project's package.json
520
+ - Fixed getBuildVersion() to accept optional root parameter for correct directory resolution
521
+ - Updated StatsManager to use compiler.context when determining build version
522
+ - Ensures buildVersion in mf-manifest.json matches the project's package.json version
523
+ - Resolves issue #3835 where buildVersion was reading from wrong package.json location
524
+
525
+ - 4ffefbe: refactor: rename container hooks for clarity and consistency
526
+ - Renamed `addContainerEntryModule` to `addContainerEntryDependency`
527
+ - Renamed `addFederationRuntimeModule` to `addFederationRuntimeDependency`
528
+ - Added new `addRemoteDependency` hook for remote module tracking
529
+ - Updated all hook usages across the codebase to use new names
530
+ - This is an internal refactoring with no breaking changes to external APIs
531
+
532
+ - a7cf276: chore: upgrade NX to 21.2.3, Storybook to 9.0.9, and TypeScript to 5.8.3
533
+ - Upgraded NX from 21.0.3 to 21.2.3 with workspace configuration updates
534
+ - Migrated Storybook from 8.3.5 to 9.0.9 with updated configurations and automigrations
535
+ - Upgraded TypeScript from 5.7.3 to 5.8.3 with compatibility fixes
536
+ - Fixed package exports and type declaration paths across all packages
537
+ - Resolved module resolution issues and TypeScript compatibility problems
538
+ - Updated build configurations and dependencies to support latest versions
539
+
540
+ - 1825b9d: fix(enhanced): add runtime safety checks to prevent errors
541
+ - Add typeof check for prevStartup function in EmbedFederationRuntimeModule to prevent calling undefined function
542
+ - Add typeof check for **webpack_require**.x in StartupHelpers to prevent calling undefined function
543
+ - Add warning logs when these functions are missing to help developers debug issues
544
+
545
+ - 8727aa3: fix(enhanced): compilerInstance type should be string not enum
546
+ - Updated dependencies [7000c1f]
547
+ - Updated dependencies [2428be0]
548
+ - Updated dependencies [a7cf276]
549
+ - @module-federation/manifest@0.17.1
550
+ - @module-federation/managers@0.17.1
551
+ - @module-federation/cli@0.17.1
552
+ - @module-federation/error-codes@0.17.1
553
+ - @module-federation/data-prefetch@0.17.1
554
+ - @module-federation/rspack@0.17.1
555
+ - @module-federation/runtime-tools@0.17.1
556
+ - @module-federation/sdk@0.17.1
557
+ - @module-federation/dts-plugin@0.17.1
558
+ - @module-federation/bridge-react-webpack-plugin@0.17.1
559
+ - @module-federation/inject-external-runtime-core-plugin@0.17.1
560
+
561
+ ## 0.17.0
562
+
563
+ ### Patch Changes
564
+
565
+ - Updated dependencies [3f736b6]
566
+ - Updated dependencies [e0ceca6]
567
+ - Updated dependencies [1d691ef]
568
+ - Updated dependencies [60e4df1]
569
+ - @module-federation/data-prefetch@0.17.0
570
+ - @module-federation/cli@0.17.0
571
+ - @module-federation/dts-plugin@0.17.0
572
+ - @module-federation/runtime-tools@0.17.0
573
+ - @module-federation/manifest@0.17.0
574
+ - @module-federation/rspack@0.17.0
575
+ - @module-federation/inject-external-runtime-core-plugin@0.17.0
576
+ - @module-federation/sdk@0.17.0
577
+ - @module-federation/managers@0.17.0
578
+ - @module-federation/bridge-react-webpack-plugin@0.17.0
579
+ - @module-federation/error-codes@0.17.0
580
+
581
+ ## 0.16.0
582
+
583
+ ### Patch Changes
584
+
585
+ - Updated dependencies [1485fcf]
586
+ - @module-federation/dts-plugin@0.16.0
587
+ - @module-federation/sdk@0.16.0
588
+ - @module-federation/cli@0.16.0
589
+ - @module-federation/manifest@0.16.0
590
+ - @module-federation/rspack@0.16.0
591
+ - @module-federation/bridge-react-webpack-plugin@0.16.0
592
+ - @module-federation/data-prefetch@0.16.0
593
+ - @module-federation/managers@0.16.0
594
+ - @module-federation/runtime-tools@0.16.0
595
+ - @module-federation/inject-external-runtime-core-plugin@0.16.0
596
+ - @module-federation/error-codes@0.16.0
597
+
598
+ ## 0.15.0
599
+
600
+ ### Patch Changes
601
+
602
+ - ad446af: support `||` pipes in semver parsing
603
+ - Updated dependencies [c343589]
604
+ - Updated dependencies [f432619]
605
+ - Updated dependencies [b5e1640]
606
+ - @module-federation/dts-plugin@0.15.0
607
+ - @module-federation/manifest@0.15.0
608
+ - @module-federation/cli@0.15.0
609
+ - @module-federation/rspack@0.15.0
610
+ - @module-federation/sdk@0.15.0
611
+ - @module-federation/runtime-tools@0.15.0
612
+ - @module-federation/managers@0.15.0
613
+ - @module-federation/bridge-react-webpack-plugin@0.15.0
614
+ - @module-federation/data-prefetch@0.15.0
615
+ - @module-federation/error-codes@0.15.0
616
+ - @module-federation/inject-external-runtime-core-plugin@0.15.0
617
+
618
+ ## 0.14.3
619
+
620
+ ### Patch Changes
621
+
622
+ - @module-federation/rspack@0.14.3
623
+ - @module-federation/sdk@0.14.3
624
+ - @module-federation/runtime-tools@0.14.3
625
+ - @module-federation/managers@0.14.3
626
+ - @module-federation/manifest@0.14.3
627
+ - @module-federation/dts-plugin@0.14.3
628
+ - @module-federation/bridge-react-webpack-plugin@0.14.3
629
+ - @module-federation/data-prefetch@0.14.3
630
+ - @module-federation/error-codes@0.14.3
631
+ - @module-federation/inject-external-runtime-core-plugin@0.14.3
632
+ - @module-federation/cli@0.14.3
633
+
634
+ ## 0.14.2
635
+
636
+ ### Patch Changes
637
+
638
+ - @module-federation/rspack@0.14.2
639
+ - @module-federation/sdk@0.14.2
640
+ - @module-federation/runtime-tools@0.14.2
641
+ - @module-federation/managers@0.14.2
642
+ - @module-federation/manifest@0.14.2
643
+ - @module-federation/dts-plugin@0.14.2
644
+ - @module-federation/bridge-react-webpack-plugin@0.14.2
645
+ - @module-federation/data-prefetch@0.14.2
646
+ - @module-federation/error-codes@0.14.2
647
+ - @module-federation/inject-external-runtime-core-plugin@0.14.2
648
+ - @module-federation/cli@0.14.2
649
+
650
+ ## 0.14.1
651
+
652
+ ### Patch Changes
653
+
654
+ - Updated dependencies [0c68c2f]
655
+ - @module-federation/cli@0.14.1
656
+ - @module-federation/rspack@0.14.1
657
+ - @module-federation/sdk@0.14.1
658
+ - @module-federation/runtime-tools@0.14.1
659
+ - @module-federation/managers@0.14.1
660
+ - @module-federation/manifest@0.14.1
661
+ - @module-federation/dts-plugin@0.14.1
662
+ - @module-federation/bridge-react-webpack-plugin@0.14.1
663
+ - @module-federation/data-prefetch@0.14.1
664
+ - @module-federation/error-codes@0.14.1
665
+ - @module-federation/inject-external-runtime-core-plugin@0.14.1
666
+
667
+ ## 0.14.0
668
+
669
+ ### Minor Changes
670
+
671
+ - 82b8cac: Updated ModuleFederationPlugin to enhance configuration capabilities and target environment identification.
672
+ - Introduced `definePluginOptions` to manage DefinePlugin settings.
673
+ - Added `FEDERATION_OPTIMIZE_NO_SNAPSHOT_PLUGIN` to handle disabling of snapshot optimizations via experiments.
674
+ - Implemented environment target detection (`web` or `node`) based on compiler options and experiments.
675
+ - Consolidated DefinePlugin application with the newly constructed `definePluginOptions`.
676
+
677
+ ### Patch Changes
678
+
679
+ - 0eb6697: fix(dts-plugin): add dynamic-remote-type-hints-plugin to runtimePlugins if not disable
680
+ - Updated dependencies [82b8cac]
681
+ - Updated dependencies [0eb6697]
682
+ - Updated dependencies [82b8cac]
683
+ - @module-federation/sdk@0.14.0
684
+ - @module-federation/dts-plugin@0.14.0
685
+ - @module-federation/rspack@0.14.0
686
+ - @module-federation/bridge-react-webpack-plugin@0.14.0
687
+ - @module-federation/cli@0.14.0
688
+ - @module-federation/data-prefetch@0.14.0
689
+ - @module-federation/managers@0.14.0
690
+ - @module-federation/manifest@0.14.0
691
+ - @module-federation/runtime-tools@0.14.0
692
+ - @module-federation/inject-external-runtime-core-plugin@0.14.0
693
+ - @module-federation/error-codes@0.14.0
694
+
695
+ ## 0.13.1
696
+
697
+ ### Patch Changes
698
+
699
+ - Updated dependencies [f323928]
700
+ - Updated dependencies [129dac6]
701
+ - @module-federation/rspack@0.13.1
702
+ - @module-federation/managers@0.13.1
703
+ - @module-federation/dts-plugin@0.13.1
704
+ - @module-federation/manifest@0.13.1
705
+ - @module-federation/cli@0.13.1
706
+ - @module-federation/sdk@0.13.1
707
+ - @module-federation/runtime-tools@0.13.1
708
+ - @module-federation/bridge-react-webpack-plugin@0.13.1
709
+ - @module-federation/data-prefetch@0.13.1
710
+ - @module-federation/error-codes@0.13.1
711
+ - @module-federation/inject-external-runtime-core-plugin@0.13.1
712
+
713
+ ## 0.13.0
714
+
715
+ ### Patch Changes
716
+
717
+ - 9efb9b9: fix(enhanced): apply getPublicPath only if exposes is set
718
+ - 38f324f: Disable live bindings on cjs builds of the runtime packages
719
+ - Updated dependencies [e9a0681]
720
+ - Updated dependencies [92882ec]
721
+ - Updated dependencies [9efb9b9]
722
+ - Updated dependencies [38f324f]
723
+ - @module-federation/cli@0.13.0
724
+ - @module-federation/manifest@0.13.0
725
+ - @module-federation/rspack@0.13.0
726
+ - @module-federation/inject-external-runtime-core-plugin@0.13.0
727
+ - @module-federation/bridge-react-webpack-plugin@0.13.0
728
+ - @module-federation/data-prefetch@0.13.0
729
+ - @module-federation/runtime-tools@0.13.0
730
+ - @module-federation/error-codes@0.13.0
731
+ - @module-federation/dts-plugin@0.13.0
732
+ - @module-federation/managers@0.13.0
733
+ - @module-federation/sdk@0.13.0
734
+
735
+ ## 0.12.0
736
+
737
+ ### Minor Changes
738
+
739
+ - f4fb242: Enhancements to layer handling in module federation tests and configuration.
740
+ - Introduced new layer configurations to support more nuanced federation scenarios that consider multiple layers of dependency.
741
+
742
+ - f4fb242: support request option on ConsumeSharePlugin. Allows matching requests like the object key of shared does
743
+ - c399b9a: Switch to esm modules by default
744
+ - f4fb242: Support share layers and multiple share scopes
745
+ - f4fb242: Layer support for Provide Share Plugin
746
+
747
+ ### Patch Changes
748
+
749
+ - f4fb242: Refactored module sharing configuration handling.
750
+ - Simplified plugin schema for better maintainability
751
+ - Improved layer-based module sharing test coverage
752
+ - Removed redundant plugin exports
753
+
754
+ - Updated dependencies [ebef2d0]
755
+ - Updated dependencies [c399b9a]
756
+ - Updated dependencies [451b4f5]
757
+ - Updated dependencies [ef96c4d]
758
+ - Updated dependencies [f4fb242]
759
+ - @module-federation/dts-plugin@0.12.0
760
+ - @module-federation/inject-external-runtime-core-plugin@0.12.0
761
+ - @module-federation/data-prefetch@0.12.0
762
+ - @module-federation/runtime-tools@0.12.0
763
+ - @module-federation/sdk@0.12.0
764
+ - @module-federation/manifest@0.12.0
765
+ - @module-federation/managers@0.12.0
766
+ - @module-federation/cli@0.12.0
767
+ - @module-federation/rspack@0.12.0
768
+ - @module-federation/bridge-react-webpack-plugin@0.12.0
769
+ - @module-federation/error-codes@0.12.0
770
+
771
+ ## 0.11.4
772
+
773
+ ### Patch Changes
774
+
775
+ - ebe7d89: remove normal module replacement on federation runtime. rely on alias instead
776
+ - Updated dependencies [64a2bc1]
777
+ - Updated dependencies [ed8bda3]
778
+ - Updated dependencies [c14842f]
779
+ - @module-federation/sdk@0.11.4
780
+ - @module-federation/dts-plugin@0.11.4
781
+ - @module-federation/bridge-react-webpack-plugin@0.11.4
782
+ - @module-federation/cli@0.11.4
783
+ - @module-federation/data-prefetch@0.11.4
784
+ - @module-federation/managers@0.11.4
785
+ - @module-federation/manifest@0.11.4
786
+ - @module-federation/rspack@0.11.4
787
+ - @module-federation/runtime-tools@0.11.4
788
+ - @module-federation/inject-external-runtime-core-plugin@0.11.4
789
+ - @module-federation/error-codes@0.11.4
790
+
791
+ ## 0.11.3
792
+
793
+ ### Patch Changes
794
+
795
+ - Updated dependencies [e2c0a89]
796
+ - @module-federation/dts-plugin@0.11.3
797
+ - @module-federation/cli@0.11.3
798
+ - @module-federation/manifest@0.11.3
799
+ - @module-federation/rspack@0.11.3
800
+ - @module-federation/data-prefetch@0.11.3
801
+ - @module-federation/runtime-tools@0.11.3
802
+ - @module-federation/inject-external-runtime-core-plugin@0.11.3
803
+ - @module-federation/sdk@0.11.3
804
+ - @module-federation/managers@0.11.3
805
+ - @module-federation/bridge-react-webpack-plugin@0.11.3
806
+ - @module-federation/error-codes@0.11.3
807
+
808
+ ## 0.11.2
809
+
810
+ ### Patch Changes
811
+
812
+ - Updated dependencies [047857b]
813
+ - @module-federation/sdk@0.11.2
814
+ - @module-federation/bridge-react-webpack-plugin@0.11.2
815
+ - @module-federation/cli@0.11.2
816
+ - @module-federation/data-prefetch@0.11.2
817
+ - @module-federation/dts-plugin@0.11.2
818
+ - @module-federation/managers@0.11.2
819
+ - @module-federation/manifest@0.11.2
820
+ - @module-federation/rspack@0.11.2
821
+ - @module-federation/runtime-tools@0.11.2
822
+ - @module-federation/inject-external-runtime-core-plugin@0.11.2
823
+ - @module-federation/error-codes@0.11.2
824
+
825
+ ## 0.11.1
826
+
827
+ ### Patch Changes
828
+
829
+ - 09d6bc1: fix(enhanced): use default runtime export
830
+ - Updated dependencies [c01715a]
831
+ - @module-federation/rspack@0.11.1
832
+ - @module-federation/sdk@0.11.1
833
+ - @module-federation/runtime-tools@0.11.1
834
+ - @module-federation/managers@0.11.1
835
+ - @module-federation/manifest@0.11.1
836
+ - @module-federation/dts-plugin@0.11.1
837
+ - @module-federation/bridge-react-webpack-plugin@0.11.1
838
+ - @module-federation/data-prefetch@0.11.1
839
+ - @module-federation/error-codes@0.11.1
840
+ - @module-federation/inject-external-runtime-core-plugin@0.11.1
841
+
842
+ ## 0.11.0
843
+
844
+ ### Minor Changes
845
+
846
+ - fce107e: Enhanced module federation plugin to remove the `federationRuntime` experiment and replace it with `asyncStartup`.
847
+ - Dropped support for `federationRuntime` experiment and introduced `asyncStartup` to enable asynchronous container startup.
848
+ - Refactored EmbedFederationRuntimePlugin for improved runtime embedding and startup management.
849
+ - Added options to enable runtime embedding for all chunks.
850
+ - Integrated measures to ensure proper initialization and avoid duplicate hooks.
851
+ - Simplified constructor and class dependencies by removing the `experiments` parameter.
852
+ - Revised schema and validation definitions to accommodate new asynchronous startup configurations.
853
+ - Updated test cases to reflect the change from `federationRuntime` to `asyncStartup`.
854
+
855
+ ### Patch Changes
856
+
857
+ - Updated dependencies [fce107e]
858
+ - Updated dependencies [eecee74]
859
+ - @module-federation/sdk@0.11.0
860
+ - @module-federation/dts-plugin@0.11.0
861
+ - @module-federation/bridge-react-webpack-plugin@0.11.0
862
+ - @module-federation/data-prefetch@0.11.0
863
+ - @module-federation/managers@0.11.0
864
+ - @module-federation/manifest@0.11.0
865
+ - @module-federation/rspack@0.11.0
866
+ - @module-federation/runtime-tools@0.11.0
867
+ - @module-federation/inject-external-runtime-core-plugin@0.11.0
868
+ - @module-federation/error-codes@0.11.0
869
+
870
+ ## 0.10.0
871
+
872
+ ### Patch Changes
873
+
874
+ - Updated dependencies [0f71cbc]
875
+ - Updated dependencies [22fcccd]
876
+ - @module-federation/sdk@0.10.0
877
+ - @module-federation/dts-plugin@0.10.0
878
+ - @module-federation/bridge-react-webpack-plugin@0.10.0
879
+ - @module-federation/data-prefetch@0.10.0
880
+ - @module-federation/managers@0.10.0
881
+ - @module-federation/manifest@0.10.0
882
+ - @module-federation/rspack@0.10.0
883
+ - @module-federation/runtime-tools@0.10.0
884
+ - @module-federation/inject-external-runtime-core-plugin@0.10.0
885
+ - @module-federation/error-codes@0.10.0
886
+
887
+ ## 0.9.1
888
+
889
+ ### Patch Changes
890
+
891
+ - Updated dependencies [35d925b]
892
+ - Updated dependencies [35d925b]
893
+ - Updated dependencies [7a37360]
894
+ - Updated dependencies [8acd217]
895
+ - @module-federation/dts-plugin@0.9.1
896
+ - @module-federation/sdk@0.9.1
897
+ - @module-federation/manifest@0.9.1
898
+ - @module-federation/rspack@0.9.1
899
+ - @module-federation/bridge-react-webpack-plugin@0.9.1
900
+ - @module-federation/data-prefetch@0.9.1
901
+ - @module-federation/managers@0.9.1
902
+ - @module-federation/runtime-tools@0.9.1
903
+ - @module-federation/inject-external-runtime-core-plugin@0.9.1
904
+ - @module-federation/error-codes@0.9.1
905
+
906
+ ## 0.9.0
907
+
908
+ ### Patch Changes
909
+
910
+ - Updated dependencies [5ebc53f]
911
+ - Updated dependencies [d872b35]
912
+ - @module-federation/dts-plugin@0.9.0
913
+ - @module-federation/manifest@0.9.0
914
+ - @module-federation/rspack@0.9.0
915
+ - @module-federation/sdk@0.9.0
916
+ - @module-federation/runtime-tools@0.9.0
917
+ - @module-federation/managers@0.9.0
918
+ - @module-federation/bridge-react-webpack-plugin@0.9.0
919
+ - @module-federation/data-prefetch@0.9.0
920
+ - @module-federation/error-codes@0.9.0
921
+ - @module-federation/inject-external-runtime-core-plugin@0.9.0
922
+
923
+ ## 0.8.12
924
+
925
+ ### Patch Changes
926
+
927
+ - 9062cee: fix(enhanced): reuse cached runtime entry
928
+ - Updated dependencies [d227303]
929
+ - @module-federation/dts-plugin@0.8.12
930
+ - @module-federation/manifest@0.8.12
931
+ - @module-federation/rspack@0.8.12
932
+ - @module-federation/sdk@0.8.12
933
+ - @module-federation/runtime-tools@0.8.12
934
+ - @module-federation/managers@0.8.12
935
+ - @module-federation/bridge-react-webpack-plugin@0.8.12
936
+ - @module-federation/data-prefetch@0.8.12
937
+ - @module-federation/error-codes@0.8.12
938
+ - @module-federation/inject-external-runtime-core-plugin@0.8.12
939
+
940
+ ## 0.8.11
941
+
942
+ ### Patch Changes
943
+
944
+ - @module-federation/rspack@0.8.11
945
+ - @module-federation/sdk@0.8.11
946
+ - @module-federation/runtime-tools@0.8.11
947
+ - @module-federation/managers@0.8.11
948
+ - @module-federation/manifest@0.8.11
949
+ - @module-federation/dts-plugin@0.8.11
950
+ - @module-federation/bridge-react-webpack-plugin@0.8.11
951
+ - @module-federation/data-prefetch@0.8.11
952
+ - @module-federation/error-codes@0.8.11
953
+ - @module-federation/inject-external-runtime-core-plugin@0.8.11
954
+
955
+ ## 0.8.10
956
+
957
+ ### Patch Changes
958
+
959
+ - @module-federation/data-prefetch@0.8.10
960
+ - @module-federation/dts-plugin@0.8.10
961
+ - @module-federation/runtime-tools@0.8.10
962
+ - @module-federation/rspack@0.8.10
963
+ - @module-federation/inject-external-runtime-core-plugin@0.8.10
964
+ - @module-federation/sdk@0.8.10
965
+ - @module-federation/managers@0.8.10
966
+ - @module-federation/manifest@0.8.10
967
+ - @module-federation/bridge-react-webpack-plugin@0.8.10
968
+ - @module-federation/error-codes@0.8.10
969
+
970
+ ## 0.8.9
971
+
972
+ ### Patch Changes
973
+
974
+ - 6e3afc6: fix(enhanced): no push ModuleFederationPlugin self
975
+ - Updated dependencies [6e3afc6]
976
+ - Updated dependencies [1be9d62]
977
+ - Updated dependencies [6e3afc6]
978
+ - Updated dependencies [6e3afc6]
979
+ - Updated dependencies [6e3afc6]
980
+ - Updated dependencies [6e3afc6]
981
+ - Updated dependencies [6e3afc6]
982
+ - Updated dependencies [6e3afc6]
983
+ - @module-federation/dts-plugin@0.8.9
984
+ - @module-federation/manifest@0.8.9
985
+ - @module-federation/rspack@0.8.9
986
+ - @module-federation/sdk@0.8.9
987
+ - @module-federation/runtime-tools@0.8.9
988
+ - @module-federation/managers@0.8.9
989
+ - @module-federation/bridge-react-webpack-plugin@0.8.9
990
+ - @module-federation/data-prefetch@0.8.9
991
+ - @module-federation/error-codes@0.8.9
992
+ - @module-federation/inject-external-runtime-core-plugin@0.8.9
993
+
994
+ ## 0.8.8
995
+
996
+ ### Patch Changes
997
+
998
+ - eda5184: Reordered the "import" and "require" fields in export mappings for consistency.
999
+
1000
+ ```
1001
+ - @module-federation/rspack@0.8.8
1002
+ - @module-federation/sdk@0.8.8
1003
+ - @module-federation/runtime-tools@0.8.8
1004
+ - @module-federation/managers@0.8.8
1005
+ - @module-federation/manifest@0.8.8
1006
+ - @module-federation/dts-plugin@0.8.8
1007
+ - @module-federation/bridge-react-webpack-plugin@0.8.8
1008
+ - @module-federation/data-prefetch@0.8.8
1009
+ - @module-federation/error-codes@0.8.8
1010
+ - @module-federation/inject-external-runtime-core-plugin@0.8.8
1011
+ ```
1012
+
1013
+ ## 0.8.7
1014
+
1015
+ ### Patch Changes
1016
+
1017
+ - f573ad0: feat: add externalRuntime and provideExternalRuntime fields to help optimize assets size
1018
+ - 336f3d8: fix(enhanced): abort process if not find expose modules
1019
+ - Updated dependencies [835b09c]
1020
+ - Updated dependencies [f573ad0]
1021
+ - Updated dependencies [336f3d8]
1022
+ - Updated dependencies [4fd33fb]
1023
+ - @module-federation/sdk@0.8.7
1024
+ - @module-federation/inject-external-runtime-core-plugin@0.8.7
1025
+ - @module-federation/error-codes@0.8.7
1026
+ - @module-federation/bridge-react-webpack-plugin@0.8.7
1027
+ - @module-federation/data-prefetch@0.8.7
1028
+ - @module-federation/dts-plugin@0.8.7
1029
+ - @module-federation/managers@0.8.7
1030
+ - @module-federation/manifest@0.8.7
1031
+ - @module-federation/rspack@0.8.7
1032
+ - @module-federation/runtime-tools@0.8.7
1033
+
1034
+ ## 0.8.6
1035
+
1036
+ ### Patch Changes
1037
+
1038
+ - Updated dependencies [c90bba2]
1039
+ - Updated dependencies [4a2cf82]
1040
+ - @module-federation/dts-plugin@0.8.6
1041
+ - @module-federation/manifest@0.8.6
1042
+ - @module-federation/rspack@0.8.6
1043
+ - @module-federation/sdk@0.8.6
1044
+ - @module-federation/runtime-tools@0.8.6
1045
+ - @module-federation/managers@0.8.6
1046
+ - @module-federation/bridge-react-webpack-plugin@0.8.6
1047
+ - @module-federation/data-prefetch@0.8.6
1048
+
1049
+ ## 0.8.5
1050
+
1051
+ ### Patch Changes
1052
+
1053
+ - @module-federation/rspack@0.8.5
1054
+ - @module-federation/sdk@0.8.5
1055
+ - @module-federation/runtime-tools@0.8.5
1056
+ - @module-federation/managers@0.8.5
1057
+ - @module-federation/manifest@0.8.5
1058
+ - @module-federation/dts-plugin@0.8.5
1059
+ - @module-federation/bridge-react-webpack-plugin@0.8.5
1060
+ - @module-federation/data-prefetch@0.8.5
1061
+
1062
+ ## 0.8.4
1063
+
1064
+ ### Patch Changes
1065
+
1066
+ - Updated dependencies [61625d4]
1067
+ - Updated dependencies [5ea7aea]
1068
+ - @module-federation/rspack@0.8.4
1069
+ - @module-federation/dts-plugin@0.8.4
1070
+ - @module-federation/manifest@0.8.4
1071
+ - @module-federation/sdk@0.8.4
1072
+ - @module-federation/runtime-tools@0.8.4
1073
+ - @module-federation/managers@0.8.4
1074
+ - @module-federation/bridge-react-webpack-plugin@0.8.4
1075
+ - @module-federation/data-prefetch@0.8.4
1076
+
1077
+ ## 0.8.3
1078
+
1079
+ ### Patch Changes
1080
+
1081
+ - Updated dependencies [5b637c3]
1082
+ - Updated dependencies [8e172c8]
1083
+ - @module-federation/data-prefetch@0.8.3
1084
+ - @module-federation/dts-plugin@0.8.3
1085
+ - @module-federation/sdk@0.8.3
1086
+ - @module-federation/runtime-tools@0.8.3
1087
+ - @module-federation/manifest@0.8.3
1088
+ - @module-federation/rspack@0.8.3
1089
+ - @module-federation/bridge-react-webpack-plugin@0.8.3
1090
+ - @module-federation/managers@0.8.3
1091
+
1092
+ ## 0.8.2
1093
+
1094
+ ### Patch Changes
1095
+
1096
+ - Updated dependencies [85ef6c4]
1097
+ - @module-federation/manifest@0.8.2
1098
+ - @module-federation/rspack@0.8.2
1099
+ - @module-federation/data-prefetch@0.8.2
1100
+ - @module-federation/dts-plugin@0.8.2
1101
+ - @module-federation/runtime-tools@0.8.2
1102
+ - @module-federation/sdk@0.8.2
1103
+ - @module-federation/managers@0.8.2
1104
+ - @module-federation/bridge-react-webpack-plugin@0.8.2
1105
+
1106
+ ## 0.8.1
1107
+
1108
+ ### Patch Changes
1109
+
1110
+ - Updated dependencies [8165419]
1111
+ - @module-federation/rspack@0.8.1
1112
+ - @module-federation/sdk@0.8.1
1113
+ - @module-federation/runtime-tools@0.8.1
1114
+ - @module-federation/managers@0.8.1
1115
+ - @module-federation/manifest@0.8.1
1116
+ - @module-federation/dts-plugin@0.8.1
1117
+ - @module-federation/bridge-react-webpack-plugin@0.8.1
1118
+ - @module-federation/data-prefetch@0.8.1
1119
+
1120
+ ## 0.8.0
1121
+
1122
+ ### Patch Changes
1123
+
1124
+ - @module-federation/rspack@0.8.0
1125
+ - @module-federation/sdk@0.8.0
1126
+ - @module-federation/runtime-tools@0.8.0
1127
+ - @module-federation/managers@0.8.0
1128
+ - @module-federation/manifest@0.8.0
1129
+ - @module-federation/dts-plugin@0.8.0
1130
+ - @module-federation/bridge-react-webpack-plugin@0.8.0
1131
+ - @module-federation/data-prefetch@0.8.0
1132
+
1133
+ ## 0.7.7
1134
+
1135
+ ### Patch Changes
1136
+
1137
+ - Updated dependencies [8db7611]
1138
+ - @module-federation/dts-plugin@0.7.7
1139
+ - @module-federation/data-prefetch@0.7.7
1140
+ - @module-federation/runtime-tools@0.7.7
1141
+ - @module-federation/manifest@0.7.7
1142
+ - @module-federation/rspack@0.7.7
1143
+ - @module-federation/sdk@0.7.7
1144
+ - @module-federation/managers@0.7.7
1145
+ - @module-federation/bridge-react-webpack-plugin@0.7.7
1146
+
1147
+ ## 0.7.6
1148
+
1149
+ ### Patch Changes
1150
+
1151
+ - @module-federation/rspack@0.7.6
1152
+ - @module-federation/sdk@0.7.6
1153
+ - @module-federation/runtime-tools@0.7.6
1154
+ - @module-federation/managers@0.7.6
1155
+ - @module-federation/manifest@0.7.6
1156
+ - @module-federation/dts-plugin@0.7.6
1157
+ - @module-federation/bridge-react-webpack-plugin@0.7.6
1158
+ - @module-federation/data-prefetch@0.7.6
1159
+
1160
+ ## 0.7.5
1161
+
1162
+ ### Patch Changes
1163
+
1164
+ - 5613265: remove module resolve path replacements
1165
+ - Updated dependencies [0309fb5]
1166
+ - @module-federation/bridge-react-webpack-plugin@0.7.5
1167
+ - @module-federation/rspack@0.7.5
1168
+ - @module-federation/sdk@0.7.5
1169
+ - @module-federation/runtime-tools@0.7.5
1170
+ - @module-federation/managers@0.7.5
1171
+ - @module-federation/manifest@0.7.5
1172
+ - @module-federation/dts-plugin@0.7.5
1173
+ - @module-federation/data-prefetch@0.7.5
1174
+
1175
+ ## 0.7.4
1176
+
1177
+ ### Patch Changes
1178
+
1179
+ - @module-federation/data-prefetch@0.7.4
1180
+ - @module-federation/dts-plugin@0.7.4
1181
+ - @module-federation/runtime-tools@0.7.4
1182
+ - @module-federation/rspack@0.7.4
1183
+ - @module-federation/sdk@0.7.4
1184
+ - @module-federation/managers@0.7.4
1185
+ - @module-federation/manifest@0.7.4
1186
+ - @module-federation/bridge-react-webpack-plugin@0.7.4
1187
+
1188
+ ## 0.7.3
1189
+
1190
+ ### Patch Changes
1191
+
1192
+ - Updated dependencies [4ab9295]
1193
+ - Updated dependencies [7facc10]
1194
+ - @module-federation/data-prefetch@0.7.3
1195
+ - @module-federation/runtime-tools@0.7.3
1196
+ - @module-federation/managers@0.7.3
1197
+ - @module-federation/manifest@0.7.3
1198
+ - @module-federation/rspack@0.7.3
1199
+ - @module-federation/sdk@0.7.3
1200
+ - @module-federation/dts-plugin@0.7.3
1201
+ - @module-federation/bridge-react-webpack-plugin@0.7.3
1202
+
1203
+ ## 0.7.2
1204
+
1205
+ ### Patch Changes
1206
+
1207
+ - Updated dependencies [85990e2]
1208
+ - @module-federation/dts-plugin@0.7.2
1209
+ - @module-federation/manifest@0.7.2
1210
+ - @module-federation/rspack@0.7.2
1211
+ - @module-federation/sdk@0.7.2
1212
+ - @module-federation/runtime-tools@0.7.2
1213
+ - @module-federation/managers@0.7.2
1214
+ - @module-federation/bridge-react-webpack-plugin@0.7.2
1215
+ - @module-federation/data-prefetch@0.7.2
1216
+
1217
+ ## 0.7.1
1218
+
1219
+ ### Patch Changes
1220
+
1221
+ - 47fdbc2: Added recursively search for shared dependency versions
1222
+ - Updated dependencies [6db4c5f]
1223
+ - @module-federation/sdk@0.7.1
1224
+ - @module-federation/data-prefetch@0.7.1
1225
+ - @module-federation/dts-plugin@0.7.1
1226
+ - @module-federation/runtime-tools@0.7.1
1227
+ - @module-federation/bridge-react-webpack-plugin@0.7.1
1228
+ - @module-federation/managers@0.7.1
1229
+ - @module-federation/manifest@0.7.1
1230
+ - @module-federation/rspack@0.7.1
1231
+
1232
+ ## 0.7.0
1233
+
1234
+ ### Minor Changes
1235
+
1236
+ - 4eb09e7: feat: support disable default alias setting in bridge
1237
+ - Updated dependencies [879ad87]
1238
+ - Updated dependencies [4eb09e7]
1239
+ - Updated dependencies [3942740]
1240
+ - Updated dependencies [206b56d]
1241
+ - @module-federation/sdk@0.7.0
1242
+ - @module-federation/rspack@0.7.0
1243
+ - @module-federation/bridge-react-webpack-plugin@0.7.0
1244
+ - @module-federation/data-prefetch@0.7.0
1245
+ - @module-federation/runtime-tools@0.7.0
1246
+ - @module-federation/managers@0.7.0
1247
+ - @module-federation/manifest@0.7.0
1248
+ - @module-federation/dts-plugin@0.7.0
1249
+
1250
+ ## 0.6.16
1251
+
1252
+ ### Patch Changes
1253
+
1254
+ - Updated dependencies [f779188]
1255
+ - Updated dependencies [024df60]
1256
+ - @module-federation/sdk@0.6.16
1257
+ - @module-federation/data-prefetch@0.6.16
1258
+ - @module-federation/runtime-tools@0.6.16
1259
+ - @module-federation/managers@0.6.16
1260
+ - @module-federation/manifest@0.6.16
1261
+ - @module-federation/bridge-react-webpack-plugin@0.6.16
1262
+ - @module-federation/dts-plugin@0.6.16
1263
+ - @module-federation/rspack@0.6.16
1264
+
1265
+ ## 0.6.15
1266
+
1267
+ ### Patch Changes
1268
+
1269
+ - @module-federation/data-prefetch@0.6.15
1270
+ - @module-federation/dts-plugin@0.6.15
1271
+ - @module-federation/runtime-tools@0.6.15
1272
+ - @module-federation/rspack@0.6.15
1273
+ - @module-federation/sdk@0.6.15
1274
+ - @module-federation/managers@0.6.15
1275
+ - @module-federation/manifest@0.6.15
1276
+ - @module-federation/bridge-react-webpack-plugin@0.6.15
1277
+
1278
+ ## 0.6.14
1279
+
1280
+ ### Patch Changes
1281
+
1282
+ - ad605d2: chore: unified logger
1283
+ - Updated dependencies [ad605d2]
1284
+ - Updated dependencies [86b4cdc]
1285
+ - @module-federation/data-prefetch@0.6.14
1286
+ - @module-federation/dts-plugin@0.6.14
1287
+ - @module-federation/managers@0.6.14
1288
+ - @module-federation/manifest@0.6.14
1289
+ - @module-federation/sdk@0.6.14
1290
+ - @module-federation/rspack@0.6.14
1291
+ - @module-federation/runtime-tools@0.6.14
1292
+ - @module-federation/bridge-react-webpack-plugin@0.6.14
1293
+
1294
+ ## 0.6.13
1295
+
1296
+ ### Patch Changes
1297
+
1298
+ - @module-federation/rspack@0.6.13
1299
+ - @module-federation/sdk@0.6.13
1300
+ - @module-federation/runtime-tools@0.6.13
1301
+ - @module-federation/managers@0.6.13
1302
+ - @module-federation/manifest@0.6.13
1303
+ - @module-federation/dts-plugin@0.6.13
1304
+ - @module-federation/bridge-react-webpack-plugin@0.6.13
1305
+ - @module-federation/data-prefetch@0.6.13
1306
+
1307
+ ## 0.6.12
1308
+
1309
+ ### Patch Changes
1310
+
1311
+ - @module-federation/rspack@0.6.12
1312
+ - @module-federation/sdk@0.6.12
1313
+ - @module-federation/runtime-tools@0.6.12
1314
+ - @module-federation/managers@0.6.12
1315
+ - @module-federation/manifest@0.6.12
1316
+ - @module-federation/dts-plugin@0.6.12
1317
+ - @module-federation/bridge-react-webpack-plugin@0.6.12
1318
+ - @module-federation/data-prefetch@0.6.12
1319
+
1320
+ ## 0.6.11
1321
+
1322
+ ### Patch Changes
1323
+
1324
+ - Updated dependencies [83c8620]
1325
+ - Updated dependencies [d5a3072]
1326
+ - @module-federation/manifest@0.6.11
1327
+ - @module-federation/sdk@0.6.11
1328
+ - @module-federation/data-prefetch@0.6.11
1329
+ - @module-federation/dts-plugin@0.6.11
1330
+ - @module-federation/runtime-tools@0.6.11
1331
+ - @module-federation/rspack@0.6.11
1332
+ - @module-federation/bridge-react-webpack-plugin@0.6.11
1333
+ - @module-federation/managers@0.6.11
1334
+
1335
+ ## 0.6.10
1336
+
1337
+ ### Patch Changes
1338
+
1339
+ - 6b02145: Added a check to skip processing when virtualRuntimeEntry is present.
1340
+ - Added an early return in `FederationRuntimePlugin` to skip processing if `options.virtualRuntimeEntry` is defined.
1341
+
1342
+ - 22a3b83: fix(data-prefetch): apply DataPrefetchPlugin on demand
1343
+ - Updated dependencies [22a3b83]
1344
+ - Updated dependencies [22a3b83]
1345
+ - @module-federation/data-prefetch@0.6.10
1346
+ - @module-federation/sdk@0.6.10
1347
+ - @module-federation/dts-plugin@0.6.10
1348
+ - @module-federation/runtime-tools@0.6.10
1349
+ - @module-federation/bridge-react-webpack-plugin@0.6.10
1350
+ - @module-federation/managers@0.6.10
1351
+ - @module-federation/manifest@0.6.10
1352
+ - @module-federation/rspack@0.6.10
1353
+
1354
+ ## 0.6.9
1355
+
1356
+ ### Patch Changes
1357
+
1358
+ - 70a1708: Added a check to skip processing when virtualRuntimeEntry is present.
1359
+ - Added an early return in `FederationRuntimePlugin` to skip processing if `options.virtualRuntimeEntry` is defined.
1360
+ - @module-federation/rspack@0.6.9
1361
+ - @module-federation/sdk@0.6.9
1362
+ - @module-federation/runtime-tools@0.6.9
1363
+ - @module-federation/managers@0.6.9
1364
+ - @module-federation/manifest@0.6.9
1365
+ - @module-federation/dts-plugin@0.6.9
1366
+ - @module-federation/bridge-react-webpack-plugin@0.6.9
1367
+ - @module-federation/data-prefetch@0.6.9
1368
+
1369
+ ## 0.6.8
1370
+
1371
+ ### Patch Changes
1372
+
1373
+ - Updated dependencies [32db0ac]
1374
+ - @module-federation/sdk@0.6.8
1375
+ - @module-federation/bridge-react-webpack-plugin@0.6.8
1376
+ - @module-federation/data-prefetch@0.6.8
1377
+ - @module-federation/dts-plugin@0.6.8
1378
+ - @module-federation/managers@0.6.8
1379
+ - @module-federation/manifest@0.6.8
1380
+ - @module-federation/rspack@0.6.8
1381
+ - @module-federation/runtime-tools@0.6.8
1382
+
1383
+ ## 0.6.7
1384
+
1385
+ ### Patch Changes
1386
+
1387
+ - 1b6bf0e: ContainerPlugin to use makeHook to addInclude of federation runtime dependency
1388
+ - 9e32644: Added support for hoisting federation runtime modules and enhancing dependency management.
1389
+ - Introduced `FederationModulesPlugin` to handle federation-related hooks and dependencies.
1390
+ - Added new `FederationRuntimeDependency` and logic to include it conditionally.
1391
+ - Enhanced `ContainerPlugin` and related plugins to support experimental `federationRuntime` options.
1392
+ - Modified `HoistContainerReferencesPlugin` to hoist additional modules in chunks.
1393
+ - Implemented changes across multiple files to support the new plugin and dependency management features.
1394
+
1395
+ - 9e32644: Refactor `HoistContainerReferencesPlugin` to optimize module disconnection and cleanup logic.
1396
+ - Removed `moduleToDelete` set as it was redundant.
1397
+ - Ensured all referenced modules are disconnected from unused chunks directly.
1398
+ - Added call to `cleanUpChunks` within the main loop to clean up chunks using `allReferencedModules`.
1399
+
1400
+ - 9e32644: handle chunk entry modules correctly in MfStartupChunkDependenciesPlugin
1401
+ - Updated dependencies [9e32644]
1402
+ - Updated dependencies [9e32644]
1403
+ - Updated dependencies [0216364]
1404
+ - @module-federation/data-prefetch@0.6.7
1405
+ - @module-federation/sdk@0.6.7
1406
+ - @module-federation/dts-plugin@0.6.7
1407
+ - @module-federation/runtime-tools@0.6.7
1408
+ - @module-federation/bridge-react-webpack-plugin@0.6.7
1409
+ - @module-federation/managers@0.6.7
1410
+ - @module-federation/manifest@0.6.7
1411
+ - @module-federation/rspack@0.6.7
1412
+
1413
+ ## 0.6.6
1414
+
1415
+ ### Patch Changes
1416
+
1417
+ - Updated dependencies [35aead4]
1418
+ - @module-federation/dts-plugin@0.6.6
1419
+ - @module-federation/manifest@0.6.6
1420
+ - @module-federation/rspack@0.6.6
1421
+ - @module-federation/sdk@0.6.6
1422
+ - @module-federation/runtime-tools@0.6.6
1423
+ - @module-federation/managers@0.6.6
1424
+ - @module-federation/bridge-react-webpack-plugin@0.6.6
1425
+ - @module-federation/data-prefetch@0.6.6
1426
+
1427
+ ## 0.6.5
1428
+
1429
+ ### Patch Changes
1430
+
1431
+ - Updated dependencies [3070e26]
1432
+ - @module-federation/data-prefetch@1.0.16
1433
+ - @module-federation/rspack@0.6.5
1434
+ - @module-federation/sdk@0.6.5
1435
+ - @module-federation/runtime-tools@0.6.5
1436
+ - @module-federation/managers@0.6.5
1437
+ - @module-federation/manifest@0.6.5
1438
+ - @module-federation/dts-plugin@0.6.5
1439
+ - @module-federation/bridge-react-webpack-plugin@0.6.5
1440
+
1441
+ ## 0.6.4
1442
+
1443
+ ### Patch Changes
1444
+
1445
+ - Updated dependencies [d90295b]
1446
+ - @module-federation/bridge-react-webpack-plugin@0.6.4
1447
+ - @module-federation/rspack@0.6.4
1448
+ - @module-federation/sdk@0.6.4
1449
+ - @module-federation/runtime-tools@0.6.4
1450
+ - @module-federation/managers@0.6.4
1451
+ - @module-federation/manifest@0.6.4
1452
+ - @module-federation/dts-plugin@0.6.4
1453
+
1454
+ ## 0.6.3
1455
+
1456
+ ### Patch Changes
1457
+
1458
+ - @module-federation/rspack@0.6.3
1459
+ - @module-federation/sdk@0.6.3
1460
+ - @module-federation/runtime-tools@0.6.3
1461
+ - @module-federation/managers@0.6.3
1462
+ - @module-federation/manifest@0.6.3
1463
+ - @module-federation/dts-plugin@0.6.3
1464
+ - @module-federation/bridge-react-webpack-plugin@0.6.3
1465
+
1466
+ ## 0.6.2
1467
+
1468
+ ### Patch Changes
1469
+
1470
+ - @module-federation/dts-plugin@0.6.2
1471
+ - @module-federation/runtime-tools@0.6.2
1472
+ - @module-federation/rspack@0.6.2
1473
+ - @module-federation/sdk@0.6.2
1474
+ - @module-federation/managers@0.6.2
1475
+ - @module-federation/manifest@0.6.2
1476
+ - @module-federation/bridge-react-webpack-plugin@0.6.2
1477
+
1478
+ ## 0.6.1
1479
+
1480
+ ### Patch Changes
1481
+
1482
+ - 2855583: add hoisted runtime flag: experiments.federationRuntime === 'hoisted' | false
1483
+ - 2855583: experiment: Async Entry Startup when runtime is hoisted
1484
+ - Updated dependencies [2855583]
1485
+ - Updated dependencies [813680f]
1486
+ - @module-federation/sdk@0.6.1
1487
+ - @module-federation/runtime-tools@0.6.1
1488
+ - @module-federation/dts-plugin@0.6.1
1489
+ - @module-federation/bridge-react-webpack-plugin@0.6.1
1490
+ - @module-federation/managers@0.6.1
1491
+ - @module-federation/manifest@0.6.1
1492
+ - @module-federation/rspack@0.6.1
1493
+
1494
+ ## 0.6.0
1495
+
1496
+ ### Minor Changes
1497
+
1498
+ - 1d9bb77: Add support for using Virtual Runtime Entrypoints instead of writing a temporary file to disk
1499
+
1500
+ ### Patch Changes
1501
+
1502
+ - f245bb3: chore(enhanced): remove useless schemas
1503
+ - Updated dependencies [1d9bb77]
1504
+ - @module-federation/sdk@0.6.0
1505
+ - @module-federation/bridge-react-webpack-plugin@0.6.0
1506
+ - @module-federation/dts-plugin@0.6.0
1507
+ - @module-federation/managers@0.6.0
1508
+ - @module-federation/manifest@0.6.0
1509
+ - @module-federation/rspack@0.6.0
1510
+ - @module-federation/runtime-tools@0.6.0
1511
+
1512
+ ## 0.5.2
1513
+
1514
+ ### Patch Changes
1515
+
1516
+ - b90fa7d: feat: add shareStrategy option
1517
+ - Updated dependencies [b90fa7d]
1518
+ - @module-federation/sdk@0.5.2
1519
+ - @module-federation/runtime-tools@0.5.2
1520
+ - @module-federation/dts-plugin@0.5.2
1521
+ - @module-federation/bridge-react-webpack-plugin@0.5.2
1522
+ - @module-federation/managers@0.5.2
1523
+ - @module-federation/manifest@0.5.2
1524
+ - @module-federation/rspack@0.5.2
1525
+
1526
+ ## 0.5.1
1527
+
1528
+ ### Patch Changes
1529
+
1530
+ - Updated dependencies [472e2cc]
1531
+ - @module-federation/bridge-react-webpack-plugin@0.5.1
1532
+ - @module-federation/rspack@0.5.1
1533
+ - @module-federation/sdk@0.5.1
1534
+ - @module-federation/runtime-tools@0.5.1
1535
+ - @module-federation/managers@0.5.1
1536
+ - @module-federation/manifest@0.5.1
1537
+ - @module-federation/dts-plugin@0.5.1
1538
+
1539
+ ## 0.5.0
1540
+
1541
+ ### Patch Changes
1542
+
1543
+ - Updated dependencies [49d6135]
1544
+ - Updated dependencies [8378a77]
1545
+ - @module-federation/bridge-react-webpack-plugin@0.5.0
1546
+ - @module-federation/sdk@0.5.0
1547
+ - @module-federation/rspack@0.5.0
1548
+ - @module-federation/dts-plugin@0.5.0
1549
+ - @module-federation/runtime-tools@0.5.0
1550
+ - @module-federation/managers@0.5.0
1551
+ - @module-federation/manifest@0.5.0
1552
+
1553
+ ## 0.4.0
1554
+
1555
+ ### Patch Changes
1556
+
1557
+ - a335707: fix(enhanced): remove useless but has side effect export
1558
+ - Updated dependencies [a6e2bed]
1559
+ - Updated dependencies [a6e2bed]
1560
+ - @module-federation/sdk@0.4.0
1561
+ - @module-federation/dts-plugin@0.4.0
1562
+ - @module-federation/runtime-tools@0.4.0
1563
+ - @module-federation/bridge-react-webpack-plugin@0.4.0
1564
+ - @module-federation/managers@0.4.0
1565
+ - @module-federation/manifest@0.4.0
1566
+ - @module-federation/rspack@0.4.0
1567
+
1568
+ ## 0.3.5
1569
+
1570
+ ### Patch Changes
1571
+
1572
+ - 59db2fd: fix(enhanced): correct enhanced ModuleFederation types error
1573
+ - @module-federation/rspack@0.3.5
1574
+ - @module-federation/sdk@0.3.5
1575
+ - @module-federation/runtime-tools@0.3.5
1576
+ - @module-federation/managers@0.3.5
1577
+ - @module-federation/manifest@0.3.5
1578
+ - @module-federation/dts-plugin@0.3.5
1579
+ - @module-federation/bridge-react-webpack-plugin@0.3.5
1580
+
1581
+ ## 0.3.4
1582
+
1583
+ ### Patch Changes
1584
+
1585
+ - @module-federation/dts-plugin@0.3.4
1586
+ - @module-federation/runtime-tools@0.3.4
1587
+ - @module-federation/rspack@0.3.4
1588
+ - @module-federation/sdk@0.3.4
1589
+ - @module-federation/managers@0.3.4
1590
+ - @module-federation/manifest@0.3.4
1591
+ - @module-federation/bridge-react-webpack-plugin@0.3.4
1592
+
1593
+ ## 0.3.3
1594
+
1595
+ ### Patch Changes
1596
+
1597
+ - @module-federation/rspack@0.3.3
1598
+ - @module-federation/sdk@0.3.3
1599
+ - @module-federation/runtime-tools@0.3.3
1600
+ - @module-federation/managers@0.3.3
1601
+ - @module-federation/manifest@0.3.3
1602
+ - @module-federation/dts-plugin@0.3.3
1603
+ - @module-federation/bridge-react-webpack-plugin@0.3.3
1604
+
1605
+ ## 0.3.2
1606
+
1607
+ ### Patch Changes
1608
+
1609
+ - 85ae159: feat: support rspack ssr
1610
+ - Updated dependencies [0de1c83]
1611
+ - Updated dependencies [85ae159]
1612
+ - @module-federation/dts-plugin@0.3.2
1613
+ - @module-federation/manifest@0.3.2
1614
+ - @module-federation/rspack@0.3.2
1615
+ - @module-federation/sdk@0.3.2
1616
+ - @module-federation/runtime-tools@0.3.2
1617
+ - @module-federation/managers@0.3.2
1618
+ - @module-federation/bridge-react-webpack-plugin@0.3.2
1619
+
1620
+ ## 0.3.1
1621
+
1622
+ ### Patch Changes
1623
+
1624
+ - Updated dependencies [0a9adaf]
1625
+ - @module-federation/dts-plugin@0.3.1
1626
+ - @module-federation/manifest@0.3.1
1627
+ - @module-federation/rspack@0.3.1
1628
+ - @module-federation/sdk@0.3.1
1629
+ - @module-federation/runtime-tools@0.3.1
1630
+ - @module-federation/managers@0.3.1
1631
+ - @module-federation/bridge-react-webpack-plugin@0.3.1
1632
+
1633
+ ## 0.3.0
1634
+
1635
+ ### Minor Changes
1636
+
1637
+ - fa37cc4: feat: support modern.js ssr [#2348](https://github.com/module-federation/core/issues/2348)
1638
+
1639
+ ### Patch Changes
1640
+
1641
+ - Updated dependencies [7c4d99b]
1642
+ - Updated dependencies [fa37cc4]
1643
+ - @module-federation/dts-plugin@0.3.0
1644
+ - @module-federation/manifest@0.3.0
1645
+ - @module-federation/rspack@0.3.0
1646
+ - @module-federation/sdk@0.3.0
1647
+ - @module-federation/runtime-tools@0.3.0
1648
+ - @module-federation/bridge-react-webpack-plugin@0.3.0
1649
+ - @module-federation/managers@0.3.0
1650
+
1651
+ ## 0.2.8
1652
+
1653
+ ### Patch Changes
1654
+
1655
+ - Updated dependencies [f3d13c2]
1656
+ - @module-federation/dts-plugin@0.2.8
1657
+ - @module-federation/manifest@0.2.8
1658
+ - @module-federation/rspack@0.2.8
1659
+ - @module-federation/sdk@0.2.8
1660
+ - @module-federation/runtime-tools@0.2.8
1661
+ - @module-federation/managers@0.2.8
1662
+ - @module-federation/bridge-react-webpack-plugin@0.2.8
1663
+
1664
+ ## 0.2.7
1665
+
1666
+ ### Patch Changes
1667
+
1668
+ - b00ef13: fix(dts-plugin): support compile vue@3 dts
1669
+ - Updated dependencies [b00ef13]
1670
+ - @module-federation/dts-plugin@0.2.7
1671
+ - @module-federation/sdk@0.2.7
1672
+ - @module-federation/manifest@0.2.7
1673
+ - @module-federation/rspack@0.2.7
1674
+ - @module-federation/bridge-react-webpack-plugin@0.2.7
1675
+ - @module-federation/managers@0.2.7
1676
+ - @module-federation/runtime-tools@0.2.7
1677
+
1678
+ ## 0.2.6
1679
+
1680
+ ### Patch Changes
1681
+
1682
+ - 4488064: fix: intercept legacy entry
1683
+ - Updated dependencies [91bf689]
1684
+ - @module-federation/sdk@0.2.6
1685
+ - @module-federation/bridge-react-webpack-plugin@0.2.6
1686
+ - @module-federation/dts-plugin@0.2.6
1687
+ - @module-federation/managers@0.2.6
1688
+ - @module-federation/manifest@0.2.6
1689
+ - @module-federation/rspack@0.2.6
1690
+ - @module-federation/runtime-tools@0.2.6
1691
+
1692
+ ## 0.2.5
1693
+
1694
+ ### Patch Changes
1695
+
1696
+ - Updated dependencies [8cce571]
1697
+ - @module-federation/sdk@0.2.5
1698
+ - @module-federation/dts-plugin@0.2.5
1699
+ - @module-federation/runtime-tools@0.2.5
1700
+ - @module-federation/bridge-react-webpack-plugin@0.2.5
1701
+ - @module-federation/managers@0.2.5
1702
+ - @module-federation/manifest@0.2.5
1703
+ - @module-federation/rspack@0.2.5
1704
+
1705
+ ## 0.2.4
1706
+
1707
+ ### Patch Changes
1708
+
1709
+ - Updated dependencies [09b792d]
1710
+ - Updated dependencies [09b792d]
1711
+ - @module-federation/sdk@0.2.4
1712
+ - @module-federation/dts-plugin@0.2.4
1713
+ - @module-federation/runtime-tools@0.2.4
1714
+ - @module-federation/bridge-react-webpack-plugin@0.2.4
1715
+ - @module-federation/managers@0.2.4
1716
+ - @module-federation/manifest@0.2.4
1717
+ - @module-federation/rspack@0.2.4
1718
+
1719
+ ## 0.2.3
1720
+
1721
+ ### Patch Changes
1722
+
1723
+ - Updated dependencies [32f26af]
1724
+ - Updated dependencies [32f26af]
1725
+ - @module-federation/sdk@0.2.3
1726
+ - @module-federation/bridge-react-webpack-plugin@0.2.3
1727
+ - @module-federation/dts-plugin@0.2.3
1728
+ - @module-federation/managers@0.2.3
1729
+ - @module-federation/manifest@0.2.3
1730
+ - @module-federation/rspack@0.2.3
1731
+ - @module-federation/runtime-tools@0.2.3
1732
+
1733
+ ## 0.2.2
1734
+
1735
+ ### Patch Changes
1736
+
1737
+ - Updated dependencies [7d09ed8]
1738
+ - @module-federation/dts-plugin@0.2.2
1739
+ - @module-federation/manifest@0.2.2
1740
+ - @module-federation/rspack@0.2.2
1741
+ - @module-federation/sdk@0.2.2
1742
+ - @module-federation/runtime-tools@0.2.2
1743
+ - @module-federation/managers@0.2.2
1744
+ - @module-federation/bridge-react-webpack-plugin@0.2.2
1745
+
1746
+ ## 0.2.1
1747
+
1748
+ ### Patch Changes
1749
+
1750
+ - 88445e7: Support getPublicPath in compiler plugins
1751
+ - Updated dependencies [88445e7]
1752
+ - Updated dependencies [e494f1a]
1753
+ - @module-federation/dts-plugin@0.2.1
1754
+ - @module-federation/manifest@0.2.1
1755
+ - @module-federation/sdk@0.2.1
1756
+ - @module-federation/rspack@0.2.1
1757
+ - @module-federation/bridge-react-webpack-plugin@0.2.1
1758
+ - @module-federation/managers@0.2.1
1759
+ - @module-federation/runtime-tools@0.2.1
1760
+
1761
+ ## 0.2.0
1762
+
1763
+ ### Patch Changes
1764
+
1765
+ - Updated dependencies [804cc3b]
1766
+ - Updated dependencies [52bb94c]
1767
+ - Updated dependencies [d2ab821]
1768
+ - Updated dependencies [f7a6d3f]
1769
+ - @module-federation/dts-plugin@0.2.0
1770
+ - @module-federation/bridge-react-webpack-plugin@0.2.0
1771
+ - @module-federation/manifest@0.2.0
1772
+ - @module-federation/rspack@0.2.0
1773
+ - @module-federation/sdk@0.2.0
1774
+ - @module-federation/runtime-tools@0.2.0
1775
+ - @module-federation/managers@0.2.0
1776
+
1777
+ ## 0.1.21
1778
+
1779
+ ### Patch Changes
1780
+
1781
+ - 1e93c5e: chore(enhanced): add peer deps required by dts plugin
1782
+ - Updated dependencies [a50c459]
1783
+ - Updated dependencies [88900ad]
1784
+ - Updated dependencies [4cddb8a]
1785
+ - Updated dependencies [6ee10aa]
1786
+ - Updated dependencies [1e93c5e]
1787
+ - @module-federation/dts-plugin@0.1.21
1788
+ - @module-federation/sdk@0.1.21
1789
+ - @module-federation/manifest@0.1.21
1790
+ - @module-federation/rspack@0.1.21
1791
+ - @module-federation/runtime-tools@0.1.21
1792
+ - @module-federation/managers@0.1.21
1793
+
1794
+ ## 0.1.20
1795
+
1796
+ ### Patch Changes
1797
+
1798
+ - 766de80: Add repository property to the enhanced package
1799
+ - d5ac542: Add license property to the package.json of module-federation/enhanced
1800
+ - Updated dependencies [685c607]
1801
+ - Updated dependencies [34f9498]
1802
+ - Updated dependencies [e8e0969]
1803
+ - Updated dependencies [349c381]
1804
+ - @module-federation/dts-plugin@0.1.20
1805
+ - @module-federation/sdk@0.1.20
1806
+ - @module-federation/runtime-tools@0.1.20
1807
+ - @module-federation/manifest@0.1.20
1808
+ - @module-federation/rspack@0.1.20
1809
+ - @module-federation/managers@0.1.20
1810
+
1811
+ ## 0.1.19
1812
+
1813
+ ### Patch Changes
1814
+
1815
+ - e1518e2: Wrap require of federation runtime module in conditional so that async boundary plugin doesnt crash runtimes who do not implement federation
1816
+ - Updated dependencies [031454d]
1817
+ - Updated dependencies [b0a31a7]
1818
+ - Updated dependencies [a2bfb9b]
1819
+ - @module-federation/sdk@0.1.19
1820
+ - @module-federation/runtime-tools@0.1.19
1821
+ - @module-federation/dts-plugin@0.1.19
1822
+ - @module-federation/managers@0.1.19
1823
+ - @module-federation/manifest@0.1.19
1824
+ - @module-federation/rspack@0.1.19
1825
+
1826
+ ## 0.1.18
1827
+
1828
+ ### Patch Changes
1829
+
1830
+ - Updated dependencies [80af3f3]
1831
+ - @module-federation/manifest@0.1.18
1832
+ - @module-federation/sdk@0.1.18
1833
+ - @module-federation/runtime-tools@0.1.18
1834
+ - @module-federation/rspack@0.1.18
1835
+ - @module-federation/dts-plugin@0.1.18
1836
+ - @module-federation/managers@0.1.18
1837
+
1838
+ ## 0.1.17
1839
+
1840
+ ### Patch Changes
1841
+
1842
+ - Updated dependencies [4f22c3e]
1843
+ - Updated dependencies [efadc07]
1844
+ - @module-federation/manifest@0.1.17
1845
+ - @module-federation/rspack@0.1.17
1846
+ - @module-federation/runtime-tools@0.1.17
1847
+ - @module-federation/sdk@0.1.17
1848
+ - @module-federation/managers@0.1.17
1849
+ - @module-federation/dts-plugin@0.1.17
1850
+
1851
+ ## 0.1.16
1852
+
1853
+ ### Patch Changes
1854
+
1855
+ - Updated dependencies [cce5404]
1856
+ - Updated dependencies [ea34795]
1857
+ - Updated dependencies [364f2bc]
1858
+ - @module-federation/managers@0.1.16
1859
+ - @module-federation/dts-plugin@0.1.16
1860
+ - @module-federation/sdk@0.1.16
1861
+ - @module-federation/runtime-tools@0.1.16
1862
+ - @module-federation/manifest@0.1.16
1863
+ - @module-federation/rspack@0.1.16
1864
+
1865
+ ## 0.1.15
1866
+
1867
+ ### Patch Changes
1868
+
1869
+ - Updated dependencies [1227fd6]
1870
+ - @module-federation/dts-plugin@0.1.15
1871
+ - @module-federation/manifest@0.1.15
1872
+ - @module-federation/rspack@0.1.15
1873
+ - @module-federation/sdk@0.1.15
1874
+ - @module-federation/runtime-tools@0.1.15
1875
+ - @module-federation/managers@0.1.15
1876
+
1877
+ ## 0.1.14
1878
+
1879
+ ### Patch Changes
1880
+
1881
+ - Updated dependencies [103b2b8]
1882
+ - @module-federation/sdk@0.1.14
1883
+ - @module-federation/runtime-tools@0.1.14
1884
+ - @module-federation/dts-plugin@0.1.14
1885
+ - @module-federation/managers@0.1.14
1886
+ - @module-federation/manifest@0.1.14
1887
+ - @module-federation/rspack@0.1.14
1888
+
1889
+ ## 0.1.13
1890
+
1891
+ ### Patch Changes
1892
+
1893
+ - 0113b81: chore: delete references to used shared to prevent memory leaks
1894
+ - Updated dependencies [2e52e51]
1895
+ - Updated dependencies [2e52e51]
1896
+ - Updated dependencies [9559769]
1897
+ - Updated dependencies [0113b81]
1898
+ - Updated dependencies [677958c]
1899
+ - Updated dependencies [2e52e51]
1900
+ - @module-federation/dts-plugin@0.1.13
1901
+ - @module-federation/managers@0.1.13
1902
+ - @module-federation/manifest@0.1.13
1903
+ - @module-federation/rspack@0.1.13
1904
+ - @module-federation/sdk@0.1.13
1905
+ - @module-federation/runtime-tools@0.1.13
1906
+
1907
+ ## 0.1.12
1908
+
1909
+ ### Patch Changes
1910
+
1911
+ - Updated dependencies [2a18c65]
1912
+ - @module-federation/dts-plugin@0.1.12
1913
+ - @module-federation/manifest@0.1.12
1914
+ - @module-federation/rspack@0.1.12
1915
+ - @module-federation/runtime-tools@0.1.12
1916
+ - @module-federation/sdk@0.1.12
1917
+ - @module-federation/managers@0.1.12
1918
+
1919
+ ## 0.1.11
1920
+
1921
+ ### Patch Changes
1922
+
1923
+ - d45ee54: add type to package.json of commonjs
1924
+ - 3d2c63a: fix esm export formats and make webpack optional peer
1925
+ - @module-federation/runtime-tools@0.1.11
1926
+ - @module-federation/rspack@0.1.11
1927
+ - @module-federation/sdk@0.1.11
1928
+ - @module-federation/managers@0.1.11
1929
+ - @module-federation/manifest@0.1.11
1930
+ - @module-federation/dts-plugin@0.1.11
1931
+
1932
+ ## 0.1.10
1933
+
1934
+ ### Patch Changes
1935
+
1936
+ - Updated dependencies [3d4fb69]
1937
+ - @module-federation/dts-plugin@0.1.10
1938
+ - @module-federation/manifest@0.1.10
1939
+ - @module-federation/rspack@0.1.10
1940
+ - @module-federation/sdk@0.1.10
1941
+ - @module-federation/runtime-tools@0.1.10
1942
+ - @module-federation/managers@0.1.10
1943
+
1944
+ ## 0.1.9
1945
+
1946
+ ### Patch Changes
1947
+
1948
+ - fcbae83: patch chunk split of "\_partial" container chunks
1949
+ - Updated dependencies [fcbae83]
1950
+ - @module-federation/rspack@0.1.9
1951
+ - @module-federation/runtime-tools@0.1.9
1952
+ - @module-federation/sdk@0.1.9
1953
+ - @module-federation/managers@0.1.9
1954
+ - @module-federation/manifest@0.1.9
1955
+ - @module-federation/dts-plugin@0.1.9
1956
+
1957
+ ## 0.1.8
1958
+
1959
+ ### Patch Changes
1960
+
1961
+ - 56eb56a: add chunk matcher logic to federation runtime module
1962
+ - b120511: Improve Async Boundary Plugin on entry that use dependOn and improve chunk dep search
1963
+ - @module-federation/rspack@0.1.8
1964
+ - @module-federation/sdk@0.1.8
1965
+ - @module-federation/runtime-tools@0.1.8
1966
+ - @module-federation/managers@0.1.8
1967
+ - @module-federation/manifest@0.1.8
1968
+ - @module-federation/dts-plugin@0.1.8
1969
+
1970
+ ## 0.1.7
1971
+
1972
+ ### Patch Changes
1973
+
1974
+ - 648353b: Check that runtime plugins are not undefined or tree shaken out before calling the factory functions
1975
+ - @module-federation/runtime-tools@0.1.7
1976
+ - @module-federation/rspack@0.1.7
1977
+ - @module-federation/sdk@0.1.7
1978
+ - @module-federation/managers@0.1.7
1979
+ - @module-federation/manifest@0.1.7
1980
+ - @module-federation/dts-plugin@0.1.7
1981
+
1982
+ ## 0.1.6
1983
+
1984
+ ### Patch Changes
1985
+
1986
+ - 72c7b80: chore: fix release tag
1987
+ - Updated dependencies [72c7b80]
1988
+ - @module-federation/dts-plugin@0.1.6
1989
+ - @module-federation/managers@0.1.6
1990
+ - @module-federation/manifest@0.1.6
1991
+ - @module-federation/rspack@0.1.6
1992
+ - @module-federation/runtime-tools@0.1.6
1993
+ - @module-federation/sdk@0.1.6
1994
+
1995
+ ## 0.1.5
1996
+
1997
+ ### Patch Changes
1998
+
1999
+ - 876a4ff: feat: support config shared import:false in runtime
2000
+ - e0acf83: chore: downgrade template code to es5
2001
+ - 1a9c6e7: feat: support config multiple versions shared
2002
+ - Updated dependencies [f9b8af7]
2003
+ - Updated dependencies [71559fb]
2004
+ - Updated dependencies [ca271ab]
2005
+ - Updated dependencies [1a9c6e7]
2006
+ - @module-federation/dts-plugin@0.1.5
2007
+ - @module-federation/manifest@0.1.5
2008
+ - @module-federation/sdk@0.1.5
2009
+ - @module-federation/runtime-tools@0.1.5
2010
+ - @module-federation/rspack@0.1.5
2011
+ - @module-federation/managers@0.1.5
2012
+
2013
+ ## 0.1.4
2014
+
2015
+ ### Patch Changes
2016
+
2017
+ - 8f3a440: fix: detect whether the project is ts
2018
+ - 2f697b9: fix: fixed type declaration in pkg
2019
+ - 8f3a440: allow dts plugin to be disabled
2020
+ - Updated dependencies [8f3a440]
2021
+ - Updated dependencies [2f697b9]
2022
+ - @module-federation/dts-plugin@0.1.4
2023
+ - @module-federation/sdk@0.1.4
2024
+ - @module-federation/runtime-tools@0.1.4
2025
+ - @module-federation/manifest@0.1.4
2026
+ - @module-federation/rspack@0.1.4
2027
+ - @module-federation/managers@0.1.4
2028
+
2029
+ ## 0.1.3
2030
+
2031
+ ### Patch Changes
2032
+
2033
+ - 32eba3c: fix: chunkId may equal number 0
2034
+ - 6b3b210: revert chunk integration
2035
+ - Updated dependencies [f926b6c]
2036
+ - @module-federation/dts-plugin@0.1.3
2037
+ - @module-federation/manifest@0.1.3
2038
+ - @module-federation/runtime-tools@0.1.3
2039
+ - @module-federation/rspack@0.1.3
2040
+ - @module-federation/sdk@0.1.3
2041
+ - @module-federation/managers@0.1.3
2042
+
2043
+ ## 0.1.2
2044
+
2045
+ ### Patch Changes
2046
+
2047
+ - c1efbbf: chore: convergence of all package entries
2048
+ chore: 收敛所有包的入口
2049
+ - c8c0ad2: feat: enhance type capability
2050
+ - 1bb03d1: chore: rename @module-federation/enhanced-rspack to @module-federation/rspack
2051
+ - 1bb03d1: chore: enhanced export runtime
2052
+ - Updated dependencies [c8c0ad2]
2053
+ - Updated dependencies [1bb03d1]
2054
+ - @module-federation/rspack@0.1.2
2055
+ - @module-federation/dts-plugin@0.1.2
2056
+ - @module-federation/manifest@0.1.2
2057
+ - @module-federation/sdk@0.1.2
2058
+ - @module-federation/managers@0.1.2
2059
+ - @module-federation/runtime-tools@0.1.2
2060
+
2061
+ ## 0.1.1
2062
+
2063
+ ### Patch Changes
2064
+
2065
+ - ee57fb0: update chunk integration for entry modules
2066
+ - @module-federation/sdk@0.1.1
2067
+ - @module-federation/runtime-tools@0.1.1
2068
+ - @module-federation/managers@0.1.1
2069
+ - @module-federation/manifest@0.1.1
2070
+
2071
+ ## 0.1.0
2072
+
2073
+ ### Minor Changes
2074
+
2075
+ - df3ef24: use chunk integration to initalize federation runtime and plugins in runtime bootstrap
2076
+
2077
+ ### Patch Changes
2078
+
2079
+ - df3ef24: Support multiple runtime chunks, single runtime chunks in reference hoisting
2080
+ - df3ef24: chore: adjust add federation init process
2081
+ - Updated dependencies [df3ef24]
2082
+ - Updated dependencies [df3ef24]
2083
+ - Updated dependencies [df3ef24]
2084
+ - Updated dependencies [df3ef24]
2085
+ - @module-federation/sdk@0.1.0
2086
+ - @module-federation/runtime-tools@0.1.0
2087
+ - @module-federation/managers@0.1.0
2088
+ - @module-federation/manifest@0.1.0
2089
+
2090
+ ## 0.0.17
2091
+
2092
+ ### Patch Changes
2093
+
2094
+ - @module-federation/runtime-tools@0.0.17
2095
+ - @module-federation/sdk@0.0.17
2096
+ - @module-federation/managers@0.0.17
2097
+ - @module-federation/manifest@0.0.17
2098
+
2099
+ ## 0.0.16
2100
+
2101
+ ### Patch Changes
2102
+
2103
+ - Updated dependencies [ccafac3]
2104
+ - @module-federation/manifest@0.0.16
2105
+ - @module-federation/sdk@0.0.16
2106
+ - @module-federation/runtime-tools@0.0.16
2107
+ - @module-federation/managers@0.0.16
2108
+
2109
+ ## 0.0.15
2110
+
2111
+ ### Patch Changes
2112
+
2113
+ - ba5bedd: feat: support manifest
2114
+ - Updated dependencies [3a45d99]
2115
+ - Updated dependencies [ba5bedd]
2116
+ - @module-federation/sdk@0.0.15
2117
+ - @module-federation/managers@0.0.15
2118
+ - @module-federation/manifest@0.0.15
2119
+ - @module-federation/runtime-tools@0.0.15
2120
+
2121
+ ## 0.0.14
2122
+
2123
+ ### Patch Changes
2124
+
2125
+ - Updated dependencies [cd8c7bf]
2126
+ - Updated dependencies [5576c6b]
2127
+ - @module-federation/sdk@0.0.14
2128
+ - @module-federation/runtime-tools@0.0.14
2129
+
2130
+ ## 0.0.13
2131
+
2132
+ ### Patch Changes
2133
+
2134
+ - Updated dependencies [804447c]
2135
+ - @module-federation/sdk@0.0.13
2136
+ - @module-federation/runtime-tools@0.0.13
2137
+
2138
+ ## 0.0.12
2139
+
2140
+ ### Patch Changes
2141
+
2142
+ - 4ca0c7b: fix(enhanced): use upath to against more edge cases between different OS
2143
+ - @module-federation/sdk@0.0.12
2144
+ - @module-federation/runtime-tools@0.0.12
2145
+
2146
+ ## 0.0.11
2147
+
2148
+ ### Patch Changes
2149
+
2150
+ - 5c17bc4: normalize bundler runtime import paths
2151
+ - @module-federation/runtime-tools@0.0.11
2152
+ - @module-federation/sdk@0.0.11
2153
+
2154
+ ## 0.0.10
2155
+
2156
+ ### Patch Changes
2157
+
2158
+ - 51b18e0: Fix bug in AyncBoundaryPlugin when chunkID is not set to named and dependOn exists
2159
+ - @module-federation/runtime-tools@0.0.10
2160
+ - @module-federation/sdk@0.0.10
2161
+
2162
+ ## 0.0.9
2163
+
2164
+ ### Patch Changes
2165
+
2166
+ - 1147f48: fix: not duplicate set resolve.alias
2167
+ - cf8634d: fix: copy decalaration files to output
2168
+ - 2ad29a6: fix: remove duplicate init shareScopeMap
2169
+ fix: normalize schemas path
2170
+ fix: shared is loaded if it has lib attr
2171
+ - @module-federation/runtime-tools@0.0.9
2172
+ - @module-federation/sdk@0.0.9
2173
+
2174
+ ## 0.0.8
2175
+
2176
+ ### Patch Changes
2177
+
2178
+ - 98eb40d: feat: enhanced
2179
+ - Updated dependencies [98eb40d]
2180
+ - Updated dependencies [98eb40d]
2181
+ - @module-federation/sdk@0.0.8
2182
+ - @module-federation/runtime-tools@0.0.8
2183
+
2184
+ ## 0.0.7
2185
+
2186
+ ### Patch Changes
2187
+
2188
+ - @module-federation/sdk@0.0.7
2189
+
2190
+ ## 0.0.6
2191
+
2192
+ ### Patch Changes
2193
+
2194
+ - @module-federation/sdk@0.0.6
2195
+
2196
+ ## 0.0.5
2197
+
2198
+ ### Patch Changes
2199
+
2200
+ - Updated dependencies [5a79cb3]
2201
+ - @module-federation/sdk@0.0.5
2202
+
2203
+ ## 0.0.4
2204
+
2205
+ ### Patch Changes
2206
+
2207
+ - @module-federation/sdk@0.0.4
2208
+
2209
+ ### Bug Fixes
2210
+
2211
+ - align with bytedance linting ([8000055](https://github.com/module-federation/core/commit/800005571f37e0d1b31590834ddcd4d98bbd3086))
2212
+ - **enhanced:** refactory async boundary plugin ([230a105](https://github.com/module-federation/core/commit/230a105b230ba108318d3e0aab6bea8e94fb3699))
2213
+ - nx build dep sync ([38c0902](https://github.com/module-federation/core/commit/38c09025aeee8b3bb91f45721678d59ff814b8ba))
2214
+
2215
+ # [0.2.0-canary.4](https://github.com/module-federation/core/compare/enhanced-0.2.0-canary.3...enhanced-0.2.0-canary.4) (2023-11-20)
2216
+
2217
+ ### Bug Fixes
2218
+
2219
+ - **enhanced:** use getAllReferencedChunks api for federation indexing ([b8846be](https://github.com/module-federation/core/commit/b8846be5135c58841c3c22453e45751bebbecdeb))
2220
+ - **nextjs-mf:** Improved async startup dep track ([839e47b](https://github.com/module-federation/core/commit/839e47bc7e1b887f0729c17257e6dd17cc3e3a5d))
2221
+ - rename plugin took tap ([b1e0f58](https://github.com/module-federation/core/commit/b1e0f58d689a60223b03277fbffe3c5bd18dd481))
2222
+
2223
+ ### Features
2224
+
2225
+ - **enhanced:** ✨ Reference Hoisting ([6ab3e72](https://github.com/module-federation/core/commit/6ab3e72b147bf8338a4e50fee2ff49cc79c53195))
2226
+ - **enhanced:** HoistContainerReferencesPlugin ([adc00e7](https://github.com/module-federation/core/commit/adc00e744522d3a96cbac7ff4f6fdfa435f77896))
2227
+ - **nextjs-mf:** Use HoistReferencePlugin over DelegatePlugin ([e8f1e43](https://github.com/module-federation/core/commit/e8f1e437f13ad0b922c7e147c4911d83ebf1b226))
2228
+
2229
+ # [0.2.0-canary.3](https://github.com/module-federation/core/compare/enhanced-0.2.0-canary.2...enhanced-0.2.0-canary.3) (2023-11-08)
2230
+
2231
+ ### Bug Fixes
2232
+
2233
+ - **enhanced:** correct schema validation issues ([5a04a81](https://github.com/module-federation/core/commit/5a04a812f505ab8287d206abd0a6996057a994fc))
2234
+
2235
+ # [0.2.0-canary.2](https://github.com/module-federation/core/compare/enhanced-0.2.0-canary.1...enhanced-0.2.0-canary.2) (2023-11-07)
2236
+
2237
+ ### Bug Fixes
2238
+
2239
+ - issues with integrated runtime chunk ([edc4d97](https://github.com/module-federation/core/commit/edc4d97393c8ad04adecc53062f40a80735defb7))
2240
+ - issues with integrated runtime chunk ([d4fa90d](https://github.com/module-federation/core/commit/d4fa90de214e5b15957c208436878d82ce223a22))
2241
+ - issues with integrated runtime chunk ([aa1b137](https://github.com/module-federation/core/commit/aa1b13791e353433d2a219addbef1443b853c2f0))
2242
+
2243
+ ### Features
2244
+
2245
+ - **enhanced:** AsyncBoundary support ESM targets and remix_run framework outputs ([0100694](https://github.com/module-federation/core/commit/0100694a07044460dc44a73cfb4ecff619177457))
2246
+
2247
+ # [0.2.0-canary.1](https://github.com/module-federation/core/compare/enhanced-0.1.0...enhanced-0.2.0-canary.1) (2023-11-06)
2248
+
2249
+ ### Bug Fixes
2250
+
2251
+ - **deps:** update dependency typedoc to v0.25.2 ([46c6524](https://github.com/module-federation/core/commit/46c65247e187cee9e15625402c1570ac351bb1fe))
2252
+ - **deps:** update dependency undici to v5.26.2 [security] ([410a8b8](https://github.com/module-federation/core/commit/410a8b8bd1558dfb5119ae10941d2b3816a0d0e0))
2253
+ - override semantic-release-plugin-decorators ([18675de](https://github.com/module-federation/core/commit/18675defef65570d2b3bb6a9caa3fd039badee29))
2254
+ - switch to @goestav/nx-semantic-release ([63a3350](https://github.com/module-federation/core/commit/63a3350a6a1a12235e3c9f1e7c724d54f0476356))
2255
+
2256
+ ### Features
2257
+
2258
+ - **enhanced:** new async boundary plugin design ([a4ac1ac](https://github.com/module-federation/core/commit/a4ac1acff974f74db6395c31134de14d9c344b6f))
2259
+ - **enhanced:** Rewrite Async Boundary based on bytedance version ([fa05dd6](https://github.com/module-federation/core/commit/fa05dd6bce2dd577b1e3fd84533459a04dbe195a))
2260
+ - **enhanced:** Support Async Mode and option ([3c33b8e](https://github.com/module-federation/core/commit/3c33b8ea3b483de5dcc3e5da9fb40c9826fdb7f7))
2261
+ - new actions, remove gpt integration ([370229e](https://github.com/module-federation/core/commit/370229e02cc352fcfaeaa0f3cf1f9f2d4966d1bb))
2262
+
2263
+ # Changelog
2264
+
2265
+ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
2266
+
2267
+ # [0.1.0](https://github.com/module-federation/nextjs-mf/compare/enhanced-0.0.4-0...enhanced-0.1.0) (2023-10-07)
2268
+
2269
+ ### Bug Fixes
2270
+
2271
+ - ensure chunk handler exists before calling it ([98ba838](https://github.com/module-federation/nextjs-mf/commit/98ba838f979bbef11f5d678c3bf27a4de534cf9d))
2272
+
2273
+ ### Features
2274
+
2275
+ - AddRuntimeRequirementToPromiseExternal ([9bc5a20](https://github.com/module-federation/nextjs-mf/commit/9bc5a20b54228de7d1f2554eee10360a34e8d8a1))
2276
+
2277
+ ## [0.0.4-0](https://github.com/module-federation/nextjs-mf/compare/enhanced-0.0.3...enhanced-0.0.4-0) (2023-10-03)
2278
+
2279
+ ### Bug Fixes
2280
+
2281
+ - no external helpers ([6c47fd4](https://github.com/module-federation/nextjs-mf/commit/6c47fd4ce19f2292f6718d201005fba4a8552252))
2282
+
2283
+ ## [0.0.3](https://github.com/module-federation/nextjs-mf/compare/enhanced-0.0.2...enhanced-0.0.3) (2023-10-03)
2284
+
2285
+ ## [0.0.2](https://github.com/module-federation/nextjs-mf/compare/enhanced-0.0.1...enhanced-0.0.2) (2023-10-03)
2286
+
2287
+ ## [0.0.1](https://github.com/module-federation/nextjs-mf/compare/enhanced-0.0.1-rc.0...enhanced-0.0.1) (2023-10-03)
2288
+
2289
+ ## 0.0.1-rc.0 (2023-10-03)
2290
+
2291
+ ### Bug Fixes
2292
+
2293
+ - add missing serialize method on RemoteModule ([e7ac801](https://github.com/module-federation/nextjs-mf/commit/e7ac801151b08dbb5ca025bd8ac03683f792f92f))
2294
+ - add override to remoteModule ([875038a](https://github.com/module-federation/nextjs-mf/commit/875038ad68dfed05822c1bc7c68ae91e57282f4f))
2295
+ - bad impleentation during federation port ([cc2e53f](https://github.com/module-federation/nextjs-mf/commit/cc2e53f0351fb94c9068223ad6b8d990a913ab53))
2296
+ - broken versioning issues in consumes ([e7fada2](https://github.com/module-federation/nextjs-mf/commit/e7fada211b1e58dc52eafeff4210a9ce62636f9d))
2297
+ - change exports for module info runtime ([f40c538](https://github.com/module-federation/nextjs-mf/commit/f40c538221353a61938cadf624c9235ec8eb4cce))
2298
+ - **enhanced:** module info duplication ([49b4a57](https://github.com/module-federation/nextjs-mf/commit/49b4a5736714c1db4510d10cdd5fe0277123caa8))
2299
+ - **enhanced:** syntax issue in proxy ([2e5848b](https://github.com/module-federation/nextjs-mf/commit/2e5848b4be3e3bba46508a427c1bc8f2d3043c8d))
2300
+ - improve backward compat **remote_scope** global ([ac0efa3](https://github.com/module-federation/nextjs-mf/commit/ac0efa37d975a130aa3badc657fa66d723865a5b))
2301
+ - improve logic in runtime module info proxy ([8eea1a8](https://github.com/module-federation/nextjs-mf/commit/8eea1a84ae6a12f69dbb16d00f52ec902efbdda6))
2302
+ - legacy scope duplication on recreation ([347e4c9](https://github.com/module-federation/nextjs-mf/commit/347e4c96e87ff4f28dce319fc6b2fe40f1cbabee))
2303
+ - package data ([992d298](https://github.com/module-federation/nextjs-mf/commit/992d2985c29d0bf86de6739f728fbf64749e7fd0))
2304
+ - remote global share scope ([e05d32f](https://github.com/module-federation/nextjs-mf/commit/e05d32f489880d6b4e0fc21a3807e619a40bc5b3))
2305
+ - Ts import error ([6e7974c](https://github.com/module-federation/nextjs-mf/commit/6e7974c22874378122ab31eea27dddd0604505db))
2306
+ - TS imports to webpack ([d506b49](https://github.com/module-federation/nextjs-mf/commit/d506b492b724ccfb7fdcf6234196ac421564c153))
2307
+ - TS imports, missing module methods ([8eb422d](https://github.com/module-federation/nextjs-mf/commit/8eb422d30e149cb0d96835f036ec73ce1ccafe53))
2308
+ - ts in template string ([579b341](https://github.com/module-federation/nextjs-mf/commit/579b341a5eb38ca6396da15f9667729ab84d2ff6))
2309
+ - ts in template string ([37e790a](https://github.com/module-federation/nextjs-mf/commit/37e790a7b46ff6d8c8fd2c12cfd5629900db1b53))
2310
+ - ts in template string ([0edbbea](https://github.com/module-federation/nextjs-mf/commit/0edbbeaa42503237b88132252e29a34a79bade51))
2311
+ - ts in template string ([1d56efd](https://github.com/module-federation/nextjs-mf/commit/1d56efdf3d0bc78d19d187fe561fbbf453bada87))
2312
+ - ts in template string ([113d703](https://github.com/module-federation/nextjs-mf/commit/113d7037de8238ed0bcf9418ac1bf3d082fbea66))
2313
+ - typescript issues ([0a07481](https://github.com/module-federation/nextjs-mf/commit/0a07481552e1df6b35506165cbc649996004c318))
2314
+ - use ES5 for renderStartup of entrypoint ([d14324a](https://github.com/module-federation/nextjs-mf/commit/d14324a9af856fca974a8f9945ba7d0d2a96be48))
2315
+
2316
+ ### Features
2317
+
2318
+ - additional plugin exports ([0604461](https://github.com/module-federation/nextjs-mf/commit/0604461ea8806d4e064955f5edef571a9a45d8d0))
2319
+ - AsyncBoundaryPlugin ([00227ca](https://github.com/module-federation/nextjs-mf/commit/00227cabf3a1e7286148e84d5714e020391771f7))
2320
+ - checkInvalidContext as tapable hook ([a3eb553](https://github.com/module-federation/nextjs-mf/commit/a3eb5537ff462ead2230615f578569ec46199f50))
2321
+ - **ContainerEntryModule:** fix TypeScript issue, enhance needBuild method [#398](https://github.com/module-federation/nextjs-mf/issues/398)a60e ([c561e11](https://github.com/module-federation/nextjs-mf/commit/c561e111a54b253fd194c3b75041577dda50ad4b)), closes [#398a60](https://github.com/module-federation/nextjs-mf/issues/398a60)
2322
+ - **enhanced:** Fork Module Federation ([8682990](https://github.com/module-federation/nextjs-mf/commit/8682990e7fec6309ce20572958916f747737af90))
2323
+ - **enhanced:** Refactor ContainerEntryDependency and ContainerEntryModule for better code readability and maintainability ([e93e7d2](https://github.com/module-federation/nextjs-mf/commit/e93e7d2fafe2e22f7d2c613095ce1900d7531f29))
2324
+ - fork module federation ([0ad7430](https://github.com/module-federation/nextjs-mf/commit/0ad7430f6170458a47144be392133b7b2fa1ade0))
2325
+ - improved async init ([17b1419](https://github.com/module-federation/nextjs-mf/commit/17b1419ef31ec5661fa06b9f0c297e2771e2a86c))
2326
+ - support lazy compilation ([29c234c](https://github.com/module-federation/nextjs-mf/commit/29c234c14315e000acefc60d635ee486205ca83e))
2327
+ - Use enhanced Federation Plugin ([e021d66](https://github.com/module-federation/nextjs-mf/commit/e021d6667996962f154137d164bed13f53a6a135))
2328
+
2329
+ ### Reverts
2330
+
2331
+ - Revert "add migration / sync steps" ([5511559](https://github.com/module-federation/nextjs-mf/commit/5511559b86937b2733ac2e8db7e0a4fb33293778))
2332
+
2333
+ ## 0.0.1-0 (2023-10-03)
2334
+
2335
+ ### Bug Fixes
2336
+
2337
+ - add missing serialize method on RemoteModule ([e7ac801](https://github.com/module-federation/nextjs-mf/commit/e7ac801151b08dbb5ca025bd8ac03683f792f92f))
2338
+ - add override to remoteModule ([875038a](https://github.com/module-federation/nextjs-mf/commit/875038ad68dfed05822c1bc7c68ae91e57282f4f))
2339
+ - bad impleentation during federation port ([cc2e53f](https://github.com/module-federation/nextjs-mf/commit/cc2e53f0351fb94c9068223ad6b8d990a913ab53))
2340
+ - broken versioning issues in consumes ([e7fada2](https://github.com/module-federation/nextjs-mf/commit/e7fada211b1e58dc52eafeff4210a9ce62636f9d))
2341
+ - change exports for module info runtime ([f40c538](https://github.com/module-federation/nextjs-mf/commit/f40c538221353a61938cadf624c9235ec8eb4cce))
2342
+ - **enhanced:** module info duplication ([49b4a57](https://github.com/module-federation/nextjs-mf/commit/49b4a5736714c1db4510d10cdd5fe0277123caa8))
2343
+ - **enhanced:** syntax issue in proxy ([2e5848b](https://github.com/module-federation/nextjs-mf/commit/2e5848b4be3e3bba46508a427c1bc8f2d3043c8d))
2344
+ - improve backward compat **remote_scope** global ([ac0efa3](https://github.com/module-federation/nextjs-mf/commit/ac0efa37d975a130aa3badc657fa66d723865a5b))
2345
+ - improve logic in runtime module info proxy ([8eea1a8](https://github.com/module-federation/nextjs-mf/commit/8eea1a84ae6a12f69dbb16d00f52ec902efbdda6))
2346
+ - legacy scope duplication on recreation ([347e4c9](https://github.com/module-federation/nextjs-mf/commit/347e4c96e87ff4f28dce319fc6b2fe40f1cbabee))
2347
+ - package data ([992d298](https://github.com/module-federation/nextjs-mf/commit/992d2985c29d0bf86de6739f728fbf64749e7fd0))
2348
+ - remote global share scope ([e05d32f](https://github.com/module-federation/nextjs-mf/commit/e05d32f489880d6b4e0fc21a3807e619a40bc5b3))
2349
+ - Ts import error ([6e7974c](https://github.com/module-federation/nextjs-mf/commit/6e7974c22874378122ab31eea27dddd0604505db))
2350
+ - TS imports to webpack ([d506b49](https://github.com/module-federation/nextjs-mf/commit/d506b492b724ccfb7fdcf6234196ac421564c153))
2351
+ - TS imports, missing module methods ([8eb422d](https://github.com/module-federation/nextjs-mf/commit/8eb422d30e149cb0d96835f036ec73ce1ccafe53))
2352
+ - ts in template string ([579b341](https://github.com/module-federation/nextjs-mf/commit/579b341a5eb38ca6396da15f9667729ab84d2ff6))
2353
+ - ts in template string ([37e790a](https://github.com/module-federation/nextjs-mf/commit/37e790a7b46ff6d8c8fd2c12cfd5629900db1b53))
2354
+ - ts in template string ([0edbbea](https://github.com/module-federation/nextjs-mf/commit/0edbbeaa42503237b88132252e29a34a79bade51))
2355
+ - ts in template string ([1d56efd](https://github.com/module-federation/nextjs-mf/commit/1d56efdf3d0bc78d19d187fe561fbbf453bada87))
2356
+ - ts in template string ([113d703](https://github.com/module-federation/nextjs-mf/commit/113d7037de8238ed0bcf9418ac1bf3d082fbea66))
2357
+ - typescript issues ([0a07481](https://github.com/module-federation/nextjs-mf/commit/0a07481552e1df6b35506165cbc649996004c318))
2358
+ - use ES5 for renderStartup of entrypoint ([d14324a](https://github.com/module-federation/nextjs-mf/commit/d14324a9af856fca974a8f9945ba7d0d2a96be48))
2359
+
2360
+ ### Features
2361
+
2362
+ - additional plugin exports ([0604461](https://github.com/module-federation/nextjs-mf/commit/0604461ea8806d4e064955f5edef571a9a45d8d0))
2363
+ - AsyncBoundaryPlugin ([00227ca](https://github.com/module-federation/nextjs-mf/commit/00227cabf3a1e7286148e84d5714e020391771f7))
2364
+ - checkInvalidContext as tapable hook ([a3eb553](https://github.com/module-federation/nextjs-mf/commit/a3eb5537ff462ead2230615f578569ec46199f50))
2365
+ - **ContainerEntryModule:** fix TypeScript issue, enhance needBuild method [#398](https://github.com/module-federation/nextjs-mf/issues/398)a60e ([c561e11](https://github.com/module-federation/nextjs-mf/commit/c561e111a54b253fd194c3b75041577dda50ad4b)), closes [#398a60](https://github.com/module-federation/nextjs-mf/issues/398a60)
2366
+ - **enhanced:** Fork Module Federation ([8682990](https://github.com/module-federation/nextjs-mf/commit/8682990e7fec6309ce20572958916f747737af90))
2367
+ - **enhanced:** Refactor ContainerEntryDependency and ContainerEntryModule for better code readability and maintainability ([e93e7d2](https://github.com/module-federation/nextjs-mf/commit/e93e7d2fafe2e22f7d2c613095ce1900d7531f29))
2368
+ - fork module federation ([0ad7430](https://github.com/module-federation/nextjs-mf/commit/0ad7430f6170458a47144be392133b7b2fa1ade0))
2369
+ - improved async init ([17b1419](https://github.com/module-federation/nextjs-mf/commit/17b1419ef31ec5661fa06b9f0c297e2771e2a86c))
2370
+ - support lazy compilation ([29c234c](https://github.com/module-federation/nextjs-mf/commit/29c234c14315e000acefc60d635ee486205ca83e))
2371
+ - Use enhanced Federation Plugin ([e021d66](https://github.com/module-federation/nextjs-mf/commit/e021d6667996962f154137d164bed13f53a6a135))
2372
+
2373
+ ### Reverts
2374
+
2375
+ - Revert "add migration / sync steps" ([5511559](https://github.com/module-federation/nextjs-mf/commit/5511559b86937b2733ac2e8db7e0a4fb33293778))