Skip to content

Releases: gone-io/gone

v0.2.1

10 May 11:19
Compare
Choose a tag to compare

Full Changelog: v0.1.5...v0.2.1

v0.1.5

09 May 03:22
Compare
Choose a tag to compare

Full Changelog: v0.1.4...v0.1.5

v0.1.4

28 Apr 13:35
Compare
Choose a tag to compare

Full Changelog: v0.1.3...v0.1.4

v0.1.3

28 Apr 12:45
Compare
Choose a tag to compare

Full Changelog: v0.1.2...v0.1.3

v0.1.2

28 Apr 12:29
Compare
Choose a tag to compare

Full Changelog: v0.1.1...v0.1.2

v0.1.0, Dep update, previous versions of go1.21 are not supported

25 Apr 17:16
Compare
Choose a tag to compare
feat: dep update, previous versions of go1.21 are not supported

v0.0.36

14 Aug 11:07
ab1ae16
Compare
Choose a tag to compare
Merge pull request #11 from shenweijiekdel/main

fix: gRPC interceptor

v0.0.35

11 Aug 09:43
61f095e
Compare
Choose a tag to compare
Merge pull request #10 from shenweijiekdel/main

fix: tracer

v0.0.34

11 Aug 09:39
61f095e
Compare
Choose a tag to compare

fix: bug

v0.0.33

11 Aug 09:17
313d43f
Compare
Choose a tag to compare
  • 加入 gRPC 客户端注册器统一注册,支持同地址连接复用,使用方式
package gone_grpc_client

type Example struct {
	gone.Goner
	Stub pb.ExampleStub
}

//go:gone
func NewExample () gone.Goner {
	return &Example {}
}

func (n Example ) Address() string {
	return "localhost:9090"
}

func (n *Example ) Stub(conn *grpc.ClientConn) {
	n.Stub = pb.NewExampleStub(conn)
}
  • 加入链路追踪