Skip to content

Commit

Permalink
Merge branch 'release-1.17.79'
Browse files Browse the repository at this point in the history
* release-1.17.79:
  Bumping version to 1.17.79
  Add changelog entries from botocore
  Multithreading docs fixes (#2878)
  • Loading branch information
aws-sdk-python-automation committed May 24, 2021
2 parents 27b3839 + 99014a5 commit 46aeee1
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 6 deletions.
27 changes: 27 additions & 0 deletions .changes/1.17.79.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"category": "``quicksight``",
"description": "[``botocore``] Add new parameters on RegisterUser and UpdateUser APIs to assign or update external ID associated to QuickSight users federated through web identity.",
"type": "api-change"
},
{
"category": "``ce``",
"description": "[``botocore``] Introduced FindingReasonCodes, PlatformDifferences, DiskResourceUtilization and NetworkResourceUtilization to GetRightsizingRecommendation action",
"type": "api-change"
},
{
"category": "``compute-optimizer``",
"description": "[``botocore``] Adds support for 1) additional instance types, 2) additional instance metrics, 3) finding reasons for instance recommendations, and 4) platform differences between a current instance and a recommended instance type.",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "[``botocore``] This release adds support for creating and managing EC2 On-Demand Capacity Reservations on Outposts.",
"type": "api-change"
},
{
"category": "``logs``",
"description": "[``botocore``] This release provides dimensions and unit support for metric filters.",
"type": "api-change"
}
]
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
CHANGELOG
=========

1.17.79
=======

* api-change:``quicksight``: [``botocore``] Add new parameters on RegisterUser and UpdateUser APIs to assign or update external ID associated to QuickSight users federated through web identity.
* api-change:``ce``: [``botocore``] Introduced FindingReasonCodes, PlatformDifferences, DiskResourceUtilization and NetworkResourceUtilization to GetRightsizingRecommendation action
* api-change:``compute-optimizer``: [``botocore``] Adds support for 1) additional instance types, 2) additional instance metrics, 3) finding reasons for instance recommendations, and 4) platform differences between a current instance and a recommended instance type.
* api-change:``ec2``: [``botocore``] This release adds support for creating and managing EC2 On-Demand Capacity Reservations on Outposts.
* api-change:``logs``: [``botocore``] This release provides dimensions and unit support for metric filters.


1.17.78
=======

Expand Down
2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


__author__ = 'Amazon Web Services'
__version__ = '1.17.78'
__version__ = '1.17.79'


# The default Boto3 session; autoloaded when needed.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/guide/clients.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ few attributes (namely ``meta``, ``exceptions`` and ``waiter_names``).
These are safe to read but any mutations should not be considered
thread-safe.

**Custom**\ `Botocore Events`_\ **:** Botocore (the library Boto3 is
**Custom** \ `Botocore Events`_\ **:** Botocore (the library Boto3 is
built on) allows advanced users to provide their own custom event hooks
which may interact with boto3’s client. The majority of users will not
need to use these interfaces, but those that do should no longer
Expand Down
2 changes: 1 addition & 1 deletion docs/source/guide/resources.rst
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ Multithreading or multiprocessing with resources
Resource instances are **not** thread safe and should not be shared
across threads or processes. These special classes contain additional
meta data that cannot be shared. It's recommended to create a new
Resource for each thread or process:
Resource for each thread or process::

import boto3
import boto3.session
Expand Down
2 changes: 1 addition & 1 deletion docs/source/guide/session.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Multithreading or multiprocessing with sessions

Similar to ``Resource`` objects, ``Session`` objects are not thread safe
and should not be shared across threads and processes. It's recommended
to create a new ``Session`` object for each thread or process:
to create a new ``Session`` object for each thread or process::

import boto3
import boto3.session
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ universal = 1

[metadata]
requires_dist =
botocore>=1.20.78,<1.21.0
botocore>=1.20.79,<1.21.0
jmespath>=0.7.1,<1.0.0
s3transfer>=0.4.0,<0.5.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


requires = [
'botocore>=1.20.78,<1.21.0',
'botocore>=1.20.79,<1.21.0',
'jmespath>=0.7.1,<1.0.0',
's3transfer>=0.4.0,<0.5.0'
]
Expand Down

0 comments on commit 46aeee1

Please sign in to comment.