Skip to content

Commit 7228792

Browse files
authored
<doc>(project): update 1.4.0 changelog. (#607)
1 parent 0e94856 commit 7228792

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

Changelog.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
### v1.4.0
2+
3+
(2024-03-01)
4+
5+
**新增**
6+
7+
- 新增获取区块的RPC接口:`/trans/getBlock`, `system` https://github.com/WeBankBlockchain/WeCross/pull/588
8+
- 获取区块与交易时增加时间戳字段解析 https://github.com/WeBankBlockchain/WeCross/pull/588
9+
- 新增跨链获取区块的功能 https://github.com/WeBankBlockchain/WeCross/pull/590
10+
- 增加在获取区块时获取详细交易内容的功能,用于优化获取交易的效率 https://github.com/WeBankBlockchain/WeCross/pull/597
11+
- 增加按照链维度获取事务列表的功能,优化获取事务列表的效率 https://github.com/WeBankBlockchain/WeCross/pull/596
12+
- 增加服务探活脚本 https://github.com/WeBankBlockchain/WeCross/pull/588
13+
14+
**更新**
15+
16+
- Stub接口有以下更新:
17+
- `Block` 新增字段 `public List<Transaction> transactionsWithDetail;`, 用于获取区块时获取详细交易内容
18+
- `BlockHeader` 新增字段 `public long timestamp;`, 用于获取区块时获取时间戳
19+
- `TransactionResponse` 新增字段 `public long timestamp;`, 用于获取交易时获取时间戳
20+
- 放宽脚本对openssl的检查,支持3.x版本的openssl https://github.com/WeBankBlockchain/WeCross/pull/600
21+
- 增加 JDK 8.0.382的版本CI检查,增加生僻字CI检查 https://github.com/WeBankBlockchain/WeCross/pull/600
22+
- 更新依赖版本,修复安全漏洞 https://github.com/WeBankBlockchain/WeCross/pull/603
23+
124
### v1.3.1
225

326
(2023-07-31)

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repositories {
2424
}
2525

2626
sourceCompatibility = '1.8'
27-
version = '1.4.0-SNAPSHOT'
27+
version = '1.4.0'
2828

2929
task stubSourceJar(type: Jar) {
3030
into 'com/webank/wecross/stub', { from 'src/main/java/com/webank/wecross/stub' }

demo/profile_version.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ WECROSS_JAVA_SDK_VERSION=v1.4.0
1818
# FISCO BCOS
1919
BCOS_VERSION=v2.9.1
2020
# FISCO BCOS 3.0
21-
BCOS3_VERSION=v3.4.0
21+
BCOS3_VERSION=v3.6.0
2222
# FISCO BCOS Console
23-
BCOS3_CONSOLE_VERSION=v3.4.0
23+
BCOS3_CONSOLE_VERSION=v3.6.0
2424

2525
GIT_URL_BASE='github.com'
2626
GITHUB_PROXY=''

0 commit comments

Comments
 (0)