Skip to content

Commit f5a4a17

Browse files
Octomergerrachmari
andauthored
GraphQL schema update (github#34569)
Co-authored-by: rachmari <[email protected]>
1 parent f09993a commit f5a4a17

5 files changed

+103
-0
lines changed

data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml

+12
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,12 @@ upcoming_changes:
196196
date: '2023-07-01T00:00:00+00:00'
197197
criticality: breaking
198198
owner: github/merge_queue
199+
- location: MergeQueueEntry.baseOid
200+
description: '`baseOid` will be removed. Use `baseCommit` instead.'
201+
reason: '`baseOid` will be removed.'
202+
date: '2023-07-01T00:00:00+00:00'
203+
criticality: breaking
204+
owner: github/merge_queue
199205
- location: MergeQueueEntry.blockedByMergeConflicts
200206
description: '`blockedByMergeConflicts` will be removed. Use `state` instead.'
201207
reason: '`blockedByMergeConflicts` will be removed.'
@@ -214,6 +220,12 @@ upcoming_changes:
214220
date: '2023-07-01T00:00:00+00:00'
215221
criticality: breaking
216222
owner: github/merge_queue
223+
- location: MergeQueueEntry.headOid
224+
description: '`headOid` will be removed. Use `headCommit` instead.'
225+
reason: '`headOid` will be removed.'
226+
date: '2023-07-01T00:00:00+00:00'
227+
criticality: breaking
228+
owner: github/merge_queue
217229
- location: MergeQueueEntry.isSolo
218230
description: '`isSolo` will be removed. Use `solo` instead.'
219231
reason: '`isSolo` will be removed.'

data/graphql/ghec/graphql_upcoming_changes.public.yml

+12
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,12 @@ upcoming_changes:
216216
date: '2023-07-01T00:00:00+00:00'
217217
criticality: breaking
218218
owner: github/merge_queue
219+
- location: MergeQueueEntry.baseOid
220+
description: '`baseOid` will be removed. Use `baseCommit` instead.'
221+
reason: '`baseOid` will be removed.'
222+
date: '2023-07-01T00:00:00+00:00'
223+
criticality: breaking
224+
owner: github/merge_queue
219225
- location: MergeQueueEntry.blockedByMergeConflicts
220226
description: '`blockedByMergeConflicts` will be removed. Use `state` instead.'
221227
reason: '`blockedByMergeConflicts` will be removed.'
@@ -234,6 +240,12 @@ upcoming_changes:
234240
date: '2023-07-01T00:00:00+00:00'
235241
criticality: breaking
236242
owner: github/merge_queue
243+
- location: MergeQueueEntry.headOid
244+
description: '`headOid` will be removed. Use `headCommit` instead.'
245+
reason: '`headOid` will be removed.'
246+
date: '2023-07-01T00:00:00+00:00'
247+
criticality: breaking
248+
owner: github/merge_queue
237249
- location: MergeQueueEntry.isSolo
238250
description: '`isSolo` will be removed. Use `solo` instead.'
239251
reason: '`isSolo` will be removed.'

data/graphql/graphql_upcoming_changes.public.yml

+12
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,12 @@ upcoming_changes:
216216
date: '2023-07-01T00:00:00+00:00'
217217
criticality: breaking
218218
owner: github/merge_queue
219+
- location: MergeQueueEntry.baseOid
220+
description: '`baseOid` will be removed. Use `baseCommit` instead.'
221+
reason: '`baseOid` will be removed.'
222+
date: '2023-07-01T00:00:00+00:00'
223+
criticality: breaking
224+
owner: github/merge_queue
219225
- location: MergeQueueEntry.blockedByMergeConflicts
220226
description: '`blockedByMergeConflicts` will be removed. Use `state` instead.'
221227
reason: '`blockedByMergeConflicts` will be removed.'
@@ -234,6 +240,12 @@ upcoming_changes:
234240
date: '2023-07-01T00:00:00+00:00'
235241
criticality: breaking
236242
owner: github/merge_queue
243+
- location: MergeQueueEntry.headOid
244+
description: '`headOid` will be removed. Use `headCommit` instead.'
245+
reason: '`headOid` will be removed.'
246+
date: '2023-07-01T00:00:00+00:00'
247+
criticality: breaking
248+
owner: github/merge_queue
237249
- location: MergeQueueEntry.isSolo
238250
description: '`isSolo` will be removed. Use `solo` instead.'
239251
reason: '`isSolo` will be removed.'

lib/graphql/static/changelog.json

+19
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": []
7+
}
8+
],
9+
"previewChanges": [],
10+
"upcomingChanges": [
11+
{
12+
"title": "The following changes will be made to the schema:",
13+
"changes": [
14+
"<p>On member <code>MergeQueueEntry.baseOid</code>:<code>baseOid</code> will be removed. Use <code>baseCommit</code> instead. <strong>Effective 2023-07-01</strong>.</p>",
15+
"<p>On member <code>MergeQueueEntry.headOid</code>:<code>headOid</code> will be removed. Use <code>headCommit</code> instead. <strong>Effective 2023-07-01</strong>.</p>"
16+
]
17+
}
18+
],
19+
"date": "2023-02-08"
20+
},
221
{
322
"schemaChanges": [
423
{

lib/graphql/static/upcoming-changes.json

+48
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@
1717
"criticality": "breaking",
1818
"owner": "github/merge_queue"
1919
},
20+
{
21+
"location": "MergeQueueEntry.headOid",
22+
"description": "<p><code>headOid</code> will be removed. Use <code>headCommit</code> instead.</p>",
23+
"reason": "<p><code>headOid</code> will be removed.</p>",
24+
"date": "2023-07-01",
25+
"criticality": "breaking",
26+
"owner": "github/merge_queue"
27+
},
2028
{
2129
"location": "MergeQueueEntry.hasJumpedQueue",
2230
"description": "<p><code>hasJumpedQueue</code> will be removed. Use <code>jump</code> instead.</p>",
@@ -41,6 +49,14 @@
4149
"criticality": "breaking",
4250
"owner": "github/merge_queue"
4351
},
52+
{
53+
"location": "MergeQueueEntry.baseOid",
54+
"description": "<p><code>baseOid</code> will be removed. Use <code>baseCommit</code> instead.</p>",
55+
"reason": "<p><code>baseOid</code> will be removed.</p>",
56+
"date": "2023-07-01",
57+
"criticality": "breaking",
58+
"owner": "github/merge_queue"
59+
},
4460
{
4561
"location": "MergeQueue.pendingRemovalEntries",
4662
"description": "<p><code>pendingRemovalEntries</code> will be removed.</p>",
@@ -321,6 +337,14 @@
321337
"criticality": "breaking",
322338
"owner": "github/merge_queue"
323339
},
340+
{
341+
"location": "MergeQueueEntry.headOid",
342+
"description": "<p><code>headOid</code> will be removed. Use <code>headCommit</code> instead.</p>",
343+
"reason": "<p><code>headOid</code> will be removed.</p>",
344+
"date": "2023-07-01",
345+
"criticality": "breaking",
346+
"owner": "github/merge_queue"
347+
},
324348
{
325349
"location": "MergeQueueEntry.hasJumpedQueue",
326350
"description": "<p><code>hasJumpedQueue</code> will be removed. Use <code>jump</code> instead.</p>",
@@ -345,6 +369,14 @@
345369
"criticality": "breaking",
346370
"owner": "github/merge_queue"
347371
},
372+
{
373+
"location": "MergeQueueEntry.baseOid",
374+
"description": "<p><code>baseOid</code> will be removed. Use <code>baseCommit</code> instead.</p>",
375+
"reason": "<p><code>baseOid</code> will be removed.</p>",
376+
"date": "2023-07-01",
377+
"criticality": "breaking",
378+
"owner": "github/merge_queue"
379+
},
348380
{
349381
"location": "MergeQueue.pendingRemovalEntries",
350382
"description": "<p><code>pendingRemovalEntries</code> will be removed.</p>",
@@ -1555,6 +1587,14 @@
15551587
"criticality": "breaking",
15561588
"owner": "github/merge_queue"
15571589
},
1590+
{
1591+
"location": "MergeQueueEntry.headOid",
1592+
"description": "<p><code>headOid</code> will be removed. Use <code>headCommit</code> instead.</p>",
1593+
"reason": "<p><code>headOid</code> will be removed.</p>",
1594+
"date": "2023-07-01",
1595+
"criticality": "breaking",
1596+
"owner": "github/merge_queue"
1597+
},
15581598
{
15591599
"location": "MergeQueueEntry.hasJumpedQueue",
15601600
"description": "<p><code>hasJumpedQueue</code> will be removed. Use <code>jump</code> instead.</p>",
@@ -1579,6 +1619,14 @@
15791619
"criticality": "breaking",
15801620
"owner": "github/merge_queue"
15811621
},
1622+
{
1623+
"location": "MergeQueueEntry.baseOid",
1624+
"description": "<p><code>baseOid</code> will be removed. Use <code>baseCommit</code> instead.</p>",
1625+
"reason": "<p><code>baseOid</code> will be removed.</p>",
1626+
"date": "2023-07-01",
1627+
"criticality": "breaking",
1628+
"owner": "github/merge_queue"
1629+
},
15821630
{
15831631
"location": "MergeQueue.pendingRemovalEntries",
15841632
"description": "<p><code>pendingRemovalEntries</code> will be removed.</p>",

0 commit comments

Comments
 (0)