Skip to content

Commit e052de8

Browse files
authored
Merge pull request #38938 from github/repo-sync
Repo sync
2 parents 2c2fb03 + 6b54b84 commit e052de8

10 files changed

+96
-11
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# ---------------------------------------------------------------
99
# To update the sha:
1010
# https://github.com/github/gh-base-image/pkgs/container/gh-base-image%2Fgh-base-noble
11-
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250529-200944-g9be5a274f AS base
11+
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250616-220726-g8823b63b3 AS base
1212

1313
# Install curl for Node install and determining the early access branch
1414
# Install git for cloning docs-early-access & translations repos

src/graphql/data/fpt/changelog.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": []
7+
}
8+
],
9+
"previewChanges": [],
10+
"upcomingChanges": [
11+
{
12+
"title": "The following changes will be made to the schema:",
13+
"changes": [
14+
"<p>On member <code>ClosedEvent.stateReason</code>:<code>stateReason</code> will be removed. <strong>Effective 2025-10-01</strong>.</p>",
15+
"<p>On member <code>Issue.stateReason</code>:<code>stateReason</code> will be removed. <strong>Effective 2025-10-01</strong>.</p>"
16+
]
17+
}
18+
],
19+
"date": "2025-06-17"
20+
},
221
{
322
"schemaChanges": [
423
{

src/graphql/data/fpt/graphql_upcoming_changes.public.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,6 +1512,18 @@ upcoming_changes:
15121512
date: '2025-09-04'
15131513
criticality: breaking
15141514
owner: github/issues_advanced_search
1515+
- location: ClosedEvent.stateReason
1516+
description: '`stateReason` will be removed.'
1517+
reason: The state reason for duplicate issue is now returned by default.
1518+
date: '2025-10-01T00:00:00+00:00'
1519+
criticality: breaking
1520+
owner: issues
1521+
- location: Issue.stateReason
1522+
description: '`stateReason` will be removed.'
1523+
reason: The state reason for duplicate issue is now returned by default.
1524+
date: '2025-10-01T00:00:00+00:00'
1525+
criticality: breaking
1526+
owner: issues
15151527
- location: SecurityAdvisory.cvss
15161528
description:
15171529
'`cvss` will be removed. New `cvss_severities` field will now contain

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4641,6 +4641,7 @@ type ClosedEvent implements Node & UniformResourceLocatable {
46414641
The reason the issue state was changed to closed.
46424642
"""
46434643
stateReason: IssueStateReason
4644+
@deprecated(reason: "The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.")
46444645

46454646
"""
46464647
The HTTP URL for this closed event.
@@ -19070,6 +19071,7 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
1907019071
"""
1907119072
enableDuplicate: Boolean = false
1907219073
): IssueStateReason
19074+
@deprecated(reason: "The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.")
1907319075

1907419076
"""
1907519077
A list of sub-issues associated with the Issue.
@@ -19871,8 +19873,7 @@ enum IssueStateReason {
1987119873
COMPLETED
1987219874

1987319875
"""
19874-
An issue that has been closed as a duplicate. To retrieve this value, set
19875-
`(enableDuplicate: true)` when querying the stateReason field.
19876+
An issue that has been closed as a duplicate.
1987619877
"""
1987719878
DUPLICATE
1987819879

src/graphql/data/fpt/schema.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13830,7 +13830,9 @@
1383013830
"type": "IssueStateReason",
1383113831
"id": "issuestatereason",
1383213832
"kind": "enums",
13833-
"href": "/graphql/reference/enums#issuestatereason"
13833+
"href": "/graphql/reference/enums#issuestatereason",
13834+
"isDeprecated": true,
13835+
"deprecationReason": "<p>The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.</p>"
1383413836
},
1383513837
{
1383613838
"name": "url",
@@ -29819,7 +29821,9 @@
2981929821
"href": "/graphql/reference/scalars#boolean"
2982029822
}
2982129823
}
29822-
]
29824+
],
29825+
"isDeprecated": true,
29826+
"deprecationReason": "<p>The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.</p>"
2982329827
},
2982429828
{
2982529829
"name": "subIssues",
@@ -89326,7 +89330,7 @@
8932689330
},
8932789331
{
8932889332
"name": "DUPLICATE",
89329-
"description": "<p>An issue that has been closed as a duplicate. To retrieve this value, set\n<code>(enableDuplicate: true)</code> when querying the stateReason field.</p>"
89333+
"description": "<p>An issue that has been closed as a duplicate.</p>"
8933089334
},
8933189335
{
8933289336
"name": "NOT_PLANNED",

src/graphql/data/fpt/upcoming-changes.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8881,6 +8881,22 @@
88818881
"date": "2025-10-01",
88828882
"criticality": "breaking",
88838883
"owner": "github/advisory-database"
8884+
},
8885+
{
8886+
"location": "Issue.stateReason",
8887+
"description": "<p><code>stateReason</code> will be removed.</p>",
8888+
"reason": "<p>The state reason for duplicate issue is now returned by default.</p>",
8889+
"date": "2025-10-01",
8890+
"criticality": "breaking",
8891+
"owner": "issues"
8892+
},
8893+
{
8894+
"location": "ClosedEvent.stateReason",
8895+
"description": "<p><code>stateReason</code> will be removed.</p>",
8896+
"reason": "<p>The state reason for duplicate issue is now returned by default.</p>",
8897+
"date": "2025-10-01",
8898+
"criticality": "breaking",
8899+
"owner": "issues"
88848900
}
88858901
],
88868902
"2025-09-04": [

src/graphql/data/ghec/graphql_upcoming_changes.public.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,6 +1512,18 @@ upcoming_changes:
15121512
date: '2025-09-04'
15131513
criticality: breaking
15141514
owner: github/issues_advanced_search
1515+
- location: ClosedEvent.stateReason
1516+
description: '`stateReason` will be removed.'
1517+
reason: The state reason for duplicate issue is now returned by default.
1518+
date: '2025-10-01T00:00:00+00:00'
1519+
criticality: breaking
1520+
owner: issues
1521+
- location: Issue.stateReason
1522+
description: '`stateReason` will be removed.'
1523+
reason: The state reason for duplicate issue is now returned by default.
1524+
date: '2025-10-01T00:00:00+00:00'
1525+
criticality: breaking
1526+
owner: issues
15151527
- location: SecurityAdvisory.cvss
15161528
description:
15171529
'`cvss` will be removed. New `cvss_severities` field will now contain

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4641,6 +4641,7 @@ type ClosedEvent implements Node & UniformResourceLocatable {
46414641
The reason the issue state was changed to closed.
46424642
"""
46434643
stateReason: IssueStateReason
4644+
@deprecated(reason: "The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.")
46444645

46454646
"""
46464647
The HTTP URL for this closed event.
@@ -19070,6 +19071,7 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
1907019071
"""
1907119072
enableDuplicate: Boolean = false
1907219073
): IssueStateReason
19074+
@deprecated(reason: "The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.")
1907319075

1907419076
"""
1907519077
A list of sub-issues associated with the Issue.
@@ -19871,8 +19873,7 @@ enum IssueStateReason {
1987119873
COMPLETED
1987219874

1987319875
"""
19874-
An issue that has been closed as a duplicate. To retrieve this value, set
19875-
`(enableDuplicate: true)` when querying the stateReason field.
19876+
An issue that has been closed as a duplicate.
1987619877
"""
1987719878
DUPLICATE
1987819879

src/graphql/data/ghec/schema.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13830,7 +13830,9 @@
1383013830
"type": "IssueStateReason",
1383113831
"id": "issuestatereason",
1383213832
"kind": "enums",
13833-
"href": "/graphql/reference/enums#issuestatereason"
13833+
"href": "/graphql/reference/enums#issuestatereason",
13834+
"isDeprecated": true,
13835+
"deprecationReason": "<p>The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.</p>"
1383413836
},
1383513837
{
1383613838
"name": "url",
@@ -29819,7 +29821,9 @@
2981929821
"href": "/graphql/reference/scalars#boolean"
2982029822
}
2982129823
}
29822-
]
29824+
],
29825+
"isDeprecated": true,
29826+
"deprecationReason": "<p>The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.</p>"
2982329827
},
2982429828
{
2982529829
"name": "subIssues",
@@ -89326,7 +89330,7 @@
8932689330
},
8932789331
{
8932889332
"name": "DUPLICATE",
89329-
"description": "<p>An issue that has been closed as a duplicate. To retrieve this value, set\n<code>(enableDuplicate: true)</code> when querying the stateReason field.</p>"
89333+
"description": "<p>An issue that has been closed as a duplicate.</p>"
8933089334
},
8933189335
{
8933289336
"name": "NOT_PLANNED",

src/graphql/data/ghec/upcoming-changes.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8881,6 +8881,22 @@
88818881
"date": "2025-10-01",
88828882
"criticality": "breaking",
88838883
"owner": "github/advisory-database"
8884+
},
8885+
{
8886+
"location": "Issue.stateReason",
8887+
"description": "<p><code>stateReason</code> will be removed.</p>",
8888+
"reason": "<p>The state reason for duplicate issue is now returned by default.</p>",
8889+
"date": "2025-10-01",
8890+
"criticality": "breaking",
8891+
"owner": "issues"
8892+
},
8893+
{
8894+
"location": "ClosedEvent.stateReason",
8895+
"description": "<p><code>stateReason</code> will be removed.</p>",
8896+
"reason": "<p>The state reason for duplicate issue is now returned by default.</p>",
8897+
"date": "2025-10-01",
8898+
"criticality": "breaking",
8899+
"owner": "issues"
88848900
}
88858901
],
88868902
"2025-09-04": [

0 commit comments

Comments
 (0)