Socket
Socket
Sign inDemoInstall

bluebird

Package Overview
Dependencies
Maintainers
1
Versions
223
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bluebird - npm Package Compare versions

Comparing version 2.9.20 to 2.9.21

4

changelog.md

@@ -0,1 +1,5 @@

## 2.9.21 (2015-03-30)
- Fix error object's `'stack'`' overwriting causing an error when its defined to be a setter that throws an error ([#552](.)).
## 2.9.20 (2015-03-29)

@@ -2,0 +6,0 @@

2

js/main/captured_trace.js

@@ -90,3 +90,3 @@ "use strict";

removeDuplicateOrEmptyJumps(stacks);
error.stack = reconstructStack(message, stacks);
util.notEnumerableProp(error, "stack", reconstructStack(message, stacks));
util.notEnumerableProp(error, "__stackCleaned__", true);

@@ -93,0 +93,0 @@ };

@@ -96,3 +96,4 @@ "use strict";

var parsed = CapturedTrace.parseStackAndMessage(error);
error.stack = parsed.message + "\n" + parsed.stack.join("\n");
util.notEnumerableProp(error, "stack",
parsed.message + "\n" + parsed.stack.join("\n"));
util.notEnumerableProp(error, "__stackCleaned__", true);

@@ -99,0 +100,0 @@ }

{
"name": "bluebird",
"description": "Full featured Promises/A+ implementation with exceptionally good performance",
"version": "2.9.20",
"version": "2.9.21",
"keywords": [

@@ -6,0 +6,0 @@ "promise",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc