Upgrade GraphiQL from 3.0.9 to 3.0.10 version (#1221)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kai Ren <tyranron@gmail.com>
This commit is contained in:
parent
3645df27b6
commit
5b58b85a37
3 changed files with 5 additions and 5 deletions
|
@ -51,7 +51,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
|
||||||
- Disabled `chrono` [Cargo feature] by default.
|
- Disabled `chrono` [Cargo feature] by default.
|
||||||
- Removed `scalar-naivetime` [Cargo feature].
|
- Removed `scalar-naivetime` [Cargo feature].
|
||||||
- Removed lifetime parameter from `ParseError`, `GraphlQLError`, `GraphQLBatchRequest` and `GraphQLRequest`. ([#1081], [#528])
|
- Removed lifetime parameter from `ParseError`, `GraphlQLError`, `GraphQLBatchRequest` and `GraphQLRequest`. ([#1081], [#528])
|
||||||
- Upgraded [GraphiQL] to 3.0.9 version (requires new [`graphql-transport-ws` GraphQL over WebSocket Protocol] integration on server, see `juniper_warp/examples/subscription.rs`). ([#1188], [#1193], [#1204])
|
- Upgraded [GraphiQL] to 3.0.10 version (requires new [`graphql-transport-ws` GraphQL over WebSocket Protocol] integration on server, see `juniper_warp/examples/subscription.rs`). ([#1188], [#1193], [#1221])
|
||||||
- Made `LookAheadMethods::children()` method to return slice instead of `Vec`. ([#1200])
|
- Made `LookAheadMethods::children()` method to return slice instead of `Vec`. ([#1200])
|
||||||
- Abstracted `Spanning::start` and `Spanning::end` fields into separate struct `Span`. ([#1207], [#1208])
|
- Abstracted `Spanning::start` and `Spanning::end` fields into separate struct `Span`. ([#1207], [#1208])
|
||||||
- Added `Span` to `Arguments` and `LookAheadArguments`. ([#1206], [#1209])
|
- Added `Span` to `Arguments` and `LookAheadArguments`. ([#1206], [#1209])
|
||||||
|
@ -134,12 +134,12 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
|
||||||
[#1193]: /../../pull/1193
|
[#1193]: /../../pull/1193
|
||||||
[#1199]: /../../pull/1199
|
[#1199]: /../../pull/1199
|
||||||
[#1200]: /../../pull/1200
|
[#1200]: /../../pull/1200
|
||||||
[#1204]: /../../pull/1204
|
|
||||||
[#1206]: /../../pull/1206
|
[#1206]: /../../pull/1206
|
||||||
[#1207]: /../../pull/1207
|
[#1207]: /../../pull/1207
|
||||||
[#1208]: /../../pull/1208
|
[#1208]: /../../pull/1208
|
||||||
[#1209]: /../../pull/1209
|
[#1209]: /../../pull/1209
|
||||||
[#1215]: /../../pull/1215
|
[#1215]: /../../pull/1215
|
||||||
|
[#1221]: /../../pull/1221
|
||||||
[ba1ed85b]: /../../commit/ba1ed85b3c3dd77fbae7baf6bc4e693321a94083
|
[ba1ed85b]: /../../commit/ba1ed85b3c3dd77fbae7baf6bc4e693321a94083
|
||||||
[CVE-2022-31173]: /../../security/advisories/GHSA-4rx6-g5vg-5f3j
|
[CVE-2022-31173]: /../../security/advisories/GHSA-4rx6-g5vg-5f3j
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"postinstall": "make graphiql graphql-playground"
|
"postinstall": "make graphiql graphql-playground"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"graphiql": "3.0.9",
|
"graphiql": "3.0.10",
|
||||||
"graphql-playground-react": "1.7.28"
|
"graphql-playground-react": "1.7.28"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,10 +42,10 @@
|
||||||
favored resource bundler.
|
favored resource bundler.
|
||||||
-->
|
-->
|
||||||
<script
|
<script
|
||||||
src="https://unpkg.com/graphiql@3.0.9/graphiql.min.js"
|
src="https://unpkg.com/graphiql@3.0.10/graphiql.min.js"
|
||||||
type="application/javascript"
|
type="application/javascript"
|
||||||
></script>
|
></script>
|
||||||
<link rel="stylesheet" href="https://unpkg.com/graphiql@3.0.9/graphiql.min.css" />
|
<link rel="stylesheet" href="https://unpkg.com/graphiql@3.0.10/graphiql.min.css" />
|
||||||
<!--
|
<!--
|
||||||
These are imports for the GraphIQL Explorer plugin.
|
These are imports for the GraphIQL Explorer plugin.
|
||||||
-->
|
-->
|
||||||
|
|
Loading…
Reference in a new issue