docs(toolchain): windev protoc-gen-go-grpc updated to pinned 1.6.2
ci / nightly-windev (push) Has been skipped
ci / windows-x86 (push) Successful in 1m24s
ci / java (push) Successful in 2m54s
ci / portable (push) Failing after 6m48s

This commit is contained in:
Joseph Doherty
2026-08-18 07:23:37 -04:00
parent 1605f542cc
commit 6b5c737b04
+8 -5
View File
@@ -69,8 +69,8 @@ a .NET Framework or COM interop build needs classic Visual Studio MSBuild.
| Tool | Version | Path | | Tool | Version | Path |
| --- | --- | --- | | --- | --- | --- |
| Go | 1.26.2 windows/amd64 | `C:\Program Files\Go\bin\go.exe` | | Go | 1.26.2 windows/amd64 | `C:\Program Files\Go\bin\go.exe` |
| protoc-gen-go | latest installed by `go install` | `C:\Users\dohertj2\go\bin\protoc-gen-go.exe` | | protoc-gen-go | v1.36.11 (pinned) | `C:\Users\dohertj2\go\bin\protoc-gen-go.exe` |
| protoc-gen-go-grpc | latest installed by `go install` | `C:\Users\dohertj2\go\bin\protoc-gen-go-grpc.exe` | | protoc-gen-go-grpc | 1.6.2 (pinned) | `C:\Users\dohertj2\go\bin\protoc-gen-go-grpc.exe` |
Environment: Environment:
@@ -80,11 +80,14 @@ GOPATH=C:\Users\dohertj2\go
Go plugin bin=C:\Users\dohertj2\go\bin Go plugin bin=C:\Users\dohertj2\go\bin
``` ```
Installed plugin commands: Installed plugin commands. Install the pinned versions, not `@latest`: the committed Go
bindings stamp the plugin version in their headers, so `clients/go/generate-proto.ps1`
throws when a plugin reports anything else. That script is the source of truth for the
pin — change it there first, then update this table.
```powershell ```powershell
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.36.11
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.6.2
``` ```
## Rust ## Rust