Skip to content

Releases: chenjie199234/Corelib

v0.0.106

14 Mar 08:11
Compare
Choose a tag to compare

add KickPeer function in stream

v0.0.105

14 Mar 07:29
Compare
Choose a tag to compare

Fix the mutex in GetPeer function in stream

v0.0.104

13 Mar 09:08
Compare
Choose a tag to compare

main changes:
stream change the verify callback function
stream add a function to get Peer
stream optimize the connmng module
upgrade go-sql-driver version to 1.8.0
upgrade grpc-go version to 1.62.1
upgrade protobuf-go version to 1.33.0

v0.0.103

29 Feb 12:54
Compare
Choose a tag to compare

internal/version fix the version update

v0.0.102

29 Feb 12:49
Compare
Choose a tag to compare

stream change the verify callback function

v0.0.101

29 Feb 10:42
Compare
Choose a tag to compare

fix typo in codegen

v0.0.100

28 Feb 10:46
Compare
Choose a tag to compare

container(list,stack,ring):update the pop function

v0.0.99

26 Feb 11:00
Compare
Choose a tag to compare

change the protobuf plugin for pbex,web,crpc,cgrpc
now:
pbex.method is a string slice
methods in proto file need to add pbex.method to declare which server will this method expose to
e.g.

service example{
	rpc example_method(req)returns(resp){
		option (pbex.method)="get";//this method can expose to web server with http method GET.
		option (pbex.method)="crpc";//this method can expose to crpc server
		option (pbex.method)="grpc";//this method can expose to grpc server
	}
}

v0.0.98

22 Feb 07:17
Compare
Choose a tag to compare

v0.0.98

v0.0.97

14 Feb 06:17
Compare
Choose a tag to compare

optimize web's proto plugin for browser