Skip to content

Commit adfc56e

Browse files
author
Denis Nikulin (Akvelon Inc)
committed
Reverted the _generated changes.
1 parent bc11b09 commit adfc56e

File tree

142 files changed

+5371
-3154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+5371
-3154
lines changed

_generated/AzureCLIV1.versionmap.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Default|1.235.0
2-
Node20_229_2|1.235.1
1+
Default|1.225.0
2+
Node20_229_2|1.231.0

_generated/AzureCLIV1_Node20/azureclitask.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -216,15 +216,15 @@ export class azureclitask {
216216
}
217217
catch (err) {
218218
// task should not fail if logout doesn`t occur
219-
tl.warning(tl.loc("FailedToLogout"), tl.IssueSource.TaskInternal);
219+
tl.warning(tl.loc("FailedToLogout"));
220220
}
221221
}
222222

223223
private static throwIfError(resultOfToolExecution: IExecSyncResult, errormsg?: string): void {
224224
if (resultOfToolExecution.code != 0) {
225-
tl.error("Error Code: [" + resultOfToolExecution.code + "]", tl.IssueSource.TaskInternal);
225+
tl.error("Error Code: [" + resultOfToolExecution.code + "]");
226226
if (errormsg) {
227-
tl.error("Error: " + errormsg, tl.IssueSource.TaskInternal);
227+
tl.error("Error: " + errormsg);
228228
}
229229
throw resultOfToolExecution;
230230
}
@@ -280,7 +280,7 @@ export class azureclitask {
280280
return auth.parameters['AccessToken'];
281281
}
282282
else {
283-
tl.warning('Could not determine credentials to use', tl.IssueSource.TaskInternal);
283+
tl.warning('Could not determine credentials to use');
284284
}
285285
}
286286
}

_generated/AzureCLIV1_Node20/package-lock.json

+214-110
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_generated/AzureCLIV1_Node20/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@types/node": "^20.3.1",
2222
"@types/q": "1.0.7",
2323
"azure-devops-node-api": "^12.0.0",
24-
"azure-pipelines-task-lib": "^4.8.2"
24+
"azure-pipelines-task-lib": "^4.1.0"
2525
},
2626
"devDependencies": {
2727
"typescript": "5.1.6"

_generated/AzureCLIV1_Node20/task.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"demands": [],
2020
"version": {
2121
"Major": 1,
22-
"Minor": 235,
23-
"Patch": 1
22+
"Minor": 231,
23+
"Patch": 0
2424
},
2525
"minimumAgentVersion": "2.0.0",
2626
"instanceNameFormat": "Azure CLI $(scriptPath)",
@@ -164,7 +164,7 @@
164164
"GlobalCliConfigAgentVersionWarning": "For agent version < 2.115.0, only global Azure CLI configuration can be used"
165165
},
166166
"_buildConfigMapping": {
167-
"Default": "1.235.0",
168-
"Node20_229_2": "1.235.1"
167+
"Default": "1.225.0",
168+
"Node20_229_2": "1.231.0"
169169
}
170170
}

_generated/AzureCLIV1_Node20/task.loc.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"demands": [],
2020
"version": {
2121
"Major": 1,
22-
"Minor": 235,
23-
"Patch": 1
22+
"Minor": 231,
23+
"Patch": 0
2424
},
2525
"minimumAgentVersion": "2.0.0",
2626
"instanceNameFormat": "ms-resource:loc.instanceNameFormat",
@@ -164,7 +164,7 @@
164164
"GlobalCliConfigAgentVersionWarning": "ms-resource:loc.messages.GlobalCliConfigAgentVersionWarning"
165165
},
166166
"_buildConfigMapping": {
167-
"Default": "1.235.0",
168-
"Node20_229_2": "1.235.1"
167+
"Default": "1.225.0",
168+
"Node20_229_2": "1.231.0"
169169
}
170170
}

_generated/AzureCLIV2.versionmap.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Default|2.235.0
2-
Node20_229_2|2.235.1
1+
Default|2.230.0
2+
Node20_229_2|2.231.0

_generated/AzureCLIV2_Node20/azureclitask.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class azureclitask {
7171

7272
if (failOnStdErr && aggregatedErrorLines.length > 0) {
7373
let error = FAIL_ON_STDERR;
74-
tl.error(aggregatedErrorLines.join("\n"), tl.IssueSource.CustomerScript);
74+
tl.error(aggregatedErrorLines.join("\n"));
7575
throw error;
7676
}
7777
}
@@ -207,7 +207,7 @@ export class azureclitask {
207207
}
208208
catch (err) {
209209
// task should not fail if logout doesn`t occur
210-
tl.warning(tl.loc("FailedToLogout"), tl.IssueSource.TaskInternal);
210+
tl.warning(tl.loc("FailedToLogout"));
211211
}
212212
}
213213

0 commit comments

Comments
 (0)