ChangeLog

 1Version 0.5.0:
 22017-06-11  Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
 3    * New parsers/serialisers:
 4        - Implementation of the roster management protocol defined in
 5          RFC 6121 §2.
 6        - Implementation of PubSub events (except collections).
 7        - Early implementation of MUC.
 8    * Breaking changes:
 9        - Rename presence enums to make them easier to use.
10    * Improvements:
11        - Make hashes comparable and hashable.
12        - Make data forms embeddable easily into minidom
13          Element::builder.
14
15Version 0.4.0:
162017-05-28  Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
17    * Incompatible changes:
18        - Receipts now make the id optional, as per the specification.
19        - Hashes now expose their raw binary value, instead of staying
20          base64-encoded.
21        - Parse dates (XEP-0082) in delayed delivery (XEP-0203) and
22          last user interaction (XEP-0319), using the chrono crate.
23    * Improvements:
24        - Removal of most of the remaining clones, the only ones left
25          are due to minidom not exposing a draining iterator over the
26          children.
27        - Finish to parse all of the attributes using get_attr!().
28        - More attribute checks.
29        - Split more parsers into one parser per element.
30        - Rely on minidom 0.4.3 to serialise more standard types
31          automatically.
32        - Implement forgotten serialisation for data forms (XEP-0004).
33        - Implement legacy capabilities (XEP-0115) for compatibility
34          with older software.
35
36Version 0.3.0:
372017-05-23  Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
38    * Big changes:
39        - All parsers and serialisers now consume their argument, this
40          makes the API way more efficient, but you will have to clone
41          before passing your structs in it if you want to keep them.
42        - Payloads of stanzas are not parsed automatically anymore, to
43          let applications which want to forward them as-is do so more
44          easily.  Parsing now always succeeds on unknown payloads, it
45          just puts them into an Unknown value containing the existing
46          minidom Element.
47    * New parsers/serialisers:
48        - Last User Interaction in Presence, XEP-0319.
49    * Improved parsers/serialisers:
50        - Message now supports subject, bodies and threads as per
51          RFC 6121 §5.2.
52        - Replace most attribute reads with a nice macro.
53        - Use enums for more enum-like things, for example Algo in
54          Hash, or FieldType in DataForm.
55        - Wire up stanza-id and origin-id to MessagePayload.
56        - Wire up MAM elements to message and iq payloads.
57        - Changes in the RSM API.
58        - Add support for more data forms elements, but still not the
59          complete set.
60        - Thanks to minidom 0.3.1, check for explicitly disallowed
61          extra attributes in some elements.
62    * Crate updates:
63        - minidom 0.4.1
64
65Version 0.2.0:
662017-05-06  Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
67    * New parsers/serialisers:
68        - Stanza error, as per RFC 6120 §8.3.
69        - Jingle SOCKS5 Transport, XEP-0260.
70    * Incompatible changes:
71        - Parsers and serialisers now all implement TryFrom<Element>
72          and Into<Element>, instead of the old parse_* and serialise_*
73          functions.
74        - Presence has got an overhaul, it now hosts show, statuses and
75          priority in its struct.  The status module has also been
76          dropped.
77        - Message now supports multiple bodies, each in a different
78          language.  The body module has also been dropped.
79        - Iq now gets a proper StanzaError when the type is error.
80        - Fix bogus Jingle payload, which was requiring both
81          description and transport.
82    * Crate updates:
83        - minidom 0.3.0
84
85Version 0.1.0:
862017-04-29  Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
87    * Implement many extensions.