Comparing version 1.6.0 to 1.6.1
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
<a name="v1.6.1"></a> | ||
## [v1.6.1](https://github.com/rubensworks/rdf-parse.js/compare/v1.6.0...v1.6.1) - 2020-11-12 | ||
### Fixed | ||
* [Fix backpressuring not being maintained](https://github.com/rubensworks/rdf-parse.js/commit/269c757935c54b388e1bde076dc29c2afc2e8e7b) | ||
<a name="v1.6.0"></a> | ||
@@ -5,0 +11,0 @@ ## [v1.6.0](https://github.com/rubensworks/rdf-parse.js/compare/v1.5.0...v1.6.0) - 2020-11-03 |
@@ -62,6 +62,3 @@ "use strict"; | ||
// Create a new readable | ||
const readable = new stream_1.Readable({ objectMode: true }); | ||
readable._read = () => { | ||
return; | ||
}; | ||
const readable = new stream_1.PassThrough({ objectMode: true }); | ||
// Delegate parsing to the mediator | ||
@@ -76,4 +73,3 @@ this.mediatorRdfParseHandle.mediate({ | ||
quads.on('error', (e) => readable.emit('error', e)); | ||
quads.on('data', (quad) => readable.push(quad)); | ||
quads.on('end', () => readable.push(null)); | ||
quads.pipe(readable); | ||
}) | ||
@@ -80,0 +76,0 @@ .catch((e) => readable.emit('error', e)); |
{ | ||
"name": "rdf-parse", | ||
"version": "1.6.0", | ||
"version": "1.6.1", | ||
"description": "Parses RDF from any serialization", | ||
@@ -5,0 +5,0 @@ "lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/rdf-parse", |
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
36748
411