https://github.com/etcd-io/etcd
Raw File
Tip revision: 0e911484c3e6d381e7dc3511d73b4bd05c3ca5a1 authored by dependabot[bot] on 08 April 2024, 17:13:48 UTC
build(deps): bump distroless/static-debian12 from `8cbe18a` to `4197211`
Tip revision: 0e91148
update_proto_annotations.sh
#!/usr/bin/env bash
# Updates etcd_version_annotations.txt based on state of annotations in proto files.
# Developers can run this script to avoid manually updating etcd_version_annotations.txt.
# Before running this script please ensure that fields/messages that you added are annotated with next etcd version.

set -o errexit
set -o nounset
set -o pipefail

tmpfile=$(mktemp)
go run ./tools/proto-annotations/main.go --annotation etcd_version > "${tmpfile}"
mv "${tmpfile}" ./scripts/etcd_version_annotations.txt
back to top