Skip to content

v4.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 05 Sep 18:34
· 38 commits to main since this release
43a5e4e

BREAKING CHANGES

  • All create*Event methods now return a string instead
    of an object with a .toString() method.

Before:

esponse.write(createTextEvent("Hello, world!").toString());

Now:

esponse.write(createTextEvent("Hello, world!"));