backblaze-b2
Advanced tools
Comparing version 0.9.10 to 0.9.11
@@ -0,1 +1,10 @@ | ||
### v0.9.11 (March 16, 2016) - The file encoding release | ||
Fixes | ||
- Fix setting encoding for downloadFileById [link](https://github.com/yakovkhalinsky/backblaze-b2/pull/16) [issue](https://github.com/yakovkhalinsky/backblaze-b2/issues/15) | ||
Thanks to the issue reporter for this release | ||
- [GoNode5](https://github.com/GoNode5) | ||
### v0.9.10 (February 21, 2016) - The Mime release | ||
@@ -2,0 +11,0 @@ |
@@ -120,3 +120,4 @@ var sha1 = require('node-sha1'); | ||
}, | ||
headers: utils.getAuthHeaderObjectWithToken(b2) | ||
headers: utils.getAuthHeaderObjectWithToken(b2), | ||
encoding: null | ||
}; | ||
@@ -123,0 +124,0 @@ |
{ | ||
"name": "backblaze-b2", | ||
"version": "0.9.10", | ||
"version": "0.9.11", | ||
"description": "Node.js Library for the Backblaze B2 Storage Service", | ||
@@ -32,3 +32,3 @@ "main": "index.js", | ||
"devDependencies": { | ||
"eslint": "^1.10.1", | ||
"eslint": "^2.4.0", | ||
"expect.js": "^0.3.1", | ||
@@ -35,0 +35,0 @@ "mocha": "^2.3.4" |
@@ -14,3 +14,3 @@ ### Backblaze B2 Node.js Library | ||
All B2 API's have been implemented. See below for usage. | ||
All B2 API's have been implemented with the exception of the large file API. See below for usage. | ||
@@ -17,0 +17,0 @@ Also see the [CHANGELOG](https://github.com/yakovkhalinsky/backblaze-b2/blob/master/CHANGELOG.md) for a history of updates. |
@@ -486,3 +486,4 @@ var expect = require('expect.js'); | ||
Authorization: 'unicorns and rainbows' | ||
} | ||
}, | ||
encoding: null | ||
}); | ||
@@ -489,0 +490,0 @@ expect(actualResponse).to.eql({ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
65139
1535