Skip to content

Commit fa13056

Browse files
author
Freddy Kristiansen
committed
Issue #1243
1 parent 2a7e3fe commit fa13056

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

ContainerInfo/Get-NavContainerImageLabels.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ function Get-NavContainerImageLabels {
1717
[PSCredential] $registryCredential
1818
)
1919

20+
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
2021
$webclient = New-Object System.Net.WebClient
2122

2223
if ($imageName.IndexOf("/") -lt 0) {

ContainerInfo/Get-NavContainerImageTags.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ function Get-NavContainerImageTags {
1919
[int] $pageSize = -1
2020
)
2121

22+
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
2223
$webclient = New-Object System.Net.WebClient
2324

2425
$registry = $imageName.Split("/")[0]

ReleaseNotes.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
0.7.0.27
2+
Issue #1243 - Get-BcContainerImageTags and Get-BcContainerImageLabels doesn't work if TLS 1.2 isn't enabled
3+
14
0.7.0.26
25
Sort-AppFoldersByDependencies didn't take custom Application apps into account
36

Version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.0.26
1+
0.7.0.27

0 commit comments

Comments
 (0)