Skip to content
This repository has been archived by the owner on May 17, 2019. It is now read-only.

v0.1.10

Compare
Choose a tag to compare
@rtsao rtsao released this 15 Nov 21:36

Changelog

Highlighted Changes

  • Support * event type for mapping/handling (#9)

Other Changes

  • Upgrade docker-compose plugin to v1.7.0 (#13)
  • Ensure global mappers and handlers are called for events emitted from ctx scoped emitter (#12)
  • Add event batching on the server (#8)
  • Use Buildkite and Docker for CI (#4)
  • Add an initial implementation of the universal events plugin (#2)

Migration Guide

Changes made to event mappers/handlers on '*' event type

The following examples will run on every event type, where previously they
only ran on events with an explicit type '*'.

events.on('*', (payload) => {});
events.map('*', (payload) => {});