Skip to content

v1.7.0

Latest

Choose a tag to compare

@filip26 filip26 released this 05 Oct 21:01
· 279 commits to main since this release
553fc68

What's Changed

➡️ Adoption of RdfQuadConsumer Interface in fromRdf

Example

// Convert RDF to JSON-LD
var consumer = JsonLd.fromRdf();
consumer.quad(...);  // feed manually or via a reader
(new NquadsReader(...)).provide(consumer);

// Get the final JSON-LD result
consumer.toJsonLd();

⚠️ RDF Primitives Final Deprecation

From/To RDF transformations now use RdfConsumer for seamless and efficient integration, eliminating the need to materialize RDF primitives.
You can use any third-party RDF library of your choice, for example: Titanium RDF Primitives.

🐛 Bug Fixes & Performance Improvements

🎉 New Contributors

Full Changelog: v1.6.0...v1.7.0