Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add feature_bugfix_list.md #1789

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions 3.x/zh_CN/docs/introduction/change_log/feature_bugfix_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# feature and bugfix list

本文档归档了FISCO BCOS 3.0+ 版本所有的feature功能开关和bugfix列表,随版本更新持续更新。

## 1. 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 | 默认关闭 |
| dmc切换至串行 | feature_dmc2serial | 关:0 | 默认关闭 |

## 2. bugfix列表

| | bugfix 名 | 默认状态 | 说明 |
|----------------------------|-----------------------------------------------------|------|------------------------|
| 修复串行模式下回滚时不回滚子合约的bug | bugfix_revert | 开启:1 | 3.2.3、3.5.0 默认开启 |
| 修复stateStorage_hash计算错误的问题 | bugfix_statestorage_hash | 开启:1 | 3.2.4、3.5.0、3.6.0 默认开启 |
| 适配以太坊的调用行为 | bugfix_evm_create2_delegatecall_staticcall_codecopy | 开启:1 | 3.2.4、3.6.0 默认开启 |
| 修复抛出事件的顺序问题 | bugfix_event_log_order | 开启:1 | 3.2.7、 3.6.0 默认开启 |
| 修复call没有地址返回的问题 | bugfix_call_noaddr_return | 开启:1 | 3.2.7、3.6.0 默认开启 |
| 修复预编译合约算哈希与以太坊不同的问题 | bugfix_precompiled_codehash | 开启:1 | 3.2.7、3.6.0 默认开启 |
| 修复dmc模式下回滚时不回滚子合约的bug | bugfix_dmc_revert | 开启:1 | 3.2.7、3.6.0 默认开启 |
| 修复keyPage哈希不一致的兼容问 | bugfix_keypage_system_entry_hash | 开启:1 | 3.6.1 默认开启 |
| InternalCreate复用现有部署合约逻辑 | bugfix_internal_create_redundant_storage | 开启:1 | 3.6.1 默认开启 |
| 修复开启合约部署权限后资产转移受限问题 | bugfix_internal_create_permission_denied | 开启:1 | 3.7.0 默认开启 |
| 修复块内分片合约调用合约的问题 | bugfix_sharding_call_in_child_executive | 开启:1 | 3.7.0 默认开启 |
| 修复已部署空abi,部署相同的合约无abi的问题 | bugfix_empty_abi_reset | 开启:1 | 3.7.0 默认开启 |
| 修复无法通过eip55类型的合约地址调用合约的问题 | bugfix_eip55_addr | 开启:1 | 3.7.0 默认开启 |
4 changes: 3 additions & 1 deletion 3.x/zh_CN/docs/introduction/change_log/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@

升级指南
------------
FISCO BCOS 版本迭代,支持版本之间的兼容升级,支持可灰度升级,且灰度升级过程中,系统可以正常共识、出块。详情可参考 `升级指南 <./upgrade.html>`_
FISCO BCOS 版本迭代,支持版本之间的兼容升级,支持可灰度升级,且灰度升级过程中,系统可以正常共识、出块。详情可参考 `升级指南 <./upgrade.html>`_ 。

FISCO BCOS 设计 Feature控制特性功能开启关闭,用户可以根据自己的需求,按需选择开启。通过bugfix修复一些具备兼容性问题的bug。详情可参考 `Feature and Bugfix List <./feature_bugfix_list.html>`_ 。


.. toctree::
Expand Down
Loading