aws-sdk 2.878.0 → 2.879.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/core.js CHANGED
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.878.0',
23
+ VERSION: '2.879.0',
24
24
 
25
25
  /**
26
26
  * @api private
package/lib/http/node.js CHANGED
@@ -98,7 +98,7 @@ AWS.NodeHttpClient = AWS.util.inherit({
98
98
 
99
99
  var expect = httpRequest.headers.Expect || httpRequest.headers.expect;
100
100
  if (expect === '100-continue') {
101
- stream.on('continue', function() {
101
+ stream.once('continue', function() {
102
102
  self.writeBody(stream, httpRequest);
103
103
  });
104
104
  } else {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.878.0",
4
+ "version": "2.879.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",