Skip to content

Commit 14fa276

Browse files
committed
v1.0.1
1 parent 3107aad commit 14fa276

File tree

18 files changed

+94
-16
lines changed

18 files changed

+94
-16
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.0.1](https://github.com/alibaba/lowcode-datasource/compare/v1.0.0...v1.0.1) (2022-03-17)
7+
8+
9+
### Bug Fixes
10+
11+
* 🐛 修复部分异常JSExpression返回值,减少Error ([3107aad](https://github.com/alibaba/lowcode-datasource/commit/3107aad3735379c28aef6d1d971c6ffb76ef9508))
12+
13+
14+
15+
16+
617
# 1.0.0 (2022-02-15)
718

819

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"npmClient": "yarn",
77
"useWorkspaces": true,
88
"command": {

packages/datasource-engine/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.0.1](https://github.com/alibaba/lowcode-datasource/compare/v1.0.0...v1.0.1) (2022-03-17)
7+
8+
9+
### Bug Fixes
10+
11+
* 🐛 修复部分异常JSExpression返回值,减少Error ([3107aad](https://github.com/alibaba/lowcode-datasource/commit/3107aad3735379c28aef6d1d971c6ffb76ef9508))
12+
13+
14+
15+
16+
617
# 1.0.0 (2022-02-15)
718

819

packages/datasource-engine/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alilc/lowcode-datasource-engine",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "DataSource Engine for lowcode",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",
@@ -17,7 +17,7 @@
1717
"prepublishOnly": "npm run build"
1818
},
1919
"dependencies": {
20-
"@alilc/lowcode-datasource-types": "^1.0.0",
20+
"@alilc/lowcode-datasource-types": "^1.0.1",
2121
"@alilc/lowcode-types": "^1.0.0-beta.3",
2222
"lodash": "^4.17.21",
2323
"typescript": "^3.9.7"

packages/datasource-fetch-handler/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.0.1](https://github.com/alibaba/lowcode-datasource/compare/v1.0.0...v1.0.1) (2022-03-17)
7+
8+
**Note:** Version bump only for package @alilc/lowcode-datasource-fetch-handler
9+
10+
11+
12+
13+
614
# 1.0.0 (2022-02-15)
715

816

packages/datasource-fetch-handler/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alilc/lowcode-datasource-fetch-handler",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"main": "lib/index.js",
55
"module": "es/index.js",
66
"typings": "es/index.d.ts",
@@ -16,7 +16,7 @@
1616
"prepublishOnly": "npm run build"
1717
},
1818
"dependencies": {
19-
"@alilc/lowcode-datasource-types": "^1.0.0",
19+
"@alilc/lowcode-datasource-types": "^1.0.1",
2020
"typescript": "^3.9.7",
2121
"universal-request": "^2.2.0"
2222
},

packages/datasource-jsonp-handler/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.0.1](https://github.com/alibaba/lowcode-datasource/compare/v1.0.0...v1.0.1) (2022-03-17)
7+
8+
**Note:** Version bump only for package @alilc/lowcode-datasource-jsonp-handler
9+
10+
11+
12+
13+
614
# 1.0.0 (2022-02-15)
715

816

packages/datasource-jsonp-handler/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alilc/lowcode-datasource-jsonp-handler",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"main": "lib/index.js",
55
"module": "es/index.js",
66
"typings": "es/index.d.ts",
@@ -16,7 +16,7 @@
1616
"prepublishOnly": "npm run build"
1717
},
1818
"dependencies": {
19-
"@alilc/lowcode-datasource-types": "^1.0.0",
19+
"@alilc/lowcode-datasource-types": "^1.0.1",
2020
"jsonp": "^0.2.1",
2121
"typescript": "^3.9.7"
2222
},

packages/datasource-mopen-handler/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.0.1](https://github.com/alibaba/lowcode-datasource/compare/v1.0.0...v1.0.1) (2022-03-17)
7+
8+
**Note:** Version bump only for package @alilc/lowcode-datasource-mopen-handler
9+
10+
11+
12+
13+
614
# 1.0.0 (2022-02-15)
715

816

packages/datasource-mopen-handler/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alilc/lowcode-datasource-mopen-handler",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"main": "lib/index.js",
55
"module": "es/index.js",
66
"typings": "es/index.d.ts",
@@ -17,7 +17,7 @@
1717
},
1818
"dependencies": {
1919
"@ali/mirror-io-client-mopen": "1.0.0-beta.16",
20-
"@alilc/lowcode-datasource-types": "^1.0.0",
20+
"@alilc/lowcode-datasource-types": "^1.0.1",
2121
"typescript": "^3.9.7"
2222
},
2323
"publishConfig": {

0 commit comments

Comments
 (0)