File tree Expand file tree Collapse file tree 2 files changed +36
-2
lines changed Expand file tree Collapse file tree 2 files changed +36
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## v3.5.0
2
+ (2023-10-16)
3
+
4
+ 请阅读控制台 v3.x+文档:
5
+
6
+ - [ 中文用户手册] ( https://fisco-bcos-doc.readthedocs.io/zh_CN/latest/docs/develop/console/index.html )
7
+
8
+ ### 新增
9
+
10
+ - 增加系统Feature在 ` SystemConfig ` 相关的命令中联想补全的功能。
11
+ - 增加 ` getCandidateList ` 命令,用于查询rPBFT当前节点的候选人列表。
12
+ -
13
+
14
+ ### 更新
15
+
16
+ - 脚本 ` get_account.sh ` 生成账户密钥对时增加` .public.pem ` 的公钥格式,与2.0版本保持一致。
17
+ - ` setNodeName ` 命令使用SDK的 ` setNodeToSendRequest ` 接口,支持Client全局接口指定节点发送。
18
+ - ` org.fisco-bcos.java-sdk:fisco-bcos-java-sdk ` 更新到3.5.0版本
19
+ - ` org.fisco-bcos.code-generator:bcos-code-generator ` 更新到1.2.0版本
20
+
21
+ ### 修复
22
+
23
+ - 修复在调用 ` link ` 资源时没有正确返回ABI导致调用失败的问题。
24
+ - 修复权限命令的联想补全使用了错误Client标志位的问题。
25
+ - 修复JLine在刷新控制台时出现的联想补全错误。
26
+
27
+ ### 兼容性说明
28
+
29
+ - 支持[ FISCO BCOS 3.0.0版本] ( https://github.com/FISCO-BCOS/FISCO-BCOS/releases/tag/v3.0.0 ) 以上的区块链节点。
30
+ - 控制台连接FISCO BCOS 3.1.0版本后,才支持BFS list分页查询、link新接口,连接3.1.0版本前的节点将会用旧版本接口。
31
+ - 控制台连接FISCO BCOS 3.2.0版本后,才支持CRUD的LIKE语句和数字序建表,连接3.2.0版本前的节点将会用旧版本接口。
32
+ - 控制台连接FISCO BCOS 3.3.0版本后,才支持使用ShardService的接口。
33
+ - 控制台连接FISCO BCOS 3.4.0版本后,才支持使用call with sign接口。
34
+
1
35
## v3.4.0
2
36
(2023-06-13)
3
37
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ dependencies {
40
40
// compile 'org.fisco-bcos:solcJ:0.5.2.1'
41
41
compile ' org.fisco-bcos:solcJ:0.8.11.1'
42
42
43
- compile(' org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.5.0-SNAPSHOT ' ) {
43
+ compile(' org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.5.0' ) {
44
44
exclude group : " org.slf4j"
45
45
}
46
46
@@ -51,7 +51,7 @@ dependencies {
51
51
compile(' org.jline:jline:3.21.0' )
52
52
compile(' io.bretty:console-table-builder:1.2' )
53
53
compile(' com.github.jsqlparser:jsqlparser:2.0' )
54
- compile(' org.fisco-bcos.code-generator:bcos-code-generator:1.1 .0' ) {
54
+ compile(' org.fisco-bcos.code-generator:bcos-code-generator:1.2 .0' ) {
55
55
exclude group : " org.fisco-bcos.java-sdk"
56
56
exclude group : " org.slf4j"
57
57
}
You can’t perform that action at this time.
0 commit comments