Skip to content

Commit

Permalink
Merge branch 'master' of github.com:SparkPost/node-sparkpost into wip…
Browse files Browse the repository at this point in the history
…-2.0.0
  • Loading branch information
aydrian committed Apr 25, 2016
2 parents 876b6bf + cf092a9 commit 4290f5a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Change Log

### v1.3.3 (2016/04/25)
- [#142](https://github.com/SparkPost/node-sparkpost/pull/142) Upgrade request to 2.72.0 and fix affected test (@artlogic)

### v1.3.2 (2016/04/13)
- [#139](https://github.com/SparkPost/node-sparkpost/pull/139) Make Gruntfile.js cross-platform friendly (@coldacid)
- [#137](https://github.com/SparkPost/node-sparkpost/pull/137) Fix missing `subaccounts` property in SparkPost class (@coldacid)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sparkpost",
"version": "1.3.2",
"version": "1.3.3",
"description": "A Node.js wrapper for interfacing with your favorite SparkPost APIs",
"main": "./lib/sparkpost.js",
"scripts": {
Expand Down Expand Up @@ -42,6 +42,6 @@
"dependencies": {
"json-pointer": "^0.5.0",
"lodash": "^3.9.3",
"request": "2.42.0"
"request": "^2.72.0"
}
}
3 changes: 2 additions & 1 deletion test/spec/sparkpost.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ describe('SparkPost Library', function() {
, options = {
method: 'GET'
, uri: 'https://test.sparkpost.com/test'
, gzip: true
, debug: true
};

Expand All @@ -206,7 +207,7 @@ describe('SparkPost Library', function() {
compressedMsg = gzipped;
gzipNock = nock('https://test.sparkpost.com', {
reqheaders: {
'accept-encoding': 'gzip'
'accept-encoding': /gzip/
}
})
.get('/test')
Expand Down

0 comments on commit 4290f5a

Please sign in to comment.