-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: defer, stream, websockets support in a createGraphiQLFetcher ut…
…ility (#1770) - support for `@defer` and `@stream` in `GraphiQL` itself on fetcher execution and when handling stream payloads - introduce `@graphiql/toolkit` for types and utilities used to compose `GraphiQL` and other related libraries - introduce `@graphiql/create-fetcher` to accept simplified parameters to generate a `fetcher` that covers the most commonly used `graphql-over-http` transport spec proposals. using `meros` for multipart http, and `graphql-ws` for websockets subscriptions. - use `graphql` and `graphql-express` `experimental-defer-stream` branch in development until it's merged - add cypress e2e tests for `@stream` in different scenarios - add some unit tests for `createGraphiQLFetcher` - add `changesets` because lerna publish no longer works. get rid of commitlint
- Loading branch information
Showing
68 changed files
with
2,474 additions
and
3,357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Changesets | ||
|
||
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works | ||
with multi-package repos, or single-package repos to help you version and publish your code. You can | ||
find the full documentation for it [in our repository](https://github.com/changesets/changesets) | ||
|
||
We have a quick list of common questions to get you started engaging with this project in | ||
[our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"linked": [], | ||
"access": "public", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "minor", | ||
"ignore": ["example-*", "graphiql-2-rfc-context*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
'graphiql': minor | ||
'@graphiql/create-fetcher': minor | ||
'@graphiql/toolkit': minor | ||
--- | ||
|
||
`@defer`, `@stream`, and `graphql-ws` support in a `createGraphiQLFetcher` utility (#1770) | ||
|
||
- support for `@defer` and `@stream` in `GraphiQL` itself on fetcher execution and when handling stream payloads | ||
- introduce `@graphiql/toolkit` for types and utilities used to compose `GraphiQL` and other related libraries | ||
- introduce `@graphiql/create-fetcher` to accept simplified parameters to generate a `fetcher` that covers the most commonly used `graphql-over-http` transport spec proposals. using `meros` for multipart http, and `graphql-ws` for websockets subscriptions. | ||
- use `graphql` and `graphql-express` `experimental-defer-stream` branch in development until it's merged | ||
- add cypress e2e tests for `@stream` in different scenarios | ||
- add some unit tests for `createGraphiQLFetcher` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@master | ||
with: | ||
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | ||
fetch-depth: 0 | ||
- name: Setup Node.js 12.x | ||
uses: actions/setup-node@master | ||
with: | ||
node-version: 12.x | ||
- name: Create Release Pull Request or Publish to npm | ||
id: changesets | ||
uses: changesets/action@master | ||
with: | ||
# This expects you to have a script called release which does a build for your packages and calls changeset publish | ||
publish: yarn release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,6 @@ lerna-debug.log | |
.yarnrc | ||
yarn-1.18.0.js | ||
*.orig | ||
|
||
# Local Netlify folder | ||
.netlify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
engine-strict=true | ||
access=public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,3 @@ | ||
# Cutting New Releases | ||
|
||
We chose a manual process which is pretty simple and flexible because of our conventional commit messages. | ||
|
||
If you have NPM privileges, you have the ability to cut new releases of the packages herein. | ||
|
||
## Requirements | ||
|
||
You'll need: | ||
|
||
- `GH_TOKEN` : a github user token as an environment variable | ||
- `git` command line installed, obviously! | ||
- to run `yarn login` first to ensure you're authenticated for publishing | ||
- your npm 2FA should be enabled, and you should have your second factor device handy for publish | ||
- your remote should be named `origin` for github, and should be the ssh url | ||
- (coming soon) GPG key uploaded to account for signing | ||
|
||
Note: Always publish from `master`. Always execute `yarn test` beforehand, and check the `examples/graphiql-webpack` to ensure there aren't any webpack build bugs. | ||
|
||
## Prereleases | ||
|
||
```sh | ||
lerna publish --conventional-prerelease graphiql --otp <your-otp> | ||
``` | ||
|
||
for a specific package, or leave blank for all packages. | ||
|
||
It will automatically generate pre-release versions that reflect the conventional pattern from the commit log - so some packages may end up pre-alpha, others may be pre-minor, etc. | ||
|
||
For example, if you made a change to `graphql-language-service-utils` there would be a new version for every single package. But if you made a change to `graphiql` in the commits since the last publish, there should only be a new pre-release version for `graphiql` when you run this command. | ||
|
||
You can also `--amend` a previous release upon publishing, overriding the previous git tags | ||
|
||
## Graduating Prereleases | ||
|
||
Now, after creating and publishing some pre-release versions, if you want to graduate them you can do so with a command that works in very much the same way as above. | ||
|
||
```sh | ||
lerna publish --conventional-graduate * --otp <your token> | ||
``` | ||
|
||
Would graduate all pre-alphas to patch releases, pre-minors to minor releases, etc. | ||
|
||
You can also give a comma seperated list of packages, or just a single one, as with `prereleases` | ||
|
||
```sh | ||
lerna publish --conventional-graduate codemirror-graphql --otp <your token> | ||
``` | ||
|
||
## Full Releases | ||
|
||
```sh | ||
lerna publish --otp <your token> | ||
``` | ||
|
||
Will automatically detect and generate changelog/etc with appropriate versions and entries for all subpackage, no need to supply package names or an asterisk | ||
TODO: Redo for `changesets`. See [`Changesets Readme`](./.changeset/README.md) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* example using https://github.com/awslabs/aws-serverless-express */ | ||
const express = require('express'); | ||
const { graphqlHTTP } = require('express-graphql'); | ||
const awsServerlessExpress = require('aws-serverless-express'); | ||
const schema = require('../packages/graphiql/test/schema'); | ||
const cors = require('cors'); | ||
|
||
const binaryMimeTypes = [ | ||
'application/javascript', | ||
'application/json', | ||
'font/eot', | ||
'font/opentype', | ||
'font/otf', | ||
'image/jpeg', | ||
'image/png', | ||
'image/svg+xml', | ||
'text/css', | ||
'text/html', | ||
'text/javascript', | ||
'multipart/mixed', | ||
]; | ||
|
||
const app = express(); | ||
|
||
app.use(cors({ origin: '*' })); | ||
|
||
// Requests to /graphql redirect to / | ||
app.all('/graphql', (req, res) => res.redirect('/')); | ||
|
||
// Finally, serve up the GraphQL Schema itself | ||
app.use( | ||
'/', | ||
graphqlHTTP(() => ({ schema })), | ||
); | ||
|
||
const server = awsServerlessExpress.createServer(app, null, binaryMimeTypes); | ||
|
||
exports.handler = (event, context) => | ||
awsServerlessExpress.proxy(server, event, context); | ||
|
||
// // Server | ||
// app.post('/graphql', graphqlHTTP({ schema })); | ||
|
||
// // app.get('/graphql', graphQLMiddleware); | ||
// // Export Lambda handler | ||
|
||
// exports.handler = serverless(app, { | ||
// httpMethod: 'POST' | ||
// }) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.