Micro App Versions Save

A simple, efficient and powerful micro front-end framework. 一款简约、高效、功能强大的微前端框架

v0.8.4

2 years ago

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

2 years ago

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

2 years ago

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

2 years ago

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

2 years ago

2022-01-07

  • New

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

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

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

v0.7.1

2 years ago

0.7.1

2021-12-31

  • Bug Fix

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

v0.7.0

2 years ago

0.7.0

2021-12-29

  • New

    • 🆕 新增Api,对外export MicroApp类。
  • Update

    • 🚀 沙箱重构,性能优化。
    • 🚀 优化了execScripts方法,不再使用Promise.all,防止单文件加载错误导致后续文件无法执行的问题。
    • 🚀 优化了getActiveApps方法,增加对过滤keep-alive应用的支持。

v0.6.2

2 years ago

0.6.2

2021-12-19

  • Bug Fix

    • 🐞 修复了在SSR环境下,抛出Image is not defined的报错问题。

v0.6.1

2 years ago

2021-12-17

  • New

    • 🆕 新增了unmountApp, unmountAllApps方法,用于主动卸载应用。
    • 🆕 新增了对disable-sandbox, disable-scopecss配置的支持。
  • Bug Fix

    • 🐞 修复了通过new Image()创建的元素逃离沙箱的问题,fix #186,PR #187 by asiainfoliwei
    • 🐞 修复了通过cloneNode创建的元素逃离沙箱的问题。
  • Update

    • 🚀 优化了元素隔离patch原型链方法相关代码。
    • 🚀 优化了kee-alive和destory相关的处理逻辑。
    • 🚀 优化了unmount生命周期的触发时机,移动到应用彻底卸载后执行。

v0.6.0

2 years ago

2021-12-10

  • New

    • 🆕 新增了对keep-alive模式的支持。