Co-authored-by: rachmari <rachmari@users.noreply.github.com>
This commit is contained in:
Octomerger Bot 2022-12-09 08:44:23 -08:00 коммит произвёл GitHub
Родитель 2e1d2889ed
Коммит ad33854e59
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
11 изменённых файлов: 6605 добавлений и 336 удалений

Просмотреть файл

@ -54,12 +54,6 @@ upcoming_changes:
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
- 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: AddPullRequestToMergeQueueInput.branch
description: '`branch` will be removed.'
reason:
@ -76,14 +70,6 @@ upcoming_changes:
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: jhunschejones
- location: RepositoryVulnerabilityAlert.fixReason
description: '`fixReason` will be removed.'
reason:
The `fixReason` field is being removed. You can still use `fixedAt` and
`dismissReason`.
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: jamestran201
- location: PackageType.NPM
description: '`NPM` will be removed.'
reason:
@ -295,3 +281,11 @@ upcoming_changes:
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: github/pull_requests
- location: RepositoryVulnerabilityAlert.fixReason
description: '`fixReason` will be removed.'
reason:
The `fixReason` field is being removed. You can still use `fixedAt` and
`dismissReason`.
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: jamestran201

Просмотреть файл

@ -3222,6 +3222,11 @@ input CheckSuiteFilter {
checkName: String
}
"""
An object which can have its data claimed or claim data from another.
"""
union Claimable = Mannequin | User
"""
Autogenerated input type of ClearLabelsFromLabelable
"""
@ -5618,6 +5623,56 @@ type ConvertedToDiscussionEvent implements Node {
id: ID!
}
"""
Autogenerated input type of CreateAttributionInvitation
"""
input CreateAttributionInvitationInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The Node ID of the owner scoping the reattributable data.
"""
ownerId: ID! @possibleTypes(concreteTypes: ["Bot", "Enterprise", "Mannequin", "Organization", "User"])
"""
The Node ID of the account owning the data to reattribute.
"""
sourceId: ID! @possibleTypes(concreteTypes: ["Bot", "Enterprise", "Mannequin", "Organization", "User"])
"""
The Node ID of the account which may claim the data.
"""
targetId: ID! @possibleTypes(concreteTypes: ["Bot", "Enterprise", "Mannequin", "Organization", "User"])
}
"""
Autogenerated return type of CreateAttributionInvitation
"""
type CreateAttributionInvitationPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
The owner scoping the reattributable data.
"""
owner: Organization
"""
The account owning the data to reattribute.
"""
source: Claimable
"""
The account which may claim the data.
"""
target: Claimable
}
"""
Autogenerated input type of CreateBranchProtectionRule
"""
@ -6414,7 +6469,7 @@ Autogenerated input type of CreateMigrationSource
"""
input CreateMigrationSourceInput {
"""
The Octoshift migration source access token.
The migration source access token.
"""
accessToken: String
@ -6429,22 +6484,22 @@ input CreateMigrationSourceInput {
githubPat: String
"""
The Octoshift migration source name.
The migration source name.
"""
name: String!
"""
The ID of the organization that will own the Octoshift migration source.
The ID of the organization that will own the migration source.
"""
ownerId: ID! @possibleTypes(concreteTypes: ["Organization"])
"""
The Octoshift migration source type.
The migration source type.
"""
type: MigrationSourceType!
"""
The Octoshift migration source URL.
The migration source URL.
"""
url: String!
}
@ -6459,7 +6514,7 @@ type CreateMigrationSourcePayload {
clientMutationId: String
"""
The created Octoshift migration source.
The created migration source.
"""
migrationSource: MigrationSource
}
@ -16008,6 +16063,76 @@ type Mannequin implements Actor & Node & UniformResourceLocatable {
url: URI!
}
"""
The connection type for Mannequin.
"""
type MannequinConnection {
"""
A list of edges.
"""
edges: [MannequinEdge]
"""
A list of nodes.
"""
nodes: [Mannequin]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
Represents a mannequin.
"""
type MannequinEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: Mannequin
}
"""
Ordering options for mannequins.
"""
input MannequinOrder {
"""
The ordering direction.
"""
direction: OrderDirection!
"""
The field to order mannequins by.
"""
field: MannequinOrderField!
}
"""
Properties by which mannequins can be ordered.
"""
enum MannequinOrderField {
"""
Order mannequins why when they were created.
"""
CREATED_AT
"""
Order mannequins alphabetically by their source login.
"""
LOGIN
}
"""
Autogenerated input type of MarkDiscussionCommentAsAnswer
"""
@ -16763,11 +16888,11 @@ type MergedEvent implements Node & UniformResourceLocatable {
}
"""
Represents an Octoshift migration.
Represents a GitHub Enterprise Importer (GEI) migration.
"""
interface Migration {
"""
The Octoshift migration flag to continue on error.
The migration flag to continue on error.
"""
continueOnError: Boolean!
@ -16793,7 +16918,7 @@ interface Migration {
migrationLogUrl: URI
"""
The Octoshift migration source.
The migration source.
"""
migrationSource: MigrationSource!
@ -16803,40 +16928,40 @@ interface Migration {
repositoryName: String!
"""
The Octoshift migration source URL.
The migration source URL.
"""
sourceUrl: URI!
"""
The Octoshift migration state.
The migration state.
"""
state: MigrationState!
}
"""
An Octoshift migration source.
A GitHub Enterprise Importer (GEI) migration source.
"""
type MigrationSource implements Node {
id: ID!
"""
The Octoshift migration source name.
The migration source name.
"""
name: String!
"""
The Octoshift migration source type.
The migration source type.
"""
type: MigrationSourceType!
"""
The Octoshift migration source URL.
The migration source URL.
"""
url: URI!
}
"""
Represents the different Octoshift migration sources.
Represents the different GitHub Enterprise Importer (GEI) migration sources.
"""
enum MigrationSourceType {
"""
@ -16856,41 +16981,41 @@ enum MigrationSourceType {
}
"""
The Octoshift migration state.
The GitHub Enterprise Importer (GEI) migration state.
"""
enum MigrationState {
"""
The Octoshift migration has failed.
The migration has failed.
"""
FAILED
"""
The Octoshift migration has invalid credentials.
The migration has invalid credentials.
"""
FAILED_VALIDATION
"""
The Octoshift migration is in progress.
The migration is in progress.
"""
IN_PROGRESS
"""
The Octoshift migration has not started.
The migration has not started.
"""
NOT_STARTED
"""
The Octoshift migration needs to have its credentials validated.
The migration needs to have its credentials validated.
"""
PENDING_VALIDATION
"""
The Octoshift migration has been queued.
The migration has been queued.
"""
QUEUED
"""
The Octoshift migration has succeeded.
The migration has succeeded.
"""
SUCCEEDED
}
@ -17623,6 +17748,16 @@ type Mutation {
input: ConvertPullRequestToDraftInput!
): ConvertPullRequestToDraftPayload
"""
Invites a user to claim reattributable data
"""
createAttributionInvitation(
"""
Parameters for CreateAttributionInvitation
"""
input: CreateAttributionInvitationInput!
): CreateAttributionInvitationPayload
"""
Create a new branch protection rule
"""
@ -17795,7 +17930,7 @@ type Mutation {
): CreateLinkedBranchPayload
"""
Creates an Octoshift migration source.
Creates a GitHub Enterprise Importer (GEI) migration source.
"""
createMigrationSource(
"""
@ -18395,7 +18530,7 @@ type Mutation {
): RevokeMigratorRolePayload
"""
Start a repository migration.
Starts a GitHub Enterprise Importer (GEI) repository migration.
"""
startRepositoryMigration(
"""
@ -22427,6 +22562,36 @@ type Organization implements Actor & MemberStatusable & Node & ProfileOwner & Pr
"""
login: String!
"""
A list of all mannequins for this organization.
"""
mannequins(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String
"""
Returns the elements in the list that come before the specified cursor.
"""
before: String
"""
Returns the first _n_ elements from the list.
"""
first: Int
"""
Returns the last _n_ elements from the list.
"""
last: Int
"""
Ordering options for mannequins returned from the connection.
"""
orderBy: MannequinOrder = {field: CREATED_AT, direction: ASC}
): MannequinConnection!
"""
Get the status messages members of this entity have set that are either public or visible only to the organization.
"""
@ -34376,11 +34541,11 @@ enum RepositoryLockReason {
}
"""
An Octoshift repository migration.
A GitHub Enterprise Importer (GEI) repository migration.
"""
type RepositoryMigration implements Migration & Node {
"""
The Octoshift migration flag to continue on error.
The migration flag to continue on error.
"""
continueOnError: Boolean!
@ -34406,7 +34571,7 @@ type RepositoryMigration implements Migration & Node {
migrationLogUrl: URI
"""
The Octoshift migration source.
The migration source.
"""
migrationSource: MigrationSource!
@ -34416,12 +34581,12 @@ type RepositoryMigration implements Migration & Node {
repositoryName: String!
"""
The Octoshift migration source URL.
The migration source URL.
"""
sourceUrl: URI!
"""
The Octoshift migration state.
The migration state.
"""
state: MigrationState!
}
@ -35050,7 +35215,7 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
"""
fixReason: String
@deprecated(
reason: "The `fixReason` field is being removed. You can still use `fixedAt` and `dismissReason`. Removal on 2022-10-01 UTC."
reason: "The `fixReason` field is being removed. You can still use `fixedAt` and `dismissReason`. Removal on 2023-04-01 UTC."
)
"""
@ -36756,7 +36921,7 @@ Autogenerated input type of StartRepositoryMigration
"""
input StartRepositoryMigrationInput {
"""
The Octoshift migration source access token.
The migration source access token.
"""
accessToken: String!
@ -36766,12 +36931,12 @@ input StartRepositoryMigrationInput {
clientMutationId: String
"""
Whether to continue the migration on error
Whether to continue the migration on error. Defaults to `false`.
"""
continueOnError: Boolean
"""
The signed URL to access the user-uploaded git archive
The signed URL to access the user-uploaded git archive.
"""
gitArchiveUrl: String
@ -36786,7 +36951,7 @@ input StartRepositoryMigrationInput {
lockSource: Boolean
"""
The signed URL to access the user-uploaded metadata archive
The signed URL to access the user-uploaded metadata archive.
"""
metadataArchiveUrl: String
@ -36806,12 +36971,12 @@ input StartRepositoryMigrationInput {
skipReleases: Boolean
"""
The ID of the Octoshift migration source.
The ID of the migration source.
"""
sourceId: ID! @possibleTypes(concreteTypes: ["MigrationSource"])
"""
The Octoshift migration source repository URL.
The URL of the source repository.
"""
sourceRepositoryUrl: URI!
@ -36831,7 +36996,7 @@ type StartRepositoryMigrationPayload {
clientMutationId: String
"""
The new Octoshift repository migration.
The new repository migration.
"""
repositoryMigration: RepositoryMigration
}

Просмотреть файл

@ -66,12 +66,6 @@ upcoming_changes:
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
- 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: AddPullRequestToMergeQueueInput.branch
description: '`branch` will be removed.'
reason:
@ -104,14 +98,6 @@ upcoming_changes:
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: jhunschejones
- location: RepositoryVulnerabilityAlert.fixReason
description: '`fixReason` will be removed.'
reason:
The `fixReason` field is being removed. You can still use `fixedAt` and
`dismissReason`.
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: jamestran201
- location: UpdateProjectNextItemFieldInput.fieldWithSettingId
description: '`fieldWithSettingId` will be removed. Use `fieldConstraintId` instead'
reason: Renamed to fieldConstraintId to improve naming consistency.
@ -1786,3 +1772,11 @@ upcoming_changes:
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: github/pull_requests
- location: RepositoryVulnerabilityAlert.fixReason
description: '`fixReason` will be removed.'
reason:
The `fixReason` field is being removed. You can still use `fixedAt` and
`dismissReason`.
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: jamestran201

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -66,12 +66,6 @@ upcoming_changes:
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
- 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: AddPullRequestToMergeQueueInput.branch
description: '`branch` will be removed.'
reason:
@ -104,14 +98,6 @@ upcoming_changes:
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: jhunschejones
- location: RepositoryVulnerabilityAlert.fixReason
description: '`fixReason` will be removed.'
reason:
The `fixReason` field is being removed. You can still use `fixedAt` and
`dismissReason`.
date: '2022-10-01T00:00:00+00:00'
criticality: breaking
owner: jamestran201
- location: UpdateProjectNextItemFieldInput.fieldWithSettingId
description: '`fieldWithSettingId` will be removed. Use `fieldConstraintId` instead'
reason: Renamed to fieldConstraintId to improve naming consistency.
@ -1786,3 +1772,11 @@ upcoming_changes:
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: github/pull_requests
- location: RepositoryVulnerabilityAlert.fixReason
description: '`fixReason` will be removed.'
reason:
The `fixReason` field is being removed. You can still use `fixedAt` and
`dismissReason`.
date: '2023-04-01T00:00:00+00:00'
criticality: breaking
owner: jamestran201

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,4 +1,39 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Type <code>Claimable</code> was added</p>",
"<p>Type <code>CreateAttributionInvitationInput</code> was added</p>",
"<p>Type <code>CreateAttributionInvitationPayload</code> was added</p>",
"<p>Type <code>CreateSponsorsListingInput</code> was added</p>",
"<p>Type <code>CreateSponsorsListingPayload</code> was added</p>",
"<p>Type <code>MannequinConnection</code> was added</p>",
"<p>Type <code>MannequinEdge</code> was added</p>",
"<p>Type <code>MannequinOrder</code> was added</p>",
"<p>Type <code>MannequinOrderField</code> was added</p>",
"<p>Type <code>SponsorsCountryOrRegionCode</code> was added</p>",
"<p>Field <code>createAttributionInvitation</code> was added to object type <code>Mutation</code></p>",
"<p>Field <code>createSponsorsListing</code> was added to object type <code>Mutation</code></p>",
"<p>Field <code>mannequins</code> was added to object type <code>Organization</code></p>",
"<p>Field <code>isDraft</code> was added to object type <code>SponsorsTierAdminInfo</code></p>",
"<p>Field <code>isPublished</code> was added to object type <code>SponsorsTierAdminInfo</code></p>",
"<p>Field <code>isRetired</code> was added to object type <code>SponsorsTierAdminInfo</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [
{
"title": "The following changes will be made to the schema:",
"changes": [
"<p>On member <code>RepositoryVulnerabilityAlert.fixReason</code>:<code>fixReason</code> will be removed. <strong>Effective 2023-04-01</strong>.</p>"
]
}
],
"date": "2022-12-09"
},
{
"schemaChanges": [
{

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1527,6 +1527,56 @@
}
]
},
{
"name": "createAttributionInvitation",
"kind": "mutations",
"id": "createattributioninvitation",
"href": "/graphql/reference/mutations#createattributioninvitation",
"description": "<p>Invites a user to claim reattributable data.</p>",
"inputFields": [
{
"name": "input",
"type": "CreateAttributionInvitationInput!",
"id": "createattributioninvitationinput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#createattributioninvitationinput"
}
],
"returnFields": [
{
"name": "clientMutationId",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"description": "<p>A unique identifier for the client performing the mutation.</p>"
},
{
"name": "owner",
"type": "Organization",
"id": "organization",
"kind": "objects",
"href": "/graphql/reference/objects#organization",
"description": "<p>The owner scoping the reattributable data.</p>"
},
{
"name": "source",
"type": "Claimable",
"id": "claimable",
"kind": "unions",
"href": "/graphql/reference/unions#claimable",
"description": "<p>The account owning the data to reattribute.</p>"
},
{
"name": "target",
"type": "Claimable",
"id": "claimable",
"kind": "unions",
"href": "/graphql/reference/unions#claimable",
"description": "<p>The account which may claim the data.</p>"
}
]
},
{
"name": "createBranchProtectionRule",
"kind": "mutations",
@ -2046,7 +2096,7 @@
"kind": "mutations",
"id": "createmigrationsource",
"href": "/graphql/reference/mutations#createmigrationsource",
"description": "<p>Creates an Octoshift migration source.</p>",
"description": "<p>Creates a GitHub Enterprise Importer (GEI) migration source.</p>",
"inputFields": [
{
"name": "input",
@ -2071,7 +2121,7 @@
"id": "migrationsource",
"kind": "objects",
"href": "/graphql/reference/objects#migrationsource",
"description": "<p>The created Octoshift migration source.</p>"
"description": "<p>The created migration source.</p>"
}
]
},
@ -4164,7 +4214,7 @@
"kind": "mutations",
"id": "startrepositorymigration",
"href": "/graphql/reference/mutations#startrepositorymigration",
"description": "<p>Start a repository migration.</p>",
"description": "<p>Starts a GitHub Enterprise Importer (GEI) repository migration.</p>",
"inputFields": [
{
"name": "input",
@ -4189,7 +4239,7 @@
"id": "repositorymigration",
"kind": "objects",
"href": "/graphql/reference/objects#repositorymigration",
"description": "<p>The new Octoshift repository migration.</p>"
"description": "<p>The new repository migration.</p>"
}
]
},
@ -24790,6 +24840,72 @@
}
]
},
{
"name": "MannequinConnection",
"kind": "objects",
"id": "mannequinconnection",
"href": "/graphql/reference/objects#mannequinconnection",
"description": "<p>The connection type for Mannequin.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[MannequinEdge]",
"id": "mannequinedge",
"kind": "objects",
"href": "/graphql/reference/objects#mannequinedge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[Mannequin]",
"id": "mannequin",
"kind": "objects",
"href": "/graphql/reference/objects#mannequin"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "MannequinEdge",
"kind": "objects",
"id": "mannequinedge",
"href": "/graphql/reference/objects#mannequinedge",
"description": "<p>Represents a mannequin.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "Mannequin",
"id": "mannequin",
"kind": "objects",
"href": "/graphql/reference/objects#mannequin"
}
]
},
{
"name": "MarkedAsDuplicateEvent",
"kind": "objects",
@ -25549,7 +25665,7 @@
"kind": "objects",
"id": "migrationsource",
"href": "/graphql/reference/objects#migrationsource",
"description": "<p>An Octoshift migration source.</p>",
"description": "<p>A GitHub Enterprise Importer (GEI) migration source.</p>",
"implements": [
{
"name": "Node",
@ -25560,7 +25676,7 @@
"fields": [
{
"name": "name",
"description": "<p>The Octoshift migration source name.</p>",
"description": "<p>The migration source name.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
@ -25568,7 +25684,7 @@
},
{
"name": "type",
"description": "<p>The Octoshift migration source type.</p>",
"description": "<p>The migration source type.</p>",
"type": "MigrationSourceType!",
"id": "migrationsourcetype",
"kind": "enums",
@ -25576,7 +25692,7 @@
},
{
"name": "url",
"description": "<p>The Octoshift migration source URL.</p>",
"description": "<p>The migration source URL.</p>",
"type": "URI!",
"id": "uri",
"kind": "scalars",
@ -31597,6 +31713,66 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "mannequins",
"description": "<p>A list of all mannequins for this organization.</p>",
"type": "MannequinConnection!",
"id": "mannequinconnection",
"kind": "objects",
"href": "/graphql/reference/objects#mannequinconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "orderBy",
"description": "<p>Ordering options for mannequins returned from the connection.</p>",
"type": {
"name": "MannequinOrder",
"id": "mannequinorder",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#mannequinorder"
}
}
]
},
{
"name": "memberStatuses",
"description": "<p>Get the status messages members of this entity have set that are either public or visible only to the organization.</p>",
@ -48266,7 +48442,7 @@
"kind": "objects",
"id": "repositorymigration",
"href": "/graphql/reference/objects#repositorymigration",
"description": "<p>An Octoshift repository migration.</p>",
"description": "<p>A GitHub Enterprise Importer (GEI) repository migration.</p>",
"implements": [
{
"name": "Migration",
@ -48282,7 +48458,7 @@
"fields": [
{
"name": "continueOnError",
"description": "<p>The Octoshift migration flag to continue on error.</p>",
"description": "<p>The migration flag to continue on error.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
@ -48322,7 +48498,7 @@
},
{
"name": "migrationSource",
"description": "<p>The Octoshift migration source.</p>",
"description": "<p>The migration source.</p>",
"type": "MigrationSource!",
"id": "migrationsource",
"kind": "objects",
@ -48338,7 +48514,7 @@
},
{
"name": "sourceUrl",
"description": "<p>The Octoshift migration source URL.</p>",
"description": "<p>The migration source URL.</p>",
"type": "URI!",
"id": "uri",
"kind": "scalars",
@ -48346,7 +48522,7 @@
},
{
"name": "state",
"description": "<p>The Octoshift migration state.</p>",
"description": "<p>The migration state.</p>",
"type": "MigrationState!",
"id": "migrationstate",
"kind": "enums",
@ -48996,7 +49172,7 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string",
"isDeprecated": true,
"deprecationReason": "<p>The <code>fixReason</code> field is being removed. You can still use <code>fixedAt</code> and <code>dismissReason</code>. Removal on 2022-10-01 UTC.</p>"
"deprecationReason": "<p>The <code>fixReason</code> field is being removed. You can still use <code>fixedAt</code> and <code>dismissReason</code>. Removal on 2023-04-01 UTC.</p>"
},
{
"name": "fixedAt",
@ -59316,11 +59492,11 @@
"kind": "interfaces",
"id": "migration",
"href": "/graphql/reference/interfaces#migration",
"description": "<p>Represents an Octoshift migration.</p>",
"description": "<p>Represents a GitHub Enterprise Importer (GEI) migration.</p>",
"fields": [
{
"name": "continueOnError",
"description": "<p>The Octoshift migration flag to continue on error.</p>",
"description": "<p>The migration flag to continue on error.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
@ -59360,7 +59536,7 @@
},
{
"name": "migrationSource",
"description": "<p>The Octoshift migration source.</p>",
"description": "<p>The migration source.</p>",
"type": "MigrationSource!",
"id": "migrationsource",
"kind": "objects",
@ -59376,7 +59552,7 @@
},
{
"name": "sourceUrl",
"description": "<p>The Octoshift migration source URL.</p>",
"description": "<p>The migration source URL.</p>",
"type": "URI!",
"id": "uri",
"kind": "scalars",
@ -59384,7 +59560,7 @@
},
{
"name": "state",
"description": "<p>The Octoshift migration state.</p>",
"description": "<p>The migration state.</p>",
"type": "MigrationState!",
"id": "migrationstate",
"kind": "enums",
@ -62351,6 +62527,23 @@
}
]
},
{
"name": "MannequinOrderField",
"kind": "enums",
"id": "mannequinorderfield",
"href": "/graphql/reference/enums#mannequinorderfield",
"description": "<p>Properties by which mannequins can be ordered.</p>",
"values": [
{
"name": "CREATED_AT",
"description": "<p>Order mannequins why when they were created.</p>"
},
{
"name": "LOGIN",
"description": "<p>Order mannequins alphabetically by their source login.</p>"
}
]
},
{
"name": "MergeCommitMessage",
"kind": "enums",
@ -62456,7 +62649,7 @@
"kind": "enums",
"id": "migrationsourcetype",
"href": "/graphql/reference/enums#migrationsourcetype",
"description": "<p>Represents the different Octoshift migration sources.</p>",
"description": "<p>Represents the different GitHub Enterprise Importer (GEI) migration sources.</p>",
"values": [
{
"name": "AZURE_DEVOPS",
@ -62477,35 +62670,35 @@
"kind": "enums",
"id": "migrationstate",
"href": "/graphql/reference/enums#migrationstate",
"description": "<p>The Octoshift migration state.</p>",
"description": "<p>The GitHub Enterprise Importer (GEI) migration state.</p>",
"values": [
{
"name": "FAILED",
"description": "<p>The Octoshift migration has failed.</p>"
"description": "<p>The migration has failed.</p>"
},
{
"name": "FAILED_VALIDATION",
"description": "<p>The Octoshift migration has invalid credentials.</p>"
"description": "<p>The migration has invalid credentials.</p>"
},
{
"name": "IN_PROGRESS",
"description": "<p>The Octoshift migration is in progress.</p>"
"description": "<p>The migration is in progress.</p>"
},
{
"name": "NOT_STARTED",
"description": "<p>The Octoshift migration has not started.</p>"
"description": "<p>The migration has not started.</p>"
},
{
"name": "PENDING_VALIDATION",
"description": "<p>The Octoshift migration needs to have its credentials validated.</p>"
"description": "<p>The migration needs to have its credentials validated.</p>"
},
{
"name": "QUEUED",
"description": "<p>The Octoshift migration has been queued.</p>"
"description": "<p>The migration has been queued.</p>"
},
{
"name": "SUCCEEDED",
"description": "<p>The Octoshift migration has succeeded.</p>"
"description": "<p>The migration has succeeded.</p>"
}
]
},
@ -64838,6 +65031,25 @@
}
]
},
{
"name": "Claimable",
"kind": "unions",
"id": "claimable",
"href": "/graphql/reference/unions#claimable",
"description": "<p>An object which can have its data claimed or claim data from another.</p>",
"possibleTypes": [
{
"name": "Mannequin",
"id": "mannequin",
"href": "/graphql/reference/objects#mannequin"
},
{
"name": "User",
"id": "user",
"href": "/graphql/reference/objects#user"
}
]
},
{
"name": "Closer",
"kind": "unions",
@ -67873,6 +68085,50 @@
}
]
},
{
"name": "CreateAttributionInvitationInput",
"kind": "inputObjects",
"id": "createattributioninvitationinput",
"href": "/graphql/reference/input-objects#createattributioninvitationinput",
"description": "<p>Autogenerated input type of CreateAttributionInvitation.</p>",
"inputFields": [
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "ownerId",
"description": "<p>The Node ID of the owner scoping the reattributable data.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "sourceId",
"description": "<p>The Node ID of the account owning the data to reattribute.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "targetId",
"description": "<p>The Node ID of the account which may claim the data.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
}
]
},
{
"name": "CreateBranchProtectionRuleInput",
"kind": "inputObjects",
@ -68882,7 +69138,7 @@
"inputFields": [
{
"name": "accessToken",
"description": "<p>The Octoshift migration source access token.</p>",
"description": "<p>The migration source access token.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
@ -68906,7 +69162,7 @@
},
{
"name": "name",
"description": "<p>The Octoshift migration source name.</p>",
"description": "<p>The migration source name.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
@ -68914,7 +69170,7 @@
},
{
"name": "ownerId",
"description": "<p>The ID of the organization that will own the Octoshift migration source.</p>",
"description": "<p>The ID of the organization that will own the migration source.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
@ -68923,7 +69179,7 @@
},
{
"name": "type",
"description": "<p>The Octoshift migration source type.</p>",
"description": "<p>The migration source type.</p>",
"type": "MigrationSourceType!",
"id": "migrationsourcetype",
"kind": "enums",
@ -68931,7 +69187,7 @@
},
{
"name": "url",
"description": "<p>The Octoshift migration source URL.</p>",
"description": "<p>The migration source URL.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
@ -70742,6 +70998,31 @@
}
]
},
{
"name": "MannequinOrder",
"kind": "inputObjects",
"id": "mannequinorder",
"href": "/graphql/reference/input-objects#mannequinorder",
"description": "<p>Ordering options for mannequins.</p>",
"inputFields": [
{
"name": "direction",
"description": "<p>The ordering direction.</p>",
"type": "OrderDirection!",
"id": "orderdirection",
"kind": "enums",
"href": "/graphql/reference/enums#orderdirection"
},
{
"name": "field",
"description": "<p>The field to order mannequins by.</p>",
"type": "MannequinOrderField!",
"id": "mannequinorderfield",
"kind": "enums",
"href": "/graphql/reference/enums#mannequinorderfield"
}
]
},
{
"name": "MarkDiscussionCommentAsAnswerInput",
"kind": "inputObjects",
@ -72065,7 +72346,7 @@
"inputFields": [
{
"name": "accessToken",
"description": "<p>The Octoshift migration source access token.</p>",
"description": "<p>The migration source access token.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
@ -72081,7 +72362,7 @@
},
{
"name": "continueOnError",
"description": "<p>Whether to continue the migration on error.</p>",
"description": "<p>Whether to continue the migration on error. Defaults to <code>false</code>.</p>",
"type": "Boolean",
"id": "boolean",
"kind": "scalars",
@ -72146,7 +72427,7 @@
},
{
"name": "sourceId",
"description": "<p>The ID of the Octoshift migration source.</p>",
"description": "<p>The ID of the migration source.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
@ -72155,7 +72436,7 @@
},
{
"name": "sourceRepositoryUrl",
"description": "<p>The Octoshift migration source repository URL.</p>",
"description": "<p>The URL of the source repository.</p>",
"type": "URI!",
"id": "uri",
"kind": "scalars",

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,6 +1,14 @@
{
"dotcom": {
"2023-04-01": [
{
"location": "RepositoryVulnerabilityAlert.fixReason",
"description": "<p><code>fixReason</code> will be removed.</p>",
"reason": "<p>The <code>fixReason</code> field is being removed. You can still use <code>fixedAt</code> and <code>dismissReason</code>.</p>",
"date": "2023-04-01",
"criticality": "breaking",
"owner": "jamestran201"
},
{
"location": "Repository.squashPrTitleUsedAsDefault",
"description": "<p><code>squashPrTitleUsedAsDefault</code> will be removed. Use <code>Repository.squashMergeCommitTitle</code> instead.</p>",
@ -1343,14 +1351,6 @@
"criticality": "breaking",
"owner": "memex"
},
{
"location": "RepositoryVulnerabilityAlert.fixReason",
"description": "<p><code>fixReason</code> will be removed.</p>",
"reason": "<p>The <code>fixReason</code> field is being removed. You can still use <code>fixedAt</code> and <code>dismissReason</code>.</p>",
"date": "2022-10-01",
"criticality": "breaking",
"owner": "jamestran201"
},
{
"location": "RemovePullRequestFromMergeQueueInput.branch",
"description": "<p><code>branch</code> will be removed.</p>",
@ -1386,16 +1386,6 @@
"owner": "jhunschejones"
}
],
"2022-04-01": [
{
"location": "Repository.defaultMergeQueue",
"description": "<p><code>defaultMergeQueue</code> will be removed. Use <code>Repository.mergeQueue</code> instead.</p>",
"reason": "<p><code>defaultMergeQueue</code> will be removed.</p>",
"date": "2022-04-01",
"criticality": "breaking",
"owner": "colinshum"
}
],
"2021-10-01": [
{
"location": "ReactionGroup.users",
@ -1493,6 +1483,14 @@
},
"ghec": {
"2023-04-01": [
{
"location": "RepositoryVulnerabilityAlert.fixReason",
"description": "<p><code>fixReason</code> will be removed.</p>",
"reason": "<p>The <code>fixReason</code> field is being removed. You can still use <code>fixedAt</code> and <code>dismissReason</code>.</p>",
"date": "2023-04-01",
"criticality": "breaking",
"owner": "jamestran201"
},
{
"location": "Repository.squashPrTitleUsedAsDefault",
"description": "<p><code>squashPrTitleUsedAsDefault</code> will be removed. Use <code>Repository.squashMergeCommitTitle</code> instead.</p>",
@ -2835,14 +2833,6 @@
"criticality": "breaking",
"owner": "memex"
},
{
"location": "RepositoryVulnerabilityAlert.fixReason",
"description": "<p><code>fixReason</code> will be removed.</p>",
"reason": "<p>The <code>fixReason</code> field is being removed. You can still use <code>fixedAt</code> and <code>dismissReason</code>.</p>",
"date": "2022-10-01",
"criticality": "breaking",
"owner": "jamestran201"
},
{
"location": "RemovePullRequestFromMergeQueueInput.branch",
"description": "<p><code>branch</code> will be removed.</p>",
@ -2878,16 +2868,6 @@
"owner": "jhunschejones"
}
],
"2022-04-01": [
{
"location": "Repository.defaultMergeQueue",
"description": "<p><code>defaultMergeQueue</code> will be removed. Use <code>Repository.mergeQueue</code> instead.</p>",
"reason": "<p><code>defaultMergeQueue</code> will be removed.</p>",
"date": "2022-04-01",
"criticality": "breaking",
"owner": "colinshum"
}
],
"2021-10-01": [
{
"location": "ReactionGroup.users",
@ -3781,6 +3761,14 @@
},
"ghae": {
"2023-04-01": [
{
"location": "RepositoryVulnerabilityAlert.fixReason",
"description": "<p><code>fixReason</code> will be removed.</p>",
"reason": "<p>The <code>fixReason</code> field is being removed. You can still use <code>fixedAt</code> and <code>dismissReason</code>.</p>",
"date": "2023-04-01",
"criticality": "breaking",
"owner": "jamestran201"
},
{
"location": "Repository.squashPrTitleUsedAsDefault",
"description": "<p><code>squashPrTitleUsedAsDefault</code> will be removed. Use <code>Repository.squashMergeCommitTitle</code> instead.</p>",
@ -3963,14 +3951,6 @@
}
],
"2022-10-01": [
{
"location": "RepositoryVulnerabilityAlert.fixReason",
"description": "<p><code>fixReason</code> will be removed.</p>",
"reason": "<p>The <code>fixReason</code> field is being removed. You can still use <code>fixedAt</code> and <code>dismissReason</code>.</p>",
"date": "2022-10-01",
"criticality": "breaking",
"owner": "jamestran201"
},
{
"location": "RemovePullRequestFromMergeQueueInput.branch",
"description": "<p><code>branch</code> will be removed.</p>",
@ -3990,16 +3970,6 @@
"owner": "jhunschejones"
}
],
"2022-04-01": [
{
"location": "Repository.defaultMergeQueue",
"description": "<p><code>defaultMergeQueue</code> will be removed. Use <code>Repository.mergeQueue</code> instead.</p>",
"reason": "<p><code>defaultMergeQueue</code> will be removed.</p>",
"date": "2022-04-01",
"criticality": "breaking",
"owner": "colinshum"
}
],
"2021-10-01": [
{
"location": "ReactionGroup.users",