Skip to content

Commit f945ae0

Browse files
committed
Merge branch 'release/5.0.1'
2 parents 5c05534 + 01a20ba commit f945ae0

14 files changed

+19
-19
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ install:
1111
- ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
1212
- ps: Invoke-WebRequest -Uri "https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.ps1" -OutFile "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1"
1313
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 5.0.408 -InstallDir $env:DOTNET_INSTALL_DIR'
14-
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 8.0.404 -InstallDir $env:DOTNET_INSTALL_DIR'
15-
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 9.0.100 -InstallDir $env:DOTNET_INSTALL_DIR'
14+
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 8.0.405 -InstallDir $env:DOTNET_INSTALL_DIR'
15+
- ps: '& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 9.0.102 -InstallDir $env:DOTNET_INSTALL_DIR'
1616
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
1717
- ps: dotnet --info
1818

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- job: Build_macOS
4343
displayName: Build & Test macOS
4444
pool:
45-
vmImage: 'macOS-12'
45+
vmImage: 'macOS-13'
4646
steps:
4747
# .NET 5 required for GitVersion
4848
- task: UseDotNet@2

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
33
"allowPrerelease": true,
4-
"version": "9.0.100",
4+
"version": "9.0.102",
55
"rollForward": "latestFeature"
66
}
77
}

nuspec/nuget/Cake.AzureDevOps.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For addin compatible with Cake Frosting see Cake.Frosting.AzureDevOps.
2121
<repository type="git" url="https://github.com/cake-contrib/Cake.AzureDevOps.git"/>
2222
<copyright>Copyright © Pascal Berger</copyright>
2323
<tags>cake cake-addin azure-devops azure-devops-server</tags>
24-
<releaseNotes>https://github.com/cake-contrib/Cake.AzureDevOps/releases/tag/5.0.0</releaseNotes>
24+
<releaseNotes>https://github.com/cake-contrib/Cake.AzureDevOps/releases/tag/5.0.1</releaseNotes>
2525
</metadata>
2626
<files>
2727
<file src="..\..\..\..\nuspec\nuget\icon.png" target="" />

nuspec/nuget/Cake.Frosting.AzureDevOps.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For addin compatible with Cake Script Runners see Cake.AzureDevOps.
2121
<repository type="git" url="https://github.com/cake-contrib/Cake.AzureDevOps.git"/>
2222
<copyright>Copyright © Pascal Berger</copyright>
2323
<tags>cake cake-addin azure-devops azure-devops-server</tags>
24-
<releaseNotes>https://github.com/cake-contrib/Cake.AzureDevOps/releases/tag/5.0.0</releaseNotes>
24+
<releaseNotes>https://github.com/cake-contrib/Cake.AzureDevOps/releases/tag/5.0.1</releaseNotes>
2525
<dependencies>
2626
<group targetFramework="net8.0">
2727
<dependency id="Cake.Core" version="5.0" exclude="Build,Analyzers" />

src/Cake.AzureDevOps.Tests/Cake.AzureDevOps.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@
1414
</PropertyGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
17+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
1818
<PackageReference Include="Cake.Common" Version="5.0.0" />
1919
<PackageReference Include="Cake.Core" Version="5.0.0" />
2020
<PackageReference Include="Cake.Testing" Version="5.0.0" />
2121
<PackageReference Include="Microsoft.TeamFoundationServer.Client" Version="19.225.1" />
2222
<PackageReference Include="Moq" Version="4.18.4" />
23-
<PackageReference Include="Shouldly" Version="4.2.1" />
23+
<PackageReference Include="Shouldly" Version="4.3.0" />
2424
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
2525
<PrivateAssets>all</PrivateAssets>
2626
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2727
</PackageReference>
28-
<PackageReference Include="xunit" Version="2.9.2" />
29-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
28+
<PackageReference Include="xunit" Version="2.9.3" />
29+
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1" />
3030
<!--Transitive dependencies specified to fix security vulnerabilities-->
3131
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
32-
<PackageReference Include="System.Formats.Asn1" Version="9.0.0" />
32+
<PackageReference Include="System.Formats.Asn1" Version="9.0.1" />
3333
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.2.1" />
3434
<PackageReference Include="System.Net.Http" Version="4.3.4" />
3535
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />

src/Cake.AzureDevOps.Tests/Fakes/FakeAllSetGitClientFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ protected override Mock<GitHttpClient> Setup(Mock<GitHttpClient> m)
130130
It.IsAny<string>(),
131131
It.IsAny<Guid>(),
132132
true,
133-
null,
133+
int.MaxValue,
134134
null,
135135
It.IsAny<GitBaseVersionDescriptor>(),
136136
It.IsAny<GitTargetVersionDescriptor>(),

src/Cake.AzureDevOps.Tests/Fakes/FakeNullForMethodsGitClientFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ protected override Mock<GitHttpClient> Setup(Mock<GitHttpClient> m)
1515
m.Setup(arg => arg.CreatePullRequestStatusAsync(It.IsAny<GitPullRequestStatus>(), It.IsAny<Guid>(), It.IsAny<int>(), It.IsAny<object>(), It.IsAny<CancellationToken>()))
1616
.ReturnsAsync(() => null);
1717

18-
m.Setup(arg => arg.GetCommitDiffsAsync(It.IsAny<string>(), It.IsAny<Guid>(), true, null, null, It.IsAny<GitBaseVersionDescriptor>(), It.IsAny<GitTargetVersionDescriptor>(), null, CancellationToken.None))
18+
m.Setup(arg => arg.GetCommitDiffsAsync(It.IsAny<string>(), It.IsAny<Guid>(), true, int.MaxValue, null, It.IsAny<GitBaseVersionDescriptor>(), It.IsAny<GitTargetVersionDescriptor>(), null, CancellationToken.None))
1919
.ReturnsAsync(() => new GitCommitDiffs { ChangeCounts = [], Changes = [] });
2020

2121
m.Setup(arg => arg.UpdateThreadAsync(It.IsAny<GitPullRequestCommentThread>(), It.IsAny<Guid>(), It.IsAny<int>(), It.IsAny<int>(), null, CancellationToken.None))

src/Cake.AzureDevOps/Cake.AzureDevOps.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<!--Transitive dependencies specified to fix security vulnerabilities-->
4141
<PackageReference Include="Microsoft.Identity.Client" Version="4.66.2" />
4242
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
43-
<PackageReference Include="System.Formats.Asn1" Version="9.0.0" />
43+
<PackageReference Include="System.Formats.Asn1" Version="9.0.1" />
4444
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.2.1" />
4545
<PackageReference Include="System.Net.Http" Version="4.3.4" />
4646
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />

src/Cake.AzureDevOps/Repos/PullRequest/AzureDevOpsPullRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ public IEnumerable<FilePath> GetModifiedFiles()
407407
this.ProjectName,
408408
this.RepositoryId,
409409
true, // bool? diffCommonCommit
410-
null, // int? top
410+
int.MaxValue, // int? top
411411
null, // int? skip
412412
baseVersionDescriptor,
413413
targetVersionDescriptor)

tests/frosting/net8.0/global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
33
"allowPrerelease": true,
4-
"version": "8.0.404",
4+
"version": "8.0.405",
55
"rollForward": "latestFeature"
66
}
77
}

tests/frosting/net9.0/global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
33
"allowPrerelease": true,
4-
"version": "9.0.100",
4+
"version": "9.0.102",
55
"rollForward": "latestFeature"
66
}
77
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
33
"allowPrerelease": true,
4-
"version": "8.0.404",
4+
"version": "8.0.405",
55
"rollForward": "latestFeature"
66
}
77
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
33
"allowPrerelease": true,
4-
"version": "9.0.100",
4+
"version": "9.0.102",
55
"rollForward": "latestFeature"
66
}
77
}

0 commit comments

Comments
 (0)