0.11.0 (2024-02-04)
- Updated documentation to refer to RFC 8949
- Improvements to
cbor_describe
- Fix
cbor_string_set_handle
not setting the codepoint count - BREAKING:
cbor_load
will no longer fail on input strings that are well-formed but not valid UTF-8- If you were relying on the validation, please check the result using
cbor_string_codepoint_count
instead
- If you were relying on the validation, please check the result using
- BREAKING: All decoders like
cbor_load
andcbor_stream_decode
will accept all well-formed tag values (bug discovered by dskern-github)- Previously, decoding of certain values would fail with
CBOR_ERR_MALFORMATED
orCBOR_DECODER_ERROR
- This also makes decoding symmetrical with serialization, which already accepts all values
- Previously, decoding of certain values would fail with