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