Skip to content

Commit 461b4a3

Browse files
authored
Merge pull request #163 from apollographql/release/0.6
Release/0.6
2 parents 9e5884b + dd706ef commit 461b4a3

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
### v0.next
66

7+
### v0.6.0
8+
9+
* Feature: responseTransformers allow you to restructure & erase "wrapper" objects from your responses. [#146](https://github.com/apollographql/apollo-link-rest/pull/146)
10+
* Tweaks to config for prettier [#153](https://github.com/apollographql/apollo-link-rest/pull/153) & jest [#158](https://github.com/apollographql/apollo-link-rest/pull/158)
11+
* Tests for No-Content responses [#157](https://github.com/apollographql/apollo-link-rest/pull/157) & [#161](https://github.com/apollographql/apollo-link-rest/pull/161)
12+
* Bundle Size-Limit Increased [#162](https://github.com/apollographql/apollo-link-rest/pull/162)
13+
* Restructure Code for preferring `await` over Promise-chains [#159](https://github.com/apollographql/apollo-link-rest/pull/159)
14+
715
### v0.5.0
816

917
* Breaking Change: 404s now no longer throw an error! It's just null data! [#142](https://github.com/apollographql/apollo-link-rest/pull/142)

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apollo-link-rest",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Query existing REST services with GraphQL",
55
"license": "MIT",
66
"main": "./lib/bundle.umd.js",
@@ -45,31 +45,31 @@
4545
"qs": ">=6"
4646
},
4747
"devDependencies": {
48-
"@babel/core": "7.0.x",
48+
"@babel/core": "7.1.x",
4949
"@types/graphql": "14.x",
5050
"@types/jest": "23.x",
5151
"@types/node": "10.x",
5252
"@types/qs": "6.5.x",
53-
"apollo-cache-inmemory": "1.2.x",
53+
"apollo-cache-inmemory": "1.3.x",
5454
"apollo-client": "2.4.x",
5555
"apollo-link": "1.2.x",
5656
"apollo-link-error": "1.1.x",
5757
"apollo-link-http": "1.5.x",
58-
"apollo-link-state": "^0.4.1",
58+
"apollo-link-state": "0.4.x",
5959
"browserify": "16.2.x",
6060
"bundlesize": "0.17.x",
6161
"camelcase": "5.0.x",
6262
"codecov": "3.x",
6363
"danger": "4.x",
64-
"fetch-mock": "6.5.x",
64+
"fetch-mock": "7.x",
6565
"graphql": "14.x",
6666
"graphql-anywhere": "4.1.x",
67-
"graphql-tag": "2.9.x",
67+
"graphql-tag": "2.10.x",
6868
"isomorphic-fetch": "2.2.x",
6969
"jest": "23.x",
7070
"jest-fetch-mock": "1.6.x",
7171
"lerna": "2.11.x",
72-
"lint-staged": "7.2.x",
72+
"lint-staged": "7.3.x",
7373
"lodash": "4.17.x",
7474
"pre-commit": "1.2.x",
7575
"prettier": "1.14.x",

0 commit comments

Comments
 (0)