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/boto3
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.28.58
Choose a base ref
...
head repository: boto/boto3
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.28.59
Choose a head ref
  • 5 commits
  • 6 files changed
  • 2 contributors

Commits on Oct 2, 2023

  1. Merge branch 'release-1.28.58' into develop

    * release-1.28.58:
      Bumping version to 1.28.58
      Add changelog entries from botocore
    aws-sdk-python-automation committed Oct 2, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dtolnay David Tolnay
    Copy the full SHA
    c2730f9 View commit details

Commits on Oct 3, 2023

  1. Add documentation for additional events. (#3686)

    * Add documentation for additional events.
    
    * Addressed all PR feedback.
    
    * Fixed indentation for needs-retry code example.
    
    * More PR Feedback.
    jonathan343 authored Oct 3, 2023
    Copy the full SHA
    687f064 View commit details
  2. Copy the full SHA
    cabe956 View commit details
  3. Copy the full SHA
    7cd1aa2 View commit details
  4. Merge branch 'release-1.28.59'

    * release-1.28.59:
      Bumping version to 1.28.59
      Add changelog entries from botocore
      Add documentation for additional events. (#3686)
    aws-sdk-python-automation committed Oct 3, 2023
    Copy the full SHA
    54e0af4 View commit details
Showing with 464 additions and 66 deletions.
  1. +32 −0 .changes/1.28.59.json
  2. +11 −0 CHANGELOG.rst
  3. +1 −1 boto3/__init__.py
  4. +418 −63 docs/source/guide/events.rst
  5. +1 −1 setup.cfg
  6. +1 −1 setup.py
32 changes: 32 additions & 0 deletions .changes/1.28.59.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"category": "``connect``",
"description": "[``botocore``] GetMetricDataV2 API: Update to include new metrics CONTACTS_RESOLVED_IN_X , AVG_HOLD_TIME_ALL_CONTACTS , AVG_RESOLUTION_TIME , ABANDONMENT_RATE , AGENT_NON_RESPONSE_WITHOUT_CUSTOMER_ABANDONS with added features: Interval Period, TimeZone, Negate MetricFilters, Extended date time range.",
"type": "api-change"
},
{
"category": "``location``",
"description": "[``botocore``] Amazon Location Service adds support for bounding polygon queries. Additionally, the GeofenceCount field has been added to the DescribeGeofenceCollection API response.",
"type": "api-change"
},
{
"category": "``mediaconvert``",
"description": "[``botocore``] This release adds the ability to replace video frames without modifying the audio essence.",
"type": "api-change"
},
{
"category": "``oam``",
"description": "[``botocore``] This release adds support for sharing AWS::ApplicationInsights::Application resources.",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "[``botocore``] This release allows users to run Selective Execution in SageMaker Pipelines without SourcePipelineExecutionArn if selected steps do not have any dependent steps.",
"type": "api-change"
},
{
"category": "``wellarchitected``",
"description": "[``botocore``] AWS Well-Architected now supports Review Templates that allows you to create templates with pre-filled answers for Well-Architected and Custom Lens best practices.",
"type": "api-change"
}
]
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -2,6 +2,17 @@
CHANGELOG
=========

1.28.59
=======

* api-change:``connect``: [``botocore``] GetMetricDataV2 API: Update to include new metrics CONTACTS_RESOLVED_IN_X , AVG_HOLD_TIME_ALL_CONTACTS , AVG_RESOLUTION_TIME , ABANDONMENT_RATE , AGENT_NON_RESPONSE_WITHOUT_CUSTOMER_ABANDONS with added features: Interval Period, TimeZone, Negate MetricFilters, Extended date time range.
* api-change:``location``: [``botocore``] Amazon Location Service adds support for bounding polygon queries. Additionally, the GeofenceCount field has been added to the DescribeGeofenceCollection API response.
* api-change:``mediaconvert``: [``botocore``] This release adds the ability to replace video frames without modifying the audio essence.
* api-change:``oam``: [``botocore``] This release adds support for sharing AWS::ApplicationInsights::Application resources.
* api-change:``sagemaker``: [``botocore``] This release allows users to run Selective Execution in SageMaker Pipelines without SourcePipelineExecutionArn if selected steps do not have any dependent steps.
* api-change:``wellarchitected``: [``botocore``] AWS Well-Architected now supports Review Templates that allows you to create templates with pre-filled answers for Well-Architected and Custom Lens best practices.


1.28.58
=======

2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
from boto3.session import Session

__author__ = 'Amazon Web Services'
__version__ = '1.28.58'
__version__ = '1.28.59'


# The default Boto3 session; autoloaded when needed.
Loading