Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion ContainerInfo/Get-NavContainerLicenseInformation.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ Function Get-BcContainerLicenseInformation {
)

Invoke-ScriptInBcContainer -containerName $containerName -ScriptBlock {
Get-NavServerInstance | Export-NAVServerLicenseInformation
$firstAvailableTenant = (Get-NavServerInstance | Get-NavTenant | Where-Object { $_.State -eq 'Operational'})[0].Id
Get-NavServerInstance | Export-NAVServerLicenseInformation -Tenant $firstAvailableTenant
}
}
Set-Alias -Name Get-NavContainerLicenseInformation -Value Get-BcContainerLicenseInformation
Expand Down
1 change: 1 addition & 0 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
New-BcCompilerFolder: Add platformArtifactUrl parameter to allow using a different platform than the one related to artifactUrl (like New-BcContainer)
Add retry with exponential backoff in DockerDo for transient MCR pull failures caused by Azure Front Door CDN/WAF blocks (delays: 5s, 15s, 30s, 60s, 120s)
Add support for framework-dependent AL Language VSIX (flat bin/ layout without platform-specific subdirectories)
Add Tenant to Export-NAVServerLicenseInformation to cover for changes in OnPrem managenment commands

6.1.14
Fix System.IO.Pipelines assembly load failure in PS7 WinRM sessions on containers with .NET 10
Expand Down