Skip to content

Commit a2b8346

Browse files
Merge branch 'release-1.25.7'
* release-1.25.7: Bumping version to 1.25.7 Update changelog based on model updates Update helptext.py to remove visible markup tags (#7023)
2 parents f206394 + 6605eaf commit a2b8346

8 files changed

Lines changed: 33 additions & 22 deletions

File tree

.changes/1.25.7.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"category": "``frauddetector``",
4+
"description": "Documentation updates for Amazon Fraud Detector (AWSHawksNest)",
5+
"type": "api-change"
6+
}
7+
]

CHANGELOG.rst

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

5+
1.25.7
6+
======
7+
8+
* api-change:``frauddetector``: Documentation updates for Amazon Fraud Detector (AWSHawksNest)
9+
10+
511
1.25.6
612
======
713

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.25.6'
20+
__version__ = '1.25.7'
2121

2222
#
2323
# Get our data path to be added to botocore's search path

awscli/customizations/emr/helptext.py

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -48,25 +48,23 @@
4848
# create-cluster options help text
4949

5050
CREATE_CLUSTER_DESCRIPTION = (
51-
'<p>Creates an Amazon EMR cluster with the specified configurations.</p>'
52-
'<p>Quick start:</p>'
53-
'<p><code>aws emr create-cluster --release-label <release-label>'
54-
' --instance-type <instance-type> --instance-count <instance-count></code></p>'
55-
'<p>Values for the following can be set in the AWS CLI'
56-
' config file using the <code>aws configure set</code> command: <code>--service-role, --log-uri,'
57-
' and InstanceProfile and KeyName arguments under --ec2-attributes</code>.</p>')
51+
'Creates an Amazon EMR cluster with the specified configurations. '
52+
'Quick start: '
53+
'aws emr create-cluster --release-label <release-label> '
54+
'--instance-type <instance-type> --instance-count <instance-count>'
55+
'Values for the following can be set in the AWS CLI. '
56+
'config file using the <code>aws configure set</code> command: <code>--service-role, --log-uri, '
57+
'and InstanceProfile and KeyName arguments under --ec2-attributes.')
5858

5959
DESCRIBE_CLUSTER_DESCRIPTION = (
60-
'<p>Provides cluster-level details including status, hardware'
61-
' and software configuration, VPC settings, bootstrap'
62-
' actions, instance groups and so on.</p>'
63-
'<p>Permissions needed for describe-cluster include:'
64-
'<ul><li><code>elasticmapreduce:ListBootstrapActions</code></li>'
65-
'<li><code>elasticmapreduce:ListInstanceFleets</code></li>'
66-
'<li><code>elasticmapreduce:DescribeCluster</code></li>'
67-
'<li><code>elasticmapreduce:ListInstanceGroups</code></li></ul>'
68-
'For information about the cluster'
69-
' steps, see <code>list-steps</code>.</p>')
60+
'Provides cluster-level details including status, hardware '
61+
'and software configuration, VPC settings, bootstrap '
62+
'actions, instance groups and so on. '
63+
'Permissions needed for describe-cluster include '
64+
'elasticmapreduce:ListBootstrapActions, '
65+
'elasticmapreduce:ListInstanceFleets, '
66+
'elasticmapreduce:DescribeCluster, '
67+
'and elasticmapreduce:ListInstanceGroups.')
7068

7169
CLUSTER_NAME = (
7270
'<p>The name of the cluster. If not provided, the default is "Development Cluster".</p>')

awscli/examples/emr/create-cluster-examples.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ The following example uses a JSON file, ``instancegroupconfig.json``, to specify
293293
--release-label emr-5.9.0 \
294294
--service-role EMR_DefaultRole \
295295
--ec2-attributes InstanceProfile=EMR_EC2_DefaultRole \
296-
--instance-groups s3://mybucket/instancegroupconfig.json \
296+
--instance-groups file://myfolder/instancegroupconfig.json \
297297
--auto-scaling-role EMR_AutoScaling_DefaultRole
298298

299299
Contents of ``instancegroupconfig.json``::

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.25'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.25.6'
55+
release = '1.25.7'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore==1.27.6
6+
botocore==1.27.7
77
docutils>=0.10,<0.17
88
s3transfer>=0.6.0,<0.7.0
99
PyYAML>=3.10,<5.5

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def find_version(*file_paths):
2424

2525

2626
install_requires = [
27-
'botocore==1.27.6',
27+
'botocore==1.27.7',
2828
'docutils>=0.10,<0.17',
2929
's3transfer>=0.6.0,<0.7.0',
3030
'PyYAML>=3.10,<5.5',

0 commit comments

Comments
 (0)