You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version number fixes (plus a few small bugs) (#3700)
Three version number fixes:
- Bump version
- As minimum, always use the generic tag version which was available
when shipping BcContainerHelper
- Add awareness of Windows 11 24H2
- Issue 3697 Running tests fails with 401 when running on a BC25 sandbox
container with AAD authentication
Fixes#3694Fixes#3697
---------
Co-authored-by: freddydk <[email protected]>
if ($genericTagVersion-lt [Version]$LatestGenericTagVersion) {
785
788
Write-Host"Generic image is version $genericTagVersion - pulling a newer image"
786
789
$pullit=$true
787
790
}
@@ -1310,7 +1313,7 @@ try {
1310
1313
}
1311
1314
Write-Host"Using $isolation isolation"
1312
1315
1313
-
if ($isolation-eq"process"-and!$isServerHost-and ($os.BuildNumber-eq22621-or$os.BuildNumber-eq22631) -and$useSSL) {
1316
+
if ($isolation-eq"process"-and!$isServerHost-and ($os.BuildNumber-eq22621-or$os.BuildNumber-eq22631-or$os.BuildNumber-eq26100) -and$useSSL) {
1314
1317
Write-Host-ForegroundColor Red "WARNING: Using SSL when running Windows 11 with process isolation might not work due to a bug in Windows 11. Please use HyperV isolation or disable SSL."
Copy file name to clipboardexpand all lines: ReleaseNotes.txt
+6
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
6.0.26
2
+
As minimum, always use the generic tag version which was available when shipping BcContainerHelper
3
+
Add awareness of Windows 11 24H2
4
+
Issue #3697 Running tests fails with 401 when running on a BC25 sandbox container with AAD authentication
5
+
Issue #3701 Compile-AppWithBcCompilerFolder, ALTool returns dependencies.appId for older apps
6
+
1
7
6.0.25
2
8
Fix issue where generateDependencyArtifact doesn't result in dependencies if useCompilerFolder is true or filesonly containers are used in Run-AlPipeline
3
9
Issue 3686 PowerShell container shortcuts for >= BC24 using wrong PowerShell version
0 commit comments