Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit 86e7e73

Browse files
committed
Added a change log and bump version to 0.6.0
1 parent 1c85c07 commit 86e7e73

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

Changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ Expect active development and potentially significant breaking changes in the `0
44

55
### vNext
66

7+
### v0.6.0
8+
9+
#### Breaking
10+
```js
11+
// old -- we attempted to get the state out of your apollo provider for your
12+
renderToStringWithData(component).then({ markup, initialState })
13+
14+
// new -- you must get it yourself
15+
renderToStringWithData(component).then(markup => {
16+
const initialState = client.store.getState()[client.reduxRootKey];
17+
18+
// ...
19+
});
20+
21+
```
22+
23+
This release refactors the server side rendering and data access code, hopefully making it easier to contribute to in the future and fixing a few bugs along the way:
24+
25+
- Bug: Fix bug in SSR in React Production mode [Issue #237](https://github.com/apollostack/react-apollo/issues/237)
26+
- Bug: Fix issue fetching multiple levels of queries [Issue #250](https://github.com/apollostack/react-apollo/issues/250)
27+
- Bug: Fix issue with Stateless components in SSR [Issue #297](https://github.com/apollostack/react-apollo/issues/297)
28+
- Feature: Refactored to collect data in one place [Issue 264](https://github.com/apollostack/react-apollo/issues/264)
29+
730
### v0.5.15
831
- Feature: Added test utilities and examples to library.
932

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-apollo",
3-
"version": "0.5.16",
3+
"version": "0.6.0",
44
"description": "React data container for Apollo Client",
55
"main": "index.js",
66
"typings": "index.d.ts",

0 commit comments

Comments
 (0)