[go-nuts] Minimum version of protoc for given protoc-gen-go version?

2024-02-27 Thread Patricia Decker
Howdy, I've been trying to determine if there is a mapping between the protobuf releases and the protobuf-go releases, without success. Specifically, I'd like to know if there is a requirement for a minimum protoc version to use for a given protoc-gen-go version. Thanks! Tricia -- You recei

Re: [go-nuts] Re: 1.22.0 ServeMux HandleFunc infinite loop

2024-02-08 Thread Patricia Decker
eturns 301 with a Location of /x/. Note the trailing slash in the > mux pattern, which was missing in your example. > > > Perhaps there's an issue with the Playground networking implementation > that's incompatible with the 1.22 changes? > > On Thursday, February 8, 2

[go-nuts] Re: 1.22.0 ServeMux HandleFunc infinite loop

2024-02-08 Thread Patricia Decker
I haven't played around with it yet, but have you tried to separately register /something/ ? mux := http.NewServeMux() mux.HandleFunc("/something/", func...) mux.HandleFunc("/something/{id}/{$}", func...) On Wednesday, February 7, 2024 at 1:21:00 PM UTC-8 Péter Szarvas wrote: > Hello, > > I not