Releases: sailthru/sailthru-node-client
Releases · sailthru/sailthru-node-client
v5.0.5
v5.0.4
What's Changed
- Fixes for #57: Refactors Sailthru Util to correct scoping issue by @tc-mccarthy in #58
New Contributors
- @tc-mccarthy made their first contribution in #58
Full Changelog: v5.0.3...v5.0.4
v5.0.3
What's Changed
- [PLA-11225] Changed logger from Node Util to Console.log by @klmarigold in #53
New Contributors
- @klmarigold made their first contribution in #53
Full Changelog: v5.0.2...v5.0.3
v5.0.2
What's Changed
- Fix for logging interfering with multipart uploads by @marcelhamel in #50
Full Changelog: v5.0.1...v5.0.2
v5.0.1
v5.0.0
v4.0.0
Previously, the constructor allowed four parameters. The last two (proxyUrl and apiUrl) were undocumented and optional.
var sailthru = require('sailthru-client').createSailthruClient(apiKey, apiSecret, proxyUrl, apiUrl);
Now, callers should provide any optional parameters in an object in the third parameter.
var sailthru = require('sailthru-client').createSailthruClient(apiKey, apiSecret, {
agent: new ProxyAgent(proxyUrl),
apiUrl: 'api.example.com',
});
v3.0.6
Adds proxy support
This release adds support for using the client behind a proxy via ProxyAgent.
Fix multipart upload issue by updating dependency
'fs' module changes between Node 7 and Node 8 have caused import jobs to stop working. This fix updates the 'restler' dependency (no longer maintained) to 'restler-base' (an actively maintained fork).