mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 20:13:40 +00:00
Release v0.25 - She'll be Comin' Round the Mountain (#1656)
* Run `build -Target FormatCode` to fixup whitespace etc * Fix delete release asset integration test * Fix repository fork test * Fix pagination test for PR Review Request * First cut of release notes * update release notes * Update release notes * include links to contributors * Add breaking changes/advisories section * Tidy up formatting * Tidy up wording
This commit is contained in:
@@ -51,8 +51,8 @@ namespace Octokit.Tests.Reactive
|
||||
client.GetAll("org", options);
|
||||
|
||||
gitHubClient.Connection.Received(1).Get<List<User>>(
|
||||
Arg.Is<Uri>(u => u.ToString() == "orgs/org/outside_collaborators"),
|
||||
Arg.Is<IDictionary<string, string>>(d => d.Count == 2),
|
||||
Arg.Is<Uri>(u => u.ToString() == "orgs/org/outside_collaborators"),
|
||||
Arg.Is<IDictionary<string, string>>(d => d.Count == 2),
|
||||
"application/vnd.github.korra-preview+json");
|
||||
}
|
||||
|
||||
@@ -86,8 +86,8 @@ namespace Octokit.Tests.Reactive
|
||||
client.GetAll("org", OrganizationMembersFilter.All);
|
||||
|
||||
gitHubClient.Connection.Received(1).Get<List<User>>(
|
||||
Arg.Is<Uri>(u => u.ToString() == "orgs/org/outside_collaborators?filter=all"),
|
||||
Args.EmptyDictionary,
|
||||
Arg.Is<Uri>(u => u.ToString() == "orgs/org/outside_collaborators?filter=all"),
|
||||
Args.EmptyDictionary,
|
||||
"application/vnd.github.korra-preview+json");
|
||||
}
|
||||
|
||||
@@ -107,8 +107,8 @@ namespace Octokit.Tests.Reactive
|
||||
client.GetAll("org", OrganizationMembersFilter.All, options);
|
||||
|
||||
gitHubClient.Connection.Received(1).Get<List<User>>(
|
||||
Arg.Is<Uri>(u => u.ToString() == "orgs/org/outside_collaborators?filter=all"),
|
||||
Arg.Is<IDictionary<string, string>>(d => d.Count == 2),
|
||||
Arg.Is<Uri>(u => u.ToString() == "orgs/org/outside_collaborators?filter=all"),
|
||||
Arg.Is<IDictionary<string, string>>(d => d.Count == 2),
|
||||
"application/vnd.github.korra-preview+json");
|
||||
}
|
||||
|
||||
@@ -121,8 +121,8 @@ namespace Octokit.Tests.Reactive
|
||||
client.GetAll("org", OrganizationMembersFilter.TwoFactorAuthenticationDisabled);
|
||||
|
||||
gitHubClient.Connection.Received(1).Get<List<User>>(
|
||||
Arg.Is<Uri>(u => u.ToString() == "orgs/org/outside_collaborators?filter=2fa_disabled"),
|
||||
Args.EmptyDictionary,
|
||||
Arg.Is<Uri>(u => u.ToString() == "orgs/org/outside_collaborators?filter=2fa_disabled"),
|
||||
Args.EmptyDictionary,
|
||||
"application/vnd.github.korra-preview+json");
|
||||
}
|
||||
|
||||
@@ -142,8 +142,8 @@ namespace Octokit.Tests.Reactive
|
||||
client.GetAll("org", OrganizationMembersFilter.TwoFactorAuthenticationDisabled, options);
|
||||
|
||||
gitHubClient.Connection.Received(1).Get<List<User>>(
|
||||
Arg.Is<Uri>(u => u.ToString() == "orgs/org/outside_collaborators?filter=2fa_disabled"),
|
||||
Arg.Is<IDictionary<string, string>>(d => d.Count == 2),
|
||||
Arg.Is<Uri>(u => u.ToString() == "orgs/org/outside_collaborators?filter=2fa_disabled"),
|
||||
Arg.Is<IDictionary<string, string>>(d => d.Count == 2),
|
||||
"application/vnd.github.korra-preview+json");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user