Skip to content

Commit 14dbc81

Browse files
Merge branch 'release-1.17.85'
* release-1.17.85: Bumping version to 1.17.85 Add changelog entries from botocore Fix typo in cloudfront.rst (#2882)
2 parents bafc64a + f69e7d4 commit 14dbc81

File tree

6 files changed

+41
-4
lines changed

6 files changed

+41
-4
lines changed

.changes/1.17.85.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"category": "``sns``",
4+
"description": "[``botocore``] This release adds SMS sandbox in Amazon SNS and the ability to view all configured origination numbers. The SMS sandbox provides a safe environment for sending SMS messages, without risking your reputation as an SMS sender.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``polly``",
9+
"description": "[``botocore``] Amazon Polly adds new Canadian French voice - Gabrielle. Gabrielle is available as Neural voice only.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``ec2``",
14+
"description": "[``botocore``] Added idempotency to CreateNetworkInterface using the ClientToken parameter.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``iotwireless``",
19+
"description": "[``botocore``] Added six new public customer logging APIs to allow customers to set/get/reset log levels at resource type and resource id level. The log level set from the APIs will be used to filter log messages that can be emitted to CloudWatch in customer accounts.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``servicediscovery``",
24+
"description": "[``botocore``] Bugfixes - The DiscoverInstances API operation now provides an option to return all instances for health-checked services when there are no healthy instances available.",
25+
"type": "api-change"
26+
}
27+
]

CHANGELOG.rst

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

5+
1.17.85
6+
=======
7+
8+
* api-change:``sns``: [``botocore``] This release adds SMS sandbox in Amazon SNS and the ability to view all configured origination numbers. The SMS sandbox provides a safe environment for sending SMS messages, without risking your reputation as an SMS sender.
9+
* api-change:``polly``: [``botocore``] Amazon Polly adds new Canadian French voice - Gabrielle. Gabrielle is available as Neural voice only.
10+
* api-change:``ec2``: [``botocore``] Added idempotency to CreateNetworkInterface using the ClientToken parameter.
11+
* api-change:``iotwireless``: [``botocore``] Added six new public customer logging APIs to allow customers to set/get/reset log levels at resource type and resource id level. The log level set from the APIs will be used to filter log messages that can be emitted to CloudWatch in customer accounts.
12+
* api-change:``servicediscovery``: [``botocore``] Bugfixes - The DiscoverInstances API operation now provides an option to return all instances for health-checked services when there are no healthy instances available.
13+
14+
515
1.17.84
616
=======
717

boto3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
__author__ = 'Amazon Web Services'
21-
__version__ = '1.17.84'
21+
__version__ = '1.17.85'
2222

2323

2424
# The default Boto3 session; autoloaded when needed.

boto3/examples/cloudfront.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Note that you will need the ``cryptography`` `library <https://cryptography.io/e
2828

2929
cloudfront_signer = CloudFrontSigner(key_id, rsa_signer)
3030

31-
# Create a signed url that will be valid until the specfic expiry date
31+
# Create a signed url that will be valid until the specific expiry date
3232
# provided using a canned policy.
3333
signed_url = cloudfront_signer.generate_presigned_url(
3434
url, date_less_than=expire_date)

setup.cfg

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

44
[metadata]
55
requires_dist =
6-
botocore>=1.20.84,<1.21.0
6+
botocore>=1.20.85,<1.21.0
77
jmespath>=0.7.1,<1.0.0
88
s3transfer>=0.4.0,<0.5.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
requires = [
17-
'botocore>=1.20.84,<1.21.0',
17+
'botocore>=1.20.85,<1.21.0',
1818
'jmespath>=0.7.1,<1.0.0',
1919
's3transfer>=0.4.0,<0.5.0'
2020
]

0 commit comments

Comments
 (0)