Skip to content
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

Repo sync #26121

Merged
merged 1 commit into from
Jun 20, 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
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 @@ -24167,7 +24167,7 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
"""
Return rulesets configured at higher levels that apply to this organization
"""
includeParents: Boolean = false
includeParents: Boolean = true

"""
Returns the last _n_ elements from the list.
Expand Down Expand Up @@ -35243,6 +35243,11 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
The ID of the ruleset to be returned.
"""
databaseId: Int!

"""
Include rulesets configured at higher levels that apply to this repository
"""
includeParents: Boolean = true
): RepositoryRuleset

"""
Expand All @@ -35267,7 +35272,7 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
"""
Return rulesets configured at higher levels that apply to this repository
"""
includeParents: Boolean = false
includeParents: Boolean = true

"""
Returns the last _n_ elements from the list.
Expand Down
26 changes: 23 additions & 3 deletions data/graphql/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -9579,6 +9579,11 @@ enum DependencyGraphEcosystem {
Rust crates
"""
RUST

"""
Swift packages
"""
SWIFT
}

"""
Expand Down Expand Up @@ -27702,7 +27707,7 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
"""
Return rulesets configured at higher levels that apply to this organization
"""
includeParents: Boolean = false
includeParents: Boolean = true

"""
Returns the last _n_ elements from the list.
Expand Down Expand Up @@ -32756,7 +32761,12 @@ type ProjectV2SingleSelectField implements Node & ProjectV2FieldCommon {
"""
Options for the single select field
"""
options: [ProjectV2SingleSelectFieldOption!]!
options(
"""
Filter returned options to only those matching these names, case insensitive.
"""
names: [String!]
): [ProjectV2SingleSelectFieldOption!]!

"""
The project that contains this field.
Expand Down Expand Up @@ -42754,6 +42764,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
The ID of the ruleset to be returned.
"""
databaseId: Int!

"""
Include rulesets configured at higher levels that apply to this repository
"""
includeParents: Boolean = true
): RepositoryRuleset

"""
Expand All @@ -42778,7 +42793,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
"""
Return rulesets configured at higher levels that apply to this repository
"""
includeParents: Boolean = false
includeParents: Boolean = true

"""
Returns the last _n_ elements from the list.
Expand Down Expand Up @@ -46452,6 +46467,11 @@ enum SecurityAdvisoryEcosystem {
Rust crates
"""
RUST

"""
Swift packages
"""
SWIFT
}

"""
Expand Down
26 changes: 23 additions & 3 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -9579,6 +9579,11 @@ enum DependencyGraphEcosystem {
Rust crates
"""
RUST

"""
Swift packages
"""
SWIFT
}

"""
Expand Down Expand Up @@ -27702,7 +27707,7 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
"""
Return rulesets configured at higher levels that apply to this organization
"""
includeParents: Boolean = false
includeParents: Boolean = true

"""
Returns the last _n_ elements from the list.
Expand Down Expand Up @@ -32756,7 +32761,12 @@ type ProjectV2SingleSelectField implements Node & ProjectV2FieldCommon {
"""
Options for the single select field
"""
options: [ProjectV2SingleSelectFieldOption!]!
options(
"""
Filter returned options to only those matching these names, case insensitive.
"""
names: [String!]
): [ProjectV2SingleSelectFieldOption!]!

"""
The project that contains this field.
Expand Down Expand Up @@ -42754,6 +42764,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
The ID of the ruleset to be returned.
"""
databaseId: Int!

"""
Include rulesets configured at higher levels that apply to this repository
"""
includeParents: Boolean = true
): RepositoryRuleset

"""
Expand All @@ -42778,7 +42793,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
"""
Return rulesets configured at higher levels that apply to this repository
"""
includeParents: Boolean = false
includeParents: Boolean = true

"""
Returns the last _n_ elements from the list.
Expand Down Expand Up @@ -46452,6 +46467,11 @@ enum SecurityAdvisoryEcosystem {
Rust crates
"""
RUST

"""
Swift packages
"""
SWIFT
}

"""
Expand Down
18 changes: 18 additions & 0 deletions src/graphql/data/fpt/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Enum value <code>SWIFT</code> was added to enum <code>DependencyGraphEcosystem</code></p>",
"<p>Default value for argument <code>includeParents</code> on field <code>Organization.rulesets</code> changed from <code>false</code> to <code>true</code></p>",
"<p>Argument 'names: [String!]<code>added to field</code>ProjectV2SingleSelectField.options'</p>",
"<p>Argument <code>includeParents: Boolean</code> (with default value) added to field <code>Repository.ruleset</code></p>",
"<p>Default value for argument <code>includeParents</code> on field <code>Repository.rulesets</code> changed from <code>false</code> to <code>true</code></p>",
"<p>Enum value <code>SWIFT</code> was added to enum <code>SecurityAdvisoryEcosystem</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2023-06-20"
},
{
"schemaChanges": [
{
Expand Down
37 changes: 34 additions & 3 deletions src/graphql/data/fpt/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -38991,7 +38991,7 @@
},
{
"name": "includeParents",
"defaultValue": false,
"defaultValue": true,
"description": "<p>Return rulesets configured at higher levels that apply to this organization.</p>",
"type": {
"name": "Boolean",
Expand Down Expand Up @@ -45327,7 +45327,19 @@
"type": "[ProjectV2SingleSelectFieldOption!]!",
"id": "projectv2singleselectfieldoption",
"kind": "objects",
"href": "/graphql/reference/objects#projectv2singleselectfieldoption"
"href": "/graphql/reference/objects#projectv2singleselectfieldoption",
"arguments": [
{
"name": "names",
"description": "<p>Filter returned options to only those matching these names, case insensitive.</p>",
"type": {
"name": "[String!]",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
}
]
},
{
"name": "project",
Expand Down Expand Up @@ -59330,6 +59342,17 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "includeParents",
"defaultValue": true,
"description": "<p>Include rulesets configured at higher levels that apply to this repository.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
Expand Down Expand Up @@ -59373,7 +59396,7 @@
},
{
"name": "includeParents",
"defaultValue": false,
"defaultValue": true,
"description": "<p>Return rulesets configured at higher levels that apply to this repository.</p>",
"type": {
"name": "Boolean",
Expand Down Expand Up @@ -78041,6 +78064,10 @@
{
"name": "RUST",
"description": "<p>Rust crates.</p>"
},
{
"name": "SWIFT",
"description": "<p>Swift packages.</p>"
}
]
},
Expand Down Expand Up @@ -82029,6 +82056,10 @@
{
"name": "RUST",
"description": "<p>Rust crates.</p>"
},
{
"name": "SWIFT",
"description": "<p>Swift packages.</p>"
}
]
},
Expand Down
15 changes: 13 additions & 2 deletions src/graphql/data/ghae/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -34080,7 +34080,7 @@
},
{
"name": "includeParents",
"defaultValue": false,
"defaultValue": true,
"description": "<p>Return rulesets configured at higher levels that apply to this organization.</p>",
"type": {
"name": "Boolean",
Expand Down Expand Up @@ -49537,6 +49537,17 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "includeParents",
"defaultValue": true,
"description": "<p>Include rulesets configured at higher levels that apply to this repository.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
Expand Down Expand Up @@ -49580,7 +49591,7 @@
},
{
"name": "includeParents",
"defaultValue": false,
"defaultValue": true,
"description": "<p>Return rulesets configured at higher levels that apply to this repository.</p>",
"type": {
"name": "Boolean",
Expand Down
37 changes: 34 additions & 3 deletions src/graphql/data/ghec/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -38991,7 +38991,7 @@
},
{
"name": "includeParents",
"defaultValue": false,
"defaultValue": true,
"description": "<p>Return rulesets configured at higher levels that apply to this organization.</p>",
"type": {
"name": "Boolean",
Expand Down Expand Up @@ -45327,7 +45327,19 @@
"type": "[ProjectV2SingleSelectFieldOption!]!",
"id": "projectv2singleselectfieldoption",
"kind": "objects",
"href": "/graphql/reference/objects#projectv2singleselectfieldoption"
"href": "/graphql/reference/objects#projectv2singleselectfieldoption",
"arguments": [
{
"name": "names",
"description": "<p>Filter returned options to only those matching these names, case insensitive.</p>",
"type": {
"name": "[String!]",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
}
]
},
{
"name": "project",
Expand Down Expand Up @@ -59330,6 +59342,17 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "includeParents",
"defaultValue": true,
"description": "<p>Include rulesets configured at higher levels that apply to this repository.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
Expand Down Expand Up @@ -59373,7 +59396,7 @@
},
{
"name": "includeParents",
"defaultValue": false,
"defaultValue": true,
"description": "<p>Return rulesets configured at higher levels that apply to this repository.</p>",
"type": {
"name": "Boolean",
Expand Down Expand Up @@ -78041,6 +78064,10 @@
{
"name": "RUST",
"description": "<p>Rust crates.</p>"
},
{
"name": "SWIFT",
"description": "<p>Swift packages.</p>"
}
]
},
Expand Down Expand Up @@ -82029,6 +82056,10 @@
{
"name": "RUST",
"description": "<p>Rust crates.</p>"
},
{
"name": "SWIFT",
"description": "<p>Swift packages.</p>"
}
]
},
Expand Down