Skip to content

Commit 2717ef3

Browse files
authored
chore(deps): update dependency protocolbuffers/protobuf to v33.1 (#128)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [protocolbuffers/protobuf](https://redirect.github.com/protocolbuffers/protobuf) | minor | `33.0` -> `v33.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>protocolbuffers/protobuf (protocolbuffers/protobuf)</summary> ### [`v33.1`](https://redirect.github.com/protocolbuffers/protobuf/releases/tag/v33.1): Protocol Buffers v33.1 [Compare Source](https://redirect.github.com/protocolbuffers/protobuf/compare/v33.0...v33.1) ##### Announcements - [Protobuf News](https://protobuf.dev/news/) may include additional announcements or pre-announcements for upcoming changes. ##### C++ - Fix `Any` hasbit consistency issue in OSS. ([#&#8203;24400](https://redirect.github.com/protocolbuffers/protobuf/issues/24400)) ([`59db671`](https://redirect.github.com/protocolbuffers/protobuf/commit/59db671e945233f9acb556af43cdbb67d1d75d68)) ##### Java - Expose NestedInFileClass naming helpers for Java immutable. ([#&#8203;24401](https://redirect.github.com/protocolbuffers/protobuf/issues/24401)) ([`5737cd2`](https://redirect.github.com/protocolbuffers/protobuf/commit/5737cd2bb3a4e220752b28282e70d758c0a7a95d)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMC41IiwidXBkYXRlZEluVmVyIjoiNDIuMTAuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYnVpbGQ6ZGVwcyJdfQ==-->
2 parents 96c91d3 + 270d22a commit 2717ef3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hack/base.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# renovate: datasource=github-tags depName=golangci/golangci-lint
22
GOLANGCI_VERSION ?= v2.6.1
33
# renovate: datasource=github-tags depName=protocolbuffers/protobuf
4-
PROTOC_VERSION ?= 33.0
4+
PROTOC_VERSION ?= v33.1
55
TOOLS_BIN := $(shell mkdir -p build/tools && realpath build/tools)
66

77
ifneq ($(shell git status --porcelain --untracked-files=no),)
@@ -18,7 +18,7 @@ $(GOLANGCI):
1818

1919
PROTOC = $(TOOLS_BIN)/protoc
2020
$(PROTOC):
21-
curl -fsSL https://github.com/protocolbuffers/protobuf/releases/download/v$(PROTOC_VERSION)/protoc-$(PROTOC_VERSION)-linux-x86_64.zip \
21+
curl -fsSL https://github.com/protocolbuffers/protobuf/releases/download/$(PROTOC_VERSION)/protoc-$(patsubst v%,%,$(PROTOC_VERSION))-linux-x86_64.zip \
2222
-o $(TOOLS_BIN)/protoc.zip
2323
unzip -j $(TOOLS_BIN)/protoc.zip -d $(TOOLS_BIN) "bin/protoc"
2424
rm $(TOOLS_BIN)/protoc.zip

0 commit comments

Comments
 (0)