Skip to content

Commit 5e6bff5

Browse files
author
AWS
committed
Merge branch 'release-1.10.28'
* release-1.10.28: Bumping version to 1.10.28 Update changelog based on model updates Add doc analytics Move EC2 customizations into a single directory
2 parents 6d2af27 + 047eda1 commit 5e6bff5

File tree

16 files changed

+110
-56
lines changed

16 files changed

+110
-56
lines changed

.changes/1.10.28.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"category": "``ec2``",
4+
"description": "Update ec2 command to latest version",
5+
"type": "feature"
6+
},
7+
{
8+
"category": "``ssm``",
9+
"description": "Update ssm command to latest version",
10+
"type": "feature"
11+
},
12+
{
13+
"category": "``discovery``",
14+
"description": "Update discovery command to latest version",
15+
"type": "feature"
16+
},
17+
{
18+
"category": "``cloudformation``",
19+
"description": "Update cloudformation command to latest version",
20+
"type": "feature"
21+
}
22+
]

CHANGELOG.rst

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

5+
1.10.28
6+
=======
7+
8+
* feature:``ec2``: Update ec2 command to latest version
9+
* feature:``ssm``: Update ssm command to latest version
10+
* feature:``discovery``: Update discovery command to latest version
11+
* feature:``cloudformation``: Update cloudformation command to latest version
12+
13+
514
1.10.27
615
=======
716

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.10.27'
20+
__version__ = '1.10.28'
2121

2222
#
2323
# Get our data path to be added to botocore's search path
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Copyright 2016 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.
File renamed without changes.

awscli/customizations/ec2decryptpassword.py renamed to awscli/customizations/ec2/decryptpassword.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ def ec2_add_priv_launch_key(argument_table, operation_model, session,
3636
operation has been created. It's job is to add the
3737
``priv-launch-key`` parameter.
3838
"""
39-
argument_table['priv-launch-key'] = LaunchKeyArgument(session,
40-
operation_model,
41-
'priv-launch-key')
39+
argument_table['priv-launch-key'] = LaunchKeyArgument(
40+
session, operation_model, 'priv-launch-key')
41+
4242

4343
class LaunchKeyArgument(BaseCLIArgument):
4444

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
parameter of the operation accepts only integer protocol numbers.
1717
"""
1818

19+
1920
def _fix_args(params, **kwargs):
2021
key_name = 'Protocol'
2122
if key_name in params:
File renamed without changes.

0 commit comments

Comments
 (0)