Skip to content

Commit b62e007

Browse files
authored
Merge pull request #22525 from github/repo-sync
repo sync
2 parents 6de72bb + 4d6cfa4 commit b62e007

File tree

53 files changed

+1700
-1432
lines changed

Some content is hidden

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

53 files changed

+1700
-1432
lines changed

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,22 @@ upcoming_changes:
8484
date: '2022-10-01T00:00:00+00:00'
8585
criticality: breaking
8686
owner: jamestran201
87+
- location: PackageType.NPM
88+
description: '`NPM` will be removed.'
89+
reason:
90+
NPM will be removed from this enum as this type will be migrated to only
91+
be used by the Packages REST API.
92+
date: '2022-11-21'
93+
criticality: breaking
94+
owner: s-anupam
95+
- location: PackageType.NUGET
96+
description: '`NUGET` will be removed.'
97+
reason:
98+
NUGET will be removed from this enum as this type will be migrated to only
99+
be used by the Packages REST API.
100+
date: '2022-11-21'
101+
criticality: breaking
102+
owner: s-anupam
87103
- location: Commit.changedFiles
88104
description: '`changedFiles` will be removed. Use `changedFilesIfAvailable` instead.'
89105
reason: '`changedFiles` will be removed.'

data/graphql/ghae/schema.docs-ghae.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43934,7 +43934,7 @@ type Workflow implements Node {
4393443934
"""
4393543935
A workflow run.
4393643936
"""
43937-
type WorkflowRun implements Node {
43937+
type WorkflowRun implements Node & UniformResourceLocatable {
4393843938
"""
4393943939
The check suite this workflow run belongs to.
4394043940
"""

data/graphql/ghec/graphql_upcoming_changes.public.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,22 @@ upcoming_changes:
118118
date: '2022-10-01T00:00:00+00:00'
119119
criticality: breaking
120120
owner: memex
121+
- location: PackageType.NPM
122+
description: '`NPM` will be removed.'
123+
reason:
124+
NPM will be removed from this enum as this type will be migrated to only
125+
be used by the Packages REST API.
126+
date: '2022-11-21'
127+
criticality: breaking
128+
owner: s-anupam
129+
- location: PackageType.NUGET
130+
description: '`NUGET` will be removed.'
131+
reason:
132+
NUGET will be removed from this enum as this type will be migrated to only
133+
be used by the Packages REST API.
134+
date: '2022-11-21'
135+
criticality: breaking
136+
owner: s-anupam
121137
- location: AddProjectDraftIssueInput.assigneeIds
122138
description:
123139
'`assigneeIds` will be removed. Follow the ProjectV2 guide at https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/,

data/graphql/ghec/schema.docs.graphql

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27511,11 +27511,17 @@ enum PackageType {
2751127511
An npm package.
2751227512
"""
2751327513
NPM
27514+
@deprecated(
27515+
reason: "NPM will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC."
27516+
)
2751427517

2751527518
"""
2751627519
A nuget package.
2751727520
"""
2751827521
NUGET
27522+
@deprecated(
27523+
reason: "NUGET will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC."
27524+
)
2751927525

2752027526
"""
2752127527
A python package.
@@ -45557,6 +45563,12 @@ type SponsorsListing implements Node {
4555745563
featureableTypes: [SponsorsListingFeaturedItemFeatureableType!] = [REPOSITORY, USER]
4555845564
): [SponsorsListingFeaturedItem!]!
4555945565

45566+
"""
45567+
The fiscal host used for payments, if any. Will only return a value when
45568+
queried by the maintainer themselves, or by an admin of the sponsorable organization.
45569+
"""
45570+
fiscalHost: Organization
45571+
4556045572
"""
4556145573
The full description of the listing.
4556245574
"""
@@ -54970,7 +54982,7 @@ type Workflow implements Node {
5497054982
"""
5497154983
A workflow run.
5497254984
"""
54973-
type WorkflowRun implements Node {
54985+
type WorkflowRun implements Node & UniformResourceLocatable {
5497454986
"""
5497554987
The check suite this workflow run belongs to.
5497654988
"""

data/graphql/graphql_upcoming_changes.public.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,22 @@ upcoming_changes:
118118
date: '2022-10-01T00:00:00+00:00'
119119
criticality: breaking
120120
owner: memex
121+
- location: PackageType.NPM
122+
description: '`NPM` will be removed.'
123+
reason:
124+
NPM will be removed from this enum as this type will be migrated to only
125+
be used by the Packages REST API.
126+
date: '2022-11-21'
127+
criticality: breaking
128+
owner: s-anupam
129+
- location: PackageType.NUGET
130+
description: '`NUGET` will be removed.'
131+
reason:
132+
NUGET will be removed from this enum as this type will be migrated to only
133+
be used by the Packages REST API.
134+
date: '2022-11-21'
135+
criticality: breaking
136+
owner: s-anupam
121137
- location: AddProjectDraftIssueInput.assigneeIds
122138
description:
123139
'`assigneeIds` will be removed. Follow the ProjectV2 guide at https://github.blog/changelog/2022-06-23-the-new-github-issues-june-23rd-update/,

data/graphql/schema.docs.graphql

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27511,11 +27511,17 @@ enum PackageType {
2751127511
An npm package.
2751227512
"""
2751327513
NPM
27514+
@deprecated(
27515+
reason: "NPM will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC."
27516+
)
2751427517

2751527518
"""
2751627519
A nuget package.
2751727520
"""
2751827521
NUGET
27522+
@deprecated(
27523+
reason: "NUGET will be removed from this enum as this type will be migrated to only be used by the Packages REST API. Removal on 2022-11-21 UTC."
27524+
)
2751927525

2752027526
"""
2752127527
A python package.
@@ -45557,6 +45563,12 @@ type SponsorsListing implements Node {
4555745563
featureableTypes: [SponsorsListingFeaturedItemFeatureableType!] = [REPOSITORY, USER]
4555845564
): [SponsorsListingFeaturedItem!]!
4555945565

45566+
"""
45567+
The fiscal host used for payments, if any. Will only return a value when
45568+
queried by the maintainer themselves, or by an admin of the sponsorable organization.
45569+
"""
45570+
fiscalHost: Organization
45571+
4556045572
"""
4556145573
The full description of the listing.
4556245574
"""
@@ -54970,7 +54982,7 @@ type Workflow implements Node {
5497054982
"""
5497154983
A workflow run.
5497254984
"""
54973-
type WorkflowRun implements Node {
54985+
type WorkflowRun implements Node & UniformResourceLocatable {
5497454986
"""
5497554987
The check suite this workflow run belongs to.
5497654988
"""

lib/graphql/static/changelog.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Field <code>fiscalHost</code> was added to object type <code>SponsorsListing</code></p>",
8+
"<p><code>WorkflowRun</code> object implements <code>UniformResourceLocatable</code> interface</p>"
9+
]
10+
}
11+
],
12+
"previewChanges": [],
13+
"upcomingChanges": [
14+
{
15+
"title": "The following changes will be made to the schema:",
16+
"changes": [
17+
"<p>On member <code>PackageType.NPM</code>:<code>NPM</code> will be removed. <strong>Effective 2022-11-21</strong>.</p>",
18+
"<p>On member <code>PackageType.NUGET</code>:<code>NUGET</code> will be removed. <strong>Effective 2022-11-21</strong>.</p>"
19+
]
20+
}
21+
],
22+
"date": "2022-12-07"
23+
},
224
{
325
"schemaChanges": [
426
{

lib/graphql/static/schema-dotcom.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61866,6 +61866,14 @@
6186661866
}
6186761867
]
6186861868
},
61869+
{
61870+
"name": "fiscalHost",
61871+
"description": "<p>The fiscal host used for payments, if any. Will only return a value when\nqueried by the maintainer themselves, or by an admin of the sponsorable organization.</p>",
61872+
"type": "Organization",
61873+
"id": "organization",
61874+
"kind": "objects",
61875+
"href": "/graphql/reference/objects#organization"
61876+
},
6186961877
{
6187061878
"name": "fullDescription",
6187161879
"description": "<p>The full description of the listing.</p>",
@@ -71563,6 +71571,11 @@
7156371571
"name": "Node",
7156471572
"id": "node",
7156571573
"href": "/graphql/reference/interfaces#node"
71574+
},
71575+
{
71576+
"name": "UniformResourceLocatable",
71577+
"id": "uniformresourcelocatable",
71578+
"href": "/graphql/reference/interfaces#uniformresourcelocatable"
7156671579
}
7156771580
],
7156871581
"fields": [

lib/graphql/static/schema-ghae.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58255,6 +58255,11 @@
5825558255
"name": "Node",
5825658256
"id": "node",
5825758257
"href": "/graphql/reference/interfaces#node"
58258+
},
58259+
{
58260+
"name": "UniformResourceLocatable",
58261+
"id": "uniformresourcelocatable",
58262+
"href": "/graphql/reference/interfaces#uniformresourcelocatable"
5825858263
}
5825958264
],
5826058265
"fields": [

lib/graphql/static/schema-ghec.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61866,6 +61866,14 @@
6186661866
}
6186761867
]
6186861868
},
61869+
{
61870+
"name": "fiscalHost",
61871+
"description": "<p>The fiscal host used for payments, if any. Will only return a value when\nqueried by the maintainer themselves, or by an admin of the sponsorable organization.</p>",
61872+
"type": "Organization",
61873+
"id": "organization",
61874+
"kind": "objects",
61875+
"href": "/graphql/reference/objects#organization"
61876+
},
6186961877
{
6187061878
"name": "fullDescription",
6187161879
"description": "<p>The full description of the listing.</p>",
@@ -71563,6 +71571,11 @@
7156371571
"name": "Node",
7156471572
"id": "node",
7156571573
"href": "/graphql/reference/interfaces#node"
71574+
},
71575+
{
71576+
"name": "UniformResourceLocatable",
71577+
"id": "uniformresourcelocatable",
71578+
"href": "/graphql/reference/interfaces#uniformresourcelocatable"
7156671579
}
7156771580
],
7156871581
"fields": [

0 commit comments

Comments
 (0)