ChangeLog

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