dolphindb 3.0.132 → 3.0.200
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/CHANGELOG.zh.md +14 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## English | [中文](./CHANGELOG.zh.md)
|
|
4
|
+
|
|
5
|
+
## Version: 3.0.200
|
|
6
|
+
#### New Features
|
|
7
|
+
- Added parameter offset for streaming subscription to set the position of the first message where the subscription begins.
|
|
8
|
+
- Added support for IOTANY vectors.
|
|
9
|
+
|
|
10
|
+
#### Improvments
|
|
11
|
+
- Optimized the performance of invoke method.
|
|
12
|
+
|
|
13
|
+
#### Issues Fixed
|
|
14
|
+
- Fixed an issue where invoke failed to execute functions defined on remote nodes.
|
|
15
|
+
- Fixed disconnection issues when uploading strings with \0 to server.
|
|
16
|
+
|
|
17
|
+
|
|
3
18
|
## Version: 3.0.100
|
|
4
19
|
#### New Features
|
|
5
20
|
- Added support for heartbeat mechanism to prevent automatic disconnection due to prolonged inactivity.
|
package/CHANGELOG.zh.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# 版本发布说明
|
|
2
2
|
|
|
3
|
+
## [English](./CHANGELOG.md) | 中文
|
|
4
|
+
|
|
5
|
+
## 版本: 3.0.200
|
|
6
|
+
#### 新增功能
|
|
7
|
+
- 流数据订阅新增参数 offset,支持指定流表订阅第一条消息所在的位置。
|
|
8
|
+
- 支持 IOTANY 向量类型。
|
|
9
|
+
|
|
10
|
+
#### 功能优化
|
|
11
|
+
- 优化 invoke 方法的性能。
|
|
12
|
+
|
|
13
|
+
#### 问题修复
|
|
14
|
+
- invoke 无法执行未在远程节点上定义的函数。
|
|
15
|
+
- 上传 server 的数据中若有 `\0` 的字符串连接会断开。现已增加相关检查。
|
|
16
|
+
|
|
3
17
|
## 版本: 3.0.100
|
|
4
18
|
#### 新增功能
|
|
5
19
|
- 增加心跳机制,以避免连接长时间不使用后自动断开的情况。
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphindb",
|
|
3
3
|
"description": "DolphinDB JavaScript API",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.200",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"browser": "./browser.js",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"JavaScript"
|
|
30
30
|
],
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@types/node": "^22.7.
|
|
33
|
-
"eslint": "^9.
|
|
32
|
+
"@types/node": "^22.7.9",
|
|
33
|
+
"eslint": "^9.13.0",
|
|
34
34
|
"typescript": "^5.6.3"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"dayjs": "^1.11.13",
|
|
38
38
|
"ipaddr.js": "^2.2.0",
|
|
39
39
|
"tslib": "^2.8.0",
|
|
40
|
-
"xshell": "^1.0.
|
|
40
|
+
"xshell": "^1.0.186"
|
|
41
41
|
}
|
|
42
42
|
}
|