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