From 5152593dff6d77b7387648df2613260ea0c3a34f Mon Sep 17 00:00:00 2001 From: rachmari Date: Thu, 23 Sep 2021 16:35:07 +0000 Subject: [PATCH] Action ran graphql script"update-files" --- data/graphql/ghae/schema.docs-ghae.graphql | 5 +++++ data/graphql/schema.docs.graphql | 5 +++++ lib/graphql/static/changelog.json | 13 +++++++++++++ lib/graphql/static/schema-dotcom.json | 4 ++++ lib/graphql/static/schema-ghae.json | 4 ++++ 5 files changed, 31 insertions(+) diff --git a/data/graphql/ghae/schema.docs-ghae.graphql b/data/graphql/ghae/schema.docs-ghae.graphql index fa8905fb85..217e0269f3 100644 --- a/data/graphql/ghae/schema.docs-ghae.graphql +++ b/data/graphql/ghae/schema.docs-ghae.graphql @@ -34084,6 +34084,11 @@ enum SecurityAdvisoryEcosystem { Ruby gems hosted at RubyGems.org """ RUBYGEMS + + """ + Rust crates + """ + RUST } """ diff --git a/data/graphql/schema.docs.graphql b/data/graphql/schema.docs.graphql index 1db6562caf..3e74e7c3a5 100644 --- a/data/graphql/schema.docs.graphql +++ b/data/graphql/schema.docs.graphql @@ -37003,6 +37003,11 @@ enum SecurityAdvisoryEcosystem { Ruby gems hosted at RubyGems.org """ RUBYGEMS + + """ + Rust crates + """ + RUST } """ diff --git a/lib/graphql/static/changelog.json b/lib/graphql/static/changelog.json index bdf7b1628a..f95ffea3e6 100644 --- a/lib/graphql/static/changelog.json +++ b/lib/graphql/static/changelog.json @@ -1,4 +1,17 @@ [ + { + "schemaChanges": [ + { + "title": "The GraphQL schema includes these changes:", + "changes": [ + "Enum value `RUST` was added to enum `SecurityAdvisoryEcosystem`" + ] + } + ], + "previewChanges": [], + "upcomingChanges": [], + "date": "2021-09-23" + }, { "schemaChanges": [ { diff --git a/lib/graphql/static/schema-dotcom.json b/lib/graphql/static/schema-dotcom.json index d200dab4f1..0cb553b10e 100644 --- a/lib/graphql/static/schema-dotcom.json +++ b/lib/graphql/static/schema-dotcom.json @@ -67801,6 +67801,10 @@ { "name": "RUBYGEMS", "description": "

Ruby gems hosted at RubyGems.org.

" + }, + { + "name": "RUST", + "description": "

Rust crates.

" } ] }, diff --git a/lib/graphql/static/schema-ghae.json b/lib/graphql/static/schema-ghae.json index 1c3b1a9e0d..fdb315252f 100644 --- a/lib/graphql/static/schema-ghae.json +++ b/lib/graphql/static/schema-ghae.json @@ -61116,6 +61116,10 @@ { "name": "RUBYGEMS", "description": "

Ruby gems hosted at RubyGems.org.

" + }, + { + "name": "RUST", + "description": "

Rust crates.

" } ] },