Skip to content

Commit

Permalink
GooglePlayReleaseV4 Node 16 migration (#375)
Browse files Browse the repository at this point in the history
* GooglePlayReleaseV4 Node16 migration

* minimumAgentVersion - back from 206 to 182
  • Loading branch information
DenisRumyantsev authored Jan 9, 2023
1 parent 9899567 commit cb884cc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Tasks/GooglePlayReleaseV4/modules/googleutil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export async function addApk(edits: pub3.Resource$Edits, packageName: string, ap
} catch (e) {
tl.debug(`Failed to upload APK ${apkFile}`);
tl.debug(e);
throw new Error(tl.loc('CannotUploadAPK', apkFile, e));
throw new Error(tl.loc('CannotUploadApk', apkFile, e));
}
}

Expand Down
4 changes: 2 additions & 2 deletions Tasks/GooglePlayReleaseV4/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"version": "1.0.0",
"dependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"azure-pipelines-task-lib": "^3.1.9",
"@types/node": "^16.11.39",
"azure-pipelines-task-lib": "^4.1.0",
"glob": "^7.1.7",
"googleapis": "^90.0.0"
},
Expand Down
6 changes: 5 additions & 1 deletion Tasks/GooglePlayReleaseV4/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"demands": [],
"version": {
"Major": "4",
"Minor": "211",
"Minor": "216",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down Expand Up @@ -309,6 +309,10 @@
"Node10": {
"target": "main.js",
"argumentFormat": ""
},
"Node16": {
"target": "main.js",
"argumentFormat": ""
}
},
"messages": {
Expand Down
8 changes: 6 additions & 2 deletions Tasks/GooglePlayReleaseV4/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"demands": [],
"version": {
"Major": "4",
"Minor": "211",
"Minor": "216",
"Patch": "0"
},
"minimumAgentVersion": "2.182.1",
Expand Down Expand Up @@ -309,6 +309,10 @@
"Node10": {
"target": "main.js",
"argumentFormat": ""
},
"Node16": {
"target": "main.js",
"argumentFormat": ""
}
},
"messages": {
Expand Down Expand Up @@ -351,4 +355,4 @@
"allowed": []
}
}
}
}
2 changes: 1 addition & 1 deletion vsts-extension-google-play.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1.0,
"id": "google-play",
"name": "Google Play",
"version": "4.209.1",
"version": "4.216.0",
"publisher": "ms-vsclient",
"description": "Provides tasks for continuous delivery to the Google Play Store from TFS/Team Services build or release definitions",
"categories": [
Expand Down

0 comments on commit cb884cc

Please sign in to comment.