-
Notifications
You must be signed in to change notification settings - Fork 575
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump Fetch and Server Adapter packages for Bun Compatibility #1347
Conversation
🦋 Changeset detectedLatest commit: 53654ce The changes in this PR will be included in the next version bump. This PR includes changesets to release 10 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
✅ Benchmark Results
|
9fbe8e7
to
54a67e6
Compare
332b565
to
f64f21f
Compare
🚀 Snapshot Release (
|
Package | Version | Info |
---|---|---|
@graphql-yoga/apollo-link |
1.0.0-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
@graphql-yoga/urql-exchange |
1.0.0-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
@graphql-yoga/common |
3.0.0-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
@graphql-yoga/graphiql |
2.4.3-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
graphql-yoga |
3.0.0-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
@graphql-yoga/node |
3.0.0-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
@graphql-yoga/plugin-apollo-inline-trace |
1.0.0-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
@graphql-yoga/plugin-apq |
1.0.0-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
@graphql-yoga/plugin-persisted-operations |
1.0.0-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
@graphql-yoga/plugin-response-cache |
1.0.0-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
@graphql-yoga/render-graphiql |
3.0.0-alpha-20220907151509-ce171cc9 |
npm ↗︎ unpkg ↗︎ |
@ardatan I am getting the following error on GraphIQL: {
"errors": [
"{\n \"errors\": [\n {\n \"message\": \"POST body sent invalid JSON.\"\n }\n ]\n}"
]
} For curl I get the following: laurinquast@Laurins-MacBook-Pro graphql-yoga % curl localhost:4000/graphql -X POST -H 'content-type: application/json' -d '{"query":"{ __typename }"}'
{"errors":[{"message":"POST body sent invalid JSON."}]}% We should definitely have some integration tests before merging this. |
bbe1e7d
to
f6766c8
Compare
/theguild newsletter |
For things to start I had to edit
node_modules/tiny-lru/package.json
and add an exports map.Also run
mv node_modules/tiny-lru/lib/tiny-lru.esm.js node_modules/tiny-lru/lib/tiny-lru.esm.mjs
Things start (
bun examples/bun/index.ts
), but the server crashes once you visitlocalhost:3000
.