Skip to content

Commit 53854c1

Browse files
author
AWS
committed
Merge branch 'release-1.11.19' into develop
* release-1.11.19: Bumping version to 1.11.19 Update changelog based on model updates Adding CloudFormation Package and Deploy commands Fix create-default-roles and add logic for creating AuoScaling role AutoScaling CLI changes
2 parents bce1b5c + 40da2fe commit 53854c1

Some content is hidden

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

41 files changed

+3686
-77
lines changed

.changes/1.11.19.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"category": "``cloudformation deploy``",
4+
"description": "Add command to simplify deployments of cloudformation stack changes.",
5+
"type": "feature"
6+
},
7+
{
8+
"category": "``emr``",
9+
"description": "Update emr command to latest version",
10+
"type": "feature"
11+
},
12+
{
13+
"category": "``lambda``",
14+
"description": "Update lambda command to latest version",
15+
"type": "feature"
16+
},
17+
{
18+
"category": "``elastictranscoder``",
19+
"description": "Update elastictranscoder command to latest version",
20+
"type": "feature"
21+
},
22+
{
23+
"category": "``cloudformation package``",
24+
"description": "Add command to package source code for cloudfromation template.",
25+
"type": "feature"
26+
},
27+
{
28+
"category": "``gamelift``",
29+
"description": "Update gamelift command to latest version",
30+
"type": "feature"
31+
},
32+
{
33+
"category": "``application-autoscaling``",
34+
"description": "Update application-autoscaling command to latest version",
35+
"type": "feature"
36+
}
37+
]

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
CHANGELOG
33
=========
44

5+
1.11.19
6+
=======
7+
8+
* feature:``cloudformation deploy``: Add command to simplify deployments of cloudformation stack changes.
9+
* feature:``emr``: Update emr command to latest version
10+
* feature:``lambda``: Update lambda command to latest version
11+
* feature:``elastictranscoder``: Update elastictranscoder command to latest version
12+
* feature:``cloudformation package``: Add command to package source code for cloudfromation template.
13+
* feature:``gamelift``: Update gamelift command to latest version
14+
* feature:``application-autoscaling``: Update application-autoscaling command to latest version
15+
16+
517
1.11.18
618
=======
719

awscli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
import os
1919

20-
__version__ = '1.11.18'
20+
__version__ = '1.11.19'
2121

2222
#
2323
# Get our data path to be added to botocore's search path
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Copyright 2012-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License"). You
4+
# may not use this file except in compliance with the License. A copy of
5+
# the License is located at
6+
#
7+
# http://aws.amazon.com/apache2.0/
8+
#
9+
# or in the "license" file accompanying this file. This file is
10+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11+
# ANY KIND, either express or implied. See the License for the specific
12+
# language governing permissions and limitations under the License.
13+
from awscli.customizations.cloudformation.package import PackageCommand
14+
from awscli.customizations.cloudformation.deploy import DeployCommand
15+
16+
17+
def initialize(cli):
18+
"""
19+
The entry point for CloudFormation high level commands.
20+
"""
21+
cli.register('building-command-table.cloudformation', inject_commands)
22+
23+
24+
def inject_commands(command_table, session, **kwargs):
25+
"""
26+
Called when the CloudFormation command table is being built. Used to
27+
inject new high level commands into the command list. These high level
28+
commands must not collide with existing low-level API call names.
29+
"""
30+
command_table['package'] = PackageCommand(session)
31+
command_table['deploy'] = DeployCommand(session)

0 commit comments

Comments
 (0)