Skip to content

Commit 8307fac

Browse files
Merge branch 'release-1.35.28'
* release-1.35.28: Bumping version to 1.35.28 Add changelog entries from botocore chore: Modified bug issue template to add checkbox to report potential regression.
2 parents 5dc18b0 + 4709d04 commit 8307fac

File tree

7 files changed

+87
-3
lines changed

7 files changed

+87
-3
lines changed

.changes/1.35.28.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"category": "``chatbot``",
4+
"description": "[``botocore``] Return State and StateReason fields for Chatbot Channel Configurations.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``lambda``",
9+
"description": "[``botocore``] Reverting Lambda resource-based policy and block public access APIs.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``organizations``",
14+
"description": "[``botocore``] Add support for policy operations on the CHATBOT_POLICY policy type.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``pcs``",
19+
"description": "[``botocore``] 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.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``rds-data``",
24+
"description": "[``botocore``] Documentation update for RDS Data API to reflect support for Aurora MySQL Serverless v2 and Provisioned DB clusters.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``sagemaker``",
29+
"description": "[``botocore``] Adding `TagPropagation` attribute to Sagemaker API",
30+
"type": "api-change"
31+
}
32+
]

.github/ISSUE_TEMPLATE/bug-report.yml

+8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ body:
1212
description: What is the problem? A clear and concise description of the bug.
1313
validations:
1414
required: true
15+
- type: checkboxes
16+
id: regression
17+
attributes:
18+
label: Regression Issue
19+
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.
20+
options:
21+
- label: Select this option if this issue appears to be a regression.
22+
required: false
1523
- type: textarea
1624
id: expected
1725
attributes:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Apply potential regression label on issues
2+
name: issue-regression-label
3+
on:
4+
issues:
5+
types: [opened, edited]
6+
permissions: read-all
7+
jobs:
8+
add-regression-label:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
12+
steps:
13+
- name: Fetch template body
14+
id: check_regression
15+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
TEMPLATE_BODY: ${{ github.event.issue.body }}
19+
with:
20+
script: |
21+
const regressionPattern = /\[x\] Select this option if this issue appears to be a regression\./i;
22+
const template = `${process.env.TEMPLATE_BODY}`
23+
const match = regressionPattern.test(template);
24+
core.setOutput('is_regression', match);
25+
- name: Manage regression label
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
run: |
29+
if [ "${{ steps.check_regression.outputs.is_regression }}" == "true" ]; then
30+
gh issue edit ${{ github.event.issue.number }} --add-label "potential-regression" -R ${{ github.repository }}
31+
else
32+
gh issue edit ${{ github.event.issue.number }} --remove-label "potential-regression" -R ${{ github.repository }}
33+
fi

CHANGELOG.rst

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
CHANGELOG
33
=========
44

5+
1.35.28
6+
=======
7+
8+
* api-change:``chatbot``: [``botocore``] Return State and StateReason fields for Chatbot Channel Configurations.
9+
* api-change:``lambda``: [``botocore``] Reverting Lambda resource-based policy and block public access APIs.
10+
* api-change:``organizations``: [``botocore``] Add support for policy operations on the CHATBOT_POLICY policy type.
11+
* api-change:``pcs``: [``botocore``] 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.
12+
* api-change:``rds-data``: [``botocore``] Documentation update for RDS Data API to reflect support for Aurora MySQL Serverless v2 and Provisioned DB clusters.
13+
* api-change:``sagemaker``: [``botocore``] Adding `TagPropagation` attribute to Sagemaker API
14+
15+
516
1.35.27
617
=======
718

boto3/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from boto3.session import Session
1818

1919
__author__ = 'Amazon Web Services'
20-
__version__ = '1.35.27'
20+
__version__ = '1.35.28'
2121

2222

2323
# The default Boto3 session; autoloaded when needed.

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ universal = 0
33

44
[metadata]
55
requires_dist =
6-
botocore>=1.35.27,<1.36.0
6+
botocore>=1.35.28,<1.36.0
77
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.10.0,<0.11.0
99

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
requires = [
17-
'botocore>=1.35.27,<1.36.0',
17+
'botocore>=1.35.28,<1.36.0',
1818
'jmespath>=0.7.1,<2.0.0',
1919
's3transfer>=0.10.0,<0.11.0',
2020
]

0 commit comments

Comments
 (0)