[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge branch 'release-1.34.136'
Browse files Browse the repository at this point in the history
* release-1.34.136:
  Bumping version to 1.34.136
  Add changelog entries from botocore
  Do not test opsworks collections
  • Loading branch information
aws-sdk-python-automation committed Jun 28, 2024
2 parents 359f0b2 + c04875b commit 04045c4
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 3 deletions.
47 changes: 47 additions & 0 deletions .changes/1.34.136.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[
{
"category": "``acm-pca``",
"description": "[``botocore``] Added CCPC_LEVEL_1_OR_HIGHER KeyStorageSecurityStandard and SM2 KeyAlgorithm and SM3WITHSM2 SigningAlgorithm for China regions.",
"type": "api-change"
},
{
"category": "``cloudhsmv2``",
"description": "[``botocore``] Added 3 new APIs to support backup sharing: GetResourcePolicy, PutResourcePolicy, and DeleteResourcePolicy. Added BackupArn to the output of the DescribeBackups API. Added support for BackupArn in the CreateCluster API.",
"type": "api-change"
},
{
"category": "``connect``",
"description": "[``botocore``] This release supports showing PreferredAgentRouting step via DescribeContact API.",
"type": "api-change"
},
{
"category": "``emr``",
"description": "[``botocore``] This release provides the support for new allocation strategies i.e. CAPACITY_OPTIMIZED_PRIORITIZED for Spot and PRIORITIZED for On-Demand by taking input of priority value for each instance type for instance fleet clusters.",
"type": "api-change"
},
{
"category": "``glue``",
"description": "[``botocore``] Added AttributesToGet parameter to Glue GetDatabases, allowing caller to limit output to include only the database name.",
"type": "api-change"
},
{
"category": "``kinesisanalyticsv2``",
"description": "[``botocore``] Support for Flink 1.19 in Managed Service for Apache Flink",
"type": "api-change"
},
{
"category": "``opensearch``",
"description": "[``botocore``] This release removes support for enabling or disabling Natural Language Query Processing feature for Amazon OpenSearch Service domains.",
"type": "api-change"
},
{
"category": "``pi``",
"description": "[``botocore``] Noting that the filter db.sql.db_id isn't available for RDS for SQL Server DB instances.",
"type": "api-change"
},
{
"category": "``workspaces``",
"description": "[``botocore``] Added support for Red Hat Enterprise Linux 8 on Amazon WorkSpaces Personal.",
"type": "api-change"
}
]
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
CHANGELOG
=========

1.34.136
========

* api-change:``acm-pca``: [``botocore``] Added CCPC_LEVEL_1_OR_HIGHER KeyStorageSecurityStandard and SM2 KeyAlgorithm and SM3WITHSM2 SigningAlgorithm for China regions.
* api-change:``cloudhsmv2``: [``botocore``] Added 3 new APIs to support backup sharing: GetResourcePolicy, PutResourcePolicy, and DeleteResourcePolicy. Added BackupArn to the output of the DescribeBackups API. Added support for BackupArn in the CreateCluster API.
* api-change:``connect``: [``botocore``] This release supports showing PreferredAgentRouting step via DescribeContact API.
* api-change:``emr``: [``botocore``] This release provides the support for new allocation strategies i.e. CAPACITY_OPTIMIZED_PRIORITIZED for Spot and PRIORITIZED for On-Demand by taking input of priority value for each instance type for instance fleet clusters.
* api-change:``glue``: [``botocore``] Added AttributesToGet parameter to Glue GetDatabases, allowing caller to limit output to include only the database name.
* api-change:``kinesisanalyticsv2``: [``botocore``] Support for Flink 1.19 in Managed Service for Apache Flink
* api-change:``opensearch``: [``botocore``] This release removes support for enabling or disabling Natural Language Query Processing feature for Amazon OpenSearch Service domains.
* api-change:``pi``: [``botocore``] Noting that the filter db.sql.db_id isn't available for RDS for SQL Server DB instances.
* api-change:``workspaces``: [``botocore``] Added support for Red Hat Enterprise Linux 8 on Amazon WorkSpaces Personal.


1.34.135
========

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

__author__ = 'Amazon Web Services'
__version__ = '1.34.135'
__version__ = '1.34.136'


# The default Boto3 session; autoloaded when needed.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore>=1.34.135,<1.35.0
botocore>=1.34.136,<1.35.0
jmespath>=0.7.1,<2.0.0
s3transfer>=0.10.0,<0.11.0

Expand Down
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.34.135,<1.35.0',
'botocore>=1.34.136,<1.35.0',
'jmespath>=0.7.1,<2.0.0',
's3transfer>=0.10.0,<0.11.0',
]
Expand Down
4 changes: 4 additions & 0 deletions tests/integration/test_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
'ec2': ['images'],
'iam': ['signing_certificates'],
'sqs': ['dead_letter_source_queues'],
'opsworks': [],
}


Expand All @@ -35,6 +36,9 @@ def all_collections():
# except those which have been blocklisted.
session = boto3.session.Session()
for service_name in session.get_available_resources():
if BLOCKLIST.get(service_name, None) == []:
continue

resource = session.resource(
service_name, region_name=REGION_MAP.get(service_name, 'us-west-2')
)
Expand Down

0 comments on commit 04045c4

Please sign in to comment.