Skip to content

Commit

Permalink
AzureRmWebAppDeploymentV3 upgraded to Node16 (#17502)
Browse files Browse the repository at this point in the history
* AzureRmWebAppDeploymentV3 upgraded to Node16

* added Node16 handler

* Bumped task version

Co-authored-by: Kirill Ivlev <102740624+kirill-ivlev@users.noreply.github.com>
Co-authored-by: rvairavelu <93759118+rvairavelu@users.noreply.github.com>
  • Loading branch information
3 people authored Jan 5, 2023
1 parent 5fa6043 commit 8e86dcb
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 36 deletions.
114 changes: 82 additions & 32 deletions Tasks/AzureRmWebAppDeploymentV3/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Tasks/AzureRmWebAppDeploymentV3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
"dependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.0",
"@types/node": "^16.11.39",
"@types/q": "1.0.7",
"archiver": "1.2.0",
"azure-pipelines-task-lib": "3.1.0",
"azure-pipelines-task-lib": "^4.1.0",
"azure-pipelines-tasks-azure-arm-rest-v2": "^3.213.0",
"decompress-zip": "^0.3.3",
"ltx": "2.8.0",
Expand Down
5 changes: 4 additions & 1 deletion Tasks/AzureRmWebAppDeploymentV3/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 3,
"Minor": 215,
"Minor": 216,
"Patch": 0
},
"releaseNotes": "What's new in Version 3.0: <br/>&nbsp;&nbsp;Supports File Transformations (XDT) <br/>&nbsp;&nbsp;Supports Variable Substitutions(XML, JSON) <br/>Click [here](https://aka.ms/azurermwebdeployreadme) for more information.",
Expand Down Expand Up @@ -624,6 +624,9 @@
"execution": {
"Node10": {
"target": "azurermwebappdeployment.js"
},
"Node16": {
"target": "azurermwebappdeployment.js"
}
},
"messages": {
Expand Down
5 changes: 4 additions & 1 deletion Tasks/AzureRmWebAppDeploymentV3/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 3,
"Minor": 215,
"Minor": 216,
"Patch": 0
},
"releaseNotes": "ms-resource:loc.releaseNotes",
Expand Down Expand Up @@ -624,6 +624,9 @@
"execution": {
"Node10": {
"target": "azurermwebappdeployment.js"
},
"Node16": {
"target": "azurermwebappdeployment.js"
}
},
"messages": {
Expand Down

0 comments on commit 8e86dcb

Please sign in to comment.