Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
e9a8194
build(deps): bump actions/setup-dotnet from 4.0.0 to 4.0.1
dependabot[bot] Jul 9, 2024
5ea56d6
homebrew: remove no longer needed workflow
mjcheetham Jul 10, 2024
85d9ee3
homebrew: remove no longer needed workflow (#1659)
mjcheetham Jul 11, 2024
7886272
docs: update generic-oauth.md
eltociear Jul 17, 2024
38df606
docs: update generic-oauth.md (#1664)
Jul 17, 2024
62b9c3d
Add method for sending X5C
Jul 17, 2024
ece4379
Debugging updates
Jul 18, 2024
52c1be9
Revert version change
Jul 18, 2024
55d6262
Apply code review feedback to use more appropriate helper functions i…
Jul 19, 2024
ab05752
Update configuration and environment documentation to document the ne…
Jul 19, 2024
1d06bd5
Add support for sending X5C when using a service principal with certi…
Jul 19, 2024
650f296
build(deps): bump azure/trusted-signing-action from 0.3.20 to 0.4.0
dependabot[bot] Jul 22, 2024
ecfd27c
build(deps): bump azure/trusted-signing-action from 0.3.20 to 0.4.0 (…
migue Jul 24, 2024
986b0d5
build(deps): bump actions/setup-dotnet from 4.0.0 to 4.0.1 (#1658)
migue Jul 24, 2024
e388474
Update SECURITY.md
jeffreyguerra Aug 27, 2024
415adfe
Update SECURITY.md (#1697)
Aug 28, 2024
71b5d06
Make GPG Pass store path configurable by git config
ipitsyn Sep 4, 2024
0b3d846
Changes according to PR review
ipitsyn Sep 9, 2024
4e8e593
Make GPG Pass store path configurable by git config (#1698)
Sep 30, 2024
4a460b4
Fix build in Visual Studio
dscho Sep 30, 2024
a59af02
Update the InnoSetup dependency to v6.3.1
dscho Sep 30, 2024
c6d28d3
installer: do require Windows 7 SP1 or later
dscho Sep 30, 2024
5441da0
installer: avoid using the deprecated `ParseVersion()` function
dscho Sep 30, 2024
cf935a7
installer: avoid running the `UninstallRun` entry more than once
dscho Sep 30, 2024
a749c92
Update the remaining dependencies
dscho Sep 30, 2024
6f13e76
Properly await `Assert.ThrowsAsync()` calls
dscho Sep 30, 2024
da12fc9
Use `Assert.Fail(message)` as appropriate
dscho Sep 30, 2024
48d06a7
Use preferred `Assert.*` patterns
dscho Sep 30, 2024
8bfe765
Use the `Trace2Exception`
dscho Sep 30, 2024
1a774c1
Replace broken `PlatformFact()` constructs
dscho Sep 30, 2024
f4b50c4
Fix the build in Visual Studio (#1711)
Sep 30, 2024
c16a9b7
VERSION: bump version to 2.6.0
mjcheetham Sep 30, 2024
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
Prev Previous commit
Next Next commit
Use the Trace2Exception
It seems that (probably due to updated dependencies), there is a problem
where the `Trace2Exception` no longer inherits from
`InvalidOperationException`. Let's use the former, then.

Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Sep 30, 2024
commit 8bfe765a1b650f243c08eda713941140b8892b79
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public async Task BasicAuthentication_GetCredentials_NonDesktopSession_NoTermina

var basicAuth = new BasicAuthentication(context);

await Assert.ThrowsAsync<InvalidOperationException>(() => basicAuth.GetCredentialsAsync(testResource));
await Assert.ThrowsAsync<GitCredentialManager.Trace2InvalidOperationException>(() => basicAuth.GetCredentialsAsync(testResource));
}

[Fact]
Expand Down
2 changes: 1 addition & 1 deletion src/shared/Core.Tests/HostProviderRegistryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public async Task HostProviderRegistry_GetProvider_NoProviders_ThrowException()
var registry = new HostProviderRegistry(context);
var input = new InputArguments(new Dictionary<string, string>());

await Assert.ThrowsAsync<Exception>(() => registry.GetProviderAsync(input));
await Assert.ThrowsAsync<GitCredentialManager.Trace2Exception>(() => registry.GetProviderAsync(input));
}

[Fact]
Expand Down
Loading