Skip to content

Commit 0e68436

Browse files
Merge branch 'release-1.44.0'
* release-1.44.0: Bumping version to 1.44.0 Update changelog based on model updates Implement upgrade debug mode ci: scope down GitHub Token permissions (#9804)
2 parents 7e01514 + 4a9563d commit 0e68436

40 files changed

+920
-60
lines changed

.changes/1.44.0.json

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
[
2+
{
3+
"category": "``bedrock-agentcore-control``",
4+
"description": "This release updates broken links for AgentCore Policy APIs in the AWS CLI and SDK resources.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``connect``",
9+
"description": "Amazon Connect now supports outbound WhatsApp contacts via the Send message block or StartOutboundChatContact API. Send proactive messages for surveys, reminders, and updates. Offer customers the option to switch to WhatsApp while in queue, eliminating hold time.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``ec2``",
14+
"description": "EC2 Capacity Manager now supports SpotTotalCount, SpotTotalInterruptions and SpotInterruptionRate metrics for both vCPU and instance units.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``endpoint-rules``",
19+
"description": "Update endpoint-rules command to latest version",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``entityresolution``",
24+
"description": "Support Customer Profiles Integration for AWS Entity Resolution",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``glacier``",
29+
"description": "Documentation updates for Amazon Glacier's maintenance mode",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``health``",
34+
"description": "Updating Health API endpoint generation for dualstack only regions",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``logs``",
39+
"description": "This release allows you to import your historical CloudTrail Lake data into CloudWatch with a few steps, enabling you to easily consolidate operational, security, and compliance data in one place.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``mediatailor``",
44+
"description": "Added support for Ad Decision Server Configuration enabling HTTP POST requests with custom bodies, headers, GZIP compression, and dynamic variables. No changes required for existing GET request configurations.",
45+
"type": "api-change"
46+
},
47+
{
48+
"category": "``route53resolver``",
49+
"description": "Adds support for enabling detailed metrics on Route 53 Resolver endpoints using RniEnhancedMetricsEnabled and TargetNameServerMetricsEnabled in the CreateResolverEndpoint and UpdateResolverEndpoint APIs, providing enhanced visibility into Resolver endpoint and target name server performance.",
50+
"type": "api-change"
51+
},
52+
{
53+
"category": "``s3``",
54+
"description": "This release adds support for the new optional field 'LifecycleExpirationDate' in S3 Inventory configurations.",
55+
"type": "api-change"
56+
},
57+
{
58+
"category": "``service-quotas``",
59+
"description": "Add support for SQ Dashboard Api",
60+
"type": "api-change"
61+
},
62+
{
63+
"category": "Migration",
64+
"description": "Implement a ``--v2-debug`` flag and ``AWS_CLI_UPGRADE_DEBUG_MODE`` environment variable that detects breaking changes for AWS CLI v2 for entered commands.",
65+
"type": "feature"
66+
}
67+
]

.github/workflows/changelog.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ on:
4141
link.
4242
required: true
4343

44+
permissions:
45+
contents: write
46+
4447
jobs:
4548
add-changelog:
4649
runs-on: Ubuntu-latest

.github/workflows/closed-issue-message.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Closed Issue Message
22
on:
33
issues:
44
types: [closed]
5+
permissions:
6+
issues: write
7+
58
jobs:
69
auto_comment:
710
runs-on: ubuntu-latest

.github/workflows/doc-pr-cherry-pick.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
type: string
99
required: true
1010

11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
1115
jobs:
1216
cherry_pick_and_create_pr:
1317
runs-on: ubuntu-latest

.github/workflows/fail-master-prs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
pull_request:
55
branches: [ master ]
66

7+
permissions:
8+
contents: read
9+
710
jobs:
811
fail:
912
runs-on: ubuntu-latest

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
pull_request:
99
branches-ignore: [ master ]
1010

11+
permissions:
12+
contents: read
13+
1114
jobs:
1215
test-bundle:
1316
runs-on: ${{ matrix.os }}

.github/workflows/run-dep-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
pull_request:
66
branches-ignore: [ master ]
77

8+
permissions:
9+
contents: read
10+
811
jobs:
912
build:
1013

.github/workflows/run-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
pull_request:
66
branches-ignore: [ master ]
77

8+
permissions:
9+
contents: read
10+
811
jobs:
912
build:
1013

.github/workflows/stale_community_prs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: 'Check stale community PRs.'
22
on: workflow_dispatch
33

4+
permissions:
5+
pull-requests: write
6+
47
jobs:
58
stale-implementation-stage:
69
runs-on: ubuntu-latest

.github/workflows/update-lockfiles.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ on:
2020
the generated files.
2121
2222
23+
permissions:
24+
contents: write
25+
2326
jobs:
2427

2528
update-lockfiles:

0 commit comments

Comments
 (0)