Skip to content

Commit a4974e1

Browse files
Update GraphiQL from 3.3.1 to 3.3.2 version (#1265)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kai Ren <[email protected]>
1 parent b6e82dd commit a4974e1

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

juniper/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
1717

1818
### Changed
1919

20-
- Updated [GraphiQL] to [3.3.1 version](https://github.com/graphql/graphiql/blob/graphiql%403.3.1/packages/graphiql/CHANGELOG.md#331). ([#1264])
20+
- Updated [GraphiQL] to [3.3.2 version](https://github.com/graphql/graphiql/blob/graphiql%403.3.2/packages/graphiql/CHANGELOG.md#332). ([#1265])
2121

2222
[#1252]: /../../pull/1252
23-
[#1264]: /../../pull/1264
23+
[#1265]: /../../pull/1265
2424

2525

2626

juniper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"postinstall": "make graphiql graphql-playground"
55
},
66
"dependencies": {
7-
"graphiql": "3.3.1",
7+
"graphiql": "3.3.2",
88
"graphql-playground-react": "1.7.28"
99
}
1010
}

juniper/src/http/graphiql.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@
4242
favored resource bundler.
4343
-->
4444
<script
45-
src="https://unpkg.com/[email protected].1/graphiql.min.js"
45+
src="https://unpkg.com/[email protected].2/graphiql.min.js"
4646
type="application/javascript"
4747
></script>
48-
<link rel="stylesheet" href="https://unpkg.com/[email protected].1/graphiql.min.css" />
48+
<link rel="stylesheet" href="https://unpkg.com/[email protected].2/graphiql.min.css" />
4949
<!--
5050
These are imports for the GraphIQL Explorer plugin.
5151
-->

tests/codegen/fail/union/struct_same_type_ugly.stderr

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ error[E0119]: conflicting implementations of trait `MutuallyExclusive` for type
1010
= note: this error originates in the macro `::juniper::sa::assert_type_ne_all` which comes from the expansion of the derive macro `GraphQLUnion` (in Nightly builds, run with -Z macro-backtrace for more info)
1111

1212
error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not satisfied
13-
--> fail/union/struct_same_type_ugly.rs:4:14
13+
--> fail/union/struct_same_type_ugly.rs:5:14
1414
|
15-
4 | #[graphql(on String = Character::a)]
16-
| ^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String`
15+
5 | #[graphql(on std::string::String = Character::b)]
16+
| ^^^^^^^^^^^^^^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String`
1717
|
1818
= help: the following other types implement trait `GraphQLObject<S>`:
1919
<&T as GraphQLObject<S>>
@@ -27,10 +27,10 @@ error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not s
2727
<juniper::schema::model::TypeType<'a, S> as GraphQLObject<S>>
2828

2929
error[E0277]: the trait bound `std::string::String: GraphQLObject<__S>` is not satisfied
30-
--> fail/union/struct_same_type_ugly.rs:5:14
30+
--> fail/union/struct_same_type_ugly.rs:4:14
3131
|
32-
5 | #[graphql(on std::string::String = Character::b)]
33-
| ^^^^^^^^^^^^^^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String`
32+
4 | #[graphql(on String = Character::a)]
33+
| ^^^^^^ the trait `GraphQLObject<__S>` is not implemented for `std::string::String`
3434
|
3535
= help: the following other types implement trait `GraphQLObject<S>`:
3636
<&T as GraphQLObject<S>>

0 commit comments

Comments
 (0)