Skip to content

Commit 00cb6ce

Browse files
Fix potential error with proxy in agent-base (#18638)
* - Fix potential error with proxy in agent-base * [JenkinsDownloadArtifactsV1, KubeloginInstallerV0] - Bump task versions
1 parent 284f772 commit 00cb6ce

31 files changed

+143
-70
lines changed

Tasks/DockerV0/make.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
{
44
"items": [
55
"node_modules/azure-pipelines-tasks-docker-common/node_modules/azure-pipelines-task-lib",
6-
"node_modules/azure-pipelines-tasks-azure-arm-rest-v2/node_modules/azure-pipelines-task-lib"
6+
"node_modules/azure-pipelines-tasks-azure-arm-rest-v2/node_modules/azure-pipelines-task-lib",
7+
"node_modules/https-proxy-agent/node_modules/agent-base"
78
],
89
"options": "-Rf"
910
}

Tasks/DockerV0/npm-shrinkwrap.json

Lines changed: 13 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tasks/DockerV0/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"azure-pipelines-task-lib": "^4.0.1-preview",
99
"azure-pipelines-tasks-docker-common": "2.225.0",
1010
"esprima": "2.7.1",
11+
"agent-base": "^6.0.2",
1112
"js-yaml": "4.1.0"
1213
},
1314
"devDependencies": {

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": 225,
17-
"Patch": 0
17+
"Patch": 1
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": 225,
17-
"Patch": 0
17+
"Patch": 1
1818
},
1919
"demands": [],
2020
"preview": "false",

Tasks/DockerV1/make.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
{
44
"items": [
55
"node_modules/azure-pipelines-tasks-docker-common/node_modules/azure-pipelines-task-lib",
6-
"node_modules/azure-pipelines-tasks-azure-arm-rest-v2/node_modules/azure-pipelines-task-lib"
6+
"node_modules/azure-pipelines-tasks-azure-arm-rest-v2/node_modules/azure-pipelines-task-lib",
7+
"node_modules/https-proxy-agent/node_modules/agent-base"
78
],
89
"options": "-Rf"
910
}

Tasks/DockerV1/npm-shrinkwrap.json

Lines changed: 13 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tasks/DockerV1/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"azure-pipelines-task-lib": "^4.0.1-preview",
88
"azure-pipelines-tasks-docker-common": "2.225.0",
99
"esprima": "2.7.1",
10+
"agent-base": "^6.0.2",
1011
"js-yaml": "4.1.0"
1112
},
1213
"devDependencies": {

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": 225,
17-
"Patch": 0
17+
"Patch": 1
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": 225,
17-
"Patch": 0
17+
"Patch": 1
1818
},
1919
"demands": [],
2020
"releaseNotes": "ms-resource:loc.releaseNotes",

0 commit comments

Comments
 (0)