Skip to content

Commit

Permalink
Merge branch 'release-1.15.17'
Browse files Browse the repository at this point in the history
* release-1.15.17:
  Bumping version to 1.15.17
  Add changelog entries from botocore
  Add closed issue message github action
  • Loading branch information
aws-sdk-python-automation committed Oct 15, 2020
2 parents b098b2e + d4b8f72 commit 3662da0
Show file tree
Hide file tree
Showing 6 changed files with 117 additions and 3 deletions.
77 changes: 77 additions & 0 deletions .changes/1.15.17.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
[
{
"category": "``transfer``",
"description": "[``botocore``] Update transfer client to latest version",
"type": "api-change"
},
{
"category": "``xray``",
"description": "[``botocore``] Update xray client to latest version",
"type": "api-change"
},
{
"category": "``dms``",
"description": "[``botocore``] Update dms client to latest version",
"type": "api-change"
},
{
"category": "``macie2``",
"description": "[``botocore``] Update macie2 client to latest version",
"type": "api-change"
},
{
"category": "``ssm``",
"description": "[``botocore``] Update ssm client to latest version",
"type": "api-change"
},
{
"category": "``groundstation``",
"description": "[``botocore``] Update groundstation client to latest version",
"type": "api-change"
},
{
"category": "``rekognition``",
"description": "[``botocore``] Update rekognition client to latest version",
"type": "api-change"
},
{
"category": "``ce``",
"description": "[``botocore``] Update ce client to latest version",
"type": "api-change"
},
{
"category": "``workspaces``",
"description": "[``botocore``] Update workspaces client to latest version",
"type": "api-change"
},
{
"category": "``glue``",
"description": "[``botocore``] Update glue client to latest version",
"type": "api-change"
},
{
"category": "``budgets``",
"description": "[``botocore``] Update budgets client to latest version",
"type": "api-change"
},
{
"category": "``accessanalyzer``",
"description": "[``botocore``] Update accessanalyzer client to latest version",
"type": "api-change"
},
{
"category": "``rds``",
"description": "[``botocore``] Update rds client to latest version",
"type": "api-change"
},
{
"category": "``workmail``",
"description": "[``botocore``] Update workmail client to latest version",
"type": "api-change"
},
{
"category": "``iot``",
"description": "[``botocore``] Update iot client to latest version",
"type": "api-change"
}
]
17 changes: 17 additions & 0 deletions .github/workflows/closed-issue-message.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Closed Issue Message
on:
issues:
types: [closed]
jobs:
auto_comment:
runs-on: ubuntu-latest
steps:
- uses: aws-actions/closed-issue-message@v1
with:
# These inputs are both required
repo-token: "${{ secrets.GITHUB_TOKEN }}"
message: |
### ⚠️COMMENT VISIBILITY WARNING⚠️
Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.
20 changes: 20 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@
CHANGELOG
=========

1.15.17
=======

* api-change:``transfer``: [``botocore``] Update transfer client to latest version
* api-change:``xray``: [``botocore``] Update xray client to latest version
* api-change:``dms``: [``botocore``] Update dms client to latest version
* api-change:``macie2``: [``botocore``] Update macie2 client to latest version
* api-change:``ssm``: [``botocore``] Update ssm client to latest version
* api-change:``groundstation``: [``botocore``] Update groundstation client to latest version
* api-change:``rekognition``: [``botocore``] Update rekognition client to latest version
* api-change:``ce``: [``botocore``] Update ce client to latest version
* api-change:``workspaces``: [``botocore``] Update workspaces client to latest version
* api-change:``glue``: [``botocore``] Update glue client to latest version
* api-change:``budgets``: [``botocore``] Update budgets client to latest version
* api-change:``accessanalyzer``: [``botocore``] Update accessanalyzer client to latest version
* api-change:``rds``: [``botocore``] Update rds client to latest version
* api-change:``workmail``: [``botocore``] Update workmail client to latest version
* api-change:``iot``: [``botocore``] Update iot client to latest version


1.15.16
=======

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


__author__ = 'Amazon Web Services'
__version__ = '1.15.16'
__version__ = '1.15.17'


# The default Boto3 session; autoloaded when needed.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ universal = 1

[metadata]
requires-dist =
botocore>=1.18.16,<1.19.0
botocore>=1.18.17,<1.19.0
jmespath>=0.7.1,<1.0.0
s3transfer>=0.3.0,<0.4.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


requires = [
'botocore>=1.18.16,<1.19.0',
'botocore>=1.18.17,<1.19.0',
'jmespath>=0.7.1,<1.0.0',
's3transfer>=0.3.0,<0.4.0'
]
Expand Down

0 comments on commit 3662da0

Please sign in to comment.