1Version 0.11.1:
22018-09-20 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
3 * Improvements:
4 - Document all of the modules.
5
6Version 0.11.0:
72018-08-03 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
8 * Breaking changes:
9 - Split Software Version (XEP-0092) into a query and response
10 elements.
11 - Split RSM (XEP-0059) into a query and response elements.
12 - Fix type safety and spec issues in RSM and MAM (XEP-0313).
13 - Remove item@node and EmptyItems from PubSub events
14 (XEP-0060).
15 * Improvements:
16 - Document many additional modules.
17 - Add the <failure/> SASL nonza, as well as the SCRAM-SHA-256
18 and the two -PLUS mechanisms.
19
20Version 0.10.0:
212018-07-31 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
22 * New parsers/serialisers:
23 - Added <stream:stream>, SASL and bind (RFC6120) parsers.
24 - Added a WebSocket <open/> (RFC7395) implementation.
25 - Added a Jabber Component <handshake/> (XEP-0114).
26 - Added support for User Nickname (XEP-0172).
27 - Added support for Stream Management (XEP-0198).
28 - Added support for Bookmarks (XEP-0048).
29 - Publish-Subscribe (XEP-0060) now supports requests in
30 addition to events.
31 * Breaking changes:
32 - Switch from std::error to failure to report better errors.
33 - Bump to minidom 0.9.1, and reexport minidom::Element.
34 * Improvements:
35 - Add getters for the best body and subject in message, to make
36 it easier to determine which one the user wants based on
37 their language preferences.
38 - Add constructors and setters for most Jingle elements, to
39 ease their creation.
40 - Add constructors for hash, MUC item, iq and more.
41 - Use more macros to simplify and factorise the code.
42 - Use traits to define iq payloads.
43 - Document more modules.
44
45Version 0.9.0:
462017-10-31 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
47 * New parsers/serialisers:
48 - Blocking Command (XEP-0191) has been added.
49 - Date and Time Profiles (XEP-0082) has been added, replacing
50 ad-hoc use of chrono in various places.
51 - User Mood (XEP-0107) has been added.
52 * Breaking changes:
53 - Fix subscription="none" not being the default.
54 - Add more type safety to pubsub#event.
55 - Reuse Jingle’s ContentId type in JingleFT.
56 - Import the disposition attribute values in Jingle.
57 * Improvements:
58 - Refactor a good part of the code using macros.
59 - Simplify the parsing code wherever it makes sense.
60 - Check for children ordering in disco#info result.
61 - Finish implementation of <received/>, <checksum/> and
62 <range/> in JingleFT.
63 - Correctly serialise <ping/>, and test it.
64
65Version 0.8.0:
662017-08-27 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
67 * New parsers/serialisers:
68 - iq:version (XEP-0092) has been added.
69 - Finally implement extension serialisation in disco.
70 * Breaking changes:
71 - Wrap even more elements into their own type, in jingle,
72 jingle_ft, roster, message.
73 - Split loose enums into multiple structs where it makes sense,
74 such as for IBB, StanzaId, Receipts.
75 - Split disco query and answer elements into their own struct,
76 to enforce more guarantees on both.
77 * Improvements:
78 - Use Vec::into_iter() more to avoid references and clones.
79 - Make data_forms propagate a media_element error.
80 - Document more of disco, roster, chatstates.
81 - Use the minidom feature of jid, for IntoAttributeValue.
82 - Add a component feature, changing the default namespace to
83 jabber:component:accept.
84 - Add support for indicating ranged transfers in jingle_ft.
85
86Version 0.7.1:
872017-07-24 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
88 * Hotfixes:
89 - Stub out blake2 support, since the blake2 crate broke its API
90 between their 0.6.0 and 0.6.1 releases…
91
92Version 0.7.0:
932017-07-23 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
94 * New parsers/serialisers:
95 - Jingle Message Initialisation (XEP-0353) was added.
96 - The disco#items query (XEP-0030) is now supported, in
97 addition to the existing disco#info one.
98 * Breaking changes:
99 - Replaced many type aliases with proper wrapping structs.
100 - Split Disco into a query and a result part, since they have
101 very different constraints.
102 - Split IqPayload in three to avoid parsing queries as results
103 for example.
104 * Improvements:
105 - Use TryFrom from the try_from crate, thus removing the
106 dependency on nightly!
107 - Always implement From instead of Into, the latter is
108 generated anyway.
109 - Add helpers to construct your Presence stanza.
110
111Version 0.6.0:
1122017-06-27 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
113 * New parsers/serialisers:
114 - In-Band Registration (XEP-0077) was added.
115 - Multi-User Chat (XEP-0045) got expanded a lot, thanks pep.!
116 * Breaking changes:
117 - Added wrappers for Strings used as identifiers, to add type
118 safety.
119 - Use chrono’s DateTime for JingleFT’s date element.
120 - Use Jid for JingleS5B’s jid attribute.
121 * Improvements:
122 - Use more macros for common tasks.
123 - Add a constructor for Message and Presence.
124 - Implement std::fmt::Display and std::error::Error on our
125 error type.
126 - Fix DataForms serialisation.
127 - Fix roster group serialisation.
128 - Update libraries, notably chrono whose version 0.3.1 got
129 yanked.
130
131Version 0.5.0:
1322017-06-11 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
133 * New parsers/serialisers:
134 - Implementation of the roster management protocol defined in
135 RFC 6121 §2.
136 - Implementation of PubSub events (except collections).
137 - Early implementation of MUC.
138 * Breaking changes:
139 - Rename presence enums to make them easier to use.
140 * Improvements:
141 - Make hashes comparable and hashable.
142 - Make data forms embeddable easily into minidom
143 Element::builder.
144
145Version 0.4.0:
1462017-05-28 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
147 * Incompatible changes:
148 - Receipts now make the id optional, as per the specification.
149 - Hashes now expose their raw binary value, instead of staying
150 base64-encoded.
151 - Parse dates (XEP-0082) in delayed delivery (XEP-0203) and
152 last user interaction (XEP-0319), using the chrono crate.
153 * Improvements:
154 - Removal of most of the remaining clones, the only ones left
155 are due to minidom not exposing a draining iterator over the
156 children.
157 - Finish to parse all of the attributes using get_attr!().
158 - More attribute checks.
159 - Split more parsers into one parser per element.
160 - Rely on minidom 0.4.3 to serialise more standard types
161 automatically.
162 - Implement forgotten serialisation for data forms (XEP-0004).
163 - Implement legacy capabilities (XEP-0115) for compatibility
164 with older software.
165
166Version 0.3.0:
1672017-05-23 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
168 * Big changes:
169 - All parsers and serialisers now consume their argument, this
170 makes the API way more efficient, but you will have to clone
171 before passing your structs in it if you want to keep them.
172 - Payloads of stanzas are not parsed automatically anymore, to
173 let applications which want to forward them as-is do so more
174 easily. Parsing now always succeeds on unknown payloads, it
175 just puts them into an Unknown value containing the existing
176 minidom Element.
177 * New parsers/serialisers:
178 - Last User Interaction in Presence, XEP-0319.
179 * Improved parsers/serialisers:
180 - Message now supports subject, bodies and threads as per
181 RFC 6121 §5.2.
182 - Replace most attribute reads with a nice macro.
183 - Use enums for more enum-like things, for example Algo in
184 Hash, or FieldType in DataForm.
185 - Wire up stanza-id and origin-id to MessagePayload.
186 - Wire up MAM elements to message and iq payloads.
187 - Changes in the RSM API.
188 - Add support for more data forms elements, but still not the
189 complete set.
190 - Thanks to minidom 0.3.1, check for explicitly disallowed
191 extra attributes in some elements.
192 * Crate updates:
193 - minidom 0.4.1
194
195Version 0.2.0:
1962017-05-06 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
197 * New parsers/serialisers:
198 - Stanza error, as per RFC 6120 §8.3.
199 - Jingle SOCKS5 Transport, XEP-0260.
200 * Incompatible changes:
201 - Parsers and serialisers now all implement TryFrom<Element>
202 and Into<Element>, instead of the old parse_* and serialise_*
203 functions.
204 - Presence has got an overhaul, it now hosts show, statuses and
205 priority in its struct. The status module has also been
206 dropped.
207 - Message now supports multiple bodies, each in a different
208 language. The body module has also been dropped.
209 - Iq now gets a proper StanzaError when the type is error.
210 - Fix bogus Jingle payload, which was requiring both
211 description and transport.
212 * Crate updates:
213 - minidom 0.3.0
214
215Version 0.1.0:
2162017-04-29 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
217 * Implement many extensions.