diff --git a/CHANGELOG.md b/CHANGELOG.md index ff47cf91..09206cab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.22](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.22) (2023-12-18) + +### Bug Fixes + +* 解决子应用销毁时,主应用监听事件内存未被释放 [#752](https://github.com/Tencent/wujie/issues/752) ([#753](https://github.com/Tencent/wujie/issues/753)) ([5fa87a8](https://github.com/Tencent/wujie/commit/5fa87a8b4440658c947f71126cd432c337dd8a26)), closes [#568](https://github.com/Tencent/wujie/issues/568) +* 修复降级模式会丢失事件监听器 ([#758](https://github.com/Tencent/wujie/issues/758)) ([534e865](https://github.com/Tencent/wujie/commit/534e8653c266df0373cbe3a924a79f92f4f604b8)) +* 修复在safari下scriptElement的src下不可写的问题 ([84b2378](https://github.com/Tencent/wujie/commit/84b2378d952814b3112ba2b16b91db940807e2d5)) +* 修复重复Object.defineProperties导致的报错 ([94bbfa6](https://github.com/Tencent/wujie/commit/94bbfa6eb879b156eeef68cd4aa68ac32d772fe3)) + ## [1.0.21](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.21) (2023-12-18) ### Bug Fixes diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c638efeb..65aaf8ee 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.22](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.22) (2023-12-18) + +**Note:** Version bump only for package wujie-docs + ## [1.0.21](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.21) (2023-12-18) **Note:** Version bump only for package wujie-docs diff --git a/docs/package.json b/docs/package.json index 343057d5..23ae3555 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "wujie-docs", - "version": "1.0.21", + "version": "1.0.22", "description": "", "main": "index.js", "private": true, diff --git a/examples/main-react/CHANGELOG.md b/examples/main-react/CHANGELOG.md index e1a0ad80..88905bf1 100644 --- a/examples/main-react/CHANGELOG.md +++ b/examples/main-react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.22](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.22) (2023-12-18) + +**Note:** Version bump only for package main-react + ## [1.0.21](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.21) (2023-12-18) **Note:** Version bump only for package main-react diff --git a/examples/main-react/package.json b/examples/main-react/package.json index fb1c9763..d37ff237 100644 --- a/examples/main-react/package.json +++ b/examples/main-react/package.json @@ -1,6 +1,6 @@ { "name": "main-react", - "version": "1.0.21", + "version": "1.0.22", "private": true, "dependencies": { "@ant-design/icons": "^4.7.0", @@ -59,7 +59,7 @@ "webpack-dev-server": "^4.6.0", "webpack-manifest-plugin": "^4.0.2", "workbox-webpack-plugin": "^6.4.1", - "wujie-react": "workspace:^1.0.21" + "wujie-react": "workspace:^1.0.22" }, "scripts": { "start": "node scripts/start.js", diff --git a/examples/main-vue/CHANGELOG.md b/examples/main-vue/CHANGELOG.md index c3a51643..399acf91 100644 --- a/examples/main-vue/CHANGELOG.md +++ b/examples/main-vue/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.22](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.22) (2023-12-18) + +**Note:** Version bump only for package main-vue + ## [1.0.21](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.21) (2023-12-18) **Note:** Version bump only for package main-vue diff --git a/examples/main-vue/package.json b/examples/main-vue/package.json index ddabcf6b..d081b4a2 100644 --- a/examples/main-vue/package.json +++ b/examples/main-vue/package.json @@ -1,6 +1,6 @@ { "name": "main-vue", - "version": "1.0.21", + "version": "1.0.22", "private": true, "scripts": { "start": "vue-cli-service serve", @@ -14,8 +14,8 @@ "vue": "^2.6.11", "vue-router": "^3.2.0", "whatwg-fetch": "^3.6.2", - "wujie": "workspace:^1.0.21", - "wujie-vue2": "workspace:^1.0.21" + "wujie": "workspace:^1.0.22", + "wujie-vue2": "workspace:^1.0.22" }, "devDependencies": { "@vue/cli-plugin-babel": "~4.5.0", diff --git a/examples/react16/CHANGELOG.md b/examples/react16/CHANGELOG.md index 74dc75dd..a39a1d51 100644 --- a/examples/react16/CHANGELOG.md +++ b/examples/react16/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.22](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.22) (2023-12-18) + +**Note:** Version bump only for package react16 + ## [1.0.21](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.21) (2023-12-18) **Note:** Version bump only for package react16 diff --git a/examples/react16/package.json b/examples/react16/package.json index b7ac639f..3a7586ea 100644 --- a/examples/react16/package.json +++ b/examples/react16/package.json @@ -1,6 +1,6 @@ { "name": "react16", - "version": "1.0.21", + "version": "1.0.22", "private": true, "dependencies": { "@babel/core": "^7.16.0", @@ -59,7 +59,7 @@ "webpack-dev-server": "^4.6.0", "webpack-manifest-plugin": "^4.0.2", "workbox-webpack-plugin": "^6.4.1", - "wujie-react": "workspace:^1.0.21" + "wujie-react": "workspace:^1.0.22" }, "scripts": { "start": "node scripts/start.js", diff --git a/lerna.json b/lerna.json index 3dad3d1f..8eee36df 100644 --- a/lerna.json +++ b/lerna.json @@ -16,5 +16,5 @@ ] } }, - "version": "1.0.21" + "version": "1.0.22" } diff --git a/packages/wujie-core/CHANGELOG.md b/packages/wujie-core/CHANGELOG.md index dbde3fb0..feede01a 100644 --- a/packages/wujie-core/CHANGELOG.md +++ b/packages/wujie-core/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.22](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.22) (2023-12-18) + +### Bug Fixes + +* 解决子应用销毁时,主应用监听事件内存未被释放 [#752](https://github.com/Tencent/wujie/issues/752) ([#753](https://github.com/Tencent/wujie/issues/753)) ([5fa87a8](https://github.com/Tencent/wujie/commit/5fa87a8b4440658c947f71126cd432c337dd8a26)), closes [#568](https://github.com/Tencent/wujie/issues/568) +* 修复降级模式会丢失事件监听器 ([#758](https://github.com/Tencent/wujie/issues/758)) ([534e865](https://github.com/Tencent/wujie/commit/534e8653c266df0373cbe3a924a79f92f4f604b8)) +* 修复在safari下scriptElement的src下不可写的问题 ([84b2378](https://github.com/Tencent/wujie/commit/84b2378d952814b3112ba2b16b91db940807e2d5)) +* 修复重复Object.defineProperties导致的报错 ([94bbfa6](https://github.com/Tencent/wujie/commit/94bbfa6eb879b156eeef68cd4aa68ac32d772fe3)) + ## [1.0.21](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.21) (2023-12-18) ### Bug Fixes diff --git a/packages/wujie-core/package.json b/packages/wujie-core/package.json index a44bf259..3fb8753a 100644 --- a/packages/wujie-core/package.json +++ b/packages/wujie-core/package.json @@ -1,6 +1,6 @@ { "name": "wujie", - "version": "1.0.21", + "version": "1.0.22", "description": "极致的微前端框架", "main": "./lib/index.js", "module": "./esm/index.js", diff --git a/packages/wujie-react/CHANGELOG.md b/packages/wujie-react/CHANGELOG.md index 9bc5c168..f715c281 100644 --- a/packages/wujie-react/CHANGELOG.md +++ b/packages/wujie-react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.22](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.22) (2023-12-18) + +**Note:** Version bump only for package wujie-react + ## [1.0.21](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.21) (2023-12-18) **Note:** Version bump only for package wujie-react diff --git a/packages/wujie-react/package.json b/packages/wujie-react/package.json index f4b70662..b2b67683 100644 --- a/packages/wujie-react/package.json +++ b/packages/wujie-react/package.json @@ -1,6 +1,6 @@ { "name": "wujie-react", - "version": "1.0.21", + "version": "1.0.22", "description": "无界微前端React组件封装", "main": "./lib/index.js", "module": "./esm/index.js", @@ -30,7 +30,7 @@ "license": "MIT", "dependencies": { "prop-types": "^15.8.1", - "wujie": "workspace:1.0.21" + "wujie": "workspace:1.0.22" }, "devDependencies": { "@babel/cli": "^7.18.6", diff --git a/packages/wujie-vue2/CHANGELOG.md b/packages/wujie-vue2/CHANGELOG.md index d6bf78ba..f8eb009a 100644 --- a/packages/wujie-vue2/CHANGELOG.md +++ b/packages/wujie-vue2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.22](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.22) (2023-12-18) + +**Note:** Version bump only for package wujie-vue2 + ## [1.0.21](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.21) (2023-12-18) **Note:** Version bump only for package wujie-vue2 diff --git a/packages/wujie-vue2/package.json b/packages/wujie-vue2/package.json index dd99e4cb..eafea699 100644 --- a/packages/wujie-vue2/package.json +++ b/packages/wujie-vue2/package.json @@ -1,6 +1,6 @@ { "name": "wujie-vue2", - "version": "1.0.21", + "version": "1.0.22", "description": "无界微前端Vue2组件封装", "main": "./lib/index.js", "module": "./esm/index.js", @@ -29,7 +29,7 @@ }, "license": "MIT", "dependencies": { - "wujie": "workspace:1.0.21" + "wujie": "workspace:1.0.22" }, "devDependencies": { "@babel/cli": "^7.18.6", diff --git a/packages/wujie-vue3/CHANGELOG.md b/packages/wujie-vue3/CHANGELOG.md index 2d722786..f15477e4 100644 --- a/packages/wujie-vue3/CHANGELOG.md +++ b/packages/wujie-vue3/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.22](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.22) (2023-12-18) + +**Note:** Version bump only for package wujie-vue3 + ## [1.0.21](https://github.com/Tencent/wujie/compare/v1.0.20...v1.0.21) (2023-12-18) **Note:** Version bump only for package wujie-vue3 diff --git a/packages/wujie-vue3/package.json b/packages/wujie-vue3/package.json index 48e39439..43199514 100644 --- a/packages/wujie-vue3/package.json +++ b/packages/wujie-vue3/package.json @@ -1,6 +1,6 @@ { "name": "wujie-vue3", - "version": "1.0.21", + "version": "1.0.22", "description": "无界微前端Vue3组件封装", "main": "./lib/index.js", "module": "./esm/index.js", @@ -29,7 +29,7 @@ }, "license": "MIT", "dependencies": { - "wujie": "workspace:1.0.21" + "wujie": "workspace:1.0.22" }, "devDependencies": { "@babel/cli": "^7.18.6",