Skip to content

Commit

Permalink
Merge branch 'release-1.11.19' into develop
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
AWS committed Nov 18, 2016
2 parents bce1b5c + 40da2fe commit 53854c1
Show file tree
Hide file tree
Showing 41 changed files with 3,686 additions and 77 deletions.
37 changes: 37 additions & 0 deletions .changes/1.11.19.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"category": "``cloudformation deploy``",
"description": "Add command to simplify deployments of cloudformation stack changes.",
"type": "feature"
},
{
"category": "``emr``",
"description": "Update emr command to latest version",
"type": "feature"
},
{
"category": "``lambda``",
"description": "Update lambda command to latest version",
"type": "feature"
},
{
"category": "``elastictranscoder``",
"description": "Update elastictranscoder command to latest version",
"type": "feature"
},
{
"category": "``cloudformation package``",
"description": "Add command to package source code for cloudfromation template.",
"type": "feature"
},
{
"category": "``gamelift``",
"description": "Update gamelift command to latest version",
"type": "feature"
},
{
"category": "``application-autoscaling``",
"description": "Update application-autoscaling command to latest version",
"type": "feature"
}
]
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
CHANGELOG
=========

1.11.19
=======

* feature:``cloudformation deploy``: Add command to simplify deployments of cloudformation stack changes.
* feature:``emr``: Update emr command to latest version
* feature:``lambda``: Update lambda command to latest version
* feature:``elastictranscoder``: Update elastictranscoder command to latest version
* feature:``cloudformation package``: Add command to package source code for cloudfromation template.
* feature:``gamelift``: Update gamelift command to latest version
* feature:``application-autoscaling``: Update application-autoscaling command to latest version


1.11.18
=======

Expand Down
2 changes: 1 addition & 1 deletion awscli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""
import os

__version__ = '1.11.18'
__version__ = '1.11.19'

#
# Get our data path to be added to botocore's search path
Expand Down
31 changes: 31 additions & 0 deletions awscli/customizations/cloudformation/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Copyright 2012-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
from awscli.customizations.cloudformation.package import PackageCommand
from awscli.customizations.cloudformation.deploy import DeployCommand


def initialize(cli):
"""
The entry point for CloudFormation high level commands.
"""
cli.register('building-command-table.cloudformation', inject_commands)


def inject_commands(command_table, session, **kwargs):
"""
Called when the CloudFormation command table is being built. Used to
inject new high level commands into the command list. These high level
commands must not collide with existing low-level API call names.
"""
command_table['package'] = PackageCommand(session)
command_table['deploy'] = DeployCommand(session)
Loading

0 comments on commit 53854c1

Please sign in to comment.