mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
883 B
883 B
Change Log
v2.0.1-nova-patch
We use this patch to avoid data injection failure during server-side rendering on Meteor 1.4. All the credits for this package goes to Arunoda, Kadira's team & @rigconfig. See https://github.com/meteor/meteor/issues/7992
v2.0.0
2016-Feb-19
- Override individual res objects instead of overriding the prototype. This is a fix to support Meteor 1.3, which gave us the gzipped version of the html.
- Because of that we had to change the API a bit on the server. See:
res.pushData('key', {data: 'here'})
=>InjectData.pushData(res, 'key', {data: 'here'})
res.getData('key')
=>InjectData.getData(res, 'key')
v1.4.1
- Use
EJSON.parse()
. See: #4
v1.4.0
- Add support for SSR by prepending the html on top of the first script tag
v1.3.0
- Add IE8 Compatibility