Skip to content

Commit

Permalink
Merge branch 'release-1.35.28'
Browse files Browse the repository at this point in the history
* release-1.35.28:
  Bumping version to 1.35.28
  Update endpoints model
  Update to latest models
  chore: added permissions and modified action commit in issue-regression-labeler.yml
  chore: Modified bug issue template to add checkbox to report potential regression.
  • Loading branch information
aws-sdk-python-automation committed Sep 26, 2024
2 parents e7d437a + 51e5f1c commit 69b94ee
Show file tree
Hide file tree
Showing 13 changed files with 183 additions and 300 deletions.
32 changes: 32 additions & 0 deletions .changes/1.35.28.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"category": "``chatbot``",
"description": "Return State and StateReason fields for Chatbot Channel Configurations.",
"type": "api-change"
},
{
"category": "``lambda``",
"description": "Reverting Lambda resource-based policy and block public access APIs.",
"type": "api-change"
},
{
"category": "``organizations``",
"description": "Add support for policy operations on the CHATBOT_POLICY policy type.",
"type": "api-change"
},
{
"category": "``pcs``",
"description": "AWS PCS API documentation - Edited the description of the iamInstanceProfileArn parameter of the CreateComputeNodeGroup and UpdateComputeNodeGroup actions; edited the description of the SlurmCustomSetting data type to list the supported parameters for clusters and compute node groups.",
"type": "api-change"
},
{
"category": "``rds-data``",
"description": "Documentation update for RDS Data API to reflect support for Aurora MySQL Serverless v2 and Provisioned DB clusters.",
"type": "api-change"
},
{
"category": "``sagemaker``",
"description": "Adding `TagPropagation` attribute to Sagemaker API",
"type": "api-change"
}
]
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ body:
description: What is the problem? A clear and concise description of the bug.
validations:
required: true
- type: checkboxes
id: regression
attributes:
label: Regression Issue
description: What is a regression? If it worked in a previous version but doesn't in the latest version, it's considered a regression. In this case, please provide specific version number in the report.
options:
- label: Select this option if this issue appears to be a regression.
required: false
- type: textarea
id: expected
attributes:
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/issue-regression-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Apply potential regression label on issues
name: issue-regression-label
on:
issues:
types: [opened, edited]
permissions: read-all
jobs:
add-regression-label:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Fetch template body
id: check_regression
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TEMPLATE_BODY: ${{ github.event.issue.body }}
with:
script: |
const regressionPattern = /\[x\] Select this option if this issue appears to be a regression\./i;
const template = `${process.env.TEMPLATE_BODY}`
const match = regressionPattern.test(template);
core.setOutput('is_regression', match);
- name: Manage regression label
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [ "${{ steps.check_regression.outputs.is_regression }}" == "true" ]; then
gh issue edit ${{ github.event.issue.number }} --add-label "potential-regression" -R ${{ github.repository }}
else
gh issue edit ${{ github.event.issue.number }} --remove-label "potential-regression" -R ${{ github.repository }}
fi
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
CHANGELOG
=========

1.35.28
=======

* api-change:``chatbot``: Return State and StateReason fields for Chatbot Channel Configurations.
* api-change:``lambda``: Reverting Lambda resource-based policy and block public access APIs.
* api-change:``organizations``: Add support for policy operations on the CHATBOT_POLICY policy type.
* api-change:``pcs``: AWS PCS API documentation - Edited the description of the iamInstanceProfileArn parameter of the CreateComputeNodeGroup and UpdateComputeNodeGroup actions; edited the description of the SlurmCustomSetting data type to list the supported parameters for clusters and compute node groups.
* api-change:``rds-data``: Documentation update for RDS Data API to reflect support for Aurora MySQL Serverless v2 and Provisioned DB clusters.
* api-change:``sagemaker``: Adding `TagPropagation` attribute to Sagemaker API


1.35.27
=======

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

__version__ = '1.35.27'
__version__ = '1.35.28'


class NullHandler(logging.Handler):
Expand Down
45 changes: 45 additions & 0 deletions botocore/data/chatbot/2017-10-11/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,14 @@
"Tags":{
"shape":"Tags",
"documentation":"<p>A map of tags assigned to a resource. A tag is a string-to-string map of key-value pairs.</p>"
},
"State":{
"shape":"ResourceState",
"documentation":"<p>Either <code>ENABLED</code> or <code>DISABLED</code>. The resource returns <code>DISABLED</code> if the organization's AWS Chatbot policy has explicitly denied that configuration. For example, if Amazon Chime is disabled.</p>"
},
"StateReason":{
"shape":"String",
"documentation":"<p>Provided if State is <code>DISABLED</code>. Provides context as to why the resource is disabled.</p>"
}
},
"documentation":"<p>An AWS Chatbot configuration for Amazon Chime.</p>"
Expand Down Expand Up @@ -564,6 +572,14 @@
"TeamName":{
"shape":"UUID",
"documentation":"<p>The name of the Microsoft Teams Team.</p>"
},
"State":{
"shape":"ResourceState",
"documentation":"<p>Either <code>ENABLED</code> or <code>DISABLED</code>. The resource returns <code>DISABLED</code> if the organization's AWS Chatbot policy has explicitly denied that configuration. For example, if Amazon Chime is disabled.</p>"
},
"StateReason":{
"shape":"String",
"documentation":"<p>Provided if State is <code>DISABLED</code>. Provides context as to why the resource is disabled.</p>"
}
},
"documentation":"<p>A Microsoft Teams team that is authorized with AWS Chatbot.</p>"
Expand Down Expand Up @@ -1417,6 +1433,10 @@
},
"exception":true
},
"ResourceState":{
"type":"string",
"pattern":"(ENABLED|DISABLED)"
},
"ServiceUnavailableException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1488,6 +1508,14 @@
"Tags":{
"shape":"Tags",
"documentation":"<p>A map of tags assigned to a resource. A tag is a string-to-string map of key-value pairs.</p>"
},
"State":{
"shape":"ResourceState",
"documentation":"<p>Either <code>ENABLED</code> or <code>DISABLED</code>. The resource returns <code>DISABLED</code> if the organization's AWS Chatbot policy has explicitly denied that configuration. For example, if Amazon Chime is disabled.</p>"
},
"StateReason":{
"shape":"String",
"documentation":"<p>Provided if State is <code>DISABLED</code>. Provides context as to why the resource is disabled.</p>"
}
},
"documentation":"<p>An AWS Chatbot configuration for Slack.</p>"
Expand Down Expand Up @@ -1575,6 +1603,14 @@
"SlackTeamName":{
"shape":"SlackTeamName",
"documentation":"<p>The name of the Slack workspace.</p>"
},
"State":{
"shape":"ResourceState",
"documentation":"<p>Either <code>ENABLED</code> or <code>DISABLED</code>. The resource returns <code>DISABLED</code> if the organization's AWS Chatbot policy has explicitly denied that configuration. For example, if Amazon Chime is disabled.</p>"
},
"StateReason":{
"shape":"String",
"documentation":"<p>Provided if State is <code>DISABLED</code>. Provides context as to why the resource is disabled.</p>"
}
},
"documentation":"<p>A Slack workspace. </p>"
Expand All @@ -1587,6 +1623,7 @@
"type":"list",
"member":{"shape":"Arn"}
},
"String":{"type":"string"},
"Tag":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1726,6 +1763,14 @@
"Tags":{
"shape":"Tags",
"documentation":"<p>A map of tags assigned to a resource. A tag is a string-to-string map of key-value pairs.</p>"
},
"State":{
"shape":"ResourceState",
"documentation":"<p>Either <code>ENABLED</code> or <code>DISABLED</code>. The resource returns <code>DISABLED</code> if the organization's AWS Chatbot policy has explicitly denied that configuration. For example, if Amazon Chime is disabled.</p>"
},
"StateReason":{
"shape":"String",
"documentation":"<p>Provided if State is <code>DISABLED</code>. Provides context as to why the resource is disabled.</p>"
}
},
"documentation":"<p>An AWS Chatbot configuration for Microsoft Teams.</p>"
Expand Down
2 changes: 2 additions & 0 deletions botocore/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -9634,6 +9634,8 @@
},
"endpoints" : {
"ap-south-1" : { },
"ap-southeast-2" : { },
"eu-west-2" : { },
"us-east-1" : { },
"us-east-2" : { },
"us-west-2" : { }
Expand Down
Loading

0 comments on commit 69b94ee

Please sign in to comment.