rotating-file-stream
Advanced tools
Comparing version 1.3.5 to 1.3.6
@@ -0,1 +1,5 @@ | ||
* 2018-04-05 - v1.3.6 | ||
* Discovered and solved: ["write after end" error with immutable option](https://github.com/iccicci/rotating-file-stream/issues/23) (thanks to [JcBernack](https://github.com/JcBernack)) | ||
* Added a test case to cover that bug | ||
* devDependencies update | ||
* 2018-03-15 - v1.3.5 | ||
@@ -2,0 +6,0 @@ * Using slightly faster timestamp generator function (thanks to [jorgemsrs](https://github.com/jorgemsrs)) |
@@ -197,3 +197,3 @@ "use strict"; | ||
index = 1; | ||
now = this.now(); | ||
now = new Date(this.now()); | ||
} | ||
@@ -200,0 +200,0 @@ |
{ | ||
"name": "rotating-file-stream", | ||
"version": "1.3.5", | ||
"version": "1.3.6", | ||
"description": "Opens a stream.Writable to a file rotated by interval and/or size. A logrotate alternative.", | ||
@@ -26,3 +26,4 @@ "scripts": { | ||
"allevo", | ||
"Jorge Silva <jorgemsrs@gmail.com>" | ||
"Jorge Silva <jorgemsrs@gmail.com>", | ||
"Jan Christoph Bernack <jc.bernack@gmail.com>" | ||
], | ||
@@ -32,7 +33,7 @@ "license": "MIT", | ||
"devDependencies": { | ||
"eslint": "4.18.2", | ||
"eslint": "4.19.1", | ||
"istanbul": "0.4.5", | ||
"mocha": "5.0.4", | ||
"mocha": "5.0.5", | ||
"mocha-istanbul": "0.3.0" | ||
} | ||
} |
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
40931