mississippi
Advanced tools
Comparing version 3.0.0 to 4.0.0
@@ -5,7 +5,16 @@ # mississippi Change Log | ||
## 4.0.0 - 2019-03-21 | ||
* Update through2 to 3.0.1 (from 2.0.0) BREAKING: readable-stream 2 -> 3 | ||
* Update flush-write-stream to 2.0.0 (from 1.0.0) BREAKING: readable-stream ^2.3.6 -> ^3.1.1 | ||
* Update concat-stream to 2.0.0 (from 1.5.0) BREAKING: readable-stream ^2.2.2 -> ^3.0.2 | ||
* Update duplexify to 4.0.0 (from 3.4.2) BREAKING: readable-stream ^2.0.0 -> ^3.1.1 | ||
## 3.0.0 - 2018-02-26 | ||
* Update to pump@3.0.0. Returns the last stream the pipeline to enable chaining. (Use the individual modules to avoid potentially unnecessary major updates in your project). | ||
## 2.0.0 - 2018-01-30 | ||
* Update to pump@2.0.1. (Use the individual modules to avoid potentially unnecessary major updates in your project) | ||
* Pin engines support to >= Node 4.0.0. Run Node LTS or greater. |
{ | ||
"name": "mississippi", | ||
"version": "3.0.0", | ||
"version": "4.0.0", | ||
"description": "a collection of useful streams", | ||
@@ -12,6 +12,6 @@ "main": "index.js", | ||
"dependencies": { | ||
"concat-stream": "^1.5.0", | ||
"duplexify": "^3.4.2", | ||
"concat-stream": "^2.0.0", | ||
"duplexify": "^4.0.0", | ||
"end-of-stream": "^1.1.0", | ||
"flush-write-stream": "^1.0.0", | ||
"flush-write-stream": "^2.0.0", | ||
"from2": "^2.1.0", | ||
@@ -22,3 +22,3 @@ "parallel-transform": "^1.1.0", | ||
"stream-each": "^1.1.0", | ||
"through2": "^2.0.0" | ||
"through2": "^3.0.1" | ||
}, | ||
@@ -25,0 +25,0 @@ "devDependencies": {}, |
@@ -72,3 +72,3 @@ # mississippi | ||
var fs = require('fs') | ||
var split = require('split2') | ||
var split = require('binary-split') // require('split2') would work here as well | ||
@@ -113,3 +113,3 @@ var newLineSeparatedNumbers = fs.createReadStream('numbers.txt') | ||
// instead of doing a.pipe(b), use pipelin | ||
// instead of doing a.pipe(b), use pipeline | ||
var resizeAndOptimize = miss.pipeline(imageResize, pngOptimizer) | ||
@@ -372,3 +372,3 @@ // `resizeAndOptimize` is a transform stream. when you write to it, it writes | ||
Note that `miss.parallel` preserves input ordering, if you don't need that then you can use [through2-concurrent](https://github.com/almost/through2-concurrent) instead, which is very similar to this otherwise. | ||
Note that `miss.parallel` preserves input ordering. Passing the option `{ordered:false}` will output the data as soon as it's processed by a transform, without waiting to respect the order (this previously required a separate module [through2-concurrent](https://github.com/almost/through2-concurrent)). | ||
@@ -375,0 +375,0 @@ #### original module |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16817
+ Addedconcat-stream@2.0.0(transitive)
+ Addedduplexify@4.1.3(transitive)
+ Addedflush-write-stream@2.0.0(transitive)
+ Addedreadable-stream@3.6.2(transitive)
+ Addedthrough2@3.0.2(transitive)
- Removedconcat-stream@1.6.2(transitive)
- Removedflush-write-stream@1.1.1(transitive)
- Removedthrough2@2.0.5(transitive)
- Removedxtend@4.0.2(transitive)
Updatedconcat-stream@^2.0.0
Updatedduplexify@^4.0.0
Updatedflush-write-stream@^2.0.0
Updatedthrough2@^3.0.1