Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
14 changes: 14 additions & 0 deletions data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,17 @@ upcoming_changes:
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
- location: PullRequest.viewerCanOverrideMergeQueue
description:
'`viewerCanOverrideMergeQueue` will be removed. Use PullRequest.viewerCanMergeAsAdmin
instead.'
reason: '`viewer_can_override_merge_queue` will be removed'
date: '2022-04-01'
criticality: breaking
owner: cbeaman
- location: Repository.defaultMergeQueue
description: '`defaultMergeQueue` will be removed. Use `Repository.mergeQueue` instead.'
reason: '`defaultMergeQueue` will be removed.'
date: '2022-04-01'
criticality: breaking
owner: colinshum
21 changes: 20 additions & 1 deletion data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
directive @requiredCapabilities(
requiredCapabilities: [String!]
) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION

"""
Marks an element of a GraphQL schema as only available via a preview header
"""
Expand All @@ -6,7 +10,7 @@ directive @preview(
The identifier of the API preview that toggles this field.
"""
toggledBy: String!
) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION

"""
Defines what type of global IDs are accepted for a mutation argument of type ID.
Expand Down Expand Up @@ -25392,6 +25396,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
"""
viewerCanEnableAutoMerge: Boolean!

"""
Indicates whether the viewer can bypass branch protections and merge the pull request immediately
"""
viewerCanMergeAsAdmin: Boolean!

"""
Can user react to this subject
"""
Expand Down Expand Up @@ -35667,6 +35676,11 @@ type StarredRepositoryEdge {
Autogenerated input type of StartRepositoryMigration
"""
input StartRepositoryMigrationInput {
"""
The Octoshift migration source access token.
"""
accessToken: String

"""
A unique identifier for the client performing the mutation.
"""
Expand All @@ -35682,6 +35696,11 @@ input StartRepositoryMigrationInput {
"""
gitArchiveUrl: String

"""
The GitHub personal access token of the user importing to the target repository.
"""
githubPat: String

"""
The signed URL to access the user-uploaded metadata archive
"""
Expand Down
22 changes: 22 additions & 0 deletions data/graphql/ghec/graphql_upcoming_changes.public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,25 @@ upcoming_changes:
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
- location: PullRequest.viewerCanOverrideMergeQueue
description:
'`viewerCanOverrideMergeQueue` will be removed. Use PullRequest.viewerCanMergeAsAdmin
instead.'
reason: '`viewer_can_override_merge_queue` will be removed'
date: '2022-04-01'
criticality: breaking
owner: cbeaman
- location: Repository.defaultMergeQueue
description: '`defaultMergeQueue` will be removed. Use `Repository.mergeQueue` instead.'
reason: '`defaultMergeQueue` will be removed.'
date: '2022-04-01'
criticality: breaking
owner: colinshum
- location: Query.sponsorables.dependencyEcosystem
description:
'`dependencyEcosystem` will be removed. Use the ecosystem argument
instead.'
reason: The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.
date: '2022-07-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
77 changes: 76 additions & 1 deletion data/graphql/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
directive @requiredCapabilities(
requiredCapabilities: [String!]
) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION

"""
Marks an element of a GraphQL schema as only available via a preview header
"""
Expand All @@ -6,7 +10,7 @@ directive @preview(
The identifier of the API preview that toggles this field.
"""
toggledBy: String!
) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION

"""
Defines what type of global IDs are accepted for a mutation argument of type ID.
Expand Down Expand Up @@ -7935,6 +7939,51 @@ type DependencyGraphDependencyEdge @preview(toggledBy: "hawkgirl-preview") {
node: DependencyGraphDependency
}

"""
The possible ecosystems of a dependency graph package.
"""
enum DependencyGraphEcosystem {
"""
GitHub Actions
"""
ACTIONS

"""
PHP packages hosted at packagist.org
"""
COMPOSER

"""
Go modules
"""
GO

"""
Java artifacts hosted at the Maven central repository
"""
MAVEN

"""
JavaScript packages hosted at npmjs.com
"""
NPM

"""
.NET packages hosted at the NuGet Gallery
"""
NUGET

"""
Python packages hosted at PyPI.org
"""
PIP

"""
Ruby gems hosted at RubyGems.org
"""
RUBYGEMS
}

"""
Dependency manifest for a repository
"""
Expand Down Expand Up @@ -28713,6 +28762,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
"""
viewerCanEnableAutoMerge: Boolean!

"""
Indicates whether the viewer can bypass branch protections and merge the pull request immediately
"""
viewerCanMergeAsAdmin: Boolean!

"""
Can user react to this subject
"""
Expand Down Expand Up @@ -31055,9 +31109,20 @@ type Query {
Optional filter for which dependencies should be checked for sponsorable
owners. Only sponsorable owners of dependencies in this ecosystem will be
included. Used when onlyDependencies = true.

**Upcoming Change on 2022-07-01 UTC**
**Description:** `dependencyEcosystem` will be removed. Use the ecosystem argument instead.
**Reason:** The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.
"""
dependencyEcosystem: SecurityAdvisoryEcosystem

"""
Optional filter for which dependencies should be checked for sponsorable
owners. Only sponsorable owners of dependencies in this ecosystem will be
included. Used when onlyDependencies = true.
"""
ecosystem: DependencyGraphEcosystem

"""
Returns the first _n_ elements from the list.
"""
Expand Down Expand Up @@ -40957,6 +41022,11 @@ type StarredRepositoryEdge {
Autogenerated input type of StartRepositoryMigration
"""
input StartRepositoryMigrationInput {
"""
The Octoshift migration source access token.
"""
accessToken: String

"""
A unique identifier for the client performing the mutation.
"""
Expand All @@ -40972,6 +41042,11 @@ input StartRepositoryMigrationInput {
"""
gitArchiveUrl: String

"""
The GitHub personal access token of the user importing to the target repository.
"""
githubPat: String

"""
The signed URL to access the user-uploaded metadata archive
"""
Expand Down
22 changes: 22 additions & 0 deletions data/graphql/graphql_upcoming_changes.public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,25 @@ upcoming_changes:
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
- location: PullRequest.viewerCanOverrideMergeQueue
description:
'`viewerCanOverrideMergeQueue` will be removed. Use PullRequest.viewerCanMergeAsAdmin
instead.'
reason: '`viewer_can_override_merge_queue` will be removed'
date: '2022-04-01'
criticality: breaking
owner: cbeaman
- location: Repository.defaultMergeQueue
description: '`defaultMergeQueue` will be removed. Use `Repository.mergeQueue` instead.'
reason: '`defaultMergeQueue` will be removed.'
date: '2022-04-01'
criticality: breaking
owner: colinshum
- location: Query.sponsorables.dependencyEcosystem
description:
'`dependencyEcosystem` will be removed. Use the ecosystem argument
instead.'
reason: The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.
date: '2022-07-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
77 changes: 76 additions & 1 deletion data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
directive @requiredCapabilities(
requiredCapabilities: [String!]
) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION

"""
Marks an element of a GraphQL schema as only available via a preview header
"""
Expand All @@ -6,7 +10,7 @@ directive @preview(
The identifier of the API preview that toggles this field.
"""
toggledBy: String!
) on SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION
) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION

"""
Defines what type of global IDs are accepted for a mutation argument of type ID.
Expand Down Expand Up @@ -7935,6 +7939,51 @@ type DependencyGraphDependencyEdge @preview(toggledBy: "hawkgirl-preview") {
node: DependencyGraphDependency
}

"""
The possible ecosystems of a dependency graph package.
"""
enum DependencyGraphEcosystem {
"""
GitHub Actions
"""
ACTIONS

"""
PHP packages hosted at packagist.org
"""
COMPOSER

"""
Go modules
"""
GO

"""
Java artifacts hosted at the Maven central repository
"""
MAVEN

"""
JavaScript packages hosted at npmjs.com
"""
NPM

"""
.NET packages hosted at the NuGet Gallery
"""
NUGET

"""
Python packages hosted at PyPI.org
"""
PIP

"""
Ruby gems hosted at RubyGems.org
"""
RUBYGEMS
}

"""
Dependency manifest for a repository
"""
Expand Down Expand Up @@ -28713,6 +28762,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
"""
viewerCanEnableAutoMerge: Boolean!

"""
Indicates whether the viewer can bypass branch protections and merge the pull request immediately
"""
viewerCanMergeAsAdmin: Boolean!

"""
Can user react to this subject
"""
Expand Down Expand Up @@ -31055,9 +31109,20 @@ type Query {
Optional filter for which dependencies should be checked for sponsorable
owners. Only sponsorable owners of dependencies in this ecosystem will be
included. Used when onlyDependencies = true.

**Upcoming Change on 2022-07-01 UTC**
**Description:** `dependencyEcosystem` will be removed. Use the ecosystem argument instead.
**Reason:** The type is switching from SecurityAdvisoryEcosystem to DependencyGraphEcosystem.
"""
dependencyEcosystem: SecurityAdvisoryEcosystem

"""
Optional filter for which dependencies should be checked for sponsorable
owners. Only sponsorable owners of dependencies in this ecosystem will be
included. Used when onlyDependencies = true.
"""
ecosystem: DependencyGraphEcosystem

"""
Returns the first _n_ elements from the list.
"""
Expand Down Expand Up @@ -40957,6 +41022,11 @@ type StarredRepositoryEdge {
Autogenerated input type of StartRepositoryMigration
"""
input StartRepositoryMigrationInput {
"""
The Octoshift migration source access token.
"""
accessToken: String

"""
A unique identifier for the client performing the mutation.
"""
Expand All @@ -40972,6 +41042,11 @@ input StartRepositoryMigrationInput {
"""
gitArchiveUrl: String

"""
The GitHub personal access token of the user importing to the target repository.
"""
githubPat: String

"""
The signed URL to access the user-uploaded metadata archive
"""
Expand Down
Loading