Skip to content

repo sync #24814

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,12 @@ upcoming_changes:
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: jamestran201
- location: Commit.pushedDate
description: '`pushedDate` will be removed.'
reason: '`pushedDate` is no longer supported.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: darthwillis
- location: MergeQueue.headOid
description: '`headOid` will be removed. Use `entry.headOid` instead.'
reason: '`headOid` will be removed.'
Expand Down
9 changes: 7 additions & 2 deletions data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -4229,7 +4229,7 @@ type Commit implements GitObject & Node & Subscribable & UniformResourceLocatabl
"""
The datetime when this commit was pushed.
"""
pushedDate: DateTime
pushedDate: DateTime @deprecated(reason: "`pushedDate` is no longer supported. Removal on 2023-07-01 UTC.")

"""
The Repository this commit belongs to
Expand Down Expand Up @@ -8932,6 +8932,11 @@ enum DeploymentState {
"""
QUEUED

"""
The deployment was successful.
"""
SUCCESS

"""
The deployment is waiting.
"""
Expand Down Expand Up @@ -36363,7 +36368,7 @@ input RequestReviewsInput {
"""
Add users to the set rather than replace.
"""
union: Boolean
union: Boolean = false

"""
The Node IDs of the user to request.
Expand Down
6 changes: 6 additions & 0 deletions data/graphql/ghec/graphql_upcoming_changes.public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,12 @@ upcoming_changes:
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: jamestran201
- location: Commit.pushedDate
description: '`pushedDate` will be removed.'
reason: '`pushedDate` is no longer supported.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: darthwillis
- location: MergeQueue.headOid
description: '`headOid` will be removed. Use `entry.headOid` instead.'
reason: '`headOid` will be removed.'
Expand Down
9 changes: 7 additions & 2 deletions data/graphql/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -4622,7 +4622,7 @@ type Commit implements GitObject & Node & Subscribable & UniformResourceLocatabl
"""
The datetime when this commit was pushed.
"""
pushedDate: DateTime
pushedDate: DateTime @deprecated(reason: "`pushedDate` is no longer supported. Removal on 2023-07-01 UTC.")

"""
The Repository this commit belongs to
Expand Down Expand Up @@ -9982,6 +9982,11 @@ enum DeploymentState {
"""
QUEUED

"""
The deployment was successful.
"""
SUCCESS

"""
The deployment is waiting.
"""
Expand Down Expand Up @@ -43299,7 +43304,7 @@ input RequestReviewsInput {
"""
Add users to the set rather than replace.
"""
union: Boolean
union: Boolean = false

"""
The Node IDs of the user to request.
Expand Down
6 changes: 6 additions & 0 deletions data/graphql/graphql_upcoming_changes.public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,12 @@ upcoming_changes:
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: jamestran201
- location: Commit.pushedDate
description: '`pushedDate` will be removed.'
reason: '`pushedDate` is no longer supported.'
date: '2023-07-01T00:00:00+00:00'
criticality: breaking
owner: darthwillis
- location: MergeQueue.headOid
description: '`headOid` will be removed. Use `entry.headOid` instead.'
reason: '`headOid` will be removed.'
Expand Down
9 changes: 7 additions & 2 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -4622,7 +4622,7 @@ type Commit implements GitObject & Node & Subscribable & UniformResourceLocatabl
"""
The datetime when this commit was pushed.
"""
pushedDate: DateTime
pushedDate: DateTime @deprecated(reason: "`pushedDate` is no longer supported. Removal on 2023-07-01 UTC.")

"""
The Repository this commit belongs to
Expand Down Expand Up @@ -9982,6 +9982,11 @@ enum DeploymentState {
"""
QUEUED

"""
The deployment was successful.
"""
SUCCESS

"""
The deployment is waiting.
"""
Expand Down Expand Up @@ -43299,7 +43304,7 @@ input RequestReviewsInput {
"""
Add users to the set rather than replace.
"""
union: Boolean
union: Boolean = false

"""
The Node IDs of the user to request.
Expand Down
20 changes: 20 additions & 0 deletions src/graphql/data/dotcom/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Enum value <code>SUCCESS</code> was added to enum <code>DeploymentState</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [
{
"title": "The following changes will be made to the schema:",
"changes": [
"<p>On member <code>Commit.pushedDate</code>:<code>pushedDate</code> will be removed. <strong>Effective 2023-07-01</strong>.</p>"
]
}
],
"date": "2023-04-01"
},
{
"schemaChanges": [
{
Expand Down
8 changes: 7 additions & 1 deletion src/graphql/data/dotcom/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12890,7 +12890,9 @@
"type": "DateTime",
"id": "datetime",
"kind": "scalars",
"href": "/graphql/reference/scalars#datetime"
"href": "/graphql/reference/scalars#datetime",
"isDeprecated": true,
"deprecationReason": "<p><code>pushedDate</code> is no longer supported. Removal on 2023-07-01 UTC.</p>"
},
{
"name": "repository",
Expand Down Expand Up @@ -75911,6 +75913,10 @@
"name": "QUEUED",
"description": "<p>The deployment has queued.</p>"
},
{
"name": "SUCCESS",
"description": "<p>The deployment was successful.</p>"
},
{
"name": "WAITING",
"description": "<p>The deployment is waiting.</p>"
Expand Down
8 changes: 8 additions & 0 deletions src/graphql/data/dotcom/upcoming-changes.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,14 @@
"date": "2023-07-01",
"criticality": "breaking",
"owner": "github/merge_queue"
},
{
"location": "Commit.pushedDate",
"description": "<p><code>pushedDate</code> will be removed.</p>",
"reason": "<p><code>pushedDate</code> is no longer supported.</p>",
"date": "2023-07-01",
"criticality": "breaking",
"owner": "darthwillis"
}
],
"2023-04-01": [
Expand Down
8 changes: 7 additions & 1 deletion src/graphql/data/ghae/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10807,7 +10807,9 @@
"type": "DateTime",
"id": "datetime",
"kind": "scalars",
"href": "/graphql/reference/scalars#datetime"
"href": "/graphql/reference/scalars#datetime",
"isDeprecated": true,
"deprecationReason": "<p><code>pushedDate</code> is no longer supported. Removal on 2023-07-01 UTC.</p>"
},
{
"name": "repository",
Expand Down Expand Up @@ -63252,6 +63254,10 @@
"name": "QUEUED",
"description": "<p>The deployment has queued.</p>"
},
{
"name": "SUCCESS",
"description": "<p>The deployment was successful.</p>"
},
{
"name": "WAITING",
"description": "<p>The deployment is waiting.</p>"
Expand Down
8 changes: 8 additions & 0 deletions src/graphql/data/ghae/upcoming-changes.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,14 @@
"date": "2023-07-01",
"criticality": "breaking",
"owner": "github/merge_queue"
},
{
"location": "Commit.pushedDate",
"description": "<p><code>pushedDate</code> will be removed.</p>",
"reason": "<p><code>pushedDate</code> is no longer supported.</p>",
"date": "2023-07-01",
"criticality": "breaking",
"owner": "darthwillis"
}
],
"2023-04-01": [
Expand Down
8 changes: 7 additions & 1 deletion src/graphql/data/ghec/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12890,7 +12890,9 @@
"type": "DateTime",
"id": "datetime",
"kind": "scalars",
"href": "/graphql/reference/scalars#datetime"
"href": "/graphql/reference/scalars#datetime",
"isDeprecated": true,
"deprecationReason": "<p><code>pushedDate</code> is no longer supported. Removal on 2023-07-01 UTC.</p>"
},
{
"name": "repository",
Expand Down Expand Up @@ -75911,6 +75913,10 @@
"name": "QUEUED",
"description": "<p>The deployment has queued.</p>"
},
{
"name": "SUCCESS",
"description": "<p>The deployment was successful.</p>"
},
{
"name": "WAITING",
"description": "<p>The deployment is waiting.</p>"
Expand Down
8 changes: 8 additions & 0 deletions src/graphql/data/ghec/upcoming-changes.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,14 @@
"date": "2023-07-01",
"criticality": "breaking",
"owner": "github/merge_queue"
},
{
"location": "Commit.pushedDate",
"description": "<p><code>pushedDate</code> will be removed.</p>",
"reason": "<p><code>pushedDate</code> is no longer supported.</p>",
"date": "2023-07-01",
"criticality": "breaking",
"owner": "darthwillis"
}
],
"2023-04-01": [
Expand Down