Skip to content

Commit e773ef8

Browse files
authored
chore: pin graphiql and @graphiql/plugin-explorer versions (#107)
* Pin `graphiql` and `@graphiql/plugin-explorer` * Add changelog entry * Reword changelog entry
1 parent 7267d03 commit e773ef8

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
- Pin `graphiql` version to `^3`
15+
- Pin `@graphiql/plugin-explorer` version to `~0.3`
16+
1417
### Fixed
1518

1619
- GraphiQL Explorer Plugin initialization due to upstream implementation pattern change

app/graphiql.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
}
1515
</style>
1616

17-
<link rel="stylesheet" href="https://unpkg.com/graphiql/graphiql.min.css" />
18-
<link rel="stylesheet" href="https://unpkg.com/@graphiql/plugin-explorer/dist/style.css" />
17+
<link rel="stylesheet" href="https://unpkg.com/graphiql@3/graphiql.min.css" />
18+
<link rel="stylesheet" href="https://unpkg.com/@graphiql/plugin-explorer@0.3/dist/style.css" />
1919
</head>
2020

2121
<body>
@@ -24,8 +24,8 @@
2424
<script crossorigin src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
2525
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
2626

27-
<script crossorigin src="https://unpkg.com/graphiql/graphiql.min.js"></script>
28-
<script crossorigin src="https://unpkg.com/@graphiql/plugin-explorer/dist/index.umd.js"></script>
27+
<script crossorigin src="https://unpkg.com/graphiql@3/graphiql.min.js"></script>
28+
<script crossorigin src="https://unpkg.com/@graphiql/plugin-explorer@0.3/dist/index.umd.js"></script>
2929

3030
<script>
3131
const fetcher = GraphiQL.createFetcher({ url: '' })

0 commit comments

Comments
 (0)