Skip to content

Commit 7bc7412

Browse files
committed
Merge remote-tracking branch 'origin/master' into mcculls/java-aot-example
2 parents b56c372 + 4ec2928 commit 7bc7412

File tree

640 files changed

+45025
-9610
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

640 files changed

+45025
-9610
lines changed

.claude/settings.local.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/codeowner_review_status.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,10 @@ jobs:
6060
pull_number: number,
6161
});
6262
63-
// Track latest review state per user
63+
// Track latest review state per user (ignore commented state)
6464
const latestReviews = new Map();
6565
reviews.forEach(review => {
66+
if (review.state === 'COMMENTED') return;
6667
const existing = latestReviews.get(review.user.login);
6768
if (!existing || review.submitted_at > existing.submitted_at) {
6869
latestReviews.set(review.user.login, review);
@@ -200,4 +201,4 @@ jobs:
200201
description: statusDescription,
201202
context: 'Documentation Team Approval'
202203
});
203-
console.log(`Created commit status: ${statusState} - ${statusDescription}`);
204+
console.log(`Created commit status: ${statusState} - ${statusDescription}`);

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,4 +318,7 @@ layouts/shortcodes/mdoc/en/**/*.ast.json
318318

319319

320320
# Deprecated generated file for LLMs (keep so it's not merged back in)
321-
static/llms.txt
321+
static/llms.txt
322+
323+
# AI
324+
.claude/*local*

config/_default/menus/api.en.yaml

Lines changed: 160 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8379,7 +8379,7 @@ menu:
83798379
operationids:
83808380
- CreateIncidentImpact
83818381
unstable: []
8382-
order: 7
8382+
order: 8
83838383
- name: List an incident's impacts
83848384
url: '#list-an-incidents-impacts'
83858385
identifier: incidents-list-an-incidents-impacts
@@ -8391,23 +8391,49 @@ menu:
83918391
operationids:
83928392
- ListIncidentImpacts
83938393
unstable: []
8394-
order: 6
8395-
- name: 'Create, update, and delete incident attachments'
8396-
url: '#create,-update,-and-delete-incident-attachments'
8397-
identifier: 'incidents-create,-update,-and-delete-incident-attachments'
8394+
order: 7
8395+
- name: Update incident attachment
8396+
url: '#update-incident-attachment'
8397+
identifier: incidents-update-incident-attachment
83988398
parent: incidents
83998399
generated: true
84008400
params:
84018401
versions:
84028402
- v2
84038403
operationids:
8404-
- UpdateIncidentAttachments
8404+
- UpdateIncidentAttachment
84058405
unstable:
84068406
- v2
8407-
order: 8
8408-
- name: Get a list of attachments
8409-
url: '#get-a-list-of-attachments'
8410-
identifier: incidents-get-a-list-of-attachments
8407+
order: 37
8408+
- name: Delete incident attachment
8409+
url: '#delete-incident-attachment'
8410+
identifier: incidents-delete-incident-attachment
8411+
parent: incidents
8412+
generated: true
8413+
params:
8414+
versions:
8415+
- v2
8416+
operationids:
8417+
- DeleteIncidentAttachment
8418+
unstable:
8419+
- v2
8420+
order: 36
8421+
- name: Create incident attachment
8422+
url: '#create-incident-attachment'
8423+
identifier: incidents-create-incident-attachment
8424+
parent: incidents
8425+
generated: true
8426+
params:
8427+
versions:
8428+
- v2
8429+
operationids:
8430+
- CreateIncidentAttachment
8431+
unstable:
8432+
- v2
8433+
order: 35
8434+
- name: List incident attachments
8435+
url: '#list-incident-attachments'
8436+
identifier: incidents-list-incident-attachments
84118437
parent: incidents
84128438
generated: true
84138439
params:
@@ -8417,7 +8443,7 @@ menu:
84178443
- ListIncidentAttachments
84188444
unstable:
84198445
- v2
8420-
order: 7
8446+
order: 34
84218447
- name: Update an existing incident
84228448
url: '#update-an-existing-incident'
84238449
identifier: incidents-update-an-existing-incident
@@ -9440,6 +9466,66 @@ menu:
94409466
url: /api/latest/on-call/
94419467
identifier: on-call
94429468
generated: true
9469+
- name: Update an On-Call notification rule for a user
9470+
url: '#update-an-on-call-notification-rule-for-a-user'
9471+
identifier: on-call-update-an-on-call-notification-rule-for-a-user
9472+
parent: on-call
9473+
generated: true
9474+
params:
9475+
versions:
9476+
- v2
9477+
operationids:
9478+
- UpdateUserNotificationRule
9479+
unstable: []
9480+
order: 21
9481+
- name: Get an On-Call notification rule for a user
9482+
url: '#get-an-on-call-notification-rule-for-a-user'
9483+
identifier: on-call-get-an-on-call-notification-rule-for-a-user
9484+
parent: on-call
9485+
generated: true
9486+
params:
9487+
versions:
9488+
- v2
9489+
operationids:
9490+
- GetUserNotificationRule
9491+
unstable: []
9492+
order: 20
9493+
- name: Delete an On-Call notification rule for a user
9494+
url: '#delete-an-on-call-notification-rule-for-a-user'
9495+
identifier: on-call-delete-an-on-call-notification-rule-for-a-user
9496+
parent: on-call
9497+
generated: true
9498+
params:
9499+
versions:
9500+
- v2
9501+
operationids:
9502+
- DeleteUserNotificationRule
9503+
unstable: []
9504+
order: 19
9505+
- name: Create an On-Call notification rule for a user
9506+
url: '#create-an-on-call-notification-rule-for-a-user'
9507+
identifier: on-call-create-an-on-call-notification-rule-for-a-user
9508+
parent: on-call
9509+
generated: true
9510+
params:
9511+
versions:
9512+
- v2
9513+
operationids:
9514+
- CreateUserNotificationRule
9515+
unstable: []
9516+
order: 17
9517+
- name: List On-Call notification rules for a user
9518+
url: '#list-on-call-notification-rules-for-a-user'
9519+
identifier: on-call-list-on-call-notification-rules-for-a-user
9520+
parent: on-call
9521+
generated: true
9522+
params:
9523+
versions:
9524+
- v2
9525+
operationids:
9526+
- ListUserNotificationRules
9527+
unstable: []
9528+
order: 18
94439529
- name: Get an On-Call notification channel for a user
94449530
url: '#get-an-on-call-notification-channel-for-a-user'
94459531
identifier: on-call-get-an-on-call-notification-channel-for-a-user
@@ -11353,6 +11439,66 @@ menu:
1135311439
- GetTeamPermissionSettings
1135411440
unstable: []
1135511441
order: 17
11442+
- name: Update team notification rule
11443+
url: '#update-team-notification-rule'
11444+
identifier: teams-update-team-notification-rule
11445+
parent: teams
11446+
generated: true
11447+
params:
11448+
versions:
11449+
- v2
11450+
operationids:
11451+
- UpdateTeamNotificationRule
11452+
unstable: []
11453+
order: 30
11454+
- name: Get team notification rule
11455+
url: '#get-team-notification-rule'
11456+
identifier: teams-get-team-notification-rule
11457+
parent: teams
11458+
generated: true
11459+
params:
11460+
versions:
11461+
- v2
11462+
operationids:
11463+
- GetTeamNotificationRule
11464+
unstable: []
11465+
order: 29
11466+
- name: Delete team notification rule
11467+
url: '#delete-team-notification-rule'
11468+
identifier: teams-delete-team-notification-rule
11469+
parent: teams
11470+
generated: true
11471+
params:
11472+
versions:
11473+
- v2
11474+
operationids:
11475+
- DeleteTeamNotificationRule
11476+
unstable: []
11477+
order: 31
11478+
- name: Create team notification rule
11479+
url: '#create-team-notification-rule'
11480+
identifier: teams-create-team-notification-rule
11481+
parent: teams
11482+
generated: true
11483+
params:
11484+
versions:
11485+
- v2
11486+
operationids:
11487+
- CreateTeamNotificationRule
11488+
unstable: []
11489+
order: 28
11490+
- name: Get team notification rules
11491+
url: '#get-team-notification-rules'
11492+
identifier: teams-get-team-notification-rules
11493+
parent: teams
11494+
generated: true
11495+
params:
11496+
versions:
11497+
- v2
11498+
operationids:
11499+
- GetTeamNotificationRules
11500+
unstable: []
11501+
order: 27
1135611502
- name: Update a user's membership attributes on a team
1135711503
url: '#update-a-users-membership-attributes-on-a-team'
1135811504
identifier: teams-update-a-users-membership-attributes-on-a-team
@@ -11571,7 +11717,7 @@ menu:
1157111717
operationids:
1157211718
- CreateTeamConnections
1157311719
unstable: []
11574-
order: 2
11720+
order: 25
1157511721
- name: List team connections
1157611722
url: '#list-team-connections'
1157711723
identifier: teams-list-team-connections
@@ -11583,7 +11729,7 @@ menu:
1158311729
operationids:
1158411730
- ListTeamConnections
1158511731
unstable: []
11586-
order: 1
11732+
order: 24
1158711733
- name: Delete team connections
1158811734
url: '#delete-team-connections'
1158911735
identifier: teams-delete-team-connections
@@ -11595,7 +11741,7 @@ menu:
1159511741
operationids:
1159611742
- DeleteTeamConnections
1159711743
unstable: []
11598-
order: 3
11744+
order: 26
1159911745
- name: Get a team hierarchy link
1160011746
url: '#get-a-team-hierarchy-link'
1160111747
identifier: teams-get-a-team-hierarchy-link

0 commit comments

Comments
 (0)