Skip to content

Commit 2f0f828

Browse files
Merge branch 'release-1.40.42' into develop
* release-1.40.42: Bumping version to 1.40.42 Update endpoints model Update to latest models Merge customizations for Application Signals
2 parents eda5ef5 + d0b519a commit 2f0f828

22 files changed

Lines changed: 3365 additions & 1145 deletions

File tree

.changes/1.40.42.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
[
2+
{
3+
"category": "``application-signals``",
4+
"description": "Amazon CloudWatch Application Signals is introducing the Application Map to give users a more comprehensive view of their service health. Users will now be able to group services, track their latest deployments, and view automated audit findings concerning service performance.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``bedrock-agentcore-control``",
9+
"description": "Tagging support for AgentCore Gateway",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``chime-sdk-voice``",
14+
"description": "Added support for IPv4-only and dual-stack network configurations for VoiceConnector and CreateVoiceConnector API.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``connectcases``",
19+
"description": "This release adds support for two new related item types: ConnectCase for linking Amazon Connect cases and Custom for user-defined related items with configurable fields.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``customer-profiles``",
24+
"description": "This release introduces ListProfileHistoryRecords and GetProfileHistoryRecord APIs for comprehensive profile history tracking with complete audit trails of creation, updates, merges, deletions, and data ingestion events.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``datasync``",
29+
"description": "Added support for FIPS VPC endpoints in FIPS-enabled AWS Regions.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``datazone``",
34+
"description": "This release adds support for creation of EMR on EKS Connections in Amazon DataZone.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``ds``",
39+
"description": "AWS Directory service now supports IPv6-native and dual-stack configurations for AWS Managed Microsoft AD, AD Connector, and Simple AD (dual-stack only). Additionally, AWS Managed Microsoft AD Standard Edition directories can be upgraded to Enterprise Edition directories through a single API call.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``ecs``",
44+
"description": "This release adds support for Managed Instances on Amazon ECS.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``fsx``",
49+
"description": "Add Dual-Stack support for Amazon FSx for NetApp ONTAP and Windows File Server",
50+
"type": "api-change"
51+
},
52+
{
53+
"category": "``mediatailor``",
54+
"description": "Adding TPS Traffic Shaping to Prefetch Schedules",
55+
"type": "api-change"
56+
},
57+
{
58+
"category": "``quicksight``",
59+
"description": "added warnings to a few CLI pages",
60+
"type": "api-change"
61+
},
62+
{
63+
"category": "``rds``",
64+
"description": "Enhanced RDS error handling: Added DBProxyEndpointNotFoundFault, DBShardGroupNotFoundFault, KMSKeyNotAccessibleFault for snapshots/restores/backups, NetworkTypeNotSupported, StorageTypeNotSupportedFault for restores, and granular state validation faults. Changed DBInstanceNotReadyFault to HTTP 400.",
65+
"type": "api-change"
66+
},
67+
{
68+
"category": "``transfer``",
69+
"description": "Add support for updating server identity provider type",
70+
"type": "api-change"
71+
}
72+
]

CHANGELOG.rst

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

5+
1.40.42
6+
=======
7+
8+
* api-change:``application-signals``: Amazon CloudWatch Application Signals is introducing the Application Map to give users a more comprehensive view of their service health. Users will now be able to group services, track their latest deployments, and view automated audit findings concerning service performance.
9+
* api-change:``bedrock-agentcore-control``: Tagging support for AgentCore Gateway
10+
* api-change:``chime-sdk-voice``: Added support for IPv4-only and dual-stack network configurations for VoiceConnector and CreateVoiceConnector API.
11+
* api-change:``connectcases``: This release adds support for two new related item types: ConnectCase for linking Amazon Connect cases and Custom for user-defined related items with configurable fields.
12+
* api-change:``customer-profiles``: This release introduces ListProfileHistoryRecords and GetProfileHistoryRecord APIs for comprehensive profile history tracking with complete audit trails of creation, updates, merges, deletions, and data ingestion events.
13+
* api-change:``datasync``: Added support for FIPS VPC endpoints in FIPS-enabled AWS Regions.
14+
* api-change:``datazone``: This release adds support for creation of EMR on EKS Connections in Amazon DataZone.
15+
* api-change:``ds``: AWS Directory service now supports IPv6-native and dual-stack configurations for AWS Managed Microsoft AD, AD Connector, and Simple AD (dual-stack only). Additionally, AWS Managed Microsoft AD Standard Edition directories can be upgraded to Enterprise Edition directories through a single API call.
16+
* api-change:``ecs``: This release adds support for Managed Instances on Amazon ECS.
17+
* api-change:``fsx``: Add Dual-Stack support for Amazon FSx for NetApp ONTAP and Windows File Server
18+
* api-change:``mediatailor``: Adding TPS Traffic Shaping to Prefetch Schedules
19+
* api-change:``quicksight``: added warnings to a few CLI pages
20+
* api-change:``rds``: Enhanced RDS error handling: Added DBProxyEndpointNotFoundFault, DBShardGroupNotFoundFault, KMSKeyNotAccessibleFault for snapshots/restores/backups, NetworkTypeNotSupported, StorageTypeNotSupportedFault for restores, and granular state validation faults. Changed DBInstanceNotReadyFault to HTTP 400.
21+
* api-change:``transfer``: Add support for updating server identity provider type
22+
23+
524
1.40.41
625
=======
726

botocore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re
1818
from logging import NullHandler
1919

20-
__version__ = '1.40.41'
20+
__version__ = '1.40.42'
2121

2222

2323
# Configure default logger to do nothing

botocore/data/application-signals/2024-04-15/paginators-1.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@
3535
"output_token": "NextToken",
3636
"limit_key": "MaxResults",
3737
"result_key": "ExclusionWindows"
38+
},
39+
"ListServiceStates": {
40+
"input_token": "NextToken",
41+
"output_token": "NextToken",
42+
"limit_key": "MaxResults",
43+
"result_key": "ServiceStates"
3844
}
3945
}
4046
}

botocore/data/application-signals/2024-04-15/paginators-1.sdk-extras.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@
2525
"StartTime",
2626
"EndTime"
2727
]
28+
},
29+
"ListServiceStates": {
30+
"non_aggregate_keys": [
31+
"StartTime",
32+
"EndTime"
33+
]
2834
}
2935
}
3036
}

0 commit comments

Comments
 (0)