File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ Function Export-AllBreakingChangeMessageUnderArtifacts
63
63
$AllModuleList = Get-ChildItem - Path $ArtifactsPath - Filter Az.* | ForEach-Object { $_.Name }
64
64
ForEach ($ModuleName In $AllModuleList )
65
65
{
66
+ Write-Host " Generating breaking change message for $ModuleName "
66
67
if ($ModuleName -ne " Az.Monitor" )
67
68
{
68
69
$Result += Export-BreakingChangeMessageOfModule - ArtifactsPath $ArtifactsPath - ModuleName $ModuleName
Original file line number Diff line number Diff line change @@ -404,6 +404,7 @@ function Update-AzSyntaxChangelog
404
404
$newContent = $changeLog + " `r`n " + $currentContent
405
405
Set-Content - Path $targetFile - Value $newContent
406
406
Remove-Item - Path $syntaxChangeLog
407
+ Write-Host " SyntaxChangeLog revising completed."
407
408
}
408
409
409
410
function New-CommandMappingFile
@@ -516,7 +517,7 @@ switch ($PSCmdlet.ParameterSetName)
516
517
# We need to generate the upcoming-breaking-changes.md after the process of bump version in minor release
517
518
if ([PSVersion ]::MINOR -Eq $versionBump )
518
519
{
519
- Import-Module $PSScriptRoot / BreakingChanges/ GetUpcomingBreakingChange.ps1
520
+ Import-Module $PSScriptRoot / BreakingChanges/ GetUpcomingBreakingChange.psm1
520
521
Export-AllBreakingChangeMessageUnderArtifacts - ArtifactsPath $PSScriptRoot / ../ artifacts/ Release/ - MarkdownPath $PSScriptRoot / ../ documentation/ breaking- changes/ upcoming- breaking- changes.md
521
522
}
522
523
}
You can’t perform that action at this time.
0 commit comments