Releases: filip26/iridium-cbor-ld
Releases · filip26/iridium-cbor-ld
v0.7.3
v0.7.2
v0.7.1
What's Changed
- Bump com.apicatalog:copper-multibase 4.0.0 by @dependabot[bot] in #144
- Minor improvements
Full Changelog: v0.7.0...v0.7.1
v0.7.0
📦 Iridium CBOR-LD 0.7.0 – Release Notes
🚀 Highlights
✅ Support for CBOR-LD 1.0
Iridium now fully supports the CBOR-LD 1.0 specification, including:
- Encoding and decoding using the stable
v1.0format. - Improved dictionary-based compression compatible with the official CBOR-LD registry.
- Maintains backward compatibility with legacy versions (
v0.5,v0.6).
🛠️ Diagnostic Mode
A new diagnostic/debug mode is available for both encoder and decoder:
- Inspect version, dictionary, and dynamic term/type mappings.
- Trace encoded data, decode results, and error states.
Example:
var debug = CborLd.createEncoder().debug();
var result = debug.encode(document);
if (result.isError()) {
System.err.println(result.error());
} else {
System.out.println(result.dump());
}⚙️ Other Improvements
- Improved error messages for non-compressible documents.
🧭 For full usage examples and dictionary guidance, see the README.
v0.3.0
v0.2.0
What's Changed
- Up-to-date with the latest spec version, format
0x06- Backward compatibility mode
- Custom document dictionaries
- Verifiable Credential Barcodes Support
- New configurable API
- Dictionary builders
- Dependencies
- Bump com.apicatalog:copper-multicodec to 1.0.0 by @dependabot in #79
- Bump com.apicatalog:carbon-did to 0.6.0 by @dependabot in #82
- Bump com.apicatalog:titanium-json-ld to 1.4.1 by @dependabot in #86
v0.1.3
What's Changed
- Bump com.apicatalog:copper-multicodec to 0.1.1 by @dependabot in #44
- Bump com.apicatalog:copper-multibase to 0.5.0 by @dependabot in #58
- Bump carbon-did to 0.3.0 by @filip26 in #59
- Add Publish Java 8/17 Actions by @filip26 in #60
- v0.1.3 by @filip26 in #61