-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #416 from microsoft/staging
Release - 7/16/24
Showing
66 changed files
with
651 additions
and
611 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,9 @@ riid | |
Impl | ||
microsoft | ||
octokit | ||
Octokit | ||
Dependabot | ||
Stringify | ||
riid | ||
impl | ||
dhlog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,9 @@ namespace GitHubExtension.Client; | |
// Validation layer to help parsing GitHub URL. | ||
public static class Validation | ||
{ | ||
private static readonly Lazy<ILogger> _log = new(() => Serilog.Log.ForContext("SourceContext", nameof(Validation))); | ||
private static readonly Lazy<ILogger> _logger = new(() => Serilog.Log.ForContext("SourceContext", nameof(Validation))); | ||
|
||
private static readonly ILogger Log = _log.Value; | ||
private static readonly ILogger _log = _logger.Value; | ||
|
||
private static bool IsValidHttpUri(string uriString, out Uri? uri) | ||
{ | ||
|
@@ -29,7 +29,7 @@ public static bool IsValidGitHubComURL(Uri uri) | |
// Valid GitHub URL has three segments. The first is '/'. | ||
if (uri.Segments.Length < 3 || (!uri.Host.Equals("github.com", StringComparison.OrdinalIgnoreCase) && !uri.Host.Equals("www.github.com", StringComparison.OrdinalIgnoreCase))) | ||
{ | ||
Log.Debug($"{uri.OriginalString} is not a valid GitHub uri"); | ||
_log.Debug($"{uri.OriginalString} is not a valid GitHub uri"); | ||
return false; | ||
} | ||
|
||
|
@@ -43,7 +43,7 @@ public static bool IsValidGitHubEnterpriseServerURL(Uri server) | |
// https://docs.github.com/en/[email protected]/admin/configuration/configuring-network-settings/configuring-the-hostname-for-your-instance | ||
if (server.Segments.Length < 3) | ||
{ | ||
Log.Debug($"{server.OriginalString} is not a valid GHES repo uri"); | ||
_log.Debug($"{server.OriginalString} is not a valid GHES repo uri"); | ||
return false; | ||
} | ||
|
||
|
@@ -60,7 +60,7 @@ public static bool IsValidGitHubURL(string url) | |
// Above link shows a work around. | ||
if (!IsValidHttpUri(url, out parsedUri) || url == null || parsedUri == null) | ||
{ | ||
Log.Debug($"{url} is not a valid http uri"); | ||
_log.Debug($"{url} is not a valid http uri"); | ||
return false; | ||
} | ||
|
||
|
@@ -231,13 +231,13 @@ public static async Task<bool> IsReachableGitHubEnterpriseServerURL(Uri server) | |
var probeResult = await new EnterpriseProbe(new ProductHeaderValue(Constants.DEV_HOME_APPLICATION_NAME)).Probe(server); | ||
if (probeResult != EnterpriseProbeResult.Ok) | ||
{ | ||
Log.Error($"EnterpriseServer {server.AbsoluteUri} is not reachable"); | ||
_log.Error($"EnterpriseServer {server.AbsoluteUri} is not reachable"); | ||
return false; | ||
} | ||
} | ||
catch (Exception ex) | ||
{ | ||
Log.Error(ex, $"EnterpriseServer {server.AbsoluteUri} could not be probed."); | ||
_log.Error(ex, $"EnterpriseServer {server.AbsoluteUri} could not be probed."); | ||
return false; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
|
||
namespace GitHubExtension.Helpers; | ||
|
||
internal class IconData | ||
{ | ||
public const string AssignedWidgetTitleIconData = | ||
"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"; | ||
|
||
public const string MentionedInWidgetTitleIconData = | ||
"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"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.