@module-federation/enhanced 2.0.1 → 2.2.0

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