From 349702857e645acb379150746c82647398d7e41a Mon Sep 17 00:00:00 2001 From: Damien Mathieu <42@dmathieu.com> Date: Thu, 12 Sep 2024 15:55:02 +0200 Subject: [PATCH] Exclude profiles service from breaking changes too (#586) #576 excluded the profiles definition from breaking changes. But the entire profiles protocol is in development and can have breaking changes, including the gRPC service. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 15db8f9f..bf08dc84 100644 --- a/Makefile +++ b/Makefile @@ -163,7 +163,7 @@ gen-ruby: # The Profiling protocol is still experimental. So it is excluded from the breaking-change check. .PHONY: breaking-change breaking-change: - $(BUF) breaking --against $(BUF_AGAINST) --config '{"version":"v1","breaking":{"ignore":["opentelemetry/proto/profiles"]}}' $(BUF_FLAGS) + $(BUF) breaking --against $(BUF_AGAINST) --config '{"version":"v1","breaking":{"ignore":["opentelemetry/proto/profiles", "opentelemetry/proto/collector/profiles"]}}' $(BUF_FLAGS) ALL_DOCS := $(shell find . -type f -name '*.md' -not -path './.github/*' -not -path './node_modules/*' | sort)