Skip to content

Bump graphiql from 5.0.0 to 5.0.2 in /juniper #1333

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions juniper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi

### Changed

- Upgraded [GraphiQL] to [5.0.0 version](https://github.com/graphql/graphiql/blob/graphiql%405.0.0/packages/graphiql/CHANGELOG.md#500). ([#1331])
- Upgraded [GraphiQL] to [5.0.2 version](https://github.com/graphql/graphiql/blob/graphiql%405.0.2/packages/graphiql/CHANGELOG.md#502). ([#1333])
- Lifted `Sized` requirement from `ToInputValue` conversion trait. ([#1330])

### Fixed
Expand All @@ -156,7 +156,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
[#1327]: /../../pull/1327
[#1329]: /../../pull/1329
[#1330]: /../../pull/1330
[#1331]: /../../pull/1331
[#1333]: /../../pull/1333
[1b1fc618]: /../../commit/1b1fc61879ffdd640d741e187dc20678bf7ab295
[20609366]: /../../commit/2060936635609b0186d46d8fbd06eb30fce660e3
[4b14c015]: /../../commit/4b14c015018d31cb6df848efdee24d96416b76d9
Expand Down
8 changes: 3 additions & 5 deletions juniper/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,11 @@ 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@5.0.0-rc.1|esm.sh/graphiql@$(GRAPHIQL_VER)|g' \
$(sed-i) 's|esm.sh/graphiql|esm.sh/graphiql@$(GRAPHIQL_VER)|g' \
src/http/graphiql.html
$(sed-i) 's|esm.sh/graphiql@6.0.0-canary-b26dcda1.0|esm.sh/graphiql@$(GRAPHIQL_VER)|g' \
$(sed-i) '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/plugin-explorer@5.0.0-rc.1|esm.sh/@graphiql/plugin-explorer@$(graphiql-plugin-explorer-ver)|g' \
src/http/graphiql.html
$(sed-i) 's|esm.sh/@graphiql/react@0.36.0-canary-b26dcda1.0|esm.sh/@graphiql/react@$(graphiql-react-ver)|g' \
$(sed-i) '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' \
src/http/graphiql.html
Expand Down
2 changes: 1 addition & 1 deletion juniper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"postinstall": "make graphiql graphql-playground"
},
"dependencies": {
"graphiql": "5.0.0",
"graphiql": "5.0.2",
"graphql-playground-react": "1.7.28"
}
}
9 changes: 3 additions & 6 deletions juniper/src/http/graphiql.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@
font-size: 4rem;
}
</style>
<link
rel="stylesheet"
href="https://esm.sh/graphiql@5.0.0/dist/style.css"
/>
<link rel="stylesheet" href="https://esm.sh/graphiql@5.0.2/dist/style.css" />
<link
rel="stylesheet"
href="https://esm.sh/@graphiql/plugin-explorer@5.0.0/dist/style.css"
Expand All @@ -46,9 +43,9 @@
"react-dom": "https://esm.sh/react-dom@19.1.0",
"react-dom/client": "https://esm.sh/react-dom@19.1.0/client",

"graphiql": "https://esm.sh/graphiql@5.0.0?standalone&external=react,react-dom,@graphiql/react,graphql",
"graphiql": "https://esm.sh/graphiql@5.0.2?standalone&external=react,react-dom,@graphiql/react,graphql",
"@graphiql/plugin-explorer": "https://esm.sh/@graphiql/plugin-explorer@5.0.0?standalone&external=react,@graphiql/react,graphql",
"@graphiql/react": "https://esm.sh/@graphiql/react@0.35.0?standalone&external=react,react-dom,graphql",
"@graphiql/react": "https://esm.sh/@graphiql/react@0.35.3?standalone&external=react,react-dom,graphql",

"@graphiql/toolkit": "https://esm.sh/@graphiql/toolkit@0.11.3?standalone&external=graphql",
"graphql": "https://esm.sh/graphql@16.11.0"
Expand Down