Socket
Socket
Sign inDemoInstall

node.flow

Package Overview
Dependencies
1
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.1 to 1.1.2

35

History.md

@@ -0,4 +1,13 @@

# History
## 1.1.2 / 2012-07-19
- [refactoring] `.end()` deos not need to take a callback
- [update packages] mongoose->2.7.1, should->1.0.0
## 1.1.1 / 2012-03-31
- [refactoring] Error handling when no parallel task assigned before calling `join`
- [refactoring] Error handling when no parallel task assigned before calling `join`

@@ -9,6 +18,6 @@

- [new feature] Pass is_parallel to have better look args from last stack
- [refactoring] Use Object.keys forEAch instead of for in
- [update packages] mongoose->2.5.7 for test
- Added more tests
- [new feature] Pass is_parallel to have better look args from last stack
- [refactoring] Use Object.keys forEAch instead of for in
- [update packages] mongoose->2.5.7 for test
- Added more tests

@@ -19,4 +28,4 @@

- [bug fix] Parallel arguments from last stack should be overwritten by default arguments
- Added full test
- [bug fix] Parallel arguments from last stack should be overwritten by default arguments
- Added full test

@@ -27,5 +36,5 @@

- [bug fix] Cant pass arguments to parallel fn from series fn
- Read version number from package.json
- Added basic tests
- [bug fix] Cant pass arguments to parallel fn from series fn
- Read version number from package.json
- Added basic tests

@@ -36,3 +45,3 @@

- [bug fix] Clear arguments passed from ready method before running the next task
- [bug fix] Clear arguments passed from ready method before running the next task

@@ -43,3 +52,3 @@

- [bug fix] Merge arguments from parallel tasks and pass to the next task
- [bug fix] Merge arguments from parallel tasks and pass to the next task

@@ -50,2 +59,2 @@

- Initial release
- Initial release

@@ -217,3 +217,3 @@ /*!

var self = this;
var task = [].shift.call( args );
var task = [].shift.call( args ) || function (){};
var _args = merge_default ? extend( true, [], this._defaults ) : [];

@@ -220,0 +220,0 @@

{
"name" : "node.flow",
"version" : "1.1.1",
"version" : "1.1.2",
"description" : "A deadly simple flow control package for node.js",

@@ -11,3 +11,3 @@ "keywords" : [ "flow", "node.flow", "flow control", "async", "sync", "steps" ],

"devDependencies": {
"should": "0.6.3"
"should": "1.0.0"
},

@@ -14,0 +14,0 @@ "repository": {

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc