Skip to content

Commit 4b02b3c

Browse files
Merge branch 'release-1.42.68' into develop
* release-1.42.68: Bumping version to 1.42.68 Add changelog entries from botocore
2 parents d62e89b + 0b7dcef commit 4b02b3c

5 files changed

Lines changed: 70 additions & 3 deletions

File tree

.changes/1.42.68.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
[
2+
{
3+
"category": "``apigateway``",
4+
"description": "[``botocore``] API Gateway now supports an additional security policy \"SecurityPolicy-TLS13-1-2-FIPS-PFS-PQ-2025-09\" for REST APIs and custom domain names. The new policy is compliant with TLS 1.3, Federal Information Processing Standards (FIPS), Perfect Forward Secrecy (PFS), and post-quantum (PQ) cryptography",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``config``",
9+
"description": "[``botocore``] Fix pagination support for DescribeConformancePackCompliance, and update OrganizationConfigRule InputParameters max length to match ConfigRule.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``connect``",
14+
"description": "[``botocore``] Deprecating PredefinedNotificationID field",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``gameliftstreams``",
19+
"description": "[``botocore``] Feature launch that enables customers to connect streaming sessions to their own VPCs running in AWS.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``glue``",
24+
"description": "[``botocore``] Add QuerySessionContext to BatchGetPartitionRequest",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``ivs-realtime``",
29+
"description": "[``botocore``] Updates maximum reconnect window seconds from 60 to 300 for participant replication",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``mediaconvert``",
34+
"description": "[``botocore``] This update adds support for Dolby AC-4 audio output, frame rate conversion between non-Dolby Vision inputs to Dolby Vision outputs, and clear lead CMAF HLS output.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``medialive``",
39+
"description": "[``botocore``] Documents the VideoDescription.ScalingBehavior.SMART(underscore)CROP enum value.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``mgn``",
44+
"description": "[``botocore``] Network Migration APIs are now publicly available for direct programmatic access. Customers can now call Network Migration APIs directly without going through AWS Transform (ATX), enabling automation, integration with existing tools, and self-service migration workflows.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``quicksight``",
49+
"description": "[``botocore``] The change adds a new capability named ManageSharedFolders in Custom Permissions",
50+
"type": "api-change"
51+
}
52+
]

CHANGELOG.rst

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

5+
1.42.68
6+
=======
7+
8+
* api-change:``apigateway``: [``botocore``] API Gateway now supports an additional security policy "SecurityPolicy-TLS13-1-2-FIPS-PFS-PQ-2025-09" for REST APIs and custom domain names. The new policy is compliant with TLS 1.3, Federal Information Processing Standards (FIPS), Perfect Forward Secrecy (PFS), and post-quantum (PQ) cryptography
9+
* api-change:``config``: [``botocore``] Fix pagination support for DescribeConformancePackCompliance, and update OrganizationConfigRule InputParameters max length to match ConfigRule.
10+
* api-change:``connect``: [``botocore``] Deprecating PredefinedNotificationID field
11+
* api-change:``gameliftstreams``: [``botocore``] Feature launch that enables customers to connect streaming sessions to their own VPCs running in AWS.
12+
* api-change:``glue``: [``botocore``] Add QuerySessionContext to BatchGetPartitionRequest
13+
* api-change:``ivs-realtime``: [``botocore``] Updates maximum reconnect window seconds from 60 to 300 for participant replication
14+
* api-change:``mediaconvert``: [``botocore``] This update adds support for Dolby AC-4 audio output, frame rate conversion between non-Dolby Vision inputs to Dolby Vision outputs, and clear lead CMAF HLS output.
15+
* api-change:``medialive``: [``botocore``] Documents the VideoDescription.ScalingBehavior.SMART(underscore)CROP enum value.
16+
* api-change:``mgn``: [``botocore``] Network Migration APIs are now publicly available for direct programmatic access. Customers can now call Network Migration APIs directly without going through AWS Transform (ATX), enabling automation, integration with existing tools, and self-service migration workflows.
17+
* api-change:``quicksight``: [``botocore``] The change adds a new capability named ManageSharedFolders in Custom Permissions
18+
19+
520
1.42.67
621
=======
722

boto3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from boto3.session import Session
1919

2020
__author__ = 'Amazon Web Services'
21-
__version__ = '1.42.67'
21+
__version__ = '1.42.68'
2222

2323

2424
# The default Boto3 session; autoloaded when needed.

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.42.67,<1.43.0
6+
botocore>=1.42.68,<1.43.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.16.0,<0.17.0
99

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.42.67,<1.43.0',
17+
'botocore>=1.42.68,<1.43.0',
1818
'jmespath>=0.7.1,<2.0.0',
1919
's3transfer>=0.16.0,<0.17.0',
2020
]

0 commit comments

Comments
 (0)