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

Upgrade node-fetch to 1.6.3 #14

Merged
merged 2 commits into from
Oct 26, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ The gem is available as open source under the terms of the [MIT License](https:/

## Changelog

- **1.2.2** Upgrade `node-fetch` dependency to fix `form-data` compatibility ([#15][/Dwolla/dwolla-v2-node/issues/15])
- **1.2.1** Add support for `verified_account` and `dwolla_landing` auth flags
- **1.2.0** Reject promises with Errors instead of plain objects ([#8](/Dwolla/dwolla-v2-node/issues/8))
- **1.1.2** Fix issue uploading files ([#4](/Dwolla/dwolla-v2-node/issues/4))
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dwolla-v2",
"version": "1.2.1",
"version": "1.2.2",
"description": "Dwolla V2 API client",
"main": "src/index.js",
"scripts": {
Expand All @@ -13,21 +13,21 @@
"author": "Stephen Ausman <stephen@dwolla.com>",
"license": "MIT",
"devDependencies": {
"@shinnn/eslint-config-node-legacy": "^2.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^2.5.3",
"mocha": "^2.4.5",
"nock": "^7.7.3",
"sinon": "^1.17.3"
"@shinnn/eslint-config-node-legacy": "2.0.0",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"eslint": "2.5.3",
"form-data": "2.1.1",
"mocha": "2.4.5",
"nock": "7.7.3",
"sinon": "1.17.3"
},
"dependencies": {
"bluebird": "3.4.1",
"form-data": "1.0.0-rc4",
"form-urlencoded": "1.4.1",
"invariant": "2.2.1",
"is-stream": "1.1.0",
"lodash": "4.13.1",
"node-fetch": "1.5.3"
"node-fetch": "1.6.3"
}
}