Skip to content

Releases: jd-opensource/micro-app

v1.0.0-alpha.1

06 Jul 06:47
Compare
Choose a tag to compare
v1.0.0-alpha.1 Pre-release
Pre-release

2022-07-06

  • New

    • 🆕 新增了独立的路由系统 - MemoryRouter,简化接入步骤。
    • 🆕 新增了proxyRequest,用于拦截fetch、XMLHttpRequest、EventSource请求并进行处理。
  • Bug Fix

    • 🐞 修复了通过create-react-app创建的react应用热更新时报错的问题。
    • 🐞 修复了子应用执行pushState/replaceStatepopStateEvent事件异常触发的问题。
  • Update

    • 🚀 优化了资源加载相关代码和逻辑。

Full Changelog: micro-zoe/micro-app@v1.0.0-alpha.1...v1.0.0-alpha.1

v0.8.7

06 Jul 06:58
Compare
Choose a tag to compare
chore: change version

v0.8.6

06 Jul 06:37
Compare
Choose a tag to compare

2022-06-30

  • New

    • 🆕 在 plugin 中增加 excludeChecker 和 ignoreChecker 用于主应用主动忽略子应用部分 script 和 link。
    • 🆕 新增了processHtml,用于在插件中处理html。
  • Update

    • 🚀 优化了资源加载相关代码和逻辑。
    • 🚀 优化了单元测试相关代码。

v0.8.5

14 Feb 08:54
Compare
Choose a tag to compare

2022-02-14

  • New

    • 🆕 provide source script info for js loader.

v0.8.4

25 Jan 08:39
Compare
Choose a tag to compare

2022-01-25

  • Bug Fix

    • 🐞 Fixed the problem that the execution speed of style isolation is too slow in Firefox browser 80 and above.

v0.8.3

20 Jan 06:07
Compare
Choose a tag to compare

2022-01-20

  • Bug Fix

    • 🐞 Fixed the Error of parsing style when importing SVG through background image in CSS.
  • Update

    • 🚀 Optimized logic of scoped_css, improve compatibility and performance.

v0.8.2

14 Jan 10:46
Compare
Choose a tag to compare

2022-01-14

  • New

    • 🆕 Add pureCreateElement method to microApp, used to create unbound pure elements.
    • 🆕 Add removeDomScope method to microApp, used to clear dom scope.
  • Bug Fix

    • 🐞 Fixed the conflict of vue, when the base app load Vue through remote link, issue #234
  • Update

    • 🚀 Optimized code and logic of prefetch, reduce the impact on the base app.

v0.8.1

12 Jan 07:42
Compare
Choose a tag to compare

2022-01-12

  • Bug Fix

    • 🐞 Fix bug of element-plus dom escape from micro-app element, issue #157, #121.
    • 🐞 Fix bug of parser style error when using IE6 and 7 csshack, issue #232.
  • Update

    • 🚀 Optimized plugins logic and code, PR #224 by LinFeng1997.
    • 🚀 Optimized sandbox logic and code.

v0.8.0

07 Jan 11:33
Compare
Choose a tag to compare

2022-01-07

  • New

    • 🆕 新增了在样式隔离下的动态忽略规则。
  • Bug Fix

    • 🐞 修复了在使用css变量时导致样式丢失的问题,fix #157#121
    • 🐞 修复了在部分浏览器(如:safari)下,css表现有差异的问题。
  • Update

    • 🚀 样式隔离重构,提升性能和兼容性。

v0.7.1

31 Dec 04:23
Compare
Choose a tag to compare

0.7.1

2021-12-31

  • Bug Fix

    • 🐞 修复了link标签在非head时样式丢失的问题
    • 🐞 修复了错误补全svg地址的问题,PR #207 by icksky
    • 🐞 修复了在部分浏览器下报WeakRef is not defined错误的问题。