Skip to content

Commit 89efab0

Browse files
Upgrade GraphiQL from 5.0.0 to 5.0.2 version (#1333)
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 c98b6d5 commit 89efab0

File tree

4 files changed

+9
-14
lines changed

4 files changed

+9
-14
lines changed

juniper/CHANGELOG.md

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

131131
### Changed
132132

133-
- Upgraded [GraphiQL] to [5.0.0 version](https://github.com/graphql/graphiql/blob/graphiql%405.0.0/packages/graphiql/CHANGELOG.md#500). ([#1331])
133+
- Upgraded [GraphiQL] to [5.0.2 version](https://github.com/graphql/graphiql/blob/graphiql%405.0.2/packages/graphiql/CHANGELOG.md#502). ([#1333])
134134
- Lifted `Sized` requirement from `ToInputValue` conversion trait. ([#1330])
135135

136136
### Fixed
@@ -156,7 +156,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
156156
[#1327]: /../../pull/1327
157157
[#1329]: /../../pull/1329
158158
[#1330]: /../../pull/1330
159-
[#1331]: /../../pull/1331
159+
[#1333]: /../../pull/1333
160160
[1b1fc618]: /../../commit/1b1fc61879ffdd640d741e187dc20678bf7ab295
161161
[20609366]: /../../commit/2060936635609b0186d46d8fbd06eb30fce660e3
162162
[4b14c015]: /../../commit/4b14c015018d31cb6df848efdee24d96416b76d9

juniper/Makefile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,11 @@ graphiql:
4646
| grep -m1 '"@graphiql/toolkit": "' | cut -d '"' -f4 | cut -d '^' -f2)))
4747
curl -fsL -o src/http/graphiql.html \
4848
https://raw.githubusercontent.com/graphql/graphiql/graphiql%40$(GRAPHIQL_VER)/examples/graphiql-cdn/index.html
49-
$(sed-i) 's|esm.sh/graphiql@5.0.0-rc.1|esm.sh/graphiql@$(GRAPHIQL_VER)|g' \
49+
$(sed-i) 's|esm.sh/graphiql|esm.sh/graphiql@$(GRAPHIQL_VER)|g' \
5050
src/http/graphiql.html
51-
$(sed-i) 's|esm.sh/[email protected]|esm.sh/graphiql@$(GRAPHIQL_VER)|g' \
51+
$(sed-i) 's|esm.sh/@graphiql/plugin-explorer|esm.sh/@graphiql/plugin-explorer@$(graphiql-plugin-explorer-ver)|g' \
5252
src/http/graphiql.html
53-
$(sed-i) 's|esm.sh/@graphiql/[email protected]|esm.sh/@graphiql/plugin-explorer@$(graphiql-plugin-explorer-ver)|g' \
54-
src/http/graphiql.html
55-
$(sed-i) 's|esm.sh/@graphiql/[email protected]|esm.sh/@graphiql/react@$(graphiql-react-ver)|g' \
53+
$(sed-i) 's|esm.sh/@graphiql/react|esm.sh/@graphiql/react@$(graphiql-react-ver)|g' \
5654
src/http/graphiql.html
5755
$(sed-i) 's|esm.sh/@graphiql/toolkit|esm.sh/@graphiql/toolkit@$(graphiql-toolkit-ver)|g' \
5856
src/http/graphiql.html

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": "5.0.0",
7+
"graphiql": "5.0.2",
88
"graphql-playground-react": "1.7.28"
99
}
1010
}

juniper/src/http/graphiql.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,7 @@
2828
font-size: 4rem;
2929
}
3030
</style>
31-
<link
32-
rel="stylesheet"
33-
href="https://esm.sh/[email protected]/dist/style.css"
34-
/>
31+
<link rel="stylesheet" href="https://esm.sh/[email protected]/dist/style.css" />
3532
<link
3633
rel="stylesheet"
3734
href="https://esm.sh/@graphiql/[email protected]/dist/style.css"
@@ -46,9 +43,9 @@
4643
"react-dom": "https://esm.sh/[email protected]",
4744
"react-dom/client": "https://esm.sh/[email protected]/client",
4845

49-
"graphiql": "https://esm.sh/[email protected].0?standalone&external=react,react-dom,@graphiql/react,graphql",
46+
"graphiql": "https://esm.sh/[email protected].2?standalone&external=react,react-dom,@graphiql/react,graphql",
5047
"@graphiql/plugin-explorer": "https://esm.sh/@graphiql/[email protected]?standalone&external=react,@graphiql/react,graphql",
51-
"@graphiql/react": "https://esm.sh/@graphiql/[email protected].0?standalone&external=react,react-dom,graphql",
48+
"@graphiql/react": "https://esm.sh/@graphiql/[email protected].3?standalone&external=react,react-dom,graphql",
5249

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

0 commit comments

Comments
 (0)