From dd8c7fffba405875e1b850116021d03a06cf4c5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 22:19:42 +0000 Subject: [PATCH 1/3] Bump graphiql from 5.2.2 to 5.2.3 in /juniper Bumps [graphiql](https://github.com/graphql/graphiql/tree/HEAD/packages/graphiql) from 5.2.2 to 5.2.3. - [Release notes](https://github.com/graphql/graphiql/releases) - [Changelog](https://github.com/graphql/graphiql/blob/main/packages/graphiql/CHANGELOG.md) - [Commits](https://github.com/graphql/graphiql/commits/graphiql@5.2.3/packages/graphiql) --- updated-dependencies: - dependency-name: graphiql dependency-version: 5.2.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- juniper/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juniper/package.json b/juniper/package.json index a37b26a66..36b168c81 100644 --- a/juniper/package.json +++ b/juniper/package.json @@ -4,7 +4,7 @@ "postinstall": "make graphiql graphql-playground" }, "dependencies": { - "graphiql": "5.2.2", + "graphiql": "5.2.3", "graphql-playground-react": "1.7.28" } } From 27df04360423a6bee0fc8bf104fd80194894cf49 Mon Sep 17 00:00:00 2001 From: Kai Ren Date: Mon, 18 May 2026 00:25:45 +0300 Subject: [PATCH 2/3] Regen --- juniper/Makefile | 14 ++++++++++---- juniper/src/http/graphiql.html | 32 +++++++++++++++++--------------- 2 files changed, 27 insertions(+), 19 deletions(-) diff --git a/juniper/Makefile b/juniper/Makefile index 9d877a000..be0f6b9f6 100644 --- a/juniper/Makefile +++ b/juniper/Makefile @@ -46,13 +46,13 @@ graphiql: | grep -m1 '"@graphiql/toolkit": "' | cut -d '"' -f4 | cut -d '^' -f2))) curl -fsL -o src/http/graphiql.html \ https://raw.githubusercontent.com/graphql/graphiql/graphiql%40$(GRAPHIQL_VER)/examples/graphiql-cdn/index.html - $(sed-i) 's|esm.sh/graphiql|esm.sh/graphiql@$(GRAPHIQL_VER)|g' \ + $(sed-i) -E 's|esm.sh/graphiql@[^/?]+|esm.sh/graphiql@$(GRAPHIQL_VER)|g' \ src/http/graphiql.html - $(sed-i) 's|esm.sh/@graphiql/plugin-explorer|esm.sh/@graphiql/plugin-explorer@$(graphiql-plugin-explorer-ver)|g' \ + $(sed-i) -E 's|esm.sh/@graphiql/plugin-explorer@[^/?]+|esm.sh/@graphiql/plugin-explorer@$(graphiql-plugin-explorer-ver)|g' \ src/http/graphiql.html - $(sed-i) 's|esm.sh/@graphiql/react|esm.sh/@graphiql/react@$(graphiql-react-ver)|g' \ + $(sed-i) -E 's|esm.sh/@graphiql/react@[^/?]+|esm.sh/@graphiql/react@$(graphiql-react-ver)|g' \ src/http/graphiql.html - $(sed-i) 's|esm.sh/@graphiql/toolkit|esm.sh/@graphiql/toolkit@$(graphiql-toolkit-ver)|g' \ + $(sed-i) -E 's|esm.sh/@graphiql/toolkit@[^/?]+|esm.sh/@graphiql/toolkit@$(graphiql-toolkit-ver)|g' \ src/http/graphiql.html $(sed-i) "s|'https://countries.trevorblades.com'|JUNIPER_URL|g" \ src/http/graphiql.html @@ -62,6 +62,12 @@ graphiql: src/http/graphiql.html $(sed-i) 's|GraphiQL 5 with React 19 and GraphiQL Explorer|GraphiQL|' \ src/http/graphiql.html + $(sed-i) -E '/integrity="[^"]+"/d' \ + src/http/graphiql.html + $(sed-i) '/"integrity": {/,/}/d' \ + src/http/graphiql.html + $(sed-i) -E 's| },| }|' \ + src/http/graphiql.html # Download and prepare actual version of GraphQL Playground static files, used diff --git a/juniper/src/http/graphiql.html b/juniper/src/http/graphiql.html index c73ac72c1..68b3189a3 100644 --- a/juniper/src/http/graphiql.html +++ b/juniper/src/http/graphiql.html @@ -28,10 +28,15 @@ font-size: 4rem; } - +