[go-nuts] Re: Upcoming Go protobuf release

2018-01-30 Thread joetsai via golang-nuts
Done. I tagged v1.0.0. When we perform the merge in the future, it will be tagged as v1.1.0. On Tuesday, January 30, 2018 at 9:37:23 AM UTC-8, Alexey Palazhchenko wrote: > > Hi, > > Can you please add tags to the repository before that? SemVer or even tags > with _any_ semantic would greatly hel

[go-nuts] Re: Go 1.8rc3 - surprise

2017-01-27 Thread joetsai via golang-nuts
When I was deploying Go1.8 in my company, I found url.Parse to also caused many problems. However, every time I looked closely at the failure, I was convinced that it was because of a mis-use of the url package, rather than Go1.8's fault. If anything, I think the documentation for the url packag

Re: [go-nuts] Streaming deflate - can't reliably read chunks as they arrive instead of the entire stream

2016-07-20 Thread joetsai via golang-nuts
> > // Unsplit into a single contiguous stream > for _, msg := range messages { > // msg in this case is a single websockets message > compData.Write(msg) > } > decompressed, err := ioutil.ReadAll(deflater) > fmt.Printf("Err: %v. Decompressed:\n%s\n\n", err, >