Skip to content

Commit ac584dc

Browse files
committed
scope required may be another version
1 parent b50ff0d commit ac584dc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

schema/bom-1.6.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ message Pedigree {
612612
enum Scope {
613613
// Default
614614
SCOPE_UNSPECIFIED = 0;
615-
// The component is required for runtime
615+
// The component is required for runtime, or another version.
616616
SCOPE_REQUIRED = 1;
617617
// The component is optional at runtime. Optional components are components that are not capable of being called due to them not being installed or otherwise accessible by any means. Components that are installed but, due to configuration or other restrictions, are prohibited from being called must be scoped as 'required'.
618618
SCOPE_OPTIONAL = 2;

schema/bom-1.6.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@
938938
"excluded"
939939
],
940940
"meta:enum": {
941-
"required": "The component is required for runtime",
941+
"required": "The component is required for runtime, or another version.",
942942
"optional": "The component is optional at runtime. Optional components are components that are not capable of being called due to them not being installed or otherwise accessible by any means. Components that are installed but due to configuration or other restrictions are prohibited from being called must be scoped as 'required'.",
943943
"excluded": "Components that are excluded provide the ability to document component usage for test and other non-runtime purposes. Excluded components are not reachable within a call graph at runtime."
944944
},

schema/bom-1.6.xsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ limitations under the License.
10101010
<xs:restriction base="xs:string">
10111011
<xs:enumeration value="required">
10121012
<xs:annotation>
1013-
<xs:documentation>The component is required for runtime</xs:documentation>
1013+
<xs:documentation>The component is required for runtime, or another version.</xs:documentation>
10141014
</xs:annotation>
10151015
</xs:enumeration>
10161016
<xs:enumeration value="optional">

0 commit comments

Comments
 (0)