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