Skip to content

Releases: filip26/iridium-cbor-ld

v0.7.3

30 Aug 15:25
696194d

Choose a tag to compare

v0.7.3 Pre-release
Pre-release

What's Changed

  • Updated dependencies
  • Added static CID v1 JSON-LD context
  • Removed unused Copper Multicodec dependency

v0.7.2

09 Aug 13:47
89bd9ff

Choose a tag to compare

v0.7.2 Pre-release
Pre-release

What's Changed

  • Bump com.apicatalog:copper-multicodec from 2.0.0 to 2.1.0 by @dependabot[bot] in #145

v0.7.1

08 Aug 20:38
fab8de3

Choose a tag to compare

v0.7.1 Pre-release
Pre-release

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

06 Aug 22:20
e12b64f

Choose a tag to compare

v0.7.0 Pre-release
Pre-release

📦 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.0 format.
  • 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

06 Aug 19:31
7a106f4

Choose a tag to compare

v0.3.0 Pre-release
Pre-release

What's Changed

  • added DocumentDictionaryBuilder allowing to clone and customize a configuration

v0.2.0

26 Jul 20:38
c0ae9e2

Choose a tag to compare

v0.2.0 Pre-release
Pre-release

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

v0.1.3

16 Feb 23:13
ff675dd

Choose a tag to compare

v0.1.3 Pre-release
Pre-release

What's Changed

0.1.2

24 Nov 22:52
33adb57

Choose a tag to compare

0.1.2 Pre-release
Pre-release
v0.1.2

Merge pull request #43 from filip26/dependabot/maven/org.codehaus.moj…

0.1.1 - Bug Fix Release

11 Aug 21:29

Choose a tag to compare

Pre-release

What's Changed

Full Changelog: v0.1.0...v0.1.1

0.1.0

08 Aug 19:45

Choose a tag to compare

0.1.0 Pre-release
Pre-release

The very first release. Compatible with db/cborld. Your feedback is welcome. Feel free to open a new issue or PR.