forked from xmpp4r/xmpp4r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
81 lines (76 loc) · 3.43 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
XMPP4R 0.3.3 (XX/XX/XXXX)
=========================
* Initial support for Ruby 1.9 (see README_ruby19.txt)
* Complete PubSub API Change - more logical and better for
childclasses
* a Helper to assist with XEP-0115 Entity Capabilities
* SASL anonymous support
* File transfer fixes
* MUC room configuration fixes
* initial support for XEP-0118 User Tune
^ fix for an xmlrpc exception-during-serialisation bug, which would cause
a hang
* Support auto-gem generation on GitHub with improved and DRY'er RakeFile and
gemspec.
* Add support for the old SSL protocol (needed to connect to GTalk)
* Changed API for Client, Component, Connection, Stream to remove
need for antiquated 'threaded' param in the initializer.
* Use a Logger instance instead of directly writing to stdout
* Re-factored & consolidated Error classes. See xmpp4r/errors.rb for all custom
errors that can be caught. All inherit from Jabber::Error which itself inherits
from Ruby's StandardError. This is a first step in re-factoring errors. The next
step will be to convert all 'raise' calls to raise a custom Jabber::Error or
one of its children instead of anonymous RuntimeErrors. This allows much more
granularity in catching and handling errors later. If you were catching
Jabber::ErrorException before you should probably change that in your code
to now catch Jabber::Error if you want to catch everything or one of the
custom children of Jabber::Error defined in 'lib/xmpp4r/errors.rb'. Additionally,
the Error class which encapsulated the xmpp error response, has been renamed to
ErrorResponse to reflect its real usage. This free's up 'Jabber::Error' for
use as our base Error class.
XMPP4R 0.3.2 (15/10/2007)
=========================
* Serious bug involving Ruby threading fixed (caused exceptions with
ruby 1.8.6)
* vCard helper fixes
* Jabber RPC (JEP0009) support
* HTTP Binding (JEP0124) support
* Publish-Subscribe support
* XMPPElement: a framework for classes representing XML elements
* Ad-hoc commands support
* Improvements to Dataforms: XData, XDataTitle and XDataInstructions
XMPP4R 0.3.1 (23/04/2007)
=========================
* SASL fixes
* Message#x and Presence#x support element selection by namespace
* Proper XML entity escaping for REXML text nodes
* Improvements to FileTransfer::Helper and SOCKS5BytestreamsServer
* Vcard::Helper fixes
* Update Digest module usage to reflect recent Ruby versions
* More documentation
XMPP4R 0.3 (20/07/2006)
=======================
* SRV lookup capability in Client#connect
* Stringprep support for JIDs
* TLS & SASL support
* Basic Dataforms support
* Multi-User Chat Helpers
* Helpers for File-Transfer, SOCKS5 Bytestreams, In-Band Bytestreams
* Roster helper has modified subscription-request semantics (see Roster#add_subscription_request_callback)
* A lot of features have renamed namespaces (see UPDATING file)
XMPP4R 0.2 (20/10/2005)
=======================
* Workarounds for REXML bugs.
* Presences are now Comparable according to priority or interest
* fixed a serious bug in Stream#send which caused some lockups. Reported by
* Moved REXML::Element#add to REXML::Element#typed_add to keep add accessible
* Rewritten Roster helper
* Added Vcard helper and improved IqVcard
* XMLStanza id generator
* Support for Roster Item Exchange (JEP-0093 and JEP-0144)
* Client#password= to change client's account password
* Documentation fixes
XMPP4R 0.1 (12/09/2005)
=======================
* first public release.