Skip to content

Commit b006576

Browse files
author
knight.chen
committed
chore(release): publish 1.5.0
1 parent 743c70c commit b006576

File tree

10 files changed

+83
-8
lines changed

10 files changed

+83
-8
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.5.0](https://github.com/KNXCloud/lowcode-engine-vue/compare/v1.4.7...v1.5.0) (2022-09-29)
7+
8+
9+
### Bug Fixes
10+
11+
* **vue-renderer:** 修复当未在 state 中注册变量时, 数据源请求数据无法响应式 ([37598c4](https://github.com/KNXCloud/lowcode-engine-vue/commit/37598c43a5fb9e7bc6e7015128f14f6cd120abff))
12+
* **vue-simulator-renderer:** 修复当组件根元素 teleport 时,无法正确获取组件 dom 实例 ([a41e658](https://github.com/KNXCloud/lowcode-engine-vue/commit/a41e65824869c8829895f71daeb00abe1fe21578))
13+
14+
15+
### Features
16+
17+
* **utils:** 添加 buildUtils 工具方法 ([df37aab](https://github.com/KNXCloud/lowcode-engine-vue/commit/df37aab88daa01d8cbd617f1bf58895acd4cdc8e))
18+
* **vue-renderer:** 导出 renderer 组件参数相关类型声明 ([101186f](https://github.com/KNXCloud/lowcode-engine-vue/commit/101186f8c7f66afe6417a6c4673b13532a3983e1))
19+
* **vue-simulator-renderer:** 适配器支持设计器 dataHelper 参数 ([b3fa0db](https://github.com/KNXCloud/lowcode-engine-vue/commit/b3fa0db929cdd03376310f1e8cbdbd2e0d6d8582))
20+
21+
22+
23+
24+
625
## [1.4.7](https://github.com/KNXCloud/lowcode-engine-vue/compare/v1.4.6...v1.4.7) (2022-08-30)
726

827

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.4.7",
2+
"version": "1.5.0",
33
"npmClient": "pnpm",
44
"useWorkspaces": true,
55
"packages": ["packages/*"],

packages/hooks/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.5.0](https://github.com/KNXCloud/lowcode-engine-vue/compare/v1.4.7...v1.5.0) (2022-09-29)
7+
8+
**Note:** Version bump only for package @knxcloud/lowcode-hooks
9+
10+
11+
12+
13+
614
## [1.4.6](https://github.com/KNXCloud/lowcode-engine-vue/compare/v1.4.5...v1.4.6) (2022-08-10)
715

816
**Note:** Version bump only for package @knxcloud/lowcode-hooks

packages/hooks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@knxcloud/lowcode-hooks",
3-
"version": "1.4.6",
3+
"version": "1.5.0",
44
"main": "lib/index.js",
55
"module": "es/index.js",
66
"typings": "es/index.d.ts",

packages/utils/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.5.0](https://github.com/KNXCloud/lowcode-engine-vue/compare/v1.4.7...v1.5.0) (2022-09-29)
7+
8+
9+
### Bug Fixes
10+
11+
* **vue-simulator-renderer:** 修复当组件根元素 teleport 时,无法正确获取组件 dom 实例 ([a41e658](https://github.com/KNXCloud/lowcode-engine-vue/commit/a41e65824869c8829895f71daeb00abe1fe21578))
12+
13+
14+
### Features
15+
16+
* **utils:** 添加 buildUtils 工具方法 ([df37aab](https://github.com/KNXCloud/lowcode-engine-vue/commit/df37aab88daa01d8cbd617f1bf58895acd4cdc8e))
17+
18+
19+
20+
21+
622
## [1.4.7](https://github.com/KNXCloud/lowcode-engine-vue/compare/v1.4.6...v1.4.7) (2022-08-30)
723

824
**Note:** Version bump only for package @knxcloud/lowcode-utils

packages/utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@knxcloud/lowcode-utils",
33
"main": "./lib/index.js",
44
"module": "./es/index.js",
5-
"version": "1.4.7",
5+
"version": "1.5.0",
66
"files": [
77
"es",
88
"lib"

packages/vue-renderer/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.5.0](https://github.com/KNXCloud/lowcode-engine-vue/compare/v1.4.7...v1.5.0) (2022-09-29)
7+
8+
9+
### Bug Fixes
10+
11+
* **vue-renderer:** 修复当未在 state 中注册变量时, 数据源请求数据无法响应式 ([37598c4](https://github.com/KNXCloud/lowcode-engine-vue/commit/37598c43a5fb9e7bc6e7015128f14f6cd120abff))
12+
13+
14+
### Features
15+
16+
* **vue-renderer:** 导出 renderer 组件参数相关类型声明 ([101186f](https://github.com/KNXCloud/lowcode-engine-vue/commit/101186f8c7f66afe6417a6c4673b13532a3983e1))
17+
18+
19+
20+
21+
622
## [1.4.7](https://github.com/KNXCloud/lowcode-engine-vue/compare/v1.4.6...v1.4.7) (2022-08-30)
723

824

packages/vue-renderer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "./lib/index.js",
44
"module": "./es/index.js",
55
"unpkg": "./dist/vue-renderer.js",
6-
"version": "1.4.7",
6+
"version": "1.5.0",
77
"files": [
88
"es",
99
"lib",
@@ -18,7 +18,7 @@
1818
"homepage": "https://unpkg.com/@knxcloud/[email protected]/build/index.html",
1919
"dependencies": {
2020
"@alilc/lowcode-types": "^1.0.14",
21-
"@knxcloud/lowcode-hooks": "^1.4.6",
21+
"@knxcloud/lowcode-hooks": "^1.5.0",
2222
"intl-messageformat": "^10.1.5",
2323
"lodash-es": "^4.17.21"
2424
},

packages/vue-simulator-renderer/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.5.0](https://github.com/KNXCloud/lowcode-engine-vue/compare/v1.4.7...v1.5.0) (2022-09-29)
7+
8+
9+
### Bug Fixes
10+
11+
* **vue-simulator-renderer:** 修复当组件根元素 teleport 时,无法正确获取组件 dom 实例 ([a41e658](https://github.com/KNXCloud/lowcode-engine-vue/commit/a41e65824869c8829895f71daeb00abe1fe21578))
12+
13+
14+
### Features
15+
16+
* **vue-simulator-renderer:** 适配器支持设计器 dataHelper 参数 ([b3fa0db](https://github.com/KNXCloud/lowcode-engine-vue/commit/b3fa0db929cdd03376310f1e8cbdbd2e0d6d8582))
17+
18+
19+
20+
21+
622
## [1.4.7](https://github.com/KNXCloud/lowcode-engine-vue/compare/v1.4.6...v1.4.7) (2022-08-30)
723

824

packages/vue-simulator-renderer/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "./lib/index.js",
44
"module": "./es/index.js",
55
"unpkg": "./dist/vue-simulator-renderer.js",
6-
"version": "1.4.7",
6+
"version": "1.5.0",
77
"files": [
88
"es",
99
"lib",
@@ -19,8 +19,8 @@
1919
"homepage": "https://unpkg.com/@knxcloud/[email protected]/build/index.html",
2020
"dependencies": {
2121
"@alilc/lowcode-types": "^1.0.14",
22-
"@knxcloud/lowcode-utils": "^1.4.7",
23-
"@knxcloud/lowcode-vue-renderer": "^1.4.7",
22+
"@knxcloud/lowcode-utils": "^1.5.0",
23+
"@knxcloud/lowcode-vue-renderer": "^1.5.0",
2424
"vue-router": "^4.1.5"
2525
},
2626
"devDependencies": {

0 commit comments

Comments
 (0)