From a2d4c727254f9f5328a43fcfa1d73e2e5ce343f4 Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Fri, 23 Feb 2024 14:16:00 +0100 Subject: [PATCH] test Signed-off-by: Jan Kowalleck --- schema/bom-1.6.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/bom-1.6.proto b/schema/bom-1.6.proto index bd1ec190..6129950e 100644 --- a/schema/bom-1.6.proto +++ b/schema/bom-1.6.proto @@ -477,6 +477,7 @@ message Lifecycles { enum LifecyclePhase { // BOM produced early in the development lifecycle containing inventory of components and services that are proposed or planned to be used. The inventory may need to be procured, retrieved, or resourced prior to use. + // buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- value `0` is a fallback(meaning "unspecified") in protobuf3. this usage here is an error, it shall be fixed with v2.0 of this very schema LIFECYCLE_PHASE_DESIGN = 0; // BOM consisting of information obtained prior to a build process and may contain source files and development artifacts and manifests. The inventory may need to be resolved and retrieved prior to use. LIFECYCLE_PHASE_PRE_BUILD = 1; @@ -1774,7 +1775,6 @@ message CryptoProperties { CRYPTO_PRIMITIVE_COMBINER = 15; } enum CryptoExecutionEnvironment { - // ProtoBuff's default value -- it differs from "unknown" CRYPTO_EXECUTION_ENVIRONMENT_UNSPECIFIED = 0; // The execution environment is not known CRYPTO_EXECUTION_ENVIRONMENT_UNKNOWN = 1;