forked from apollographql/apollo-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into bug/apollographqlGH-3030/no-cache-undefined
- Loading branch information
Showing
35 changed files
with
614 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_multiconfig.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule meteor
deleted from
99b04f
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "apollo-boost", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "The easiest way to get started with Apollo Client", | ||
"author": "Peggy Rayzis <[email protected]>", | ||
"contributors": [ | ||
|
@@ -33,8 +33,8 @@ | |
"filesize": "npm run build && npm run build:browser" | ||
}, | ||
"dependencies": { | ||
"apollo-cache-inmemory": "^1.1.10", | ||
"apollo-client": "^2.2.6", | ||
"apollo-cache-inmemory": "^1.1.11", | ||
"apollo-client": "^2.2.7", | ||
"apollo-link": "^1.0.6", | ||
"apollo-link-error": "^1.0.3", | ||
"apollo-link-http": "^1.3.1", | ||
|
@@ -44,7 +44,7 @@ | |
"devDependencies": { | ||
"@types/graphql": "0.12.4", | ||
"@types/jest": "21.1.10", | ||
"apollo-cache": "^1.1.5", | ||
"apollo-cache": "^1.1.6", | ||
"browserify": "15.2.0", | ||
"graphql": "0.13.1", | ||
"jest": "20.0.4", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "apollo-cache-inmemory", | ||
"version": "1.1.10", | ||
"version": "1.1.11", | ||
"description": "Core abstract of Caching layer for Apollo Client", | ||
"author": "James Baxley <[email protected]>", | ||
"contributors": [ | ||
|
@@ -38,9 +38,9 @@ | |
"filesize": "npm run build:browser" | ||
}, | ||
"dependencies": { | ||
"apollo-cache": "^1.1.5", | ||
"apollo-utilities": "^1.0.9", | ||
"graphql-anywhere": "^4.1.6" | ||
"apollo-cache": "^1.1.6", | ||
"apollo-utilities": "^1.0.10", | ||
"graphql-anywhere": "^4.1.7" | ||
}, | ||
"peerDependencies": { | ||
"graphql": "0.11.7 || ^0.12.0 || ^0.13.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
|
||
### vNext | ||
- Improve code coverage | ||
- Map coverage to original source | ||
|
||
### 1.1.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "apollo-cache", | ||
"version": "1.1.5", | ||
"version": "1.1.6", | ||
"description": "Core abstract of Caching layer for Apollo Client", | ||
"author": "James Baxley <[email protected]>", | ||
"contributors": [ | ||
|
@@ -38,7 +38,7 @@ | |
"filesize": "npm run build && npm run build:browser" | ||
}, | ||
"dependencies": { | ||
"apollo-utilities": "^1.0.9" | ||
"apollo-utilities": "^1.0.10" | ||
}, | ||
"devDependencies": { | ||
"@types/graphql": "0.12.4", | ||
|
@@ -49,7 +49,7 @@ | |
"jest": "20.0.4", | ||
"rimraf": "2.6.2", | ||
"rollup": "0.56.4", | ||
"rollup-plugin-node-resolve": "3.0.2", | ||
"rollup-plugin-node-resolve": "3.2.0", | ||
"ts-jest": "20.0.14", | ||
"tslint": "5.9.1", | ||
"typescript": "2.5.2", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.