Skip to content

Releases: jackyef/react-isomorphic-data

ssr@0.14.1

29 May 12:11
f8b17e9
Compare
Choose a tag to compare

0.14.1 (2020-05-29)

Note: Version bump only for package ssr

react-isomorphic-data@0.17.1

29 May 12:11
f8b17e9
Compare
Choose a tag to compare

0.17.1 (2020-05-29)

Bug Fixes

  • core: fix possible memory leak on SSR and validate JSON on non-raw request (eb196a2)

ssr@0.14.0

24 May 06:41
ef03bde
Compare
Choose a tag to compare

0.14.0 (2020-05-24)

Features

  • core: default global fetchPolicy and ssrForceFetchDelay (#60) (8fc342a)

react-isomorphic-data@0.17.0

24 May 06:41
ef03bde
Compare
Choose a tag to compare

0.17.0 (2020-05-24)

Features

  • core: default global fetchPolicy and ssrForceFetchDelay (#60) (8fc342a)

react-isomorphic-data@0.16.0

28 Mar 10:54
4444226
Compare
Choose a tag to compare

0.16.0 (2020-03-28)

Features

Bug Fix

  • Change the cache data structure to avoid collision with nested URL paths

Screen Shot 2020-03-28 at 16 35 12

react-isomorphic-data@0.15.0

21 Mar 09:10
9bb1237
Compare
Choose a tag to compare

0.15.0 (2020-03-21)

Features

  • core: react-ssr-prepass for more performant SSR (#46) (d8747cf)

As of this version, react-isomorphic-data does SSR with Suspense (with react-ssr-prepass) to avoid calling renderToStringMarkup repeatedly. This should yield better SSR performance.

Potentially breaking changes

  • renderToStringWithData and getDataFromTree now no longer needs DataClient as second param
Previously:
renderToStringWithData(tree, dataClient);
getDataFromTree(tree, dataClient);

Now:
renderToStringWithData(tree);
getDataFromTree(tree);

react-isomorphic-data@0.14.2

15 Feb 07:18
51086fa
Compare
Choose a tag to compare

0.14.2 (2020-02-15)

Performance Improvements

  • core: make hoist-non-react-static a peerDep (d1c23eb)

The library now is less than 3 kB when minified + gzipped! 🎉

react-isomorphic-data@0.14.1

02 Feb 11:23
aadb3de
Compare
Choose a tag to compare

0.14.1 (2020-02-02)

Bug Fixes

  • core: fix initial loading is always false (99a515b)

react-isomorphic-data@0.14.0

28 Jan 14:49
7b403ca
Compare
Choose a tag to compare

0.14.0 (2020-01-28)

Features

  • Rework the update to use a subscription model for more precise re-render (b27a7d2) #35

react-isomorphic-data@0.13.1

24 Jan 14:50
d1d8671
Compare
Choose a tag to compare

0.13.1 (2020-01-24)

Improvements

  • use unstable_batchedUpdates to reduce number of re-renders (#37)