Skip to content

Commit

Permalink
Updated dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydenseric committed Jan 17, 2018
1 parent c91ff9d commit a99e415
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# apollo-upload-client changelog

## Next

* Updated dependencies.
* [`extract-files` v3](https://github.com/jaydenseric/extract-files/releases/tag/v3.0.0) replaces files extracted from properties with `null` instead of deleting the property; see [jaydenseric/extract-files#4](https://github.com/jaydenseric/extract-files/issues/4). This improves compliance with the [GraphQL multipart request spec](https://github.com/jaydenseric/graphql-multipart-request-spec). It’s not a breaking change for `apollo-upload-server`, but it might be for other implementations.

## 7.0.0-alpha.2

* Updated dependencies.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"browserslist": ">1%",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.37",
"extract-files": "^2.0.1"
"extract-files": "^3.0.0"
},
"peerDependencies": {
"apollo-link": "^1.0.0",
Expand All @@ -49,7 +49,7 @@
"@babel/preset-env": "^7.0.0-beta.37",
"apollo-link": "^1.0.7",
"eslint": "^4.15.0",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-prettier": "^2.5.0",
"graphql": "^0.12.3",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/index.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ApolloLink, Observable } from 'apollo-link'
import { print } from 'graphql/language/printer'
import { extractFiles } from 'extract-files'
import extractFiles from 'extract-files'

export { ReactNativeFile } from 'extract-files'

Expand Down

0 comments on commit a99e415

Please sign in to comment.