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

Releases: fusionjs/fusion-core

v0.3.0-2

10 Jan 20:24
Compare
Choose a tag to compare
v0.3.0-2 Pre-release
Pre-release

Changelog

No pull requests in this release

v0.2.8

10 Jan 22:08
Compare
Choose a tag to compare

Changelog

  • Add support for crossorigin scripts (#68)
  • Update pipeline queues (#67)

v0.3.0-1

08 Jan 22:57
02ec8aa
Compare
Choose a tag to compare
v0.3.0-1 Pre-release
Pre-release

Changelog

Highlighted Changes

  • Rewrite fusion-core api to use dependency injection (#56)

v0.3.0-0

08 Jan 20:55
5be0d7c
Compare
Choose a tag to compare
v0.3.0-0 Pre-release
Pre-release

Changelog

No pull requests in this release

v0.2.7

05 Jan 19:29
f2e36fc
Compare
Choose a tag to compare

Changelog

  • Fix issue with webpack_public_path and cdns (#58)
  • Ensure correct CI test exit status code (#55)

v0.2.6

08 Dec 00:56
Compare
Choose a tag to compare

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

01 Dec 19:03
Compare
Choose a tag to compare

Changelog

  • Fix double render bug (#39)

v0.2.4

29 Nov 23:01
Compare
Choose a tag to compare

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)

v0.2.2

10 Nov 23:58
ba92e57
Compare
Choose a tag to compare

Changelog

  • Expose browser unescape (#16)

v0.2.1

10 Nov 19:28
128c7c3
Compare
Choose a tag to compare

Changelog

  • Don't include sanitization in browser bundle (#12)