From beeb1d2059dbccf96b38f7abc46815df0e6dd5c0 Mon Sep 17 00:00:00 2001 From: Doria Keung Date: Mon, 23 Sep 2024 15:40:23 -0400 Subject: [PATCH] Use unreleased version of protoc for custom check plugins --- make/go/dep_protoc_gen_go.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/make/go/dep_protoc_gen_go.mk b/make/go/dep_protoc_gen_go.mk index 17ea695..49b97f4 100644 --- a/make/go/dep_protoc_gen_go.mk +++ b/make/go/dep_protoc_gen_go.mk @@ -7,8 +7,10 @@ $(call _assert_var,CACHE_VERSIONS) $(call _assert_var,CACHE_BIN) # Settable -# https://github.com/protocolbuffers/protobuf-go/releases 20240906 checked 20240916 -PROTOC_GEN_GO_VERSION ?= v1.34.3-0.20240906163944-03df6c145d96 +# https://github.com/protocolbuffers/protobuf-go/releases 20240816 checked 20240904 +# TODO: Change back to released version once bug is fixed +PROTOC_GEN_GO_VERSION ?= 94ecbc26168965a670a0f7cf86f658131c790a9c + GO_GET_PKGS := $(GO_GET_PKGS) \ google.golang.org/protobuf/proto@$(PROTOC_GEN_GO_VERSION)