Update GraphiQL from 3.0.5 to 3.0.6 version (#1193)

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:
dependabot[bot] 2023-09-20 14:30:04 +00:00 committed by GitHub
parent cb26dee3b7
commit a74ea9ccb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 12 deletions

View file

@ -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.5 version (requires new [`graphql-ws` GraphQL over WebSocket Protocol] integration on server, see `examples/warp_subscriptions`). ([#1188]) - Upgraded [GraphiQL] to 3.0.6 version (requires new [`graphql-ws` GraphQL over WebSocket Protocol] integration on server, see `examples/warp_subscriptions`). ([#1188], [#1193])
### Added ### Added
@ -125,6 +125,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
[#1176]: /../../pull/1176 [#1176]: /../../pull/1176
[#1188]: /../../pull/1188 [#1188]: /../../pull/1188
[#1190]: /../../pull/1190 [#1190]: /../../pull/1190
[#1193]: /../../pull/1193
[ba1ed85b]: /../../commit/ba1ed85b3c3dd77fbae7baf6bc4e693321a94083 [ba1ed85b]: /../../commit/ba1ed85b3c3dd77fbae7baf6bc4e693321a94083
[CVE-2022-31173]: /../../security/advisories/GHSA-4rx6-g5vg-5f3j [CVE-2022-31173]: /../../security/advisories/GHSA-4rx6-g5vg-5f3j

View file

@ -4,7 +4,7 @@
"postinstall": "make graphiql graphql-playground" "postinstall": "make graphiql graphql-playground"
}, },
"dependencies": { "dependencies": {
"graphiql": "3.0.5", "graphiql": "3.0.6",
"graphql-playground-react": "1.7.28" "graphql-playground-react": "1.7.28"
} }
} }

View file

@ -21,7 +21,6 @@
height: 100vh; height: 100vh;
} }
</style> </style>
<!-- <!--
This GraphiQL example depends on Promise and fetch, which are available in This GraphiQL example depends on Promise and fetch, which are available in
modern browsers, but can be "polyfilled" for older browsers. modern browsers, but can be "polyfilled" for older browsers.
@ -37,20 +36,28 @@
crossorigin crossorigin
src="https://unpkg.com/react-dom@18/umd/react-dom.development.js" src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"
></script> ></script>
<script
src="https://unpkg.com/graphiql@3.0.5/graphiql.min.js"
type="application/javascript"
></script>
<script
src="https://unpkg.com/@graphiql/plugin-explorer/dist/index.umd.js"
crossorigin
></script>
<!-- <!--
These two files can be found in the npm module, however you may wish to These two files can be found in the npm module, however you may wish to
copy them directly into your environment, or perhaps include them in your copy them directly into your environment, or perhaps include them in your
favored resource bundler. favored resource bundler.
--> -->
<link rel="stylesheet" href="https://unpkg.com/graphiql@3.0.5/graphiql.min.css" /> <script
src="https://unpkg.com/graphiql@3.0.6/graphiql.min.js"
type="application/javascript"
></script>
<link rel="stylesheet" href="https://unpkg.com/graphiql@3.0.6/graphiql.min.css" />
<!--
These are imports for the GraphIQL Explorer plugin.
-->
<script
src="https://unpkg.com/@graphiql/plugin-explorer/dist/index.umd.js"
crossorigin
></script>
<link
rel="stylesheet"
href="https://unpkg.com/@graphiql/plugin-explorer/dist/style.css"
/>
</head> </head>
<body> <body>