This is an automated email from the ASF dual-hosted git repository.
AlexStocks pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git
from 5683612b1 fix: remove stale providers after initial subscribe load
(#3479)
add 4879a3c41 fix(remoting): clean up pendingResponses on error paths to
prevent map leak (#3440)
add 25d2f0c7f expose (#3481)
add ca069ff62 chore(CI-riscv): Add CI for RISC-V build (#3470)
add b87881aa2 fix: generate dependency locks for CLI scaffolds (#3483)
No new revisions were added by this update.
Summary of changes:
.github/release-drafter.yml | 44 ++--
.github/workflows/codeql-analysis.yml | 74 +++---
.github/workflows/github-actions.yml | 162 ++++++-------
.github/workflows/release-drafter.yml | 7 +-
.github/workflows/riscv-build.yml | 48 ++++
Makefile | 2 +-
dubbo.go | 36 ++-
dubbo_test.go | 85 +++++++
global/config_test.go | 2 +
global/tracing_config.go | 20 ++
loader.go | 16 +-
options.go | 59 ++++-
remoting/exchange.go | 6 +-
remoting/exchange_client.go | 2 +
remoting/exchange_client_test.go | 58 ++++-
remoting/exchange_test.go | 4 +-
remoting/getty/heartbeat_test.go | 76 ++++++
remoting/getty/listener.go | 1 +
.../cmd/testGenCode/template/newApp/go.sum | 234 +++++++++++++++++++
.../cmd/testGenCode/template/newDemo/go.sum | 234 +++++++++++++++++++
tools/dubbogo-cli/generator/application/gomod.go | 9 +
.../generator/internal/scaffold/gosum.go | 254 +++++++++++++++++++++
tools/dubbogo-cli/generator/sample/mod.go | 9 +
23 files changed, 1264 insertions(+), 178 deletions(-)
create mode 100644 .github/workflows/riscv-build.yml
create mode 100644 remoting/getty/heartbeat_test.go
create mode 100644 tools/dubbogo-cli/cmd/testGenCode/template/newApp/go.sum
create mode 100644 tools/dubbogo-cli/cmd/testGenCode/template/newDemo/go.sum
create mode 100644 tools/dubbogo-cli/generator/internal/scaffold/gosum.go