Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accepting custom fetch in ApolloBoost #3590

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'upstream/master' into apollo-boost-cust…
…om-fetch
  • Loading branch information
hwillson committed Jul 9, 2018
commit 0e37e7d6e231d9d71930296205fe083d34c0d80c
9 changes: 7 additions & 2 deletions packages/apollo-boost/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@

### vNext

- Allow `fetch` to be given as a configuration option to ApolloBoost.
[Issue #3578](https://github.com/apollographql/apollo-client/issues/3578) [PR #3590](https://github.com/apollographql/apollo-client/pull/3590)
- Allow `fetch` to be given as a configuration option to ApolloBoost.
[Issue #3578](https://github.com/apollographql/apollo-client/issues/3578)
[PR #3590](https://github.com/apollographql/apollo-client/pull/3590)

### 0.1.10

- No changes.

### 0.1.9

Expand Down
4 changes: 2 additions & 2 deletions packages/apollo-utilities/src/storeUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ export function valueToObjectRepresentation(
} else {
throw new Error(
`The inline argument "${name.value}" of kind "${(value as any).kind}"` +
'is not supported. Use variables instead of inline arguments to ' +
'overcome this limitation.'
'is not supported. Use variables instead of inline arguments to ' +
'overcome this limitation.',
);
}
}
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.