Skip to content

Commit

Permalink
Bump graphiql to 2.2.0
Browse files Browse the repository at this point in the history
Update bundled graphiql, graphql-ws, and react to latest versions
  • Loading branch information
josephlbarnett committed Dec 5, 2022
1 parent 76b15a9 commit 722e754
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
10 changes: 5 additions & 5 deletions graphql/src/main/resources/graphiql/index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<html>
<head>
<title>GraphiQL</title>
<link href="//unpkg.com/graphiql@1.4.6/graphiql.min.css" rel="stylesheet"/>
<link href="//unpkg.com/graphiql@2.2.0/graphiql.min.css" rel="stylesheet"/>
</head>
<body style="margin: 0;">
<div id="graphiql" style="height: 100vh;"></div>

<script crossorigin src="//unpkg.com/react@17.0.2/umd/react.production.min.js"></script>
<script crossorigin src="//unpkg.com/react-dom@17.0.2/umd/react-dom.production.min.js"></script>
<script crossorigin src="//unpkg.com/graphiql@1.4.6/graphiql.min.js"></script>
<script crossorigin src="//unpkg.com/graphql-ws@5.5.5/umd/graphql-ws.min.js"></script>
<script crossorigin src="//unpkg.com/react@18.2.0/umd/react.production.min.js"></script>
<script crossorigin src="//unpkg.com/react-dom@18.2.0/umd/react-dom.production.min.js"></script>
<script crossorigin src="//unpkg.com/graphiql@2.2.0/graphiql.min.js"></script>
<script crossorigin src="//unpkg.com/graphql-ws@5.11.2/umd/graphql-ws.min.js"></script>

<script>
const fetcherFactory = function (subscriptionsClient, fallbackFetcher) {
Expand Down
5 changes: 1 addition & 4 deletions server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,5 @@ $ mvn exec:java -Dexec.mainClass=com.trib3.server.TribeApplicationKt
When running in [AWS Elastic Beanstalk](https://aws.amazon.com/elasticbeanstalk/), the assembly configuration
from [build-resources](https://github.com/trib3/leakycauldron/blob/HEAD/build-resources)
can be used to create a `.zip` distribution that configures health checks and timeout values. With the
preconfigured `Java 8` Elastic Beanstalk platform, the `PORT` environment property should be set to `5000` in the
preconfigured `Java 17` Elastic Beanstalk platform, the `PORT` environment property should be set to `5000` in the
environment's software configuration.

For running in [AWS Lambda](https://aws.amazon.com/lambda/),
see [lambda](https://github.com/trib3/leakycauldron/blob/HEAD/lambda)

0 comments on commit 722e754

Please sign in to comment.