Skip to content

Commit 835d3fb

Browse files
GraphQL schema update (#59825)
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com>
1 parent 43d03c5 commit 835d3fb

File tree

9 files changed

+3043
-77
lines changed

9 files changed

+3043
-77
lines changed

src/graphql/data/fpt/changelog.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Input field <code>requireExplicitValues</code> of type <code>Boolean</code> was added to input object type <code>CreateRepositoryCustomPropertyInput</code></p>",
8+
"<p>Field <code>requireExplicitValues</code> was added to object type <code>RepositoryCustomProperty</code></p>",
9+
"<p>Input field <code>requireExplicitValues</code> of type <code>Boolean</code> was added to input object type <code>UpdateRepositoryCustomPropertyInput</code></p>"
10+
]
11+
}
12+
],
13+
"previewChanges": [],
14+
"upcomingChanges": [],
15+
"date": "2026-02-25"
16+
},
217
{
318
"schemaChanges": [
419
{

src/graphql/data/fpt/schema.docs.graphql

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8791,6 +8791,11 @@ input CreateRepositoryCustomPropertyInput {
87918791
"""
87928792
regex: String
87938793

8794+
"""
8795+
Whether this repository custom property requires explicit values.
8796+
"""
8797+
requireExplicitValues: Boolean
8798+
87948799
"""
87958800
Whether the custom property is required.
87968801
"""
@@ -52330,6 +52335,11 @@ type RepositoryCustomProperty implements Node {
5233052335
"""
5233152336
regex: String
5233252337

52338+
"""
52339+
Whether this repository custom property requires explicit values.
52340+
"""
52341+
requireExplicitValues: Boolean
52342+
5233352343
"""
5233452344
Whether the custom property is required.
5233552345
"""
@@ -66684,6 +66694,11 @@ input UpdateRepositoryCustomPropertyInput {
6668466694
"""
6668566695
repositoryCustomPropertyId: ID! @possibleTypes(concreteTypes: ["RepositoryCustomProperty"])
6668666696

66697+
"""
66698+
Whether this repository custom property requires explicit values.
66699+
"""
66700+
requireExplicitValues: Boolean
66701+
6668766702
"""
6668866703
Whether the updated custom property is required.
6668966704
"""

src/graphql/data/fpt/schema.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69154,6 +69154,14 @@
6915469154
"kind": "scalars",
6915569155
"href": "/graphql/reference/scalars#string"
6915669156
},
69157+
{
69158+
"name": "requireExplicitValues",
69159+
"description": "<p>Whether this repository custom property requires explicit values.</p>",
69160+
"type": "Boolean",
69161+
"id": "boolean",
69162+
"kind": "scalars",
69163+
"href": "/graphql/reference/scalars#boolean"
69164+
},
6915769165
{
6915869166
"name": "required",
6915969167
"description": "<p>Whether the custom property is required.</p>",
@@ -101748,6 +101756,14 @@
101748101756
"kind": "scalars",
101749101757
"href": "/graphql/reference/scalars#string"
101750101758
},
101759+
{
101760+
"name": "requireExplicitValues",
101761+
"description": "<p>Whether this repository custom property requires explicit values.</p>",
101762+
"type": "Boolean",
101763+
"id": "boolean",
101764+
"kind": "scalars",
101765+
"href": "/graphql/reference/scalars#boolean"
101766+
},
101751101767
{
101752101768
"name": "required",
101753101769
"description": "<p>Whether the custom property is required.</p>",
@@ -111715,6 +111731,14 @@
111715111731
"href": "/graphql/reference/scalars#id",
111716111732
"isDeprecated": false
111717111733
},
111734+
{
111735+
"name": "requireExplicitValues",
111736+
"description": "<p>Whether this repository custom property requires explicit values.</p>",
111737+
"type": "Boolean",
111738+
"id": "boolean",
111739+
"kind": "scalars",
111740+
"href": "/graphql/reference/scalars#boolean"
111741+
},
111718111742
{
111719111743
"name": "required",
111720111744
"description": "<p>Whether the updated custom property is required.</p>",

src/graphql/data/ghec/schema.docs.graphql

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8791,6 +8791,11 @@ input CreateRepositoryCustomPropertyInput {
87918791
"""
87928792
regex: String
87938793

8794+
"""
8795+
Whether this repository custom property requires explicit values.
8796+
"""
8797+
requireExplicitValues: Boolean
8798+
87948799
"""
87958800
Whether the custom property is required.
87968801
"""
@@ -52330,6 +52335,11 @@ type RepositoryCustomProperty implements Node {
5233052335
"""
5233152336
regex: String
5233252337

52338+
"""
52339+
Whether this repository custom property requires explicit values.
52340+
"""
52341+
requireExplicitValues: Boolean
52342+
5233352343
"""
5233452344
Whether the custom property is required.
5233552345
"""
@@ -66684,6 +66694,11 @@ input UpdateRepositoryCustomPropertyInput {
6668466694
"""
6668566695
repositoryCustomPropertyId: ID! @possibleTypes(concreteTypes: ["RepositoryCustomProperty"])
6668666696

66697+
"""
66698+
Whether this repository custom property requires explicit values.
66699+
"""
66700+
requireExplicitValues: Boolean
66701+
6668766702
"""
6668866703
Whether the updated custom property is required.
6668966704
"""

src/graphql/data/ghec/schema.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69154,6 +69154,14 @@
6915469154
"kind": "scalars",
6915569155
"href": "/graphql/reference/scalars#string"
6915669156
},
69157+
{
69158+
"name": "requireExplicitValues",
69159+
"description": "<p>Whether this repository custom property requires explicit values.</p>",
69160+
"type": "Boolean",
69161+
"id": "boolean",
69162+
"kind": "scalars",
69163+
"href": "/graphql/reference/scalars#boolean"
69164+
},
6915769165
{
6915869166
"name": "required",
6915969167
"description": "<p>Whether the custom property is required.</p>",
@@ -101748,6 +101756,14 @@
101748101756
"kind": "scalars",
101749101757
"href": "/graphql/reference/scalars#string"
101750101758
},
101759+
{
101760+
"name": "requireExplicitValues",
101761+
"description": "<p>Whether this repository custom property requires explicit values.</p>",
101762+
"type": "Boolean",
101763+
"id": "boolean",
101764+
"kind": "scalars",
101765+
"href": "/graphql/reference/scalars#boolean"
101766+
},
101751101767
{
101752101768
"name": "required",
101753101769
"description": "<p>Whether the custom property is required.</p>",
@@ -111715,6 +111731,14 @@
111715111731
"href": "/graphql/reference/scalars#id",
111716111732
"isDeprecated": false
111717111733
},
111734+
{
111735+
"name": "requireExplicitValues",
111736+
"description": "<p>Whether this repository custom property requires explicit values.</p>",
111737+
"type": "Boolean",
111738+
"id": "boolean",
111739+
"kind": "scalars",
111740+
"href": "/graphql/reference/scalars#boolean"
111741+
},
111718111742
{
111719111743
"name": "required",
111720111744
"description": "<p>Whether the updated custom property is required.</p>",

src/graphql/data/ghes-3.20/graphql_upcoming_changes.public-enterprise.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1396,14 +1396,6 @@ upcoming_changes:
13961396
date: '2025-10-01T00:00:00+00:00'
13971397
criticality: breaking
13981398
owner: github/advisory-database
1399-
- location: SearchType.ISSUE_ADVANCED
1400-
description: '`ISSUE_ADVANCED` will be removed.'
1401-
reason:
1402-
Search for issues and pull requests will be overridden by advanced search
1403-
on November 4, 2025. You can read more about this change on https://github.blog/changelog/2025-03-06-github-issues-projects-api-support-for-issues-advanced-search-and-more/.
1404-
date: '2025-11-04'
1405-
criticality: breaking
1406-
owner: github/issues_advanced_search
14071399
- location: NotificationThread.list
14081400
description: '`list` will be removed. Use the `optionalList` field instead.'
14091401
reason: Null values are possible for this field.

0 commit comments

Comments
 (0)