Skip to content

Commit 33c394a

Browse files
authored
Merge pull request #18870 from github/repo-sync
repo sync
2 parents 4f69aef + 8e99657 commit 33c394a

File tree

8 files changed

+226
-3
lines changed

8 files changed

+226
-3
lines changed

data/graphql/ghae/schema.docs-ghae.graphql

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32997,6 +32997,11 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
3299732997
"""
3299832998
before: String
3299932999

33000+
"""
33001+
Filter by the scope of the alert's dependency
33002+
"""
33003+
dependencyScopes: [RepositoryVulnerabilityAlertDependencyScope!]
33004+
3300033005
"""
3300133006
Returns the first _n_ elements from the list.
3300233007
"""
@@ -34288,6 +34293,11 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
3428834293
"""
3428934294
dependabotUpdate: DependabotUpdate
3429034295

34296+
"""
34297+
The scope of an alert's dependency
34298+
"""
34299+
dependencyScope: RepositoryVulnerabilityAlertDependencyScope
34300+
3429134301
"""
3429234302
The reason the alert was dismissed
3429334303
"""
@@ -34383,6 +34393,21 @@ type RepositoryVulnerabilityAlertConnection {
3438334393
totalCount: Int!
3438434394
}
3438534395

34396+
"""
34397+
The possible scopes of an alert's dependency.
34398+
"""
34399+
enum RepositoryVulnerabilityAlertDependencyScope {
34400+
"""
34401+
A dependency that is only used in development
34402+
"""
34403+
DEVELOPMENT
34404+
34405+
"""
34406+
A dependency that is leveraged during application runtime
34407+
"""
34408+
RUNTIME
34409+
}
34410+
3438634411
"""
3438734412
An edge in a connection.
3438834413
"""
@@ -35479,6 +35504,11 @@ enum SecurityAdvisoryEcosystem {
3547935504
"""
3548035505
COMPOSER
3548135506

35507+
"""
35508+
Erlang/Elixir packages hosted at hex.pm
35509+
"""
35510+
ERLANG
35511+
3548235512
"""
3548335513
Go modules
3548435514
"""

data/graphql/ghec/schema.docs.graphql

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40277,6 +40277,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
4027740277
"""
4027840278
before: String
4027940279

40280+
"""
40281+
Filter by the scope of the alert's dependency
40282+
"""
40283+
dependencyScopes: [RepositoryVulnerabilityAlertDependencyScope!]
40284+
4028040285
"""
4028140286
Returns the first _n_ elements from the list.
4028240287
"""
@@ -41658,6 +41663,11 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
4165841663
"""
4165941664
dependabotUpdate: DependabotUpdate
4166041665

41666+
"""
41667+
The scope of an alert's dependency
41668+
"""
41669+
dependencyScope: RepositoryVulnerabilityAlertDependencyScope
41670+
4166141671
"""
4166241672
The reason the alert was dismissed
4166341673
"""
@@ -41753,6 +41763,21 @@ type RepositoryVulnerabilityAlertConnection {
4175341763
totalCount: Int!
4175441764
}
4175541765

41766+
"""
41767+
The possible scopes of an alert's dependency.
41768+
"""
41769+
enum RepositoryVulnerabilityAlertDependencyScope {
41770+
"""
41771+
A dependency that is only used in development
41772+
"""
41773+
DEVELOPMENT
41774+
41775+
"""
41776+
A dependency that is leveraged during application runtime
41777+
"""
41778+
RUNTIME
41779+
}
41780+
4175641781
"""
4175741782
An edge in a connection.
4175841783
"""
@@ -42894,6 +42919,11 @@ enum SecurityAdvisoryEcosystem {
4289442919
"""
4289542920
COMPOSER
4289642921

42922+
"""
42923+
Erlang/Elixir packages hosted at hex.pm
42924+
"""
42925+
ERLANG
42926+
4289742927
"""
4289842928
Go modules
4289942929
"""

data/graphql/schema.docs.graphql

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40277,6 +40277,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
4027740277
"""
4027840278
before: String
4027940279

40280+
"""
40281+
Filter by the scope of the alert's dependency
40282+
"""
40283+
dependencyScopes: [RepositoryVulnerabilityAlertDependencyScope!]
40284+
4028040285
"""
4028140286
Returns the first _n_ elements from the list.
4028240287
"""
@@ -41658,6 +41663,11 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
4165841663
"""
4165941664
dependabotUpdate: DependabotUpdate
4166041665

41666+
"""
41667+
The scope of an alert's dependency
41668+
"""
41669+
dependencyScope: RepositoryVulnerabilityAlertDependencyScope
41670+
4166141671
"""
4166241672
The reason the alert was dismissed
4166341673
"""
@@ -41753,6 +41763,21 @@ type RepositoryVulnerabilityAlertConnection {
4175341763
totalCount: Int!
4175441764
}
4175541765

41766+
"""
41767+
The possible scopes of an alert's dependency.
41768+
"""
41769+
enum RepositoryVulnerabilityAlertDependencyScope {
41770+
"""
41771+
A dependency that is only used in development
41772+
"""
41773+
DEVELOPMENT
41774+
41775+
"""
41776+
A dependency that is leveraged during application runtime
41777+
"""
41778+
RUNTIME
41779+
}
41780+
4175641781
"""
4175741782
An edge in a connection.
4175841783
"""
@@ -42894,6 +42919,11 @@ enum SecurityAdvisoryEcosystem {
4289442919
"""
4289542920
COMPOSER
4289642921

42922+
"""
42923+
Erlang/Elixir packages hosted at hex.pm
42924+
"""
42925+
ERLANG
42926+
4289742927
"""
4289842928
Go modules
4289942929
"""

lib/graphql/static/changelog.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"Type `RepositoryVulnerabilityAlertDependencyScope` was added",
8+
"Argument 'dependencyScopes: [RepositoryVulnerabilityAlertDependencyScope!]` added to field `Repository.vulnerabilityAlerts'",
9+
"Field `dependencyScope` was added to object type `RepositoryVulnerabilityAlert`",
10+
"Enum value `ERLANG` was added to enum `SecurityAdvisoryEcosystem`"
11+
]
12+
}
13+
],
14+
"previewChanges": [],
15+
"upcomingChanges": [],
16+
"date": "2022-06-29"
17+
},
218
{
319
"schemaChanges": [
420
{

lib/graphql/static/prerendered-objects.json

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

lib/graphql/static/schema-dotcom.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57084,6 +57084,16 @@
5708457084
"href": "/graphql/reference/scalars#string"
5708557085
}
5708657086
},
57087+
{
57088+
"name": "dependencyScopes",
57089+
"description": "<p>Filter by the scope of the alert's dependency.</p>",
57090+
"type": {
57091+
"name": "[RepositoryVulnerabilityAlertDependencyScope!]",
57092+
"id": "repositoryvulnerabilityalertdependencyscope",
57093+
"kind": "enums",
57094+
"href": "/graphql/reference/enums#repositoryvulnerabilityalertdependencyscope"
57095+
}
57096+
},
5708757097
{
5708857098
"name": "first",
5708957099
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
@@ -58273,6 +58283,14 @@
5827358283
"kind": "objects",
5827458284
"href": "/graphql/reference/objects#dependabotupdate"
5827558285
},
58286+
{
58287+
"name": "dependencyScope",
58288+
"description": "<p>The scope of an alert's dependency.</p>",
58289+
"type": "RepositoryVulnerabilityAlertDependencyScope",
58290+
"id": "repositoryvulnerabilityalertdependencyscope",
58291+
"kind": "enums",
58292+
"href": "/graphql/reference/enums#repositoryvulnerabilityalertdependencyscope"
58293+
},
5827658294
{
5827758295
"name": "dismissReason",
5827858296
"description": "<p>The reason the alert was dismissed.</p>",
@@ -76752,6 +76770,23 @@
7675276770
}
7675376771
]
7675476772
},
76773+
{
76774+
"name": "RepositoryVulnerabilityAlertDependencyScope",
76775+
"kind": "enums",
76776+
"id": "repositoryvulnerabilityalertdependencyscope",
76777+
"href": "/graphql/reference/enums#repositoryvulnerabilityalertdependencyscope",
76778+
"description": "<p>The possible scopes of an alert's dependency.</p>",
76779+
"values": [
76780+
{
76781+
"name": "DEVELOPMENT",
76782+
"description": "<p>A dependency that is only used in development.</p>"
76783+
},
76784+
{
76785+
"name": "RUNTIME",
76786+
"description": "<p>A dependency that is leveraged during application runtime.</p>"
76787+
}
76788+
]
76789+
},
7675576790
{
7675676791
"name": "RepositoryVulnerabilityAlertState",
7675776792
"kind": "enums",
@@ -76939,6 +76974,10 @@
7693976974
"name": "COMPOSER",
7694076975
"description": "<p>PHP packages hosted at packagist.org.</p>"
7694176976
},
76977+
{
76978+
"name": "ERLANG",
76979+
"description": "<p>Erlang/Elixir packages hosted at hex.pm.</p>"
76980+
},
7694276981
{
7694376982
"name": "GO",
7694476983
"description": "<p>Go modules.</p>"

lib/graphql/static/schema-ghae.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47018,6 +47018,16 @@
4701847018
"href": "/graphql/reference/scalars#string"
4701947019
}
4702047020
},
47021+
{
47022+
"name": "dependencyScopes",
47023+
"description": "<p>Filter by the scope of the alert's dependency.</p>",
47024+
"type": {
47025+
"name": "[RepositoryVulnerabilityAlertDependencyScope!]",
47026+
"id": "repositoryvulnerabilityalertdependencyscope",
47027+
"kind": "enums",
47028+
"href": "/graphql/reference/enums#repositoryvulnerabilityalertdependencyscope"
47029+
}
47030+
},
4702147031
{
4702247032
"name": "first",
4702347033
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
@@ -48174,6 +48184,14 @@
4817448184
"kind": "objects",
4817548185
"href": "/graphql/reference/objects#dependabotupdate"
4817648186
},
48187+
{
48188+
"name": "dependencyScope",
48189+
"description": "<p>The scope of an alert's dependency.</p>",
48190+
"type": "RepositoryVulnerabilityAlertDependencyScope",
48191+
"id": "repositoryvulnerabilityalertdependencyscope",
48192+
"kind": "enums",
48193+
"href": "/graphql/reference/enums#repositoryvulnerabilityalertdependencyscope"
48194+
},
4817748195
{
4817848196
"name": "dismissReason",
4817948197
"description": "<p>The reason the alert was dismissed.</p>",
@@ -62856,6 +62874,23 @@
6285662874
}
6285762875
]
6285862876
},
62877+
{
62878+
"name": "RepositoryVulnerabilityAlertDependencyScope",
62879+
"kind": "enums",
62880+
"id": "repositoryvulnerabilityalertdependencyscope",
62881+
"href": "/graphql/reference/enums#repositoryvulnerabilityalertdependencyscope",
62882+
"description": "<p>The possible scopes of an alert's dependency.</p>",
62883+
"values": [
62884+
{
62885+
"name": "DEVELOPMENT",
62886+
"description": "<p>A dependency that is only used in development.</p>"
62887+
},
62888+
{
62889+
"name": "RUNTIME",
62890+
"description": "<p>A dependency that is leveraged during application runtime.</p>"
62891+
}
62892+
]
62893+
},
6285962894
{
6286062895
"name": "RepositoryVulnerabilityAlertState",
6286162896
"kind": "enums",
@@ -63043,6 +63078,10 @@
6304363078
"name": "COMPOSER",
6304463079
"description": "<p>PHP packages hosted at packagist.org.</p>"
6304563080
},
63081+
{
63082+
"name": "ERLANG",
63083+
"description": "<p>Erlang/Elixir packages hosted at hex.pm.</p>"
63084+
},
6304663085
{
6304763086
"name": "GO",
6304863087
"description": "<p>Go modules.</p>"

lib/graphql/static/schema-ghec.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57084,6 +57084,16 @@
5708457084
"href": "/graphql/reference/scalars#string"
5708557085
}
5708657086
},
57087+
{
57088+
"name": "dependencyScopes",
57089+
"description": "<p>Filter by the scope of the alert's dependency.</p>",
57090+
"type": {
57091+
"name": "[RepositoryVulnerabilityAlertDependencyScope!]",
57092+
"id": "repositoryvulnerabilityalertdependencyscope",
57093+
"kind": "enums",
57094+
"href": "/graphql/reference/enums#repositoryvulnerabilityalertdependencyscope"
57095+
}
57096+
},
5708757097
{
5708857098
"name": "first",
5708957099
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
@@ -58273,6 +58283,14 @@
5827358283
"kind": "objects",
5827458284
"href": "/graphql/reference/objects#dependabotupdate"
5827558285
},
58286+
{
58287+
"name": "dependencyScope",
58288+
"description": "<p>The scope of an alert's dependency.</p>",
58289+
"type": "RepositoryVulnerabilityAlertDependencyScope",
58290+
"id": "repositoryvulnerabilityalertdependencyscope",
58291+
"kind": "enums",
58292+
"href": "/graphql/reference/enums#repositoryvulnerabilityalertdependencyscope"
58293+
},
5827658294
{
5827758295
"name": "dismissReason",
5827858296
"description": "<p>The reason the alert was dismissed.</p>",
@@ -76752,6 +76770,23 @@
7675276770
}
7675376771
]
7675476772
},
76773+
{
76774+
"name": "RepositoryVulnerabilityAlertDependencyScope",
76775+
"kind": "enums",
76776+
"id": "repositoryvulnerabilityalertdependencyscope",
76777+
"href": "/graphql/reference/enums#repositoryvulnerabilityalertdependencyscope",
76778+
"description": "<p>The possible scopes of an alert's dependency.</p>",
76779+
"values": [
76780+
{
76781+
"name": "DEVELOPMENT",
76782+
"description": "<p>A dependency that is only used in development.</p>"
76783+
},
76784+
{
76785+
"name": "RUNTIME",
76786+
"description": "<p>A dependency that is leveraged during application runtime.</p>"
76787+
}
76788+
]
76789+
},
7675576790
{
7675676791
"name": "RepositoryVulnerabilityAlertState",
7675776792
"kind": "enums",
@@ -76939,6 +76974,10 @@
7693976974
"name": "COMPOSER",
7694076975
"description": "<p>PHP packages hosted at packagist.org.</p>"
7694176976
},
76977+
{
76978+
"name": "ERLANG",
76979+
"description": "<p>Erlang/Elixir packages hosted at hex.pm.</p>"
76980+
},
7694276981
{
7694376982
"name": "GO",
7694476983
"description": "<p>Go modules.</p>"

0 commit comments

Comments
 (0)