Skip to content
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
2 changes: 2 additions & 0 deletions juniper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi

- [September 2025] GraphQL spec: ([#1347])
- Canonical introspection query to [16.11.0 version of GraphQL.js](https://github.com/graphql/graphql-js/blob/v16.11.0/src/utilities/getIntrospectionQuery.ts#L75). ([#1348])
- Upgraded [GraphiQL] to [5.2.1 version](https://github.com/graphql/graphiql/blob/graphiql%405.2.1/packages/graphiql/CHANGELOG.md#521). ([#1358])

### Fixed

Expand All @@ -72,6 +73,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
[#1353]: /../../pull/1353
[#1354]: /../../pull/1354
[#1355]: /../../pull/1355
[#1358]: /../../pull/1358
[graphql/graphql-spec#525]: https://github.com/graphql/graphql-spec/pull/525
[graphql/graphql-spec#687]: https://github.com/graphql/graphql-spec/issues/687
[graphql/graphql-spec#805]: https://github.com/graphql/graphql-spec/pull/805
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.2.0",
"graphiql": "5.2.1",
"graphql-playground-react": "1.7.28"
}
}
8 changes: 4 additions & 4 deletions juniper/src/http/graphiql.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
font-size: 4rem;
}
</style>
<link rel="stylesheet" href="https://esm.sh/[email protected].0/dist/style.css" />
<link rel="stylesheet" href="https://esm.sh/[email protected].1/dist/style.css" />
<link
rel="stylesheet"
href="https://esm.sh/@graphiql/[email protected]/dist/style.css"
Expand All @@ -47,10 +47,10 @@
"react-dom": "https://esm.sh/[email protected]",
"react-dom/": "https://esm.sh/[email protected]/",

"graphiql": "https://esm.sh/[email protected].0?standalone&external=react,react-dom,@graphiql/react,graphql",
"graphiql/": "https://esm.sh/[email protected].0/",
"graphiql": "https://esm.sh/[email protected].1?standalone&external=react,react-dom,@graphiql/react,graphql",
"graphiql/": "https://esm.sh/[email protected].1/",
"@graphiql/plugin-explorer": "https://esm.sh/@graphiql/[email protected]?standalone&external=react,@graphiql/react,graphql",
"@graphiql/react": "https://esm.sh/@graphiql/[email protected].1?standalone&external=react,react-dom,graphql,@graphiql/toolkit,@emotion/is-prop-valid",
"@graphiql/react": "https://esm.sh/@graphiql/[email protected].2?standalone&external=react,react-dom,graphql,@graphiql/toolkit,@emotion/is-prop-valid",

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