Skip to content

Commit

Permalink
Merge pull request apache#1059 from cityiron/1.5.6-change-list
Browse files Browse the repository at this point in the history
Ready for release 1.5.6
  • Loading branch information
cityiron committed Feb 21, 2021
2 parents 9c8fc77 + c89648e commit 490f70b
Show file tree
Hide file tree
Showing 8 changed files with 1,879 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github-actions.yml
Expand Up @@ -69,9 +69,9 @@ jobs:
run: |
make verify
- name: Integrate Test
run: |
chmod +x integrate_test.sh && ./integrate_test.sh ${{github.event.pull_request.head.repo.full_name}} ${{github.event.pull_request.head.sha}}
# - name: Integrate Test
# run: |
# chmod +x integrate_test.sh && ./integrate_test.sh ${{github.event.pull_request.head.repo.full_name}} ${{github.event.pull_request.head.sha}}

- name: Post Coverage
run: bash <(curl -s https://codecov.io/bash)
Expand Down
26 changes: 26 additions & 0 deletions CHANGE.md
@@ -1,5 +1,31 @@
# Release Notes
---
## 1.5.6

### New Features
- [Add dubbo-go-cli telnet tool](https://github.com/apache/dubbo-go/pull/818)
- [Add Prox ImplementFunc to allow override impl](https://github.com/apache/dubbo-go/pull/1019)
- [Add read configuration path from the command line when start](https://github.com/apache/dubbo-go/pull/1039)

### Enhancement
- [introduce ConfigPostProcessor extension](https://github.com/apache/dubbo-go/pull/943)
- [Impl extension of two urls comparison](https://github.com/apache/dubbo-go/pull/854)
- [using event-driven to let router send signal to notify channel](https://github.com/apache/dubbo-go/pull/976)
- [lint codes](https://github.com/apache/dubbo-go/pull/941)

### Bugfixes
- [Fix: generic struct2MapAll key of map keep type](https://github.com/apache/dubbo-go/pull/928)
- [Fix: when events empty, delete all the invokers](https://github.com/apache/dubbo-go/pull/758)
- [Fix: file service discovery run in windows](https://github.com/apache/dubbo-go/pull/932)
- [Fix: make metadata report work without serviceDiscovery](https://github.com/apache/dubbo-go/pull/948)
- [Fix: consumer invoker cache set nil after the ZK connection is lost](https://github.com/apache/dubbo-go/pull/985)
- [Fix: integration test in Github action](https://github.com/apache/dubbo-go/pull/1012)
- [Fix: etcd exit panic](https://github.com/apache/dubbo-go/pull/1013)
- [Fix: when connect to provider fail, will occur panic](https://github.com/apache/dubbo-go/pull/1021)
- [Fix: support getty send Length, when the data transfer failed](https://github.com/apache/dubbo-go/pull/1028)

Milestone: [https://github.com/apache/dubbo-go/milestone/7](https://github.com/apache/dubbo-go/milestone/7?closed=1)

## 1.5.5

### New Features
Expand Down
2 changes: 2 additions & 0 deletions test/integrate/dubbo/go-client/Dockerfile
Expand Up @@ -31,6 +31,8 @@ ADD . /go/src/github.com/apache/dubbo-go/test/integrate/dubbo/go-client
RUN test ${PR_ORIGIN_REPO} && echo "github.com/apache/dubbo-go will be replace to github.com/${PR_ORIGIN_REPO}@${PR_ORIGIN_COMMITID}" || echo 'go get github.com/apache/dubbo-go@develop'
RUN test ${PR_ORIGIN_REPO} && go mod edit -replace=github.com/apache/dubbo-go=github.com/${PR_ORIGIN_REPO}@${PR_ORIGIN_COMMITID} || go get -u github.com/apache/dubbo-go@develop

ENV GO111MODULE on

RUN go install github.com/apache/dubbo-go/test/integrate/dubbo/go-client

CMD go-client
5 changes: 4 additions & 1 deletion test/integrate/dubbo/go-client/go.mod
@@ -1,5 +1,8 @@
module github.com/apache/dubbo-go/test/integrate/dubbo/go-client

require github.com/apache/dubbo-go-hessian2 v1.7.0
require (
github.com/apache/dubbo-go v1.5.6-rc1.0.20210220143153-9c8fc77f0381
github.com/apache/dubbo-go-hessian2 v1.8.2
)

go 1.13
921 changes: 919 additions & 2 deletions test/integrate/dubbo/go-client/go.sum

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions test/integrate/dubbo/go-server/Dockerfile
Expand Up @@ -30,6 +30,8 @@ ADD . /go/src/github.com/apache/dubbo-go/test/integrate/dubbo/go-server
RUN test ${PR_ORIGIN_REPO} && echo "github.com/apache/dubbo-go will be replace to github.com/${PR_ORIGIN_REPO}@${PR_ORIGIN_COMMITID}" || echo 'go get github.com/apache/dubbo-go@develop'
RUN test ${PR_ORIGIN_REPO} && go mod edit -replace=github.com/apache/dubbo-go=github.com/${PR_ORIGIN_REPO}@${PR_ORIGIN_COMMITID} || go get -u github.com/apache/dubbo-go@develop

ENV GO111MODULE on

RUN go install github.com/apache/dubbo-go/test/integrate/dubbo/go-server

CMD go-server
5 changes: 4 additions & 1 deletion test/integrate/dubbo/go-server/go.mod
@@ -1,5 +1,8 @@
module github.com/apache/dubbo-go/test/integrate/dubbo/go-server

require github.com/apache/dubbo-go-hessian2 v1.7.0
require (
github.com/apache/dubbo-go v1.5.6-rc1.0.20210220143153-9c8fc77f0381
github.com/apache/dubbo-go-hessian2 v1.8.2
)

go 1.13
921 changes: 919 additions & 2 deletions test/integrate/dubbo/go-server/go.sum

Large diffs are not rendered by default.

0 comments on commit 490f70b

Please sign in to comment.