Skip to content

Releases: FluuxIO/go-xmpp

v0.5.1

23 Mar 08:01
fe4c366
Compare
Choose a tag to compare

Changes :

v0.5.0

10 Mar 15:37
1e92089
Compare
Choose a tag to compare

v0.5.0
Changes

  • Added support for XEP-0198 (Stream management)
  • Added message queue : when using "SendX" methods on a client, messages are also stored in a queue. When requesting acks from the server, sent messages will be discarded, and unsent ones will be sent again. (see https://xmpp.org/extensions/xep-0198.html#acking)
  • Added support for stanza_errors (see https://xmpp.org/rfcs/rfc3920.html#def C.2. Stream error namespace and https://xmpp.org/rfcs/rfc6120.html#schemas-streamerror)
  • Added separate hooks for connection and resume on the client. One can now specify different actions to get triggered on client connect and reconnect, at client init time.
  • Client state update is now thread safe
  • Changed the Config struct to use pointer semantics
  • Refactoring, including removing some Fprintf statements in favor of Marshal + Write and using structs from the library instead of strings

v0.4.0: Change log pub sub (#143)

09 Jan 14:44
Compare
Choose a tag to compare
* PubSub protocol support
Added support for :
- XEP-0050   (Command))
- XEP-0060   (PubSub)
- XEP-0004   (Forms)

Fixed the NewClient function by adding parsing of the domain from the JID if no domain is provided in transport config.
Updated xmpp_jukebox example

* Delete useless pubsub errors

* README.md update
Fixed import in echo example

* Typo

* Fixed raw send on client example

* Fixed jukebox example and added a README.md

* Changelog v0.4.0