diff --git a/.changes/1.35.70.json b/.changes/1.35.70.json new file mode 100644 index 0000000000..41462f7852 --- /dev/null +++ b/.changes/1.35.70.json @@ -0,0 +1,27 @@ +[ + { + "category": "``bedrock-agent``", + "description": "[``botocore``] Custom Orchestration API release for AWSBedrockAgents.", + "type": "api-change" + }, + { + "category": "``bedrock-agent-runtime``", + "description": "[``botocore``] Custom Orchestration and Streaming configurations API release for AWSBedrockAgents.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] Enables access to ValueMap and ValueInteger types for SegmentAttributes and fixes deserialization bug for DescribeContactFlow in AmazonConnect Public API", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Adds support for Time-based Copy for EBS Snapshots and Cross Region PrivateLink. Time-based Copy ensures that EBS Snapshots are copied within and across AWS Regions in a specified timeframe. Cross Region PrivateLink enables customers to connect to VPC endpoint services hosted in other AWS Regions.", + "type": "api-change" + }, + { + "category": "``qapps``", + "description": "[``botocore``] Private sharing, file upload and data collection feature support for Q Apps", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-bedrockagent-4419.json b/.changes/next-release/api-change-bedrockagent-4419.json deleted file mode 100644 index 0898d3f652..0000000000 --- a/.changes/next-release/api-change-bedrockagent-4419.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``bedrock-agent``", - "description": "[``botocore``] Custom Orchestration API release for AWSBedrockAgents." -} diff --git a/.changes/next-release/api-change-bedrockagentruntime-87232.json b/.changes/next-release/api-change-bedrockagentruntime-87232.json deleted file mode 100644 index 3fe522496c..0000000000 --- a/.changes/next-release/api-change-bedrockagentruntime-87232.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``bedrock-agent-runtime``", - "description": "[``botocore``] Custom Orchestration and Streaming configurations API release for AWSBedrockAgents." -} diff --git a/.changes/next-release/api-change-connect-16380.json b/.changes/next-release/api-change-connect-16380.json deleted file mode 100644 index 74a87fa825..0000000000 --- a/.changes/next-release/api-change-connect-16380.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``connect``", - "description": "[``botocore``] Enables access to ValueMap and ValueInteger types for SegmentAttributes and fixes deserialization bug for DescribeContactFlow in AmazonConnect Public API" -} diff --git a/.changes/next-release/api-change-ec2-29225.json b/.changes/next-release/api-change-ec2-29225.json deleted file mode 100644 index 269e1adb20..0000000000 --- a/.changes/next-release/api-change-ec2-29225.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ec2``", - "description": "[``botocore``] Adds support for Time-based Copy for EBS Snapshots and Cross Region PrivateLink. Time-based Copy ensures that EBS Snapshots are copied within and across AWS Regions in a specified timeframe. Cross Region PrivateLink enables customers to connect to VPC endpoint services hosted in other AWS Regions." -} diff --git a/.changes/next-release/api-change-qapps-57378.json b/.changes/next-release/api-change-qapps-57378.json deleted file mode 100644 index d5fa603877..0000000000 --- a/.changes/next-release/api-change-qapps-57378.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``qapps``", - "description": "[``botocore``] Private sharing, file upload and data collection feature support for Q Apps" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b1337bb934..683e1ea859 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.35.70 +======= + +* api-change:``bedrock-agent``: [``botocore``] Custom Orchestration API release for AWSBedrockAgents. +* api-change:``bedrock-agent-runtime``: [``botocore``] Custom Orchestration and Streaming configurations API release for AWSBedrockAgents. +* api-change:``connect``: [``botocore``] Enables access to ValueMap and ValueInteger types for SegmentAttributes and fixes deserialization bug for DescribeContactFlow in AmazonConnect Public API +* api-change:``ec2``: [``botocore``] Adds support for Time-based Copy for EBS Snapshots and Cross Region PrivateLink. Time-based Copy ensures that EBS Snapshots are copied within and across AWS Regions in a specified timeframe. Cross Region PrivateLink enables customers to connect to VPC endpoint services hosted in other AWS Regions. +* api-change:``qapps``: [``botocore``] Private sharing, file upload and data collection feature support for Q Apps + + 1.35.69 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 589e71a3a0..97e4d2fa95 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.35.69' +__version__ = '1.35.70' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 0bae8258d6..b61da5ee83 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.69,<1.36.0 + botocore>=1.35.70,<1.36.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index a0a8a5fd28..b18cd3a911 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.69,<1.36.0', + 'botocore>=1.35.70,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]