File size: 26,877 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 | # Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# This script is used to completely rebuild the cgmanifgest.json file,
# which is used to generate the notice file.
# Requires the module dotnet.project.assets from the PowerShell Gallery authored by @TravisEz13
param(
[switch] $Fix,
[switch] $IsStable,
[switch] $ForceHarvestedOnly
)
Import-Module dotnet.project.assets
Import-Module "$PSScriptRoot\..\.github\workflows\GHWorkflowHelper" -Force
. "$PSScriptRoot\..\tools\buildCommon\startNativeExecution.ps1"
. "$PSScriptRoot\clearlyDefined\Find-LastHarvestedVersion.ps1"
$targetsConfigPath = Join-Path -Path $PSScriptRoot -ChildPath 'findMissingNotices.targets.json'
if (-not (Test-Path -LiteralPath $targetsConfigPath)) {
throw "Missing target framework config file '$targetsConfigPath'. Add '/tools/findMissingNotices.targets.json' with 'dotnetTargetName' and 'windowsTargetNames' entries."
}
try {
$targetsConfig = Get-Content -LiteralPath $targetsConfigPath -Raw -ErrorAction Stop | ConvertFrom-Json -AsHashtable -ErrorAction Stop
} catch {
throw "Failed to load target framework config from '$targetsConfigPath'. Ensure the file contains valid JSON. Error: $($_.Exception.Message)"
}
if ($targetsConfig -isnot [hashtable]) {
throw "Invalid target framework config '$targetsConfigPath': expected a JSON object with 'dotnetTargetName' and 'windowsTargetNames'."
}
if (-not $targetsConfig.ContainsKey('dotnetTargetName') -or [string]::IsNullOrWhiteSpace($targetsConfig['dotnetTargetName'])) {
throw "Invalid target framework config '$targetsConfigPath': 'dotnetTargetName' must be a non-empty string."
}
if (-not $targetsConfig.ContainsKey('windowsTargetNames')) {
throw "Invalid target framework config '$targetsConfigPath': 'windowsTargetNames' must be present and must be an array."
}
if ($null -eq $targetsConfig['windowsTargetNames'] -or $targetsConfig['windowsTargetNames'] -isnot [array]) {
throw "Invalid target framework config '$targetsConfigPath': 'windowsTargetNames' must be an array (empty array is allowed)."
}
$script:dotnetTargetName = [string]$targetsConfig['dotnetTargetName']
$script:windowsTargetNames = @()
foreach ($windowsTargetName in $targetsConfig['windowsTargetNames']) {
if ($windowsTargetName -isnot [string] -or [string]::IsNullOrWhiteSpace($windowsTargetName)) {
throw "Invalid target framework config '$targetsConfigPath': every entry in 'windowsTargetNames' must be a non-empty string."
}
$script:windowsTargetNames += $windowsTargetName
}
# Empty windowsTargetNames is valid and means "use base target fallback only".
$packageSourceName = 'findMissingNoticesNugetOrg'
if (!(Get-PackageSource -Name $packageSourceName -ErrorAction SilentlyContinue)) {
$null = Register-PackageSource -Name $packageSourceName -Location https://www.nuget.org/api/v2 -ProviderName NuGet
}
$existingRegistrationTable = @{}
$cgManifestPath = (Resolve-Path -Path $PSScriptRoot\cgmanifest\main\cgmanifest.json).ProviderPath
$existingRegistrationsJson = Get-Content $cgManifestPath | ConvertFrom-Json -AsHashtable
$existingRegistrationsJson.Registrations | ForEach-Object {
$registration = [Registration]$_
if ($registration.Component) {
$name = $registration.Component.Name()
if (!$existingRegistrationTable.ContainsKey($name)) {
$existingRegistrationTable.Add($name, $registration)
}
}
}
Class Registration {
[Component]$Component
[bool]$DevelopmentDependency
}
Class Component {
[ValidateSet("nuget")]
[String] $Type
[Nuget]$Nuget
[string]ToString() {
$message = "Type: $($this.Type)"
if ($this.Type -eq "nuget") {
$message += "; $($this.Nuget)"
}
return $message
}
[string]Name() {
switch ($this.Type) {
"nuget" {
return $($this.Nuget.Name)
}
default {
throw "Unknown component type: $($this.Type)"
}
}
throw "How did we get here?!?"
}
[string]Version() {
switch ($this.Type) {
"nuget" {
return $($this.Nuget.Version)
}
default {
throw "Unknown component type: $($this.Type)"
}
}
throw "How did we get here?!?"
}
}
Class Nuget {
[string]$Name
[string]$Version
[string]ToString() {
return "$($this.Name) - $($this.Version)"
}
}
$winDesktopSdk = 'Microsoft.NET.Sdk.WindowsDesktop'
if (!$IsWindows) {
$winDesktopSdk = 'Microsoft.NET.Sdk'
Write-Warning "Always using $winDesktopSdk since this is not windows!!!"
}
function ConvertTo-SemVer {
param(
[String] $Version
)
[System.Management.Automation.SemanticVersion]$desiredVersion = [System.Management.Automation.SemanticVersion]::Empty
try {
$desiredVersion = $Version
} catch {
<#
Json.More.Net broke the rules and published 2.0.1.2 as 2.0.1.
So, I'm making the logic work for that scenario by
thorwing away any part that doesn't match non-pre-release semver portion
#>
$null = $Version -match '^(\d+\.\d+\.\d+).*'
$desiredVersion = $matches[1]
}
return $desiredVersion
}
function New-NugetComponent {
param(
[string]$name,
[string]$version,
[switch]$DevelopmentDependency
)
$nuget = [Nuget]@{
Name = $name
Version = $version
}
$Component = [Component]@{
Type = "nuget"
Nuget = $nuget
}
$registration = [Registration]@{
Component = $Component
DevelopmentDependency = $DevelopmentDependency
}
return $registration
}
$nugetPublicVersionCache = [System.Collections.Generic.Dictionary[string, string]]::new()
function Get-NuGetPublicVersion {
param(
[parameter(Mandatory)]
[string]$Name,
[parameter(Mandatory)]
[string]$Version
)
if($nugetPublicVersionCache.ContainsKey($Name)) {
return $nugetPublicVersionCache[$Name]
}
[System.Management.Automation.SemanticVersion]$desiredVersion = ConvertTo-SemVer -Version $Version
$publicVersion = $null
$publicVersion = Find-Package -Name $Name -AllowPrereleaseVersions -source $packageSourceName -AllVersions -ErrorAction SilentlyContinue | ForEach-Object {
[System.Management.Automation.SemanticVersion]$packageVersion = ConvertTo-SemVer -Version $_.Version
$_ | Add-Member -Name SemVer -MemberType NoteProperty -Value $packageVersion -PassThru
} | Where-Object {
$_.SemVer -le $desiredVersion
} | Sort-Object -Property semver -Descending | Select-Object -First 1 -ExpandProperty Version
if(!$publicVersion) {
Write-Warning "No public version found for $Name, using $Version"
$publicVersion = $Version
}
if(!$nugetPublicVersionCache.ContainsKey($Name)) {
$nugetPublicVersionCache.Add($Name, $publicVersion)
}
return $publicVersion
}
function Get-CGRegistrations {
param(
[Parameter(Mandatory)]
[ValidateSet(
"linux-musl-x64",
"linux-arm",
"linux-arm64",
"linux-x64",
"osx-arm64",
"osx-x64",
"win-arm64",
"win-x64",
"win-x86",
"modules")]
[string]$Runtime,
[Parameter(Mandatory)]
[System.Collections.Generic.Dictionary[string, Registration]] $RegistrationTable
)
$registrationChanged = $false
$baseTargetName = $script:dotnetTargetName
$unixProjectName = 'powershell-unix'
$windowsProjectName = 'powershell-win-core'
$actualRuntime = $Runtime
switch -regex ($Runtime) {
"alpine-.*" {
$folder = $unixProjectName
$target = "$baseTargetName|$Runtime"
$neutralTarget = "$baseTargetName"
}
"linux-.*" {
$folder = $unixProjectName
$target = "$baseTargetName|$Runtime"
$neutralTarget = "$baseTargetName"
}
"osx-.*" {
$folder = $unixProjectName
$target = "$baseTargetName|$Runtime"
$neutralTarget = "$baseTargetName"
}
"win-.*" {
$sdkToUse = $winDesktopSdk
$folder = $windowsProjectName
$target = "$baseTargetName|$actualRuntime"
$neutralTarget = "$baseTargetName"
}
"modules" {
$folder = "modules"
$actualRuntime = 'linux-x64'
$target = "$baseTargetName|$actualRuntime"
$neutralTarget = "$baseTargetName"
}
Default {
throw "Invalid runtime name: $Runtime"
}
}
Write-Verbose "Getting registrations for $folder - $actualRuntime ..." -Verbose
Get-PSDrive -Name $folder -ErrorAction Ignore | Remove-PSDrive
Push-Location $PSScriptRoot\..\src\$folder
try {
Start-NativeExecution -VerboseOutputOnError -sb {
dotnet restore --runtime $actualRuntime "/property:SDKToUse=$sdkToUse"
}
$null = New-PADrive -Path $PSScriptRoot\..\src\$folder\obj\project.assets.json -Name $folder
if ($Runtime -like "win-*") {
# Windows target selection is optional and ordered:
# 1. Try full Windows TFMs from config in order.
# 2. Fall back to the base non-Windows TFM if present.
try {
$availableTargets = @(Get-ChildItem -Path "${folder}:/targets" -ErrorAction Stop | Select-Object -ExpandProperty Name)
} catch {
throw "Unable to enumerate available targets for runtime '$Runtime' in '$folder'. Ensure dotnet restore succeeded and project.assets.json contains target data. Error: $($_.Exception.Message)"
}
$selectedTargetName = $null
foreach ($windowsTargetName in $script:windowsTargetNames) {
if ($windowsTargetName -in $availableTargets) {
$selectedTargetName = $windowsTargetName
break
}
}
if (-not $selectedTargetName -and $baseTargetName -in $availableTargets) {
Write-Verbose "No configured windows target matched for '$Runtime'. Falling back to base target '$baseTargetName'." -Verbose
$selectedTargetName = $baseTargetName
}
if (-not $selectedTargetName) {
Write-Verbose "Available targets for '$folder': $($availableTargets -join ', ')" -Verbose
if ($script:windowsTargetNames.Count -eq 0) {
throw "Unable to find a target for '$Runtime'. Tried fallback base target '$baseTargetName' (no windowsTargetNames configured). Ensure project.assets.json contains this target or update dotnetTargetName in '$targetsConfigPath'."
}
throw "Unable to find a target for '$Runtime'. Tried configured windowsTargetNames '$($script:windowsTargetNames -join "', '")' and fallback base target '$baseTargetName'. Update '$targetsConfigPath' with a valid windows target from the available list."
}
$target = "$selectedTargetName|$actualRuntime"
$neutralTarget = $selectedTargetName
}
# Defensive check: non-Windows paths set targets in the switch block,
# Windows path may override them after inspecting available assets targets.
if (-not $target -or -not $neutralTarget) {
throw "Unable to determine restore targets for runtime '$Runtime'."
}
try {
$targets = Get-ChildItem -Path "${folder}:/targets/$target" -ErrorAction Stop | Where-Object { $_.Type -eq 'package' } | select-object -ExpandProperty name
$targets += Get-ChildItem -Path "${folder}:/targets/$neutralTarget" -ErrorAction Stop | Where-Object { $_.Type -eq 'project' } | select-object -ExpandProperty name
} catch {
Get-ChildItem -Path "${folder}:/targets" | Out-String | Write-Verbose -Verbose
throw
}
} finally {
Pop-Location
Get-PSDrive -Name $folder -ErrorAction Ignore | Remove-PSDrive
}
# Name to skip for TPN generation
$skipNames = @(
"Microsoft.PowerShell.Native"
"Microsoft.Management.Infrastructure.Runtime.Unix"
"Microsoft.Management.Infrastructure"
"Microsoft.PowerShell.Commands.Diagnostics"
"Microsoft.PowerShell.Commands.Management"
"Microsoft.PowerShell.Commands.Utility"
"Microsoft.PowerShell.ConsoleHost"
"Microsoft.PowerShell.SDK"
"Microsoft.PowerShell.Security"
"Microsoft.Management.Infrastructure.CimCmdlets"
"Microsoft.WSMan.Management"
"Microsoft.WSMan.Runtime"
"System.Management.Automation"
"Microsoft.PowerShell.GraphicalHost"
"Microsoft.PowerShell.CoreCLR.Eventing"
)
Write-Verbose "Found $($targets.Count) targets to process..." -Verbose
$targets | ForEach-Object {
$target = $_
$parts = ($target -split '\|')
$name = $parts[0]
if ($name -in $skipNames) {
Write-Verbose "Skipping $name..."
} else {
$targetVersion = $parts[1]
$publicVersion = Get-NuGetPublicVersion -Name $name -Version $targetVersion
# Add the registration to the cgmanifest if the TPN does not contain the name of the target OR
# the exisitng CG contains the registration, because if the existing CG contains the registration,
# that might be the only reason it is in the TPN.
if (!$RegistrationTable.ContainsKey($target)) {
$DevelopmentDependency = $false
if (!$existingRegistrationTable.ContainsKey($name) -or $existingRegistrationTable.$name.Component.Version() -ne $publicVersion) {
$registrationChanged = $true
}
if ($existingRegistrationTable.ContainsKey($name) -and $existingRegistrationTable.$name.DevelopmentDependency) {
$DevelopmentDependency = $true
}
$registration = New-NugetComponent -Name $name -Version $publicVersion -DevelopmentDependency:$DevelopmentDependency
$RegistrationTable.Add($target, $registration)
}
}
}
return $registrationChanged
}
$registrations = [System.Collections.Generic.Dictionary[string, Registration]]::new()
$lastCount = 0
$registrationChanged = $false
foreach ($runtime in "win-x64", "linux-x64", "osx-x64", "linux-musl-x64", "linux-arm", "linux-arm64", "osx-arm64", "win-arm64", "win-x86") {
$registrationChanged = (Get-CGRegistrations -Runtime $runtime -RegistrationTable $registrations) -or $registrationChanged
$count = $registrations.Count
$newCount = $count - $lastCount
$lastCount = $count
Write-Verbose "$newCount new registrations, $count total..." -Verbose
}
$newRegistrations = $registrations.Keys | Sort-Object | ForEach-Object { $registrations[$_] }
if ($IsStable) {
foreach ($registion in $newRegistrations) {
$name = $registion.Component.Name()
$version = $registion.Component.Version()
$developmentDependency = $registion.DevelopmentDependency
if ($version -match '-' -and !$developmentDependency) {
throw "Version $version of $name is preview. This is not allowed."
}
}
}
$count = $newRegistrations.Count
$registrationsToSave = $newRegistrations
$tpnRegistrationsToSave = $null
# If -ForceHarvestedOnly is specified with -Fix, only include harvested packages
# and revert non-harvested packages to their previous versions
if ($Fix -and $ForceHarvestedOnly) {
Write-Verbose "Checking harvest status and filtering to harvested packages with reversion..." -Verbose
# Import ClearlyDefined module to check harvest status
Import-Module -Name "$PSScriptRoot/clearlyDefined/src/ClearlyDefined" -Force
# Import cache from previous runs to speed up lookups
Import-ClearlyDefinedCache
# Get harvest data for all registrations
$fullCgList = $newRegistrations |
ForEach-Object {
[PSCustomObject]@{
type = $_.Component.Type
Name = $_.Component.Nuget.Name
PackageVersion = $_.Component.Nuget.Version
}
}
$fullList = $fullCgList | Get-ClearlyDefinedData
# Build a lookup table of harvest status by package name + version
$harvestStatus = @{}
foreach ($item in $fullList) {
$key = "$($item.Name)|$($item.PackageVersion)"
$harvestStatus[$key] = $item.harvested
}
# Build a lookup table of old versions from existing manifest
$oldVersions = @{}
foreach ($registration in $existingRegistrationsJson.Registrations) {
$name = $registration.Component.Nuget.Name
if (!$oldVersions.ContainsKey($name)) {
$oldVersions[$name] = $registration
}
}
# Process each new registration: keep harvested, revert non-harvested
$tpnRegistrationsToSave = @()
$harvestedCount = 0
$revertedCount = 0
foreach ($reg in $newRegistrations) {
$name = $reg.Component.Nuget.Name
$version = $reg.Component.Nuget.Version
$key = "$name|$version"
if ($harvestStatus.ContainsKey($key) -and $harvestStatus[$key]) {
# Package is harvested, include it
$tpnRegistrationsToSave += $reg
$harvestedCount++
} else {
# Package not harvested, find last harvested version
$lastHarvestedVersion = Find-LastHarvestedVersion -Name $name -CurrentVersion $version
# Use last harvested version if found, otherwise use old version as fallback
if ($lastHarvestedVersion) {
if ($lastHarvestedVersion -ne $version) {
$revertedReg = New-NugetComponent -Name $name -Version $lastHarvestedVersion -DevelopmentDependency:$reg.DevelopmentDependency
$tpnRegistrationsToSave += $revertedReg
$revertedCount++
Write-Verbose "Reverted $name from v$version to last harvested v$lastHarvestedVersion" -Verbose
} else {
$tpnRegistrationsToSave += $reg
}
} elseif ($oldVersions.ContainsKey($name)) {
$tpnRegistrationsToSave += $oldVersions[$name]
$revertedCount++
Write-Verbose "Reverted $name to previous version (no harvested version found)" -Verbose
} else {
Write-Warning "$name v$version not harvested and no previous version found. Excluding from manifest."
}
}
}
Write-Verbose "Completed filtering for TPN: $harvestedCount harvested + $revertedCount reverted = $($tpnRegistrationsToSave.Count) total" -Verbose
}
$newJson = @{
Registrations = $registrationsToSave
'$schema' = "https://json.schemastore.org/component-detection-manifest.json"
} | ConvertTo-Json -depth 99
if ($Fix -and $registrationChanged) {
$newJson | Set-Content $cgManifestPath
Set-GWVariable -Name CGMANIFEST_PATH -Value $cgManifestPath
}
# If -ForceHarvestedOnly was used, write the TPN manifest with filtered registrations
if ($Fix -and $ForceHarvestedOnly -and $tpnRegistrationsToSave.Count -gt 0) {
$tpnManifestDir = Join-Path -Path $PSScriptRoot -ChildPath "cgmanifest\tpn"
New-Item -ItemType Directory -Path $tpnManifestDir -Force | Out-Null
$tpnManifestPath = Join-Path -Path $tpnManifestDir -ChildPath "cgmanifest.json"
$tpnManifest = @{
Registrations = @($tpnRegistrationsToSave)
'$schema' = "https://json.schemastore.org/component-detection-manifest.json"
}
$tpnJson = $tpnManifest | ConvertTo-Json -depth 99
$tpnJson | Set-Content $tpnManifestPath -Encoding utf8NoBOM
Write-Verbose "TPN manifest created/updated with $($tpnRegistrationsToSave.Count) registrations (filtered for harvested packages)" -Verbose
}
# Skip legacy TPN update when -ForceHarvestedOnly already produced a filtered manifest
if ($Fix -and $registrationChanged -and -not $ForceHarvestedOnly) {
# Import ClearlyDefined module to check harvest status
Write-Verbose "Checking harvest status for newly added packages..." -Verbose
Import-Module -Name "$PSScriptRoot/clearlyDefined/src/ClearlyDefined" -Force
# Get harvest data for all registrations
$fullCgList = $newRegistrations |
ForEach-Object {
[PSCustomObject]@{
type = $_.Component.Type
Name = $_.Component.Nuget.Name
PackageVersion = $_.Component.Nuget.Version
}
}
$fullList = $fullCgList | Get-ClearlyDefinedData
$needHarvest = $fullList | Where-Object { !$_.harvested }
if ($needHarvest.Count -gt 0) {
Write-Verbose "Found $($needHarvest.Count) packages that need harvesting. Starting harvest..." -Verbose
$needHarvest | Select-Object -ExpandProperty coordinates | ConvertFrom-ClearlyDefinedCoordinates | Start-ClearlyDefinedHarvest
} else {
Write-Verbose "All packages are already harvested." -Verbose
}
# After manifest update and harvest, update TPN manifest with individual package status
Write-Verbose "Updating TPN manifest with individual package harvest status..." -Verbose
$tpnManifestDir = Join-Path -Path $PSScriptRoot -ChildPath "cgmanifest\tpn"
$tpnManifestPath = Join-Path -Path $tpnManifestDir -ChildPath "cgmanifest.json"
# Load current TPN manifest to get previous versions
$currentTpnManifest = @()
if (Test-Path $tpnManifestPath) {
$currentTpnJson = Get-Content $tpnManifestPath | ConvertFrom-Json -AsHashtable
$currentTpnManifest = $currentTpnJson.Registrations
}
# Build a lookup table of old versions
$oldVersions = @{}
foreach ($registration in $currentTpnManifest) {
$name = $registration.Component.Nuget.Name
if (!$oldVersions.ContainsKey($name)) {
$oldVersions[$name] = $registration
}
}
# Note: Do not recheck harvest status here. Harvesting is an async process that takes a significant amount of time.
# Use the harvest data from the initial check. Newly triggered harvests will be captured
# on the next run of this script after harvesting completes.
$finalHarvestData = $fullList
# Update packages individually based on harvest status
$tpnRegistrations = @()
$harvestedCount = 0
$restoredCount = 0
foreach ($item in $finalHarvestData) {
$matchingNewRegistration = $newRegistrations | Where-Object {
$_.Component.Nuget.Name -eq $item.Name -and
$_.Component.Nuget.Version -eq $item.PackageVersion
}
if ($matchingNewRegistration) {
if ($item.harvested) {
# Use new harvested version
$tpnRegistrations += $matchingNewRegistration
$harvestedCount++
} else {
# Package not harvested - find the last harvested version from ClearlyDefined API
Write-Verbose "Finding last harvested version for $($item.Name)..." -Verbose
$lastHarvestedVersion = $null
try {
# Search through all versions of this package to find the last harvested one
# Create a list of versions we know about from all runtimes
$packageVersionsToCheck = $newRegistrations | Where-Object {
$_.Component.Nuget.Name -eq $item.Name
} | ForEach-Object { $_.Component.Nuget.Version } | Sort-Object -Unique -Descending
foreach ($versionToCheck in $packageVersionsToCheck) {
$versionCheckList = [PSCustomObject]@{
type = "nuget"
Name = $item.Name
PackageVersion = $versionToCheck
}
$versionStatus = $versionCheckList | Get-ClearlyDefinedData
if ($versionStatus -and $versionStatus.harvested) {
$lastHarvestedVersion = $versionToCheck
break # Found the most recent harvested version
}
}
} catch {
Write-Verbose "Error checking harvested versions for $($item.Name): $_" -Verbose
}
# Use last harvested version if found, otherwise use old version as fallback
if ($lastHarvestedVersion) {
$revertedReg = New-NugetComponent -Name $item.Name -Version $lastHarvestedVersion -DevelopmentDependency:$matchingNewRegistration.DevelopmentDependency
$tpnRegistrations += $revertedReg
$restoredCount++
Write-Verbose "Reverted $($item.Name) from v$($item.PackageVersion) to last harvested v$lastHarvestedVersion" -Verbose
} elseif ($oldVersions.ContainsKey($item.Name)) {
$tpnRegistrations += $oldVersions[$item.Name]
$restoredCount++
Write-Verbose "Reverted $($item.Name) to previous version in TPN (no harvested version found)" -Verbose
} else {
Write-Warning "$($item.Name) v$($item.PackageVersion) not harvested and no harvested version found. Excluding from TPN manifest."
}
}
}
}
# Save updated TPN manifest
if ($tpnRegistrations.Count -gt 0) {
$tpnManifest = @{
Registrations = @($tpnRegistrations)
'$schema' = "https://json.schemastore.org/component-detection-manifest.json"
}
$tpnJson = $tpnManifest | ConvertTo-Json -depth 99
$tpnJson | Set-Content $tpnManifestPath -Encoding utf8NoBOM
Write-Verbose "TPN manifest updated: $harvestedCount new harvested + $restoredCount reverted to last harvested versions" -Verbose
}
}
if (!$Fix -and $registrationChanged) {
$temp = Get-GWTempPath
$tempJson = Join-Path -Path $temp -ChildPath "cgmanifest$((Get-Date).ToString('yyyMMddHHmm')).json"
$newJson | Set-Content $tempJson -Encoding utf8NoBOM
Set-GWVariable -Name CGMANIFEST_PATH -Value $tempJson
throw "cgmanifest is out of date. run ./tools/findMissingNotices.ps1 -Fix. Generated cgmanifest is here: $tempJson"
}
Write-Verbose "$count registrations created!" -Verbose
|