This is an automated email from the ASF dual-hosted git repository.
zfeng pushed a change to branch 2.0.0-release
in repository https://gitbox.apache.org/repos/asf/incubator-seata-go.git
from 9b85b9b5 update go version (#880)
add c4c82f79 optimize issue template (#872)
add 755f1def fix: re-enabled integration test action (#835)
add 33fa891e handle Unexpected transaction rollback (#828)
add b89343b3 fix: The context issue of nested transactions (#848)
add 22f5f7c2 fix:The WithGlobalTx method returns the exception caught by
recover (#849)
add 32ce488d fix: Fix GetScanSlice not handling all column types in AT
mode (#874)
add 05db8343 Update release notes (#870)
add f25b22c8 Fix active xa rollback failure and added error message
judgment (#875)
add d50ec63b fix: undefined changes node in license checker (#882)
add a4815531 fix:fix bugs detected by doubao (#883)
add f6da25c3 optimize: fix license header format (#893)
add a1816a93 optimize: fix go vet issue (#892)
add a1c37641 refactor(gin): improve log message (#901)
add d10789c5 Merge branch 'master' into 2.0.0-release
No new revisions were added by this update.
Summary of changes:
.github/ISSUE_TEMPLATE/#0_bug_report_zh.yml | 122 ++++++++++
.github/ISSUE_TEMPLATE/#1_feature_request_zh.yml | 94 ++++++++
.github/ISSUE_TEMPLATE/#2_question_zh.yml | 80 +++++++
.github/ISSUE_TEMPLATE/#3_proposal_zh.yml | 47 ++++
.github/ISSUE_TEMPLATE/#4_discussion_zh.yml | 26 +++
.github/ISSUE_TEMPLATE/0_bug_report.yml | 122 ++++++++++
.github/ISSUE_TEMPLATE/1_feature_request.yml | 60 +++++
.github/ISSUE_TEMPLATE/2_question.yml | 80 +++++++
.github/ISSUE_TEMPLATE/3_proposal.yml | 47 ++++
.github/ISSUE_TEMPLATE/4_discussion.yml | 26 +++
.github/ISSUE_TEMPLATE/BUG_REPORT_TEMPLATE.md | 19 --
.github/ISSUE_TEMPLATE/FEATURE_REQUEST_TEMPLATE.md | 12 -
.github/workflows/integrate-test.yml | 30 ++-
.github/workflows/license.yml | 30 +++
changes/2.0.0.md | 43 +++-
changes/2.0.0_zh.md | 190 ++++++++-------
pkg/datasource/sql/conn_at_test.go | 35 ++-
pkg/datasource/sql/conn_xa.go | 35 ++-
pkg/datasource/sql/conn_xa_test.go | 142 ++++++++++--
.../sql/datasource/base/meta_cache_test.go | 4 -
pkg/datasource/sql/datasource/utils.go | 2 +
pkg/datasource/sql/datasource/utils_test.go | 89 +++++++
pkg/datasource/sql/db.go | 4 +-
pkg/datasource/sql/driver.go | 8 +-
pkg/datasource/sql/exec/at/base_executor.go | 66 +++++-
pkg/datasource/sql/exec/at/base_executor_test.go | 10 +-
pkg/datasource/sql/exec/at/update_join_executor.go | 28 +--
.../sql/exec/at/update_join_executor_test.go | 28 +--
pkg/datasource/sql/exec/hook.go | 11 +-
pkg/datasource/sql/tx.go | 15 +-
pkg/datasource/sql/tx_at.go | 4 +-
pkg/datasource/sql/tx_xa.go | 4 +-
pkg/datasource/sql/types/const.go | 11 +
pkg/datasource/sql/undo/base/undo.go | 17 +-
.../undo/builder/basic_undo_log_builder_test.go | 10 +-
...ql_insertonduplicate_update_undo_log_builder.go | 2 +-
pkg/datasource/sql/undo/executor/executor.go | 3 +-
pkg/datasource/sql/undo/executor/executor_test.go | 258 +++++++++++++++++++++
pkg/discovery/etcd3.go | 10 +-
pkg/discovery/file.go | 2 +-
pkg/integration/gin/gin_transaction_middleware.go | 2 +-
pkg/rm/tcc/fence/fence_driver.go | 2 +-
pkg/tm/global_transaction.go | 2 +-
pkg/tm/transaction_executor.go | 27 ++-
pkg/tm/transaction_executor_test.go | 49 +++-
pkg/util/errors/code.go | 2 +
pkg/util/errors/error_code_test.go | 1 +
pkg/util/log/logging.go | 27 ++-
48 files changed, 1690 insertions(+), 248 deletions(-)
create mode 100644 .github/ISSUE_TEMPLATE/#0_bug_report_zh.yml
create mode 100644 .github/ISSUE_TEMPLATE/#1_feature_request_zh.yml
create mode 100644 .github/ISSUE_TEMPLATE/#2_question_zh.yml
create mode 100644 .github/ISSUE_TEMPLATE/#3_proposal_zh.yml
create mode 100644 .github/ISSUE_TEMPLATE/#4_discussion_zh.yml
create mode 100644 .github/ISSUE_TEMPLATE/0_bug_report.yml
create mode 100644 .github/ISSUE_TEMPLATE/1_feature_request.yml
create mode 100644 .github/ISSUE_TEMPLATE/2_question.yml
create mode 100644 .github/ISSUE_TEMPLATE/3_proposal.yml
create mode 100644 .github/ISSUE_TEMPLATE/4_discussion.yml
delete mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT_TEMPLATE.md
delete mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REQUEST_TEMPLATE.md
create mode 100644 pkg/datasource/sql/datasource/utils_test.go
create mode 100644 pkg/datasource/sql/undo/executor/executor_test.go
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]