Skip to content

Commit 4714656

Browse files
authored
Projects: Fix panic caused by newly added enum (#443)
Recently following enums where added to project graphql query https://docs.github.com/en/graphql/overview/changelog#schema-changes-for-2025-02-01-1: - Enum value 'PARENT_ISSUEwas added to enumProjectV2FieldType' - Enum value 'SUB_ISSUES_PROGRESSwas added to enumProjectV2FieldType' As we didn't have processing for these, and they weren't in the `fieldTypes` or `exclude` list `fieldType := fieldTypes[f.Common.DataType]` returned `nil` which caused panic in `field := data.NewField(f.Common.Name, nil, fieldType)` as fieldType can't be nil. To fix this, we have added these new enums to `exclude` so we can add processing for them later. Moreover, we have added a logic to check if `fieldType == nil` and in that case `continue`, but create a log so we might be more aware of this new enum. More in https://raintank-corp.slack.com/archives/C05K271Q8F5/p1742559654567789?thread_ts=1742486345.609529&cid=C05K271Q8F5
1 parent 3d02802 commit 4714656

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.changeset/moody-news-learn.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'grafana-github-datasource': patch
3+
---
4+
5+
Fix panic in project query

pkg/github/projects/project_items.go

+8
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ func (p ProjectItemsWithFields) Frames() data.Frames {
3232
continue
3333
}
3434
fieldType := fieldTypes[f.Common.DataType]
35+
// there might be added new fields where we don't have a type yet, so we will skip them
36+
// we will log a debug message so we can add a type for them
37+
if fieldType == nil {
38+
backend.Logger.Debug("no type for field in project items", "field", f.Common.Name, "dataType", f.Common.DataType)
39+
continue
40+
}
3541
field := data.NewField(f.Common.Name, nil, fieldType)
3642
frame.Fields = append(frame.Fields, field)
3743
fields = append(fields, f)
@@ -241,6 +247,8 @@ var fieldTypes = map[string]any{
241247
var exclude = map[string]bool{
242248
"LINKED_PULL_REQUESTS": true,
243249
"TRACKED_BY": true,
250+
"PARENT_ISSUE": true,
251+
"SUB_ISSUES_PROGRESS": true,
244252
}
245253

246254
// convert fieldValue to time

0 commit comments

Comments
 (0)