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