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