Skip to content

Commit d0fa3ae

Browse files
Merge branch 'release-1.42.84'
* release-1.42.84: Bumping version to 1.42.84 Add changelog entries from botocore Add zizmor workflow and apply initial fixes (#4755)
2 parents 319798f + a4e4154 commit d0fa3ae

12 files changed

Lines changed: 99 additions & 4 deletions

File tree

.changes/1.42.84.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
[
2+
{
3+
"category": "``accessanalyzer``",
4+
"description": "[``botocore``] Brookie helps customers preview the impact of SCPs before deployment using historical access activity. It evaluates attached policies and proposed policy updates using collected access activity through CloudTrail authorization events and reports where currently allowed access will be denied.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``deadline``",
9+
"description": "[``botocore``] Added 8 batch APIs (BatchGetJob, BatchGetStep, BatchGetTask, BatchGetSession, BatchGetSessionAction, BatchGetWorker, BatchUpdateJob, BatchUpdateTask) for bulk operations. Monitors can now use an Identity Center instance in a different region via the identityCenterRegion parameter.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``dlm``",
14+
"description": "[``botocore``] This release adds support for Fast Snapshot Restore AvailabilityZone Ids in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``geo-maps``",
19+
"description": "[``botocore``] This release updates API reference documentation for Amazon Location Service Maps APIs to reflect regional restrictions for Grab Maps users",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``guardduty``",
24+
"description": "[``botocore``] Migrated to Smithy. No functional changes",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``lightsail``",
29+
"description": "[``botocore``] This release adds support for the Asia Pacific (Malaysia) (ap-southeast-5) Region.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``mediatailor``",
34+
"description": "[``botocore``] This change adds support for Tagging the resource types Programs and Prefetch Schedules",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``qconnect``",
39+
"description": "[``botocore``] Added optional originRequestId parameter to SendMessageRequest and ListSpans response in Amazon Q in Connect to support request tracing across service boundaries.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``transfer``",
44+
"description": "[``botocore``] AWS Transfer Family Connectors now support IPv6 connectivity, enabling outbound connections to remote SFTP or AS2 servers using IPv4-only or dual-stack (IPv4 and IPv6) configurations based on network requirements.",
45+
"type": "api-change"
46+
}
47+
]

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ updates:
77
ignore:
88
- dependency-name: "*"
99
update-types: ["version-update:semver-patch"]
10+
cooldown:
11+
default-days: 7

.github/workflows/codeql.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
steps:
2222
- name: "Checkout repository"
2323
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
24+
with:
25+
persist-credentials: false
2426

2527
- name: "Run CodeQL init"
2628
uses: "github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13"

.github/workflows/issue-regression-labeler.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ jobs:
2525
- name: Manage regression label
2626
env:
2727
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
STEPS_CHECK_REGRESSION_OUTPUTS_IS_REGRESSION: ${{ steps.check_regression.outputs.is_regression }}
2829
run: |
29-
if [ "${{ steps.check_regression.outputs.is_regression }}" == "true" ]; then
30+
if [ "${STEPS_CHECK_REGRESSION_OUTPUTS_IS_REGRESSION}" == "true" ]; then
3031
gh issue edit ${{ github.event.issue.number }} --add-label "potential-regression" -R ${{ github.repository }}
3132
else
3233
gh issue edit ${{ github.event.issue.number }} --remove-label "potential-regression" -R ${{ github.repository }}

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
17+
with:
18+
persist-credentials: false
1719
- name: Set up Python 3.9
1820
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
1921
with:

.github/workflows/run-crt-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
23+
with:
24+
persist-credentials: false
2325
- name: 'Set up Python ${{ matrix.python-version }}'
2426
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
2527
with:

.github/workflows/run-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
24+
with:
25+
persist-credentials: false
2426
- name: Set up Python ${{ matrix.python-version }}
2527
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
2628
with:

.github/workflows/zizmor.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: GitHub Actions Security Analysis with zizmor 🌈
2+
3+
on:
4+
push:
5+
branches: ["develop"]
6+
pull_request:
7+
branches: ["develop"]
8+
9+
permissions: {}
10+
11+
jobs:
12+
zizmor:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
security-events: write
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
19+
with:
20+
persist-credentials: false
21+
22+
- name: Run zizmor 🌈
23+
uses: zizmorcore/zizmor-action@71321a20a9ded102f6e9ce5718a2fcec2c4f70d8 # v0.5.2

CHANGELOG.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22
CHANGELOG
33
=========
44

5+
1.42.84
6+
=======
7+
8+
* api-change:``accessanalyzer``: [``botocore``] Brookie helps customers preview the impact of SCPs before deployment using historical access activity. It evaluates attached policies and proposed policy updates using collected access activity through CloudTrail authorization events and reports where currently allowed access will be denied.
9+
* api-change:``deadline``: [``botocore``] Added 8 batch APIs (BatchGetJob, BatchGetStep, BatchGetTask, BatchGetSession, BatchGetSessionAction, BatchGetWorker, BatchUpdateJob, BatchUpdateTask) for bulk operations. Monitors can now use an Identity Center instance in a different region via the identityCenterRegion parameter.
10+
* api-change:``dlm``: [``botocore``] This release adds support for Fast Snapshot Restore AvailabilityZone Ids in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies.
11+
* api-change:``geo-maps``: [``botocore``] This release updates API reference documentation for Amazon Location Service Maps APIs to reflect regional restrictions for Grab Maps users
12+
* api-change:``guardduty``: [``botocore``] Migrated to Smithy. No functional changes
13+
* api-change:``lightsail``: [``botocore``] This release adds support for the Asia Pacific (Malaysia) (ap-southeast-5) Region.
14+
* api-change:``mediatailor``: [``botocore``] This change adds support for Tagging the resource types Programs and Prefetch Schedules
15+
* api-change:``qconnect``: [``botocore``] Added optional originRequestId parameter to SendMessageRequest and ListSpans response in Amazon Q in Connect to support request tracing across service boundaries.
16+
* api-change:``transfer``: [``botocore``] AWS Transfer Family Connectors now support IPv6 connectivity, enabling outbound connections to remote SFTP or AS2 servers using IPv4-only or dual-stack (IPv4 and IPv6) configurations based on network requirements.
17+
18+
519
1.42.83
620
=======
721

boto3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from boto3.session import Session
1919

2020
__author__ = 'Amazon Web Services'
21-
__version__ = '1.42.83'
21+
__version__ = '1.42.84'
2222

2323

2424
# The default Boto3 session; autoloaded when needed.

0 commit comments

Comments
 (0)