This repository has been archived by the owner on May 17, 2019. It is now read-only.
Releases: fusionjs/fusion-core
Releases · fusionjs/fusion-core
v0.3.0-2
Changelog
No pull requests in this release
v0.2.8
v0.3.0-1
v0.3.0-0
Changelog
No pull requests in this release
v0.2.7
v0.2.6
Changelog
Highlighted Changes
- Remove the simulate API in favor of using fusion-test-utils (#43)
Other Changes
- Do not swallow rendering errors (#49)
- Revert "PoC (#253) Added example types for Plugin classes" (#48)
- PoC (#253) Added example types for Plugin classes (#47)
- Upgrade docker-compose plugin to v1.7.0 (#24)
- Use absolute link urls in docs (#42)
Migration Guide
Use render
and request
from fusion-test-utils
rather than app.simulate
-import {mockContext} from 'fusion-test-utils';
-const ctx = mockContext();
-await app.simulate(ctx);
+import {request} from 'fusion-test-utils';
+const ctx = await request(app, '/');
-import {mockContext} from 'fusion-test-utils';
-const ctx = mockContext.browser();
-await app.simulate(ctx);
+import {render} from 'fusion-test-utils';
+const ctx = await render(app, '/');
v0.2.5
v0.2.4
Changelog
- Return promise from client renderer middleware (#37)
- Update client side rendering logic to mimick servers with regards to ctx.rendered (#35)
- Add Flow step to pipeline.yml (#34)
- Add comparison (#26)
- Update getting started docs (#30)
- Add text coverage reporting (#29)
- Switch to codecov bash uploader and expose env vars (#27)
- Add coverage to buildkite (#22)
- Add more plugin architecture documentation (#21)
- Pass null for ctx rather than an empty object (#19)