Skip to content

Releases: launchport/helix-flare

v2.0.0

01 Apr 13:50
279ff40
Compare
Choose a tag to compare

Breaking changes

  • graphql is now a peerDependency (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

22 Dec 16:20
f207075
Compare
Choose a tag to compare

What's new?

  • Fix Invalid state: WritableStream is closed

v1.1.3

11 Dec 11:07
651cc94
Compare
Choose a tag to compare

What's New

  • Fix sh: patch-package: command not found when installing helix-flare. (thanks @jamesmbourne #2)

v1.1.2

04 Dec 20:40
fcf03c6
Compare
Choose a tag to compare

What's new

  • Mark envelop peer dependency as optional

v1.1.1

30 Nov 18:47
5153472
Compare
Choose a tag to compare

Fix

  • Builds failed because of missing export in package.json

node_modules/helix-flare/package.json:13:13: note: The path "." is not exported by package "helix-flare"

v1.1.0

30 Nov 13:22
f652c51
Compare
Choose a tag to compare

Features:

Initial Release

23 Nov 14:35
52d0a86
Compare
Choose a tag to compare

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 👏🏻