Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: boto/botocore
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.34.84
Choose a base ref
...
head repository: boto/botocore
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.34.85
Choose a head ref
  • 6 commits
  • 20 files changed
  • 2 contributors

Commits on Apr 12, 2024

  1. Merge branch 'release-1.34.84' into develop

    * release-1.34.84:
      Bumping version to 1.34.84
      Update to latest models
    aws-sdk-python-automation committed Apr 12, 2024
    Copy the full SHA
    4b8872a View commit details

Commits on Apr 15, 2024

  1. Update awcrt version to 0.20.9 (#3156)

    nateprewitt authored Apr 15, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1efa4f0 View commit details

Commits on Apr 16, 2024

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ebff01a View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1dcc41e View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0ceb454 View commit details
  4. Merge branch 'release-1.34.85'

    * release-1.34.85:
      Bumping version to 1.34.85
      Update endpoints model
      Update to latest models
      Update awcrt version to 0.20.9 (#3156)
    aws-sdk-python-automation committed Apr 16, 2024
    Copy the full SHA
    9d7b009 View commit details
52 changes: 52 additions & 0 deletions .changes/1.34.85.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
[
{
"category": "``bedrock-agent``",
"description": "For Create Agent API, the agentResourceRoleArn parameter is no longer required.",
"type": "api-change"
},
{
"category": "``emr-serverless``",
"description": "This release adds support for shuffle optimized disks that allow larger disk sizes and higher IOPS to efficiently run shuffle heavy workloads.",
"type": "api-change"
},
{
"category": "``entityresolution``",
"description": "Cross Account Resource Support .",
"type": "api-change"
},
{
"category": "``iotwireless``",
"description": "Add PublicGateways in the GetWirelessStatistics call response, indicating the LoRaWAN public network accessed by the device.",
"type": "api-change"
},
{
"category": "``lakeformation``",
"description": "This release adds Lake Formation managed RAM support for the 4 APIs - \"DescribeLakeFormationIdentityCenterConfiguration\", \"CreateLakeFormationIdentityCenterConfiguration\", \"DescribeLakeFormationIdentityCenterConfiguration\", and \"DeleteLakeFormationIdentityCenterConfiguration\"",
"type": "api-change"
},
{
"category": "``m2``",
"description": "Adding new ListBatchJobRestartPoints API and support for restart batch job.",
"type": "api-change"
},
{
"category": "``mediapackagev2``",
"description": "Dash v2 is a MediaPackage V2 feature to support egressing on DASH manifest format.",
"type": "api-change"
},
{
"category": "``outposts``",
"description": "This release adds new APIs to allow customers to configure their Outpost capacity at order-time.",
"type": "api-change"
},
{
"category": "``wellarchitected``",
"description": "AWS Well-Architected now has a Connector for Jira to allow customers to efficiently track workload risks and improvement efforts and create closed-loop mechanisms.",
"type": "api-change"
},
{
"category": "AWSCRT",
"description": "Update awscrt version to 0.20.9",
"type": "enhancement"
}
]
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -2,6 +2,21 @@
CHANGELOG
=========

1.34.85
=======

* api-change:``bedrock-agent``: For Create Agent API, the agentResourceRoleArn parameter is no longer required.
* api-change:``emr-serverless``: This release adds support for shuffle optimized disks that allow larger disk sizes and higher IOPS to efficiently run shuffle heavy workloads.
* api-change:``entityresolution``: Cross Account Resource Support .
* api-change:``iotwireless``: Add PublicGateways in the GetWirelessStatistics call response, indicating the LoRaWAN public network accessed by the device.
* api-change:``lakeformation``: This release adds Lake Formation managed RAM support for the 4 APIs - "DescribeLakeFormationIdentityCenterConfiguration", "CreateLakeFormationIdentityCenterConfiguration", "DescribeLakeFormationIdentityCenterConfiguration", and "DeleteLakeFormationIdentityCenterConfiguration"
* api-change:``m2``: Adding new ListBatchJobRestartPoints API and support for restart batch job.
* api-change:``mediapackagev2``: Dash v2 is a MediaPackage V2 feature to support egressing on DASH manifest format.
* api-change:``outposts``: This release adds new APIs to allow customers to configure their Outpost capacity at order-time.
* api-change:``wellarchitected``: AWS Well-Architected now has a Connector for Jira to allow customers to efficiently track workload risks and improvement efforts and create closed-loop mechanisms.
* enhancement:AWSCRT: Update awscrt version to 0.20.9


1.34.84
=======

2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
import os
import re

__version__ = '1.34.84'
__version__ = '1.34.85'


class NullHandler(logging.Handler):
Loading