Skip to content

Commit

Permalink
Merge branch 'release-1.37.3'
Browse files Browse the repository at this point in the history
* release-1.37.3:
  Bumping version to 1.37.3
  Update changelog based on model updates
  Fix v2 cherry-pick GH action (#9231)
  • Loading branch information
aws-sdk-python-automation committed Jan 21, 2025
2 parents 1b202e5 + e13b886 commit a676750
Show file tree
Hide file tree
Showing 7 changed files with 62 additions and 5 deletions.
42 changes: 42 additions & 0 deletions .changes/1.37.3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"category": "``batch``",
"description": "Documentation-only update: clarified the description of the shareDecaySeconds parameter of the FairsharePolicy data type, clarified the description of the priority parameter of the JobQueueDetail data type.",
"type": "api-change"
},
{
"category": "``cognito-idp``",
"description": "corrects the dual-stack endpoint configuration for cognitoidp",
"type": "api-change"
},
{
"category": "``connect``",
"description": "Added DeleteContactFlowVersion API and the CAMPAIGN flow type",
"type": "api-change"
},
{
"category": "``emr-serverless``",
"description": "Increasing entryPoint in SparkSubmit to accept longer script paths. New limit is 4kb.",
"type": "api-change"
},
{
"category": "``iotsitewise``",
"description": "AWS IoT SiteWise now supports ingestion and querying of Null (all data types) and NaN (double type) values of bad or uncertain data quality. New partial error handling prevents data loss during ingestion. Enabled by default for new customers; existing customers can opt-in.",
"type": "api-change"
},
{
"category": "``logs``",
"description": "Documentation-only update to address doc errors",
"type": "api-change"
},
{
"category": "``quicksight``",
"description": "Added `DigitGroupingStyle` in ThousandsSeparator to allow grouping by `LAKH`( Indian Grouping system ) currency. Support LAKH and `CRORE` currency types in Column Formatting.",
"type": "api-change"
},
{
"category": "``sns``",
"description": "This release adds support for the topic attribute FifoThroughputScope for SNS FIFO topics. For details, see the documentation history in the Amazon Simple Notification Service Developer Guide.",
"type": "api-change"
}
]
4 changes: 3 additions & 1 deletion .github/workflows/doc-pr-cherry-pick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
run: |
gh pr checkout $PR_NUMBER
PR_COMMITS=$(gh pr view $PR_NUMBER --json commits --jq '.commits[].oid')
echo "PR_COMMITS=$PR_COMMITS" >> $GITHUB_OUTPUT
echo "PR_COMMITS<<EOF" >> "$GITHUB_OUTPUT"
echo "$PR_COMMITS" >> "$GITHUB_OUTPUT"
echo "EOF" >> "$GITHUB_OUTPUT"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.inputs.pr_number }}
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
CHANGELOG
=========

1.37.3
======

* api-change:``batch``: Documentation-only update: clarified the description of the shareDecaySeconds parameter of the FairsharePolicy data type, clarified the description of the priority parameter of the JobQueueDetail data type.
* api-change:``cognito-idp``: corrects the dual-stack endpoint configuration for cognitoidp
* api-change:``connect``: Added DeleteContactFlowVersion API and the CAMPAIGN flow type
* api-change:``emr-serverless``: Increasing entryPoint in SparkSubmit to accept longer script paths. New limit is 4kb.
* api-change:``iotsitewise``: AWS IoT SiteWise now supports ingestion and querying of Null (all data types) and NaN (double type) values of bad or uncertain data quality. New partial error handling prevents data loss during ingestion. Enabled by default for new customers; existing customers can opt-in.
* api-change:``logs``: Documentation-only update to address doc errors
* api-change:``quicksight``: Added `DigitGroupingStyle` in ThousandsSeparator to allow grouping by `LAKH`( Indian Grouping system ) currency. Support LAKH and `CRORE` currency types in Column Formatting.
* api-change:``sns``: This release adds support for the topic attribute FifoThroughputScope for SNS FIFO topics. For details, see the documentation history in the Amazon Simple Notification Service Developer Guide.


1.37.2
======

Expand Down
2 changes: 1 addition & 1 deletion awscli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import os

__version__ = '1.37.2'
__version__ = '1.37.3'

#
# Get our data path to be added to botocore's search path
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '1.37'
# The full version, including alpha/beta/rc tags.
release = '1.37.2'
release = '1.37.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore==1.36.2
botocore==1.36.3
docutils>=0.10,<0.17
s3transfer>=0.11.0,<0.12.0
PyYAML>=3.10,<6.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def find_version(*file_paths):


install_requires = [
'botocore==1.36.2',
'botocore==1.36.3',
'docutils>=0.10,<0.17',
's3transfer>=0.11.0,<0.12.0',
'PyYAML>=3.10,<6.1',
Expand Down

0 comments on commit a676750

Please sign in to comment.