Releases: launchport/helix-flare
Releases · launchport/helix-flare
v2.0.0
Breaking changes
graphql
is now apeerDependency
(v15 or v16)- Update packages
envelop
peer dependency is now v2- Throw
400
response if request JSON body parsing throws graphiql
is not included by default anymore.
This shaves off about 1 MB of the worker if not needed!
This can now be done manually, on-demand like so:
import { shouldRenderGraphiQL, getGraphiQLResponse } from 'helix-flare'
// ...
async fetch(request) {
if (await shouldRenderGraphiQL(request)) {
return getGraphiQLResponse()
}
// ...
}
Bundlers will automatically tree-shake it if it's not included
v1.1.5
v1.1.3
v1.1.2
v1.1.1
v1.1.0
Initial Release
This is the first release.
From now on, we'll use Semver to communicate changes to you. We are using it in production.
Good luck everyone 👏🏻