Skip to content

Commit 0b43cae

Browse files
committed
2.8.3
2.8.3 - 2017-09-07 ----------------------------------------------- ## React * Fixes invalid call to `ReactDOMServer.renderToStream()` -> `renderToNodeStream()` per facebook/react#10294 (comment)
1 parent 69a496d commit 0b43cae

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2.8.3 - 2017-09-07
2+
-----------------------------------------------
3+
4+
## React
5+
* Fixes invalid call to `ReactDOMServer.renderToStream()` -> `renderToNodeStream()` per https://github.com/facebook/react/issues/10294#issuecomment-327903463
6+
17
2.8.2 - 2017-09-07
28
-----------------------------------------------
39

kit/entry/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export function createReactHandler(css = [], scripts = [], chunkManifest = {}) {
211211
// Create a stream of the React render. We'll pass in the
212212
// Helmet component to generate the <head> tag, as well as our Redux
213213
// store state so that the browser can continue from the server
214-
const reactStream = ReactDOMServer.renderToStream(
214+
const reactStream = ReactDOMServer.renderToNodeStream(
215215
<Html
216216
head={Helmet.rewind()}
217217
window={{

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactql-app",
3-
"version": "2.8.2",
3+
"version": "2.8.3",
44
"description": "ReactQL starter kit app",
55
"license": "UNLICENSED",
66
"private": true,

0 commit comments

Comments
 (0)