-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add 3.7.1 & 3.2.7 doc and fix image error
- Loading branch information
Showing
4 changed files
with
217 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# v3.2.7 | ||
|
||
#### 新增 | ||
|
||
* [build_chain.sh脚本新增轻节点扩容功能](https://github.com/FISCO-BCOS/FISCO-BCOS/pull/4348) | ||
|
||
#### 修复 | ||
|
||
* [同步3.6.0中修复的bug](https://github.com/FISCO-BCOS/FISCO-BCOS/pull/4237) | ||
* [同步3.7.0中修复的bug](https://github.com/FISCO-BCOS/FISCO-BCOS/pull/4364) | ||
* [修复keyPage哈希不一致的兼容问题](https://github.com/FISCO-BCOS/FISCO-BCOS/pull/4230) | ||
|
||
#### 升级描述 | ||
|
||
* 升级节点可执行程序 | ||
|
||
效果:修复bug,并带来稳定性、性能的提升 | ||
|
||
操作:停止节点服务,升级节点可执行程序为当前版本,重启节点服务 | ||
|
||
注意事项:推荐逐步替换可执行程序进行灰度升级 | ||
|
||
支持升级的版本:v3.0.0+ | ||
|
||
* 升级链数据版本 | ||
|
||
效果:可使用当前版本的最新特性 | ||
|
||
操作:先完成升级所有节点可执行程序,再参考[文档](https://fisco-bcos-doc.readthedocs.io/zh_CN/latest/docs/introduction/change_log/3_2_1.html#id5) | ||
发送交易升级链数据版本至 v3.2.0 | ||
|
||
注意事项:务必备份原节点的所有账本数据,若操作失误造成升级失败,可通过原数据回滚到升级前的状态 | ||
支持升级的版本:v3.0.0+ | ||
|
||
* 组件兼容性 | ||
|
||
请查阅[完整描述](https://fisco-bcos-documentation.readthedocs.io/zh_CN/latest/docs/compatibility.html) | ||
|
||
| | 推荐版本 | 最低版本 | 说明 | | ||
|------------|-------------|---------------------|-------------------| | ||
| WeBASE | 3.0.2 | 3.0.2 | | | ||
| WeIdentity | v3.0.0-rc.1 | v3.0.0-rc.1 | | | ||
| Console | 3.2.0 | 3.0.0 | | | ||
| Java SDK | 3.2.2 | 3.0.0 | | | ||
| CPP SDK | 3.2.2 | 3.0.0 | | | ||
| Solidity | 0.8.11 | 最低 0.4.25,最高 0.8.11 | 需根据合约版本下载编译器(控制台) | | ||
| WBC-Liquid | 1.0.0-rc3 | 1.0.0-rc3 | | | ||
|
||
#### 升级方法 | ||
|
||
该操作仅支持将3.x版本升级为本版本,不支持3.0-rc或2.x的升级。 | ||
|
||
##### 查询数据兼容版本号(compatibility_version) | ||
|
||
用[控制台](https://fisco-bcos-doc.readthedocs.io/zh_CN/latest/docs/operation_and_maintenance/console/console_commands.html#getsystemconfigbykey) | ||
进行查询,如当前返回的版本为3.0.0 | ||
|
||
``` | ||
[group0]: /apps> getSystemConfigByKey compatibility_version | ||
3.0.0 | ||
``` | ||
|
||
##### 替换节点二进制 | ||
|
||
需将**所有节点** | ||
的二进制逐步替换为当前版本。为了不影响业务,替换过程能够以灰度方式进行,逐个替换并重启节点。替换过程中,当前的链仍然会以旧的数据兼容版本号的逻辑继续执行。当所有节点二进制替换完成并重启后,需用控制台修改数据兼容版本号为当前版本。 | ||
|
||
##### 设置数据兼容版本号(compatibility_version) | ||
|
||
用[控制台](https://fisco-bcos-doc.readthedocs.io/zh_CN/latest/docs/operation_and_maintenance/console/console_commands.html#setsystemconfigbykey) | ||
设置数据兼容版本号,如当前版本为3.2.0。 | ||
|
||
``` | ||
[group0]: /apps> setSystemConfigByKey compatibility_version 3.2.0 | ||
{ | ||
"code":0, | ||
"msg":"success" | ||
} | ||
注:若开启权限治理功能,需要使用 setSysConfigProposal 命令 | ||
``` | ||
|
||
设置成功,再次查询,得到当前版本已升级为3.2.0 | ||
|
||
``` | ||
[group0]: /apps> getSystemConfigByKey compatibility_version | ||
3.2.0 | ||
``` | ||
|
||
当前链已经完成升级,至此,**链开始以新的逻辑继续运行**,并支持了新的特性。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# v3.7.1 | ||
|
||
#### 新增 | ||
|
||
* [新增节点只读模式开关](https://github.com/FISCO-BCOS/FISCO-BCOS/pull/4335) | ||
|
||
#### 修改 | ||
|
||
* [通过修改boost-asio版本,修复timer_remove会core的问题](https://github.com/FISCO-BCOS/FISCO-BCOS/pull/4336) | ||
* [修改网络disconnect日志为INFO级别](https://github.com/FISCO-BCOS/FISCO-BCOS/pull/4351) | ||
|
||
|
||
* 历史版本升级 | ||
|
||
需要升级的链的“数据兼容版本号([compatibility_version](#id5))”为如下版本时: | ||
|
||
* 3.4.x、3.5.x,3.6.x、3.7.x:数据完全兼容当前版本,直接替换二进制即可完成升级 | ||
* | ||
3.3.x、3.2.x、3.1.x、3.0.x:支持通过替换二进制进行灰度升级,若需使用当前版本的新特性,需升级数据兼容版本号,操作见[文档](#id5) | ||
* 3.0-rc x:数据不兼容,无法升级,可考虑逐步将业务迁移至3.x正式版 | ||
* 2.x:数据不兼容,2.x版本仍持续维护,可考虑升级为2.x的最新版本 | ||
|
||
|
||
* 开启实验功能 | ||
|
||
效果:通过feature开关控制实验功能的开启 | ||
|
||
操作:升级节点可执行程序后,通过控制台命令`setSystemConfigByKey <feature名> 1` 开启对应实验功能,具体操作见文档升级方法部分 | ||
|
||
注意事项: | ||
* feature操作不可逆,打开后不可关闭 | ||
* 需确认所有可执行程序版本相同后,再进行feature开启操作 | ||
|
||
| | Feature 名 | 默认状态 | 说明 | | ||
|-----------|----------------------------|------|--------------------------------------------| | ||
| 资产管理 | feature_balance | 关:0 | 默认关闭 | | ||
| 资产操作预编译合约 | feature_balance_precompile | 关:0 | 默认关闭 | | ||
| 计费模式 | feature_policy1 | 关:0 | 默认关闭 | | ||
| 块内分片 | feature_sharding | 关:0 | 默认关闭,仅在从3.3、3.4升级至当前版本时,feature_sharding打开 | | ||
| 同态加密 | feature_paillier | 关:0 | 默认关闭 | | ||
| rpbft共识 | feature_rpbft | 关:0 | 默认关闭 | | ||
| bug修复 | bugfix_\<bug_name\> | 开:1 | 从低版本升级默认关闭 | | ||
|
||
**组件兼容性** | ||
|
||
| | 推荐版本 | 最低版本 | 说明 | | ||
|------------|-------------|---------------------|-------------------| | ||
| WeBASE | 3.0.2 | 3.0.2 | | | ||
| WeIdentity | v3.0.0-rc.1 | v3.0.0-rc.1 | | | ||
| Console | 3.7.0 | 3.0.0 | | | ||
| Java SDK | 3.7.0 | 3.0.0 | | | ||
| CPP SDK | 3.7.0 | 3.0.0 | | | ||
| Solidity | 0.8.11 | 最低 0.4.25,最高 0.8.11 | 需根据合约版本下载编译器(控制台) | | ||
| WBC-Liquid | 1.0.0-rc3 | 1.0.0-rc3 | | | ||
|
||
#### 升级方法 | ||
|
||
该操作仅支持将3.x版本升级为本版本,不支持3.0-rc或2.x的升级。 | ||
|
||
##### 查询数据兼容版本号(compatibility_version) | ||
|
||
用[控制台](https://fisco-bcos-doc.readthedocs.io/zh_CN/latest/docs/operation_and_maintenance/console/console_commands.html#getsystemconfigbykey) | ||
进行查询,如当前返回的版本为3.6.0 | ||
|
||
``` | ||
[group0]: /apps> getSystemConfigByKey compatibility_version | ||
3.6.0 | ||
``` | ||
|
||
##### 替换节点二进制 | ||
|
||
需将**所有节点** | ||
的二进制逐步替换为当前版本。为了不影响业务,替换过程能够以灰度方式进行,逐个替换并重启节点。替换过程中,当前的链仍然会以旧的数据兼容版本号的逻辑继续执行。当所有节点二进制替换完成并重启后,需用控制台修改数据兼容版本号为当前版本。 | ||
|
||
##### 设置数据兼容版本号(compatibility_version) | ||
|
||
用[控制台](https://fisco-bcos-doc.readthedocs.io/zh_CN/latest/docs/operation_and_maintenance/console/console_commands.html#setsystemconfigbykey) | ||
设置数据兼容版本号,如当前版本为3.7.0。 | ||
|
||
``` | ||
[group0]: /apps> setSystemConfigByKey compatibility_version 3.7.0 | ||
{ | ||
"code":0, | ||
"msg":"success" | ||
} | ||
注:若开启权限治理功能,需要使用 setSysConfigProposal 命令 | ||
``` | ||
|
||
设置成功,再次查询,得到当前版本已升级为3.7.0 | ||
|
||
``` | ||
[group0]: /apps> getSystemConfigByKey compatibility_version | ||
3.7.0 | ||
``` | ||
|
||
当前链已经完成升级,至此,**链开始以新的逻辑继续运行**,并支持了新的特性。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters