Skip to content

Releases: donejs/autorender

1.4.0-beta.0

30 Oct 12:06
Compare
Choose a tag to compare

This is a beta release for the next minor. The only change in this release is that it is compatible with the new Incremental Rendering API.

1.3.2

03 Oct 19:05
Compare
Choose a tag to compare

This is patch release, with some small updates to make done-autorender compatible with steal-tools optimized builds.

1.3.0

26 Jul 10:26
Compare
Choose a tag to compare

This is a minor release that integrations with done-ssr's incremental renderer.

data-attached

When rendering is completed and the application is reattached, done-autorender now adds a data-attached attribute to the HTML element:

<html data-attached>
 ...

You might use this to control styling while the application is detached.

incremental rendering

done-ssr 1.1.0 adds incremental rendering, a new way to do server side rendering that is faster. done-autorender now can more quickly reattach when incremental rendering is used.

1.2.0

29 Jun 15:46
Compare
Choose a tag to compare

This is a minor release, adding a new module that allows using done-autorender without Zones. Using:

<script src="./node_modules/steal/steal.js" main="my-app/index.stache!done-autorender/no-zone"></script>

Will run done-autorender without using zones. This makes it so your code comes live instantly, as it is immediately inserted into the DOM, and prevents issues if you might use code that doesn't run well within Zones.

Pull Requests

1.1.0

05 Jun 17:43
Compare
Choose a tag to compare

1.1.0 adds the new renderIntoDocument export, which is used by done-ssr.