Skip to content

Commit

Permalink
Merge branch 'release/1.1.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejroberts committed Nov 1, 2018
2 parents 59e3a2a + 3489abc commit 8f3faec
Show file tree
Hide file tree
Showing 47 changed files with 570 additions and 155 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.1.8 (2018-11-01)

* Issue #117, updated build process for version and region picker information to fix issues with unrecognized task ids and missing icons in Azure DevOps Server. There are no task changes in this release.

### 1.1.7 (2018-10-24)

* Fixed issue #112, shell task not initialized correctly when a role-based credential endpoint was used.
Expand Down
2 changes: 1 addition & 1 deletion Tasks/AWSCLI/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "awscli",
"version": "1.0.22",
"version": "1.1.8",
"description": "Run a Shell or Batch script with AWS CLI commands against an AWS connection",
"main": "AWSCLI.js",
"scripts": {
Expand Down
25 changes: 22 additions & 3 deletions Tasks/AWSCLI/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"demands": [],
"version": {
"Major": "1",
"Minor": "0",
"Patch": "22"
"Minor": "1",
"Patch": "8"
},
"minimumAgentVersion": "1.91.0",
"instanceNameFormat": "AWS CLI: $(awsCommand)",
Expand All @@ -41,7 +41,26 @@
"required": false,
"defaultValue": "",
"helpMarkDown": "The AWS region code (us-east-1, us-west-2 etc) of the region containing the AWS resource(s) the task will use or create. For more information see [AWS Regions and Endpoints](https://docs.aws.amazon.com/general/latest/gr/rande.html).\n\nIf a region is not explicitly configured the task will attempt to obtain the region to be used from the following sources:\n\n* From a task variable named _AWS.Region_.\n* From the standard AWS environment variable _AWS_REGION_ in the build agent's environment.\n* If the build agent is running on an Amazon EC2 instance, from instance metadata associated with the EC2 instance.\n\n__Note:__ The regions listed in the picker are those known at the time this software was released. New regions that are not listed may still be used by entering the _region code_ of the region (for example _us_west_2_).",
"options": {},
"options": {
"ap-northeast-1": "Asia Pacific (Tokyo) [ap-northeast-1]",
"ap-northeast-2": "Asia Pacific (Seoul) [ap-northeast-2]",
"ap-south-1": "Asia Pacific (Mumbai) [ap-south-1]",
"ap-southeast-1": "Asia Pacific (Singapore) [ap-southeast-1]",
"ap-southeast-2": "Asia Pacific (Sydney) [ap-southeast-2]",
"ca-central-1": "Canada (Central) [ca-central-1]",
"eu-central-1": "EU (Frankfurt) [eu-central-1]",
"eu-west-1": "EU (Ireland) [eu-west-1]",
"eu-west-2": "EU (London) [eu-west-2]",
"eu-west-3": "EU (Paris) [eu-west-3]",
"sa-east-1": "South America (Sao Paulo) [sa-east-1]",
"us-east-1": "US East (N. Virginia) [us-east-1]",
"us-east-2": "US East (Ohio) [us-east-2]",
"us-west-1": "US West (N. California) [us-west-1]",
"us-west-2": "US West (Oregon) [us-west-2]",
"cn-north-1": "China (Beijing) [cn-north-1]",
"cn-northwest-1": "China (Ningxia) [cn-northwest-1]",
"us-gov-west-1": "AWS GovCloud (US) [us-gov-west-1]"
},
"properties": {
"EditableOptions": "True"
}
Expand Down
25 changes: 22 additions & 3 deletions Tasks/AWSPowerShellModuleScript/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
],
"version": {
"Major": "1",
"Minor": "0",
"Patch": "22"
"Minor": "1",
"Patch": "8"
},
"minimumAgentVersion": "1.91.0",
"instanceNameFormat": "AWS Tools for Windows PowerShell Script: $(scriptFile)",
Expand All @@ -43,7 +43,26 @@
"required": false,
"defaultValue": "",
"helpMarkDown": "The AWS region code (us-east-1, us-west-2 etc) of the region containing the AWS resource(s) the task will use or create. For more information see [AWS Regions and Endpoints](https://docs.aws.amazon.com/general/latest/gr/rande.html).\n\nIf a region is not explicitly configured the task will attempt to obtain the region to be used from the following sources:\n\n* From a task variable named _AWS.Region_.\n* From the standard AWS environment variable _AWS_REGION_ in the build agent's environment.\n* If the build agent is running on an Amazon EC2 instance, from instance metadata associated with the EC2 instance.\n\n__Note:__ The regions listed in the picker are those known at the time this software was released. New regions that are not listed may still be used by entering the _region code_ of the region (for example _us_west_2_).",
"options": {},
"options": {
"ap-northeast-1": "Asia Pacific (Tokyo) [ap-northeast-1]",
"ap-northeast-2": "Asia Pacific (Seoul) [ap-northeast-2]",
"ap-south-1": "Asia Pacific (Mumbai) [ap-south-1]",
"ap-southeast-1": "Asia Pacific (Singapore) [ap-southeast-1]",
"ap-southeast-2": "Asia Pacific (Sydney) [ap-southeast-2]",
"ca-central-1": "Canada (Central) [ca-central-1]",
"eu-central-1": "EU (Frankfurt) [eu-central-1]",
"eu-west-1": "EU (Ireland) [eu-west-1]",
"eu-west-2": "EU (London) [eu-west-2]",
"eu-west-3": "EU (Paris) [eu-west-3]",
"sa-east-1": "South America (Sao Paulo) [sa-east-1]",
"us-east-1": "US East (N. Virginia) [us-east-1]",
"us-east-2": "US East (Ohio) [us-east-2]",
"us-west-1": "US West (N. California) [us-west-1]",
"us-west-2": "US West (Oregon) [us-west-2]",
"cn-north-1": "China (Beijing) [cn-north-1]",
"cn-northwest-1": "China (Ningxia) [cn-northwest-1]",
"us-gov-west-1": "AWS GovCloud (US) [us-gov-west-1]"
},
"properties": {
"EditableOptions": "True"
}
Expand Down
2 changes: 1 addition & 1 deletion Tasks/AWSShellScript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "awsshellscript",
"version": "1.0.22",
"version": "1.1.8",
"description": "Run a shell script using bash with AWS credentials",
"main": "AWSShellScript.js",
"scripts": {
Expand Down
25 changes: 22 additions & 3 deletions Tasks/AWSShellScript/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
],
"version": {
"Major": "1",
"Minor": "0",
"Patch": "22"
"Minor": "1",
"Patch": "8"
},
"instanceNameFormat": "AWS Shell Script",
"groups": [
Expand All @@ -42,7 +42,26 @@
"required": false,
"defaultValue": "",
"helpMarkDown": "The AWS region code (us-east-1, us-west-2 etc) of the region containing the AWS resource(s) the task will use or create. For more information see [AWS Regions and Endpoints](https://docs.aws.amazon.com/general/latest/gr/rande.html).\n\nIf a region is not explicitly configured the task will attempt to obtain the region to be used from the following sources:\n\n* From a task variable named _AWS.Region_.\n* From the standard AWS environment variable _AWS_REGION_ in the build agent's environment.\n* If the build agent is running on an Amazon EC2 instance, from instance metadata associated with the EC2 instance.\n\n__Note:__ The regions listed in the picker are those known at the time this software was released. New regions that are not listed may still be used by entering the _region code_ of the region (for example _us_west_2_).",
"options": {},
"options": {
"ap-northeast-1": "Asia Pacific (Tokyo) [ap-northeast-1]",
"ap-northeast-2": "Asia Pacific (Seoul) [ap-northeast-2]",
"ap-south-1": "Asia Pacific (Mumbai) [ap-south-1]",
"ap-southeast-1": "Asia Pacific (Singapore) [ap-southeast-1]",
"ap-southeast-2": "Asia Pacific (Sydney) [ap-southeast-2]",
"ca-central-1": "Canada (Central) [ca-central-1]",
"eu-central-1": "EU (Frankfurt) [eu-central-1]",
"eu-west-1": "EU (Ireland) [eu-west-1]",
"eu-west-2": "EU (London) [eu-west-2]",
"eu-west-3": "EU (Paris) [eu-west-3]",
"sa-east-1": "South America (Sao Paulo) [sa-east-1]",
"us-east-1": "US East (N. Virginia) [us-east-1]",
"us-east-2": "US East (Ohio) [us-east-2]",
"us-west-1": "US West (N. California) [us-west-1]",
"us-west-2": "US West (Oregon) [us-west-2]",
"cn-north-1": "China (Beijing) [cn-north-1]",
"cn-northwest-1": "China (Ningxia) [cn-northwest-1]",
"us-gov-west-1": "AWS GovCloud (US) [us-gov-west-1]"
},
"properties": {
"EditableOptions": "True"
}
Expand Down
2 changes: 1 addition & 1 deletion Tasks/BeanstalkCreateApplicationVersion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "beanstalk.createversion",
"version": "1.0.22",
"version": "1.1.8",
"description": "Create an application revision for deployment to an environment",
"main": "BeanstalkCreateApplicationVersion.js",
"scripts": {
Expand Down
25 changes: 22 additions & 3 deletions Tasks/BeanstalkCreateApplicationVersion/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"demands": [],
"version": {
"Major": "1",
"Minor": "0",
"Patch": "22"
"Minor": "1",
"Patch": "8"
},
"minimumAgentVersion": "1.91.0",
"instanceNameFormat": "Create Elastic Beanstalk Revision: $(applicationName)",
Expand All @@ -41,7 +41,26 @@
"required": false,
"defaultValue": "",
"helpMarkDown": "The AWS region code (us-east-1, us-west-2 etc) of the region containing the AWS resource(s) the task will use or create. For more information see [AWS Regions and Endpoints](https://docs.aws.amazon.com/general/latest/gr/rande.html).\n\nIf a region is not explicitly configured the task will attempt to obtain the region to be used from the following sources:\n\n* From a task variable named _AWS.Region_.\n* From the standard AWS environment variable _AWS_REGION_ in the build agent's environment.\n* If the build agent is running on an Amazon EC2 instance, from instance metadata associated with the EC2 instance.\n\n__Note:__ The regions listed in the picker are those known at the time this software was released. New regions that are not listed may still be used by entering the _region code_ of the region (for example _us_west_2_).",
"options": {},
"options": {
"ap-northeast-1": "Asia Pacific (Tokyo) [ap-northeast-1]",
"ap-northeast-2": "Asia Pacific (Seoul) [ap-northeast-2]",
"ap-south-1": "Asia Pacific (Mumbai) [ap-south-1]",
"ap-southeast-1": "Asia Pacific (Singapore) [ap-southeast-1]",
"ap-southeast-2": "Asia Pacific (Sydney) [ap-southeast-2]",
"ca-central-1": "Canada (Central) [ca-central-1]",
"eu-central-1": "EU (Frankfurt) [eu-central-1]",
"eu-west-1": "EU (Ireland) [eu-west-1]",
"eu-west-2": "EU (London) [eu-west-2]",
"eu-west-3": "EU (Paris) [eu-west-3]",
"sa-east-1": "South America (Sao Paulo) [sa-east-1]",
"us-east-1": "US East (N. Virginia) [us-east-1]",
"us-east-2": "US East (Ohio) [us-east-2]",
"us-west-1": "US West (N. California) [us-west-1]",
"us-west-2": "US West (Oregon) [us-west-2]",
"cn-north-1": "China (Beijing) [cn-north-1]",
"cn-northwest-1": "China (Ningxia) [cn-northwest-1]",
"us-gov-west-1": "AWS GovCloud (US) [us-gov-west-1]"
},
"properties": {
"EditableOptions": "True"
}
Expand Down
2 changes: 1 addition & 1 deletion Tasks/BeanstalkDeployApplication/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "beanstalk.deploy",
"version": "1.0.22",
"version": "1.1.8",
"description": "Deploy an application to Amazon EC2 instances using AWS CodeDeploy",
"main": "BeanstalkDeployApplication.js",
"scripts": {
Expand Down
25 changes: 22 additions & 3 deletions Tasks/BeanstalkDeployApplication/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"demands": [],
"version": {
"Major": "1",
"Minor": "0",
"Patch": "22"
"Minor": "1",
"Patch": "8"
},
"minimumAgentVersion": "1.91.0",
"instanceNameFormat": "Deploy to Elastic Beanstalk: $(applicationName)",
Expand All @@ -41,7 +41,26 @@
"required": false,
"defaultValue": "",
"helpMarkDown": "The AWS region code (us-east-1, us-west-2 etc) of the region containing the AWS resource(s) the task will use or create. For more information see [AWS Regions and Endpoints](https://docs.aws.amazon.com/general/latest/gr/rande.html).\n\nIf a region is not explicitly configured the task will attempt to obtain the region to be used from the following sources:\n\n* From a task variable named _AWS.Region_.\n* From the standard AWS environment variable _AWS_REGION_ in the build agent's environment.\n* If the build agent is running on an Amazon EC2 instance, from instance metadata associated with the EC2 instance.\n\n__Note:__ The regions listed in the picker are those known at the time this software was released. New regions that are not listed may still be used by entering the _region code_ of the region (for example _us_west_2_).",
"options": {},
"options": {
"ap-northeast-1": "Asia Pacific (Tokyo) [ap-northeast-1]",
"ap-northeast-2": "Asia Pacific (Seoul) [ap-northeast-2]",
"ap-south-1": "Asia Pacific (Mumbai) [ap-south-1]",
"ap-southeast-1": "Asia Pacific (Singapore) [ap-southeast-1]",
"ap-southeast-2": "Asia Pacific (Sydney) [ap-southeast-2]",
"ca-central-1": "Canada (Central) [ca-central-1]",
"eu-central-1": "EU (Frankfurt) [eu-central-1]",
"eu-west-1": "EU (Ireland) [eu-west-1]",
"eu-west-2": "EU (London) [eu-west-2]",
"eu-west-3": "EU (Paris) [eu-west-3]",
"sa-east-1": "South America (Sao Paulo) [sa-east-1]",
"us-east-1": "US East (N. Virginia) [us-east-1]",
"us-east-2": "US East (Ohio) [us-east-2]",
"us-west-1": "US West (N. California) [us-west-1]",
"us-west-2": "US West (Oregon) [us-west-2]",
"cn-north-1": "China (Beijing) [cn-north-1]",
"cn-northwest-1": "China (Ningxia) [cn-northwest-1]",
"us-gov-west-1": "AWS GovCloud (US) [us-gov-west-1]"
},
"properties": {
"EditableOptions": "True"
}
Expand Down
2 changes: 1 addition & 1 deletion Tasks/CloudFormationCreateOrUpdateStack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudformationcreatestack",
"version": "1.0.22",
"version": "1.1.8",
"description": "Create an AWS CloudFormation stacks",
"main": "CloudFormationCreateStack.js",
"scripts": {
Expand Down
25 changes: 22 additions & 3 deletions Tasks/CloudFormationCreateOrUpdateStack/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"demands": [],
"version": {
"Major": "1",
"Minor": "0",
"Patch": "22"
"Minor": "1",
"Patch": "8"
},
"runsOn": [
"Agent"
Expand Down Expand Up @@ -59,7 +59,26 @@
"required": false,
"defaultValue": "",
"helpMarkDown": "The AWS region code (us-east-1, us-west-2 etc) of the region containing the AWS resource(s) the task will use or create. For more information see [AWS Regions and Endpoints](https://docs.aws.amazon.com/general/latest/gr/rande.html).\n\nIf a region is not explicitly configured the task will attempt to obtain the region to be used from the following sources:\n\n* From a task variable named _AWS.Region_.\n* From the standard AWS environment variable _AWS_REGION_ in the build agent's environment.\n* If the build agent is running on an Amazon EC2 instance, from instance metadata associated with the EC2 instance.\n\n__Note:__ The regions listed in the picker are those known at the time this software was released. New regions that are not listed may still be used by entering the _region code_ of the region (for example _us_west_2_).",
"options": {},
"options": {
"ap-northeast-1": "Asia Pacific (Tokyo) [ap-northeast-1]",
"ap-northeast-2": "Asia Pacific (Seoul) [ap-northeast-2]",
"ap-south-1": "Asia Pacific (Mumbai) [ap-south-1]",
"ap-southeast-1": "Asia Pacific (Singapore) [ap-southeast-1]",
"ap-southeast-2": "Asia Pacific (Sydney) [ap-southeast-2]",
"ca-central-1": "Canada (Central) [ca-central-1]",
"eu-central-1": "EU (Frankfurt) [eu-central-1]",
"eu-west-1": "EU (Ireland) [eu-west-1]",
"eu-west-2": "EU (London) [eu-west-2]",
"eu-west-3": "EU (Paris) [eu-west-3]",
"sa-east-1": "South America (Sao Paulo) [sa-east-1]",
"us-east-1": "US East (N. Virginia) [us-east-1]",
"us-east-2": "US East (Ohio) [us-east-2]",
"us-west-1": "US West (N. California) [us-west-1]",
"us-west-2": "US West (Oregon) [us-west-2]",
"cn-north-1": "China (Beijing) [cn-north-1]",
"cn-northwest-1": "China (Ningxia) [cn-northwest-1]",
"us-gov-west-1": "AWS GovCloud (US) [us-gov-west-1]"
},
"properties": {
"EditableOptions": "True"
}
Expand Down
2 changes: 1 addition & 1 deletion Tasks/CloudFormationDeleteStack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudformationdeletestack",
"version": "1.0.22",
"version": "1.1.8",
"description": "Delete AWS CloudFormation stacks",
"main": "CloudFormationDeleteStack.js",
"scripts": {
Expand Down
25 changes: 22 additions & 3 deletions Tasks/CloudFormationDeleteStack/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"demands": [],
"version": {
"Major": "1",
"Minor": "0",
"Patch": "22"
"Minor": "1",
"Patch": "8"
},
"runsOn": [
"Agent"
Expand Down Expand Up @@ -44,7 +44,26 @@
"required": false,
"defaultValue": "",
"helpMarkDown": "The AWS region code (us-east-1, us-west-2 etc) of the region containing the AWS resource(s) the task will use or create. For more information see [AWS Regions and Endpoints](https://docs.aws.amazon.com/general/latest/gr/rande.html).\n\nIf a region is not explicitly configured the task will attempt to obtain the region to be used from the following sources:\n\n* From a task variable named _AWS.Region_.\n* From the standard AWS environment variable _AWS_REGION_ in the build agent's environment.\n* If the build agent is running on an Amazon EC2 instance, from instance metadata associated with the EC2 instance.\n\n__Note:__ The regions listed in the picker are those known at the time this software was released. New regions that are not listed may still be used by entering the _region code_ of the region (for example _us_west_2_).",
"options": {},
"options": {
"ap-northeast-1": "Asia Pacific (Tokyo) [ap-northeast-1]",
"ap-northeast-2": "Asia Pacific (Seoul) [ap-northeast-2]",
"ap-south-1": "Asia Pacific (Mumbai) [ap-south-1]",
"ap-southeast-1": "Asia Pacific (Singapore) [ap-southeast-1]",
"ap-southeast-2": "Asia Pacific (Sydney) [ap-southeast-2]",
"ca-central-1": "Canada (Central) [ca-central-1]",
"eu-central-1": "EU (Frankfurt) [eu-central-1]",
"eu-west-1": "EU (Ireland) [eu-west-1]",
"eu-west-2": "EU (London) [eu-west-2]",
"eu-west-3": "EU (Paris) [eu-west-3]",
"sa-east-1": "South America (Sao Paulo) [sa-east-1]",
"us-east-1": "US East (N. Virginia) [us-east-1]",
"us-east-2": "US East (Ohio) [us-east-2]",
"us-west-1": "US West (N. California) [us-west-1]",
"us-west-2": "US West (Oregon) [us-west-2]",
"cn-north-1": "China (Beijing) [cn-north-1]",
"cn-northwest-1": "China (Ningxia) [cn-northwest-1]",
"us-gov-west-1": "AWS GovCloud (US) [us-gov-west-1]"
},
"properties": {
"EditableOptions": "True"
}
Expand Down
2 changes: 1 addition & 1 deletion Tasks/CloudFormationExecuteChangeSet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudformationexecutechangeset",
"version": "1.0.22",
"version": "1.1.8",
"description": "Executes an AWS CloudFormation change set",
"main": "CloudFormationExecuteChangeSet.js",
"scripts": {
Expand Down
Loading

0 comments on commit 8f3faec

Please sign in to comment.