diff --git a/.changes/1.29.37.json b/.changes/1.29.37.json new file mode 100644 index 000000000000..137fb2026fee --- /dev/null +++ b/.changes/1.29.37.json @@ -0,0 +1,22 @@ +[ + { + "category": "``cognito-idp``", + "description": "Added API example requests and responses for several operations. Fixed the validation regex for user pools Identity Provider name.", + "type": "api-change" + }, + { + "category": "``fsx``", + "description": "Documentation updates for project quotas.", + "type": "api-change" + }, + { + "category": "``omics``", + "description": "Add RetentionMode support for Runs.", + "type": "api-change" + }, + { + "category": "``sesv2``", + "description": "Adds support for the new Export and Message Insights features: create, get, list and cancel export jobs; get message insights.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.github/workflows/handle-stale-discussions.yml b/.github/workflows/handle-stale-discussions.yml index d2245685f274..f89938e11b48 100644 --- a/.github/workflows/handle-stale-discussions.yml +++ b/.github/workflows/handle-stale-discussions.yml @@ -1,7 +1,7 @@ name: HandleStaleDiscussions on: schedule: - - cron: '0 */4 * * *' + - cron: "0 4 * * 1" discussion_comment: types: [created] @@ -15,7 +15,9 @@ jobs: - name: Stale discussions action uses: aws-github-ops/handle-stale-discussions@v1 with: + # This will close stale-discussions as outdated instead of answered + close-stale-as-answered: false # This will disable auto-closing answered discussions - close-answered-discussion: false + close-answered-discussions: false env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2519fe70c56f..011d5711324f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.29.37 +======= + +* api-change:``cognito-idp``: Added API example requests and responses for several operations. Fixed the validation regex for user pools Identity Provider name. +* api-change:``fsx``: Documentation updates for project quotas. +* api-change:``omics``: Add RetentionMode support for Runs. +* api-change:``sesv2``: Adds support for the new Export and Message Insights features: create, get, list and cancel export jobs; get message insights. + + 1.29.36 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index b617135abbee..0c485e6a827a 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.29.36' +__version__ = '1.29.37' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index 79032dff8e2a..a2feadd2f0f1 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.29.' # The full version, including alpha/beta/rc tags. -release = '1.29.36' +release = '1.29.37' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 7ccc031d8bac..798eede671b8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.31.36 + botocore==1.31.37 docutils>=0.10,<0.17 s3transfer>=0.6.0,<0.7.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index 74bee90361f8..b29912ac9689 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.31.36', + 'botocore==1.31.37', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<6.1',