You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This creates minimal Release objects with only TagName populated
592
592
returnreleaseTagNames.Select(tagName =>
593
593
{
594
-
varjson=$$"""{"tag_name":"{{tagName}}"}""";
595
-
returnNewtonsoft.Json.JsonConvert.DeserializeObject<Release>(json)??thrownewInvalidOperationException($"Failed to create Release object for tag {tagName}");
594
+
// Use JsonConvert with a proper object to avoid JSON injection
0 commit comments