Skip to content

Bump graphiql from 4.0.4 to 4.0.5 in /juniper #1320

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 2 commits into from
May 14, 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
8 changes: 4 additions & 4 deletions juniper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
- `jiff::tz::Offset` as `UtcOffset` scalar.
- `jiff::Span` as `Duration` scalar.
- `http::GraphQLResponse::into_result()` method. ([#1293])
- `String` scalar implementation for `compact_str::CompactString`. ([todo])
- `String` scalar implementation for `compact_str::CompactString`. ([20609366])

### Changed

- Upgraded [GraphiQL] to [4.0.4 version](https://github.com/graphql/graphiql/blob/graphiql%404.0.4/packages/graphiql/CHANGELOG.md#404). ([#1319])
- Upgraded [GraphiQL] to [4.0.5 version](https://github.com/graphql/graphiql/blob/graphiql%404.0.5/packages/graphiql/CHANGELOG.md#405). ([#1320])

### Fixed

Expand All @@ -103,9 +103,9 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
[#1293]: /../../pull/1293
[#1311]: /../../pull/1311
[#1318]: /../../pull/1318
[#1319]: /../../pull/1319
[#1320]: /../../pull/1320
[1b1fc618]: /../../commit/1b1fc61879ffdd640d741e187dc20678bf7ab295
[todo]: /../../commit/todo
[20609366]: /../../commit/2060936635609b0186d46d8fbd06eb30fce660e3



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": "4.0.4",
"graphiql": "4.0.5",
"graphql-playground-react": "1.7.28"
}
}
10 changes: 5 additions & 5 deletions juniper/src/http/graphiql.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
</style>
<link
rel="stylesheet"
href="https://esm.sh/[email protected].4/dist/style.css"
href="https://esm.sh/[email protected].5/dist/style.css"
/>
<link
rel="stylesheet"
href="https://esm.sh/@graphiql/[email protected].3/dist/style.css"
href="https://esm.sh/@graphiql/[email protected].4/dist/style.css"
/>
<!-- Note: the ?standalone flag bundles the module along with all of its `dependencies`, excluding `peerDependencies`, into a single JavaScript file. -->
<script type="importmap">
Expand All @@ -47,9 +47,9 @@
"react-dom": "https://esm.sh/[email protected]",
"react-dom/client": "https://esm.sh/[email protected]/client",

"graphiql": "https://esm.sh/[email protected].4?standalone&external=react,react/jsx-runtime,react-dom,@graphiql/react",
"@graphiql/plugin-explorer": "https://esm.sh/@graphiql/[email protected].3?standalone&external=react,react/jsx-runtime,react-dom,@graphiql/react,graphql",
"@graphiql/react": "https://esm.sh/@graphiql/react@0.32.2?standalone&external=react,react/jsx-runtime,react-dom,graphql,@graphiql/toolkit",
"graphiql": "https://esm.sh/[email protected].5?standalone&external=react,react/jsx-runtime,react-dom,@graphiql/react",
"@graphiql/plugin-explorer": "https://esm.sh/@graphiql/[email protected].4?standalone&external=react,react/jsx-runtime,react-dom,@graphiql/react,graphql",
"@graphiql/react": "https://esm.sh/@graphiql/react@0.33.0?standalone&external=react,react/jsx-runtime,react-dom,graphql,@graphiql/toolkit",

"@graphiql/toolkit": "https://esm.sh/@graphiql/[email protected]?standalone&external=graphql",
"graphql": "https://esm.sh/[email protected]"
Expand Down