Skip to content

Commit 04045c4

Browse files
Merge branch 'release-1.34.136'
* release-1.34.136: Bumping version to 1.34.136 Add changelog entries from botocore Do not test opsworks collections
2 parents 359f0b2 + c04875b commit 04045c4

File tree

6 files changed

+68
-3
lines changed

6 files changed

+68
-3
lines changed

.changes/1.34.136.json

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
[
2+
{
3+
"category": "``acm-pca``",
4+
"description": "[``botocore``] Added CCPC_LEVEL_1_OR_HIGHER KeyStorageSecurityStandard and SM2 KeyAlgorithm and SM3WITHSM2 SigningAlgorithm for China regions.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``cloudhsmv2``",
9+
"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.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``connect``",
14+
"description": "[``botocore``] This release supports showing PreferredAgentRouting step via DescribeContact API.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``emr``",
19+
"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.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``glue``",
24+
"description": "[``botocore``] Added AttributesToGet parameter to Glue GetDatabases, allowing caller to limit output to include only the database name.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``kinesisanalyticsv2``",
29+
"description": "[``botocore``] Support for Flink 1.19 in Managed Service for Apache Flink",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``opensearch``",
34+
"description": "[``botocore``] This release removes support for enabling or disabling Natural Language Query Processing feature for Amazon OpenSearch Service domains.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``pi``",
39+
"description": "[``botocore``] Noting that the filter db.sql.db_id isn't available for RDS for SQL Server DB instances.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``workspaces``",
44+
"description": "[``botocore``] Added support for Red Hat Enterprise Linux 8 on Amazon WorkSpaces Personal.",
45+
"type": "api-change"
46+
}
47+
]

CHANGELOG.rst

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22
CHANGELOG
33
=========
44

5+
1.34.136
6+
========
7+
8+
* api-change:``acm-pca``: [``botocore``] Added CCPC_LEVEL_1_OR_HIGHER KeyStorageSecurityStandard and SM2 KeyAlgorithm and SM3WITHSM2 SigningAlgorithm for China regions.
9+
* 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.
10+
* api-change:``connect``: [``botocore``] This release supports showing PreferredAgentRouting step via DescribeContact API.
11+
* 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.
12+
* api-change:``glue``: [``botocore``] Added AttributesToGet parameter to Glue GetDatabases, allowing caller to limit output to include only the database name.
13+
* api-change:``kinesisanalyticsv2``: [``botocore``] Support for Flink 1.19 in Managed Service for Apache Flink
14+
* api-change:``opensearch``: [``botocore``] This release removes support for enabling or disabling Natural Language Query Processing feature for Amazon OpenSearch Service domains.
15+
* api-change:``pi``: [``botocore``] Noting that the filter db.sql.db_id isn't available for RDS for SQL Server DB instances.
16+
* api-change:``workspaces``: [``botocore``] Added support for Red Hat Enterprise Linux 8 on Amazon WorkSpaces Personal.
17+
18+
519
1.34.135
620
========
721

boto3/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from boto3.session import Session
1818

1919
__author__ = 'Amazon Web Services'
20-
__version__ = '1.34.135'
20+
__version__ = '1.34.136'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore>=1.34.135,<1.35.0
6+
botocore>=1.34.136,<1.35.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.10.0,<0.11.0
99

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
requires = [
17-
'botocore>=1.34.135,<1.35.0',
17+
'botocore>=1.34.136,<1.35.0',
1818
'jmespath>=0.7.1,<2.0.0',
1919
's3transfer>=0.10.0,<0.11.0',
2020
]

tests/integration/test_collections.py

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
'ec2': ['images'],
2828
'iam': ['signing_certificates'],
2929
'sqs': ['dead_letter_source_queues'],
30+
'opsworks': [],
3031
}
3132

3233

@@ -35,6 +36,9 @@ def all_collections():
3536
# except those which have been blocklisted.
3637
session = boto3.session.Session()
3738
for service_name in session.get_available_resources():
39+
if BLOCKLIST.get(service_name, None) == []:
40+
continue
41+
3842
resource = session.resource(
3943
service_name, region_name=REGION_MAP.get(service_name, 'us-west-2')
4044
)

0 commit comments

Comments
 (0)