Skip to content

Releases: mic159/react-render

Configurable timeout

10 Aug 02:01
8395079
Compare
Choose a tag to compare

Allow the timeout to be configured by the REACT_TIMEOUT django setting, or as a keyword argument.

Python only release

1.3.1

16 May 09:36
Compare
Choose a tag to compare

Python:

  • Attempt to resolve static content at STATIC_ROOT where content should have been collected.
  • No longer testing python 2 & Django 1.11

Nodejs:

  • Bump dependencies

Update React to version 16.8.6

06 May 05:29
Compare
Choose a tag to compare
1.3.0

Update test lockfile

1.2.1

04 Jul 02:37
Compare
Choose a tag to compare

Allow chained express middleware.
This will allow you to impliment things like Newrelic monitoring.

Note: JS only release. Python package remains at 1.0.0

1.2.0 - Update react to 16.4

21 Jun 00:37
Compare
Choose a tag to compare

Update react to 16.4 to support fragments.

Note: JS only release. Python package remains at 1.0.0

1.1.1

01 Nov 01:25
Compare
Choose a tag to compare

Revert to non-streaming API due to performance degredation.

Note: JS only release. Python package remains at 1.0.0

Upgrade to React 16

27 Oct 00:44
Compare
Choose a tag to compare
  • Drop support for react 0.14.x
  • Switch react to version 16
  • Use the new streaming render API for faster TTFB

Note: JS only release. Python package remains at 1.0.0

1.0.0 - React 15

04 Jul 23:59
Compare
Choose a tag to compare

Upgraded to React 15

Notes: This should still work with components written in react 0.14.x, but will show a warning
from react about re-rendering over existing HTML.
This is because of a change to ReactDOM, where it no longer inserts reactid tags in the markup.
Read more here: https://facebook.github.io/react/blog/2016/04/07/react-v15.html

0.13.1 - ES6 import

22 Jun 01:34
Compare
Choose a tag to compare
  • Support export default ES6 style component exports.
  • Show JS error message in python exception when not in debug mode.
  • Updated some dependencies
    • body-parser 1.14.1 > 1.15.2
    • express 4.13.3 > 4.14.0
    • morgan 1.6.1 > 1.7.0
  • Updated example and tests to use babel 6.

NOTE: Only JS changed in this release

0.13.0

01 Apr 06:01
Compare
Choose a tag to compare

Fixed a potential XSS bug when using render_props as per the example.
This changes the output of render_props to be JSON.parse("[escapedJsonString]").

Potentially Breaking Change: This could potentially break if you are using render_props in any way other
than to put things into a script tag.

NOTE: Only the python code changed in this release