All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.1.5] - 2026-06-30

Added

  • :h264 image format (format code 4) to PPNet.Message.Image
  • Image.pack/1 requires :h264 data to be Annex-B framed (NAL start code 00 00 01 or 00 00 00 01) and rejects other framings with %PPNet.PackError{reason: :not_annex_b}

0.1.4 - 2026-03-31

Added

  • datetime field to all message types: Hello, SingleCounter, Ping, Event, Image, ChunkedMessageHeader, and ChunkedMessageBody
  • Backward compatibility for all old formats — messages without datetime are still accepted; datetime will be nil
  • UTF-8 validation in Event data before packing
  • is_valid_pack_input guard in Ping

Changed

  • Minimum chunk size increased from 17 to 22 bytes to account for the datetime field in ChunkedMessageHeader
  • Corrected Reed-Solomon parity byte count in documentation (8, not 4)

0.1.3 - 2026-03-19

Added

  • session_id field to Ping message
  • is_valid_ping_list guard and its use in parse

0.1.2 - 2026-03-11

Added

  • Default pack/1 to all message modules
  • defguards to simplify validation across message types
  • Doctests and enhanced protocol documentation

Changed

  • Replaced long guard clauses with defguards in Ping and chunked messages
  • Enforced chunk_size <= 254 via guard
  • Enforced non-negative integers in is_valid_types guard
  • Added guards and validations to message packers

0.1.1 - 2026-03-11

Changed

  • Updated organization name

0.1.0 - 2026-03-11

Added

  • Initial release with Ping, Event, and Image message types
  • Reed-Solomon error correction and COBS framing
  • Chunked message support
  • Protocol encoding and parsing