Skip to content

Commit caa0e64

Browse files
committed
chore(release): Creating releases
- ssr@0.6.0 - react-isomorphic-data@0.7.0
1 parent 2ace677 commit caa0e64

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
lines changed

examples/ssr/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.6.0](https://github.com/jackyef/react-isomorphic-data/compare/ssr@0.5.0...ssr@0.6.0) (2019-11-02)
7+
8+
9+
### Features
10+
11+
* **example:** updated the example to showcase usage of dataOptions ([fc42ed0](https://github.com/jackyef/react-isomorphic-data/commit/fc42ed09e4d31ebd6bda644b9da2cab236e46cda))
12+
* **example/ssr:** added refetch() example ([44eb6fd](https://github.com/jackyef/react-isomorphic-data/commit/44eb6fdc8871841e099fab1bf7f229584643efc0))
13+
* **react-isomorphic-data:** added fetchPolicy for finer control on how data should be cached ([8c0cd67](https://github.com/jackyef/react-isomorphic-data/commit/8c0cd67ce6c106ff7ae507008ed1dce0a4bb2ae0))
14+
15+
16+
17+
18+
619
# [0.5.0](https://github.com/jackyef/react-isomorphic-data/compare/ssr@0.4.1...ssr@0.5.0) (2019-10-16)
720

821

examples/ssr/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ssr",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"private": true,
55
"license": "MIT",
66
"scripts": {
@@ -28,7 +28,7 @@
2828
"razzle-plugin-typescript": "^3.0.0",
2929
"react": "^16.10.1",
3030
"react-dom": "^16.10.1",
31-
"react-isomorphic-data": "^0.6.0",
31+
"react-isomorphic-data": "^0.7.0",
3232
"react-router-dom": "^5.1.2",
3333
"tslint": "^5.20.0",
3434
"tslint-react": "^4.1.0"

packages/react-isomorphic-data/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.7.0](https://github.com/jackyef/react-isomorphic-data/compare/react-isomorphic-data@0.6.1...react-isomorphic-data@0.7.0) (2019-11-02)
7+
8+
9+
### Bug Fixes
10+
11+
* **usebasedata:** fixed a subtle bug where exact same requests are fetched multiple time during SSR ([9c37936](https://github.com/jackyef/react-isomorphic-data/commit/9c3793620be187feac71d094fd9d1a14106f6d6a))
12+
* **usebasedata:** fixed issue where multiple same request could be sent when another is in flight ([eb6af37](https://github.com/jackyef/react-isomorphic-data/commit/eb6af3768b140b89d7d2abf553c7b4dfcba9b33d))
13+
14+
15+
### Features
16+
17+
* **react-isomorphic-data:** added dataOptions that allows component to skip ssr for some data ([91b5843](https://github.com/jackyef/react-isomorphic-data/commit/91b58430a6995d051de6850e6882e84dcfadfda5))
18+
* **react-isomorphic-data:** added fetchPolicy for finer control on how data should be cached ([8c0cd67](https://github.com/jackyef/react-isomorphic-data/commit/8c0cd67ce6c106ff7ae507008ed1dce0a4bb2ae0))
19+
* added refetch() that will always bypass cache ([f62126f](https://github.com/jackyef/react-isomorphic-data/commit/f62126fe96c391b5a18e3f794118eb4fd8cdd1ec))
20+
21+
22+
### Performance Improvements
23+
24+
* **react-isomorphic-data:** added rollup replacer plugin for better minification ([894f419](https://github.com/jackyef/react-isomorphic-data/commit/894f419f914893b7e30f758bb1baa3656a3d81f4))
25+
26+
27+
28+
29+
630
## [0.6.1](https://github.com/jackyef/react-isomorphic-data/compare/react-isomorphic-data@0.6.0...react-isomorphic-data@0.6.1) (2019-10-16)
731

832
**Note:** Version bump only for package react-isomorphic-data

packages/react-isomorphic-data/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-isomorphic-data",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "Easily fetch data in your React components, with similar APIs to react-apollo 🎉",
55
"sideEffects": false,
66
"main": "dist/cjs/index.js",

0 commit comments

Comments
 (0)