1
0
mirror of synced 2026-01-08 03:01:54 -05:00

Merge branch 'main' into repo-sync

This commit is contained in:
Octomerger Bot
2021-07-28 07:48:07 +10:00
committed by GitHub
6 changed files with 273 additions and 6 deletions

View File

@@ -9437,6 +9437,11 @@ type EnterpriseIdentityProvider implements Node {
Returns the last _n_ elements from the list.
"""
last: Int
"""
Filter to external identities with valid org membership only
"""
membersOnly: Boolean
): ExternalIdentityConnection!
id: ID!
@@ -21557,6 +21562,11 @@ type OrganizationIdentityProvider implements Node {
Returns the last _n_ elements from the list.
"""
last: Int
"""
Filter to external identities with valid org membership only
"""
membersOnly: Boolean
): ExternalIdentityConnection!
id: ID!
@@ -27359,6 +27369,31 @@ type Release implements Node & Reactable & UniformResourceLocatable {
"""
isPrerelease: Boolean!
"""
A list of users mentioned in the release description
"""
mentions(
"""
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
): UserConnection
"""
The title of the release.
"""
@@ -32769,7 +32804,7 @@ type RepositoryVisibilityChangeEnableAuditEntry implements AuditEntry & Enterpri
}
"""
A alert for a repository with an affected vulnerability.
A Dependabot alert for a repository with a dependency affected by a security vulnerability.
"""
type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
"""

View File

@@ -9870,6 +9870,11 @@ type EnterpriseIdentityProvider implements Node {
Returns the last _n_ elements from the list.
"""
last: Int
"""
Filter to external identities with valid org membership only
"""
membersOnly: Boolean
): ExternalIdentityConnection!
id: ID!
@@ -23094,6 +23099,11 @@ type OrganizationIdentityProvider implements Node {
Returns the last _n_ elements from the list.
"""
last: Int
"""
Filter to external identities with valid org membership only
"""
membersOnly: Boolean
): ExternalIdentityConnection!
id: ID!
@@ -29656,6 +29666,31 @@ type Release implements Node & Reactable & UniformResourceLocatable {
"""
isPrerelease: Boolean!
"""
A list of users mentioned in the release description
"""
mentions(
"""
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
): UserConnection
"""
The title of the release.
"""
@@ -35366,7 +35401,7 @@ type RepositoryVisibilityChangeEnableAuditEntry implements AuditEntry & Enterpri
}
"""
A alert for a repository with an affected vulnerability.
A Dependabot alert for a repository with a dependency affected by a security vulnerability.
"""
type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
"""
@@ -37317,11 +37352,21 @@ type SponsorsListing implements Node {
fullDescriptionHTML: HTML!
id: ID!
"""
Whether this listing is publicly visible.
"""
isPublic: Boolean!
"""
The listing's full name.
"""
name: String!
"""
A future date on which this listing is eligible to receive a payout.
"""
nextPayoutDate: Date
"""
The short description of the listing.
"""
@@ -37332,6 +37377,11 @@ type SponsorsListing implements Node {
"""
slug: String!
"""
The entity this listing represents who can be sponsored on GitHub Sponsors.
"""
sponsorable: Sponsorable!
"""
The published tiers for this GitHub Sponsors listing.
"""

View File

@@ -1,4 +1,22 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Argument `membersOnly: Boolean` added to field `EnterpriseIdentityProvider.externalIdentities`",
"Argument `membersOnly: Boolean` added to field `OrganizationIdentityProvider.externalIdentities`",
"Field `mentions` was added to object type `Release`",
"Field `isPublic` was added to object type `SponsorsListing`",
"Field `nextPayoutDate` was added to object type `SponsorsListing`",
"Field `sponsorable` was added to object type `SponsorsListing`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-07-27"
},
{
"schemaChanges": [
{

File diff suppressed because one or more lines are too long

View File

@@ -17337,6 +17337,16 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "membersOnly",
"description": "<p>Filter to external identities with valid org membership only.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
@@ -34329,6 +34339,16 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "membersOnly",
"description": "<p>Filter to external identities with valid org membership only.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
@@ -42302,6 +42322,56 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "mentions",
"description": "<p>A list of users mentioned in the release description.</p>",
"type": "UserConnection",
"id": "userconnection",
"kind": "objects",
"href": "/graphql/reference/objects#userconnection",
"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": "name",
"description": "<p>The title of the release.</p>",
@@ -50396,7 +50466,7 @@
"kind": "objects",
"id": "repositoryvulnerabilityalert",
"href": "/graphql/reference/objects#repositoryvulnerabilityalert",
"description": "<p>A alert for a repository with an affected vulnerability.</p>",
"description": "<p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>",
"implements": [
{
"name": "Node",
@@ -52211,6 +52281,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#html"
},
{
"name": "isPublic",
"description": "<p>Whether this listing is publicly visible.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "name",
"description": "<p>The listing's full name.</p>",
@@ -52219,6 +52297,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "nextPayoutDate",
"description": "<p>A future date on which this listing is eligible to receive a payout.</p>",
"type": "Date",
"id": "date",
"kind": "scalars",
"href": "/graphql/reference/scalars#date"
},
{
"name": "shortDescription",
"description": "<p>The short description of the listing.</p>",
@@ -52235,6 +52321,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "sponsorable",
"description": "<p>The entity this listing represents who can be sponsored on GitHub Sponsors.</p>",
"type": "Sponsorable!",
"id": "sponsorable",
"kind": "interfaces",
"href": "/graphql/reference/interfaces#sponsorable"
},
{
"name": "tiers",
"description": "<p>The published tiers for this GitHub Sponsors listing.</p>",

View File

@@ -15891,6 +15891,16 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "membersOnly",
"description": "<p>Filter to external identities with valid org membership only.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
@@ -31588,6 +31598,16 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "membersOnly",
"description": "<p>Filter to external identities with valid org membership only.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
@@ -38941,6 +38961,56 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "mentions",
"description": "<p>A list of users mentioned in the release description.</p>",
"type": "UserConnection",
"id": "userconnection",
"kind": "objects",
"href": "/graphql/reference/objects#userconnection",
"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": "name",
"description": "<p>The title of the release.</p>",
@@ -46798,7 +46868,7 @@
"kind": "objects",
"id": "repositoryvulnerabilityalert",
"href": "/graphql/reference/objects#repositoryvulnerabilityalert",
"description": "<p>A alert for a repository with an affected vulnerability.</p>",
"description": "<p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>",
"implements": [
{
"name": "Node",