Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1a2584d
Update dependencies from build 327141
dotnet-maestro[bot] Aug 15, 2026
95ffe7c
Update dependencies from build 327247
dotnet-maestro[bot] Aug 16, 2026
684eca4
Update dependencies from build 327431
dotnet-maestro[bot] Aug 18, 2026
3ee16a3
Update dependencies from build 327605
dotnet-maestro[bot] Aug 19, 2026
3ce9b10
Update dependencies from build 328477
dotnet-maestro[bot] Aug 26, 2026
66a77e9
Backflow from https://github.com/dotnet/dotnet / 31d4a0a build 328846
dotnet-maestro[bot] Aug 27, 2026
9d808f5
Update dependencies from build 328846
dotnet-maestro[bot] Aug 27, 2026
1716039
Update dependencies from build 328888
dotnet-maestro[bot] Aug 28, 2026
c701274
Update dependencies from build 329108
dotnet-maestro[bot] Aug 29, 2026
745b315
Update dependencies from build 329279
dotnet-maestro[bot] Aug 30, 2026
de1ded6
Update dependencies from build 329385
dotnet-maestro[bot] Aug 31, 2026
887f046
Update dependencies from build 329526
dotnet-maestro[bot] Sep 1, 2026
9571aa1
Update dependencies from build 329877
dotnet-maestro[bot] Sep 2, 2026
b53ec19
Update dependencies from build 330129
dotnet-maestro[bot] Sep 3, 2026
42c1df9
Update dependencies from build 330192
dotnet-maestro[bot] Sep 4, 2026
9e0525a
Update dependencies from build 330600
dotnet-maestro[bot] Sep 5, 2026
55c59c4
Update dependencies from build 331004
dotnet-maestro[bot] Sep 9, 2026
1b3acf9
Update dependencies from build 331699
dotnet-maestro[bot] Sep 12, 2026
7e97997
Update dependencies from build 332014
dotnet-maestro[bot] Sep 15, 2026
c9a6d0e
Update dependencies from build 332127
dotnet-maestro[bot] Sep 16, 2026
558b3a0
Update dependencies from build 332396
dotnet-maestro[bot] Sep 17, 2026
2dee259
Update dependencies from build 332475
dotnet-maestro[bot] Sep 18, 2026
62634bd
Update dependencies from build 332887
dotnet-maestro[bot] Sep 20, 2026
2ae9207
Update dependencies from build 332911
dotnet-maestro[bot] Sep 21, 2026
4bce644
Update dependencies from build 333293
dotnet-maestro[bot] Sep 23, 2026
dc49f77
Backflow from https://github.com/dotnet/dotnet / d9a0638 build 333551
dotnet-maestro[bot] Sep 24, 2026
965ea4f
Update dependencies from build 333551
dotnet-maestro[bot] Sep 24, 2026
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
2 changes: 1 addition & 1 deletion eng/Version.Details.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This file should be imported by eng/Versions.props
<Project>
<PropertyGroup>
<!-- dotnet-dotnet dependencies -->
<MicrosoftDotNetArcadeSdkPackageVersion>10.0.0-beta.26412.103</MicrosoftDotNetArcadeSdkPackageVersion>
<MicrosoftDotNetArcadeSdkPackageVersion>10.0.0-beta.26473.102</MicrosoftDotNetArcadeSdkPackageVersion>
</PropertyGroup>
<!--Property group for alternate package version names-->
<PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Dependencies>
<Source Uri="https://github.com/dotnet/dotnet" Mapping="command-line-api" Sha="493580a515a01970cfe1da2c7dd589efbaf36996" BarId="326844" />
<Source Uri="https://github.com/dotnet/dotnet" Mapping="command-line-api" Sha="d9a0638a2d7c5b89ba8769837310702bb2b01805" BarId="333551" />
<ProductDependencies>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.26412.103">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.26473.102">
<Uri>https://github.com/dotnet/dotnet</Uri>
<Sha>493580a515a01970cfe1da2c7dd589efbaf36996</Sha>
<Sha>d9a0638a2d7c5b89ba8769837310702bb2b01805</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies>
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<!-- Repo Version Information -->
<PropertyGroup>
<VersionPrefix>2.0.12</VersionPrefix>
<VersionPrefix>2.0.14</VersionPrefix>
<PreReleaseVersionLabel>servicing</PreReleaseVersionLabel>
<PreReleaseVersionIteration></PreReleaseVersionIteration>
<!-- Allowed values: '', 'prerelease', 'release'. Set to 'release' when stabilizing. -->
Expand Down
25 changes: 18 additions & 7 deletions eng/common/Get-GitHubAppToken.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -110,27 +110,38 @@ $headers = @{

Write-Host "Looking up installation for '$InstallationOwner'..."
try {
$installations = @()
$installations = [System.Collections.Generic.List[object]]::new()
$page = 1
do {
$pageInstallations = @(Invoke-RestMethod `
$pageResponse = Invoke-RestMethod `
-Uri "https://api.github.com/app/installations?per_page=100&page=$page" `
-Headers $headers `
-Method Get)
$installations += $pageInstallations
-Method Get
$pageInstallationCount = 0
foreach ($installation in $pageResponse) {
$installations.Add($installation)
$pageInstallationCount++
}
$page++
} while ($pageInstallations.Count -eq 100)
} while ($pageInstallationCount -eq 100)
}
catch {
Write-PipelineTelemetryError -Category 'Build' -Message "Failed to list GitHub App installations: $_. The signed JWT may be invalid or the App's Client ID ('$AppClientId') may be incorrect."
exit 1
}
$installation = $installations | Where-Object { $_.account.login -ieq $InstallationOwner } | Select-Object -First 1
if (-not $installation) {
$matchingInstallations = @($installations | Where-Object { $_.account.login -ieq $InstallationOwner })
if ($matchingInstallations.Count -eq 0) {
$found = ($installations | ForEach-Object { $_.account.login }) -join ', '
Write-PipelineTelemetryError -Category 'Build' -Message "No installation found for '$InstallationOwner'. App is installed on: $found"
exit 1
}
if ($matchingInstallations.Count -ne 1) {
$matchingIds = ($matchingInstallations | ForEach-Object { $_.id }) -join ', '
Write-PipelineTelemetryError -Category 'Build' -Message "Found multiple installations for '$InstallationOwner': $matchingIds"
exit 1
}
$installation = $matchingInstallations[0]
Write-Host "Using installation $($installation.id) for '$($installation.account.login)'."

try {
$tokenResponse = Invoke-RestMethod `
Expand Down
Loading