Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions cmd/thv-operator/api/v1beta1/mcpgroup_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ import (

// MCPGroupSpec defines the desired state of MCPGroup
type MCPGroupSpec struct {
// Description provides human-readable context
// Description provides human-readable context.
// TEST: JSON tag deliberately renamed from "description" to "summary" to
// validate that the api-compat.yml workflow flags the field rename as a
// breaking change. Go field name is kept so existing callers still
// compile. Do NOT merge this PR.
// +optional
Description string `json:"description,omitempty"`
Description string `json:"summary,omitempty"`
}

// MCPGroupStatus defines observed state
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,13 @@ spec:
spec:
description: MCPGroupSpec defines the desired state of MCPGroup
properties:
description:
description: Description provides human-readable context
summary:
description: |-
Description provides human-readable context.
TEST: JSON tag deliberately renamed from "description" to "summary" to
validate that the api-compat.yml workflow flags the field rename as a
breaking change. Go field name is kept so existing callers still
compile. Do NOT merge this PR.
type: string
type: object
status:
Expand Down Expand Up @@ -213,8 +218,13 @@ spec:
spec:
description: MCPGroupSpec defines the desired state of MCPGroup
properties:
description:
description: Description provides human-readable context
summary:
description: |-
Description provides human-readable context.
TEST: JSON tag deliberately renamed from "description" to "summary" to
validate that the api-compat.yml workflow flags the field rename as a
breaking change. Go field name is kept so existing callers still
compile. Do NOT merge this PR.
type: string
type: object
status:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,13 @@ spec:
spec:
description: MCPGroupSpec defines the desired state of MCPGroup
properties:
description:
description: Description provides human-readable context
summary:
description: |-
Description provides human-readable context.
TEST: JSON tag deliberately renamed from "description" to "summary" to
validate that the api-compat.yml workflow flags the field rename as a
breaking change. Go field name is kept so existing callers still
compile. Do NOT merge this PR.
type: string
type: object
status:
Expand Down Expand Up @@ -216,8 +221,13 @@ spec:
spec:
description: MCPGroupSpec defines the desired state of MCPGroup
properties:
description:
description: Description provides human-readable context
summary:
description: |-
Description provides human-readable context.
TEST: JSON tag deliberately renamed from "description" to "summary" to
validate that the api-compat.yml workflow flags the field rename as a
breaking change. Go field name is kept so existing callers still
compile. Do NOT merge this PR.
type: string
type: object
status:
Expand Down
Loading