Skip to content

Commit 7fb6501

Browse files
authored
Using ACR loginServer in lower case always (#10636)
* Using loginServer in lower case always * Task version bump ups
1 parent f4cd7a0 commit 7fb6501

File tree

15 files changed

+16
-16
lines changed

15 files changed

+16
-16
lines changed

Tasks/Common/docker-common/registryauthenticationprovider/registryauthenticationtoken.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function getDockerRegistryEndpointAuthenticationToken(endpointId: string)
6565
let authToken: RegistryServerAuthenticationToken;
6666

6767
if (registryType === "ACR") {
68-
const loginServer = tl.getEndpointAuthorizationParameter(endpointId, "loginServer", false);
68+
const loginServer = tl.getEndpointAuthorizationParameter(endpointId, "loginServer", false).toLocaleLowerCase();
6969
authToken = new ACRAuthenticationTokenProvider(endpointId, loginServer).getAuthenticationToken();
7070
}
7171
else {

Tasks/DockerComposeV0/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": {
1515
"Major": 0,
1616
"Minor": 152,
17-
"Patch": 0
17+
"Patch": 1
1818
},
1919
"demands": [],
2020
"preview": "false",

Tasks/DockerComposeV0/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": {
1515
"Major": 0,
1616
"Minor": 152,
17-
"Patch": 0
17+
"Patch": 1
1818
},
1919
"demands": [],
2020
"preview": "false",

Tasks/DockerV0/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": {
1515
"Major": 0,
1616
"Minor": 152,
17-
"Patch": 1
17+
"Patch": 2
1818
},
1919
"demands": [],
2020
"preview": "false",

Tasks/DockerV0/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": {
1515
"Major": 0,
1616
"Minor": 152,
17-
"Patch": 1
17+
"Patch": 2
1818
},
1919
"demands": [],
2020
"preview": "false",

Tasks/DockerV1/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": {
1515
"Major": 1,
1616
"Minor": 152,
17-
"Patch": 1
17+
"Patch": 2
1818
},
1919
"demands": [],
2020
"releaseNotes": "Simplified the task by:<br/>&nbsp;- Providing an option to simply select or type a command.<br/>&nbsp;- Retaining the useful input fields and providing an option to pass the rest as an argument to the command.",

Tasks/DockerV1/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": {
1515
"Major": 1,
1616
"Minor": 152,
17-
"Patch": 1
17+
"Patch": 2
1818
},
1919
"demands": [],
2020
"releaseNotes": "ms-resource:loc.releaseNotes",

Tasks/DockerV2/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": {
1515
"Major": 2,
1616
"Minor": 152,
17-
"Patch": 3
17+
"Patch": 4
1818
},
1919
"demands": [],
2020
"releaseNotes": "Simplified the task YAML by:<br/>&nbsp;- Removing the Container registry type input<br/>&nbsp;- Removing complex inputs as they can be passed as arguments to the command.",

Tasks/DockerV2/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": {
1515
"Major": 2,
1616
"Minor": 152,
17-
"Patch": 3
17+
"Patch": 4
1818
},
1919
"demands": [],
2020
"releaseNotes": "ms-resource:loc.releaseNotes",

Tasks/KubernetesManifestV0/task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"version": {
1616
"Major": 0,
1717
"Minor": 152,
18-
"Patch": 1
18+
"Patch": 2
1919
},
2020
"demands": [],
2121
"groups": [],
@@ -313,4 +313,4 @@
313313
"InvalidRejectActionDeploymentStrategy": "Reject action works only with strategy: canary",
314314
"InvalidPromotetActionDeploymentStrategy": "Promote action works only with strategy: canary"
315315
}
316-
}
316+
}

0 commit comments

Comments
 (0)