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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
|
telepathy-gabble 0.11.6 (UNRELEASED)
====================================
Fixes:
telepathy-gabble 0.11.5 (2011-01-10)
====================================
Fixes:
• Support for Google Talk's google:queue extension now works against Google's
server again. This regressed in 0.11.1, which changed gabble to send iq gets
rather than iq sets. (wjt)
• Fix crash caused by timing out items in the iq pipeline before sending
them out. (sjoerd)
• Correctly parse jingle transport-info message that refer to multiple
contents. (sjoerd)
• Updated Wocky:
» Fix a bug in WockyHeartbeatSource which caused criticals when it was
destroyed. (wjt)
» Fix parsing of chat state messages in MUCs. (wjt)
telepathy-gabble 0.11.4 (2010-12-14)
====================================
Potentially-incompatible changes:
• Following telepathy-spec 0.21.5, the message-token field in message headers
is no longer guaranteed to be globally-unique. This is known to be
problematic for rtcom-event-logger, as used in Maemo 5.
Dependencies:
• telepathy-glib ≥ 0.13.9 is now required
Enhancements:
• Implement Protocol.AuthenticationTypes (jonny)
• Improve error reporting in Group and StreamedMedia channels (eeejay)
Fixes:
• fd.o #29147: you will no longer get the scrollback from MUCs hosted by
M-Link (and possibly other servers) when you change your presence
(wjt)
• fd.o #32278: fix an assertion failure when accepting X-TELEPATHY-PASSWORD
authentication and immediately closing the channel (jonny)
• Make the regression tests pass with telepathy-glib ≥ 0.13.8 (smcv)
• Fix the build without system CA certificates (ptlo)
telepathy-gabble 0.11.3 (2010-11-30)
====================================
The “Hey, I'm so desperately waiting for telepathy-gablle 0.11 that I
can hardly eat.” release.
Dependencies:
• telepathy-glib >= 0.13.7 is now required.
Enhancements:
• fd.o #31106: add Protocol.Interface.Presence (vivek)
• fd.o #31874: implement and refactor undrafted SASL interface (smcv)
Fixes:
• fd.o #31998: relax assertions about how fast
AddMembers/RemoveMembers succeed (smcv)
telepathy-gabble 0.11.2 (2010-11-22)
====================================
The “Please enjoy this refreshing beverage” release.
Fixes:
• fd.o #31412: fix crashes during disconnection if a PEP alias request is
in-flight (smcv)
• Loosen an assertion to fix test failure with telepathy-glib >= 0.13.5,
which releases connections' object paths sooner (smcv)
• fd.o #31772: fix a crash if a contact goes invisible while we're discovering
their capabilities (wjt)
• Remove accidentally re-added libuuid dependency (jonnylamb)
• --with-ca-certificates, formerly known as --with-ca-file, now warns—rather
than making configure fail—if the specified path does not exist. This is
kinder to buildds which may not actually have the CAs installed.
telepathy-gabble 0.11.1 (2010-11-16)
====================================
Enhancements:
• Implement Conn.I.PowerSaving (eeejay)
• fd.o #31474: replace --with-ca-certificates configure option with
--with-ca-file. The default is to use the normal location for either Red Hat
or Debian, or fail if neither exists. Use --with-ca-file to force a
particular location (e.g. if your build system doesn't guarantee to have
the CA certificate bundle installed), or use --without-ca-file if your system
doesn't have a standard CA certificate store. (Brian Pepple)
Fixes:
• Don't generate unused bindings for channel bundles (wjt)
• Update wocky snapshot
· Add an optional dependency on libiphb and link it up to the main loop
to provide non-regular XMPP pings where appropriate. (wjt)
· Misc OpenSSL fixes. (wjt)
telepathy-gabble 0.11.0 (2010-11-04)
====================================
The "your gmail theme is horrible and offensive" release.
Enhancements:
• Implement the ContactList, ContactGroups interfaces, refactoring
GabbleRoster considerably in the process (smcv)
• fd.o #28413: implement DTMF on StreamedMedia and Call channels, up-to-date
for spec 0.21.3 (Jack Bates, smcv, jonny)
• Implement the ClientTypes interface (jonny)
• Make the tests considerably less prone to race conditions (sjoerd)
• Adapt GabbleCapsChannelManager to be useful in Salut too (smcv)
• fd.o #31216: implement the stable version of MailNotification (smcv)
• fd.o #28726: use Google's Shared Status extension to support being
invisible/hidden on Google Talk (eeejay)
• Add a summary of how Tubes capabilities work (wjt)
Fixes:
• Poll GMail servers periodically for a short time after each mail
notification, to work around the server throttling notifications (stormer)
• fd.o #30950: advertise the immutable properties of Messages channels (smcv)
• fd.o #28279: don't announce new Tubes channels until ready (sjoerd)
telepathy-gabble 0.10.4 (2010-11-02)
====================================
The “Well, this super analysis i made!!!!! could be useful for
you!!!!!!!!!!!!” release. There are plenty more bangs where these come
from, I assure you.
Enhancements:
• fd.o #24775: implement local IPv4 address discovery on Windows, allowing
out-of-band SOCKS5 bytestreams to work there (Thomas Flueeli)
Fixes:
• Updated Wocky snapshot:
· Added HTTP proxy support. This is not technically a fix, but it's
nice to have. ;-) (stormer)
· Miscellaneous leak fixes. (stormer)
· Miscellaneous other fixes. (wjt)
• Prefer XEP-0186 invisibility over privacy list-based invisibility when
both are available (eeejay)
• fd.o #31197: improve portability to Windows (Thomas Flueeli)
telepathy-gabble 0.10.3 (2010-10-06)
====================================
The "we ran out of bangs" release.
Fixes:
• Emit ActivitiesChanged when the server aknowledges our own update (tomeu)
• Removed dependency to libuuid (stormer)
• Slacker_message_filter can survive invalid/non-signal/unexpected messages
(fledermaus)
• Remove support for gadget (tomeu)
telepathy-gabble 0.10.2 (2010-09-30)
====================================
The “I guess that you don't want to have a shared library!! because you
fear to have a shared library!!!!!!!! yeah!!!” release.
Fixes:
• Updated Wocky snapshot:
· Made it compile when built with OpenSSL (wjt)
· Handle the connection being disconnected by the remote side more gracefully
(sjoerd)
· Make the XML parser more tolerant of recoverable errors in the incoming
stream. In particular, this fixes an issue with illegal namespaces in some
contacts' PEP nodes (sjoerd)
• Fixed a memory allocation error which could cause corruption when using
plugins which deal with capabilities (wjt)
• Ensure only one OLPC activity is created for a given channel (tomeu)
telepathy-gabble 0.10.1 (2010-09-29)
====================================
The “That command worked with no errors!!!!!!!!!!! but i don't know if
it works for real!!!!!!!!!!!” release.
Fixes:
• From updated Wocky snapshot:
· Check the return value of wocky_xmpp_connection_send_stanza_finish()
in starttls_sent_cb() (wjt; found by Coverity)
· Don't retry indefinitely on failed OpenSSL writes (fledermaus)
• Don't leak local candidates, stun servers, and remote candidates when
getting Stream/Endpoint properties (smcv)
• Don't assume privacy list lists are well-formed (wjt; found by
Coverity)
• When a contact becomes unavailable, check the correct roster
subscription attribute to decide whether their status should be
Offline or Unknown (smcv)
telepathy-gabble 0.10.0 (2010-09-16)
====================================
The "we demand additional lumber" release, starting the 0.10.x stable branch.
Highlights since 0.8.x
----------------------
Gabble no longer uses Loudmouth for XMPP; instead, it contains a snapshot of
Wocky, a new XMPP library based on GIO. Wocky will be split into a fully
independent project when it reaches API stability.
New features and significant bugfixes include:
• Jingle calls now interoperate with Pidgin, Gajim, and XEP-0100 SIP gateways
• file transfers now interoperate with the Google Talk desktop client
• support for Google Talk PMUC chatrooms
• contact information (vCards) on servers supporting XEP-0054
• searching for contacts on servers supporting XEP-0055
• improved capability-discovery support (ContactCapabilities)
• compile-time selection of GNUTLS or OpenSSL for SSL support
• support for JIDs with non-ASCII domains
• experimental support for plugins
• experimental support for multi-user Jingle calls (Muji)
• compilation on Unix platforms other than Linux should now work
Compatibility notes
-------------------
• telepathy-glib 0.11.16, GLib 2.24, libxml 2, SQLite 3, libnice 0.0.11,
libsoup and libuuid are required.
• libsasl 2 is optional.
• Either GNUTLS >= 2.8.2 or OpenSSL >= 0.9.8g is also required.
• At the time of release, GNUTLS 2.8 is recommended. For versions 2.10.0 and
2.10.1, some fixes need to be backported from 2.11.1 to fix connection
failures with "-59: GNUTLS_E_INTERNAL_ERROR" in the debug log; we're
tracking this as <https://bugs.freedesktop.org/show_bug.cgi?id=29364>.
• If you use telepathy-mission-control, version 5.5.0 or later is required.
A 5.6.x stable branch suitable for this will be released soon. Packagers,
please make Gabble conflict with Mission Control < 5.5.0 (e.g. the
Breaks or Conflicts relationships in dpkg), or if that's not possible in your
packaging system, depend on Mission Control >= 5.5.0.
Changes since 0.9.18
--------------------
• Fix a crash if the connection closes while verifying a TLS certificate (wjt)
• Allow an in-progress connection to the server to be cancelled with
Disconnect (cosimoc)
• Add regression tests for TLS certificate verification (cosimoc)
telepathy-gabble 0.9.18 (2010-09-13)
====================================
The “What, more work? Off I go then” release.
Enhancements:
• fd.o #30065: implement the stable API for ContactSearch (wjt)
• Implement the stable API for interactive TLS certificate checking (cosimoc)
• Implement the stable API for Conference channels (smcv)
• Add the fallback-servers parameter, which can be used to make connections to
Google Talk on some networks more reliable (stormer)
• Prompt the user about unknown TLS certificates if neither require-encryption
nor ignore-ssl-errors is set (cosimoc)
Fixes:
• Make the --with-ca-certificates configure option work (Vincent Untz)
• fd.o #30117: always emit PresencesChanged when we change our own presence,
and fix a related memory leak (wjt)
• update our copy of Wocky:
› fd.o#28051: SRV errors on some networks no longer break Facebook
logins (wjt)
› don't fail on missing CRLs if not in strict TLS verification mode
(fledermaus)
• fd.o#28990: removed dependency to libuuid (stormer)
telepathy-gabble 0.9.17 (2010-08-26)
====================================
The "Mona Lisa overdrive" release.
Enhancements:
• Implement TLS certificate support (cosimoc)
• Use TpBaseChannel instead of GabbleBaseChannel (wjt)
• Plugin-provided, privacy-list based presence statuses (ptlo)
Fixes:
• fd.o #29721: start the presence unsure timeout once we connect (wjt)
• fd.o #29000: make CA certificates path configurable (stormer)
• Fix several leaks, improve tests in case of connection leaks (wjt)
telepathy-gabble 0.9.16 (2010-08-19)
====================================
The “still at it” release.
Enhancements:
• Implement XEP-0126: Invisibility (wjt and eeejay)
• Implement XEP-0186: Invisible Command (wjt and eeejay)
• implement org.freedesktop.Telepathy.Protocol (ptlo)
• Add a ActivityProperties.GetActivity method for retrieving an activity's room
handle from its id (tomeu)
• Add a BuddyInfo.AddActivity method so activities can advertise themselves
without having to track all the other shared activities (tomeu)
Fixes:
• fd.o #25533: muc-factory: don't associate a request with tubes if a tube was
requested (jonnylamb)
• muc-factory: rearrange which NewChannels signals come first (jonnylamb)
• Cope if Jingle sharing requests omit <manifest> (wjt)
• fd.o #29113: Skip file collection candidates with invalid addresses (wjt)
• several improvements to the test suite (smcv)
• fixes for building under gcc-4.5 (smcv)
• adapt to the new TLS API (sjoerd)
telepathy-gabble 0.9.15 (2010-06-30)
====================================
The “wave forlornly through the gates” release.
Enhancements:
❖ in Wocky, build enum types for all error domains (smcv)
Fixes:
❖ Debian #586936: in Wocky, clear the parser state when resetting, fixing
assertion failures if the caps cache gets corrupted (sjoerd)
❖ fd.o #28712: in Wocky, fix SCRAM-SHA1 authentication by initializing state
correctly (sjoerd)
telepathy-gabble 0.9.14 (2010-06-22)
====================================
The "missing frame" release.
Enhancements:
• When a call is ended, mention who ended it in the debug log (wjt)
Fixes:
• fd.o #28599: ignore errors from disco#info query on our own bare JID,
fixing connections to older versions of jabberd, jabberd2, Prosody etc.,
which regressed in 0.9.13 (wjt)
• Use the self-handle as actor for changes to the 'deny' list, and improve
roster regression tests, in preparation for future ContactList API (smcv)
• Update Wocky snapshot:
• fd.o #28643: stop applying GNUTLS_VERIFY_DO_NOT_ALLOW_SAME flag, allowing
connection to (for instance) jabber.ccc.de (Lars Noschinski)
• Apply more workarounds for TLS server misbehaviour (wjt)
• fd.o #28647: be more tolerant if servers send an IQ reply without a
'from' attribute (smcv)
• fd.o #27488: wocky_connector_connect_finish, _register_finish parameters
have been re-ordered (smcv)
telepathy-gabble 0.9.13 (2010-06-14)
====================================
The “But today, you ARE the law!” release.
Dependencies:
• libnice >= 0.0.11 is now required.
• telepathy-glib >= 0.11.6 is now required.
Enhancements:
• Gabble is now able to exchange files with the Google Talk desktop
client! (KaKaRoTo)
• On Maemo, when connected to Google Talk, suppress presence updates
while the device is idle. (wjt)
• Plugins may now specify additional capabilities for Gabble to
advertise, and add responses to new disco#info queries. (andrunko)
• From Wocky:
› The SCRAM-SHA-1 SASL mechanism is now supported. (sjoerd)
Fixes:
• From Wocky:
› Messages from JIDs at non-ASCII domains are no longer silently
dropped. (wjt)
› Whether or not the connection is secure is now correctly propagated
from Wocky up to Gabble. (eeejay)
telepathy-gabble 0.9.12 (2010-06-03)
====================================
The “Show me the face of you” release.
Dependencies:
• libuuid is now required.
Enhancements:
• The capabilities cache now persists on-disk. (daf)
• Multi-user calls are now supported, using the Muji protocol! Frabjous
day, etc. Empathy does not yet support multi-user calls; there's a
test client written in Python, but you'll need bleeding-edge Farsight
to run it. (sjoerd, Maiku)
• Support the /info contact attribute for ContactInfo. (andrunko)
• XMPP keepalives are now sent and acked; this fixes the biggest
remaining regression from 0.8! (ptlo)
• When making outgoing calls, Gabble now prefers to call resources which
claim to be phones. (fd.o#28265, wjt)
• The current draft of SASL authentication channels is implemented,
allowing channel handlers to support SASL mechanisms like
X-GOOGLE-TOKEN. As a result, 'account' and 'password' are now optional
connection parameters, since SASL mechanisms such as ANONYMOUS (see
XEP-0175) require neither. (eeejay, danni)
Fixes:
• From Wocky:
› Don't treat error replies from PEP nodes as PEP updates. (fd.o#28232,
cassidy)
› Don't drop backlog messages from former members of MUCs. (fd.o#27913,
wjt)
• Blocked contacts are no longer accidentally unblocked if you remove
them from the 'stored' list. (fd.o#20597, wjt)
• Gabble MailNotification.RequestInboxURL no longer returns an empty
string in some situations (fd.o#27157, stormer)
• Various fixes for issues found by Coverity (wjt)
telepathy-gabble 0.9.11 (2010-04-26)
====================================
The “This place is a narrative mess” release.
Enhancements:
• The ContactInfo interface is now implemented! (andrunko, smcv)
• Updated Wocky:
· Permit ASCII mnemonics in wocky_stanza_build(), and detect more
errors (wjt)
· Renamed WockyXmpp{Stanza,Node} to Wocky{Stanza,Node}; add more
helper code for building, storing, and serializing trees of nodes
(sjoerd)
· Refactored PubSub response distillery, and added support for
retriving node configuration and modifying affiliates (wjt)
Fixes:
• fd.o#25775: crash in pep_reply_cb() (cassidy)
• fd.o#27694: GetContactAttributes should return {} as location if there
is no location for the contact (cassidy)
telepathy-gabble 0.9.10 (2010-04-08)
====================================
The “Cartoons and Macramé Wounds” release.
Enhancements:
• Updated Wocky:
- Improve Windows portability (Ole André Vadla Ravnås)
- Fix a double-free (KaKaRoTo)
- Even more exciting PubSub code (wjt)
Fixes:
• Properly expose more authentication failure errors from Wocky in
Connection.StatusChanged (sjoerd)
• Run tests in a temporary D-Bus session, which fixes fd.o#25816
(sjoerd)
• Fix tests on machines with no ipv6 (sjoerd)
• Avoid doing undefined void-pointer arithmetic (smcv)
telepathy-gabble 0.9.9 (2010-03-26)
===================================
The “It's release o'clock, quick, say something funny” release.
Enhancements:
• Update Wocky:
- New and exiting Dataforms code! (wjt)
• Various portability improvements (smcv)
Fixes:
• Fix mail notification on GTalk showing at most 30 unread mails (Nicolas)
telepathy-gabble 0.9.8 (2010-03-16)
===================================
The “Chat Roulette Funny Piano Improv #1” release.
Enhancements:
• Update Wocky:
- Lots of exciting new Pubsub code! (cassidy, wjt)
- Plus some crash fixes
• Various correctness improvements to the test suite. (KaKaRoTo)
Fixes:
• No longer crashes on receiving a stanza error without an <error/>
node, which was a regression in 0.9.5. (wjt)
• We can now spell “received” and “separate”! (smcv, courtesy of
Lintian)
telepathy-gabble 0.9.7 (2010-03-03)
===================================
The "Faraday cake" release.
Dependencies:
* Gabble now needs telepathy-glib ≥ 0.9.2
Enhancements:
* Add support for draft 1 of Connection.Interface.MailNotification (stormer)
* Improve regression test coverage (KaKaRoTo)
* Update Wocky:
- data-form utility code (cassidy)
- node iterator utility functions (sjoerd)
- better gtk-doc, improve portability (smcv)
Fixes:
* Implement the 'accuracy' key in Location, not the deprecated XEP-0080
'error' (which is not in telepathy-spec) (cassidy)
telepathy-gabble 0.9.6 (2010-02-23)
===================================
The "save us from this existential quagmire!" release.
Enhancements:
• The plugin loader is now built by default, and the gateway-registration
plugin is installed by default. Since the API is still experimental and
likely to change from one release to the next, the development headers
etc. necessary to write third-party plugins are only installed if you
configure with --enable-plugin-api (this is not recommended). (smcv)
Fixes:
• fd.o #26658: queue up any data received on the FileTransfer socket until the
channel moves to state OPEN (KaKaRoTo)
• Clean up signal connections in GabbleJingleFactory to avoid a possible
use-after-free if a Jingle session, or the Connection, outlives the Jingle
factory (KaKaRoTo)
• Improve the gateway-registration plugin to exchange presence subscriptions
and fix a memory leak (smcv)
• Don't install the plugin unless the plugin loader has been enabled, and
don't compile a useless static-library version of the plugin (smcv)
telepathy-gabble 0.9.5 (2010-02-19)
===================================
The "eclectic mandate whittling" release.
Enhancements:
• Update Wocky for improved error-wrangling code (wjt)
Fixes:
• When delaying a stream request until service discovery has finished in order
to interpret capabilities, correctly resume the request after service
discovery (smcv)
• Calculate capabilities hash correctly when compiled with
--enable-is-a-phone (wjt)
• Don't emit a potentially-non-UTF-8 Google relay magic_cookie in debug output
(Maiku)
telepathy-gabble 0.9.4 (2010-01-28)
===================================
The “Samuel Clemens had four cats!” release.
Enhancements:
• Added an --enable-is-a-phone configure switch, which makes Gabble identify
itself as a "phone" (rather than a "pc") in XEP-0115 disco replies. (wjt)
• Added preliminary support for the Channel.Type.Call draft. By default,
incoming Jingle calls are exposed as Channel.Type.Call if a handler is
available; pass --disable-channel-type-call to configure to always expose
incoming calls as StreamedMedia. (sjoerd, Maiku)
• One-to-one text channels can now be upgraded to multi-user conferences using
the draft Conference interface. This will use a PMUC room on Google's
conference server if at least one participant is using a Google Talk client,
or an instant room on your own conference server (XEP-0045 §10.1.2)
otherwise. (danni)
• Implements XEP-0276, to permit calling contacts whose presence you are not
subscribed to (controlled by a simple Gabble-specific connection interface).
(smcv)
• Plugins may now specify their own version number, for improved debug logs.
(wjt)
• Added a simple sidecar, implemented as a plugin, to support registering to
gateways which require nothing more than a username and password. (smcv)
Fixes:
• We can now accept calls from, and place calls to, bare JIDs (that is,
contacts with no resource). This is required for calling XEP-0100-compliant
SIP gateways. (smcv)
• We now deal correctly with setting a vCard if there's no existing vCard on
the server. (fd.o#25987, wjt)
• ignore-ssl-errors is now implied by require-encryption being false. This was
a regression from 0.8. (wjt)
• ContactCapabilities are now exposed on the Contacts interface with the
correct attribute name. (fd.o#26210, wjt)
telepathy-gabble 0.9.3 (2009-12-21)
===================================
The ``TRANSPORT CHAOS threat level: PANDEMONIUM'' release
Highlights:
• Various updates to the OpenSSL backend causing it not to stall when
reading multiple ssl records at the same time
Enhancements:
• Gabble now advertises a 'pmuc-v1' capability bundle, telling the Google Mail
client that we support being invited to MUCs. (fd.o#22768, jonnylamb)
• Rather than hard-coding a list of SOCKS5 proxy servers to use if the user's
own XMPP server does not provide one, Gabble now falls back to a list of
proxy servers returned by discoing the newly-set-up proxies.telepathy.im.
(fd.o#25304, cassidy)
• Various leaks fixed as pointed out by valgrind (daf, sjoerd)
Fixes:
• Do not re-publish our own vCard if nothing's changed (fd.o#25341, andrunko)
• The default resource is now unique to the machine Gabble is running
on, rather than being randomly generated for each connection. Fixes
fd.o#23630: “Per-connection resource randomization increases the
window in which you lose messages”. (wjt)
• Always assume that MUC servers will let us change the subject, mitigating
fd.o #13157; previously we assumed they would only let moderators change
the subject. (smcv)
• fd.o #21152: allow joining chatrooms on servers that don't respond to disco
queries, like talk.google.com (jonny)
• fd.o #22456: append fallback conference server if the room name has no @,
rather than just failing (if using the Requests API) (jonny)
• fd.o #22768 (partial): reassure talk.google.com that we can be invited to
chatrooms. This enables us to be invited to private MUCs by the Google
client, but doesn't currently support creating them. (jonny)
• fd.o #24558: correctly flag the password parameter as secret (smcv)
• Use TpDebugSender for debug output, instead of reimplementing it (jonny)
• Allow sending chat state to contacts whose capabilities we don't know,
such as invisible Google Talk users (wjt)
• Only disco SOCKS5 proxies when they're needed for a file transfer or tube.
(fd.o#21151, cassidy)
• Do not advertise support for file transfers unless a handler is available.
(fd.o#25243, smcv)
• Do not re-publish our own vCard if nothing's changed (fd.o#25341, andrunko)
telepathy-gabble 0.9.2 (2009-10-27)
===================================
The ``The photo device is down'' release.
Highlights:
* Add support for using OpenSSL instead of GNUTLS for SSL support
Fixes:
* Honour errors that tell us to wait and try again when fetching vCards. This
was erroneously claimed to be in 0.9.1. (Alban)
* Don't re-fetch our own avatar in a loop when connecting to Google
Talk. This should fix #23684 once and for all. (Alban)
* Don't trust other people's <message/> IDs to be globally unique: in
particular, Google Talk uses simple incrementing integers (wjt)
* Use the correct marshaller for the pre-presence signal, fixing a cr
64-bit platforms (wjt)
* Make sure the Connection object disappears from the bus when disconnected
(Vivek)
telepathy-gabble 0.9.1 (2009-09-25)
===================================
The “even children are made of atoms” release.
Highlights:
* Jingle call interoperability with Pidgin and Gajim.
Fixes:
* When receiving a file, Gabble now closes the local socket once all the data
has been written. (Guillaume)
* fd.o #24043: Doesn't parse candidates in a Jingle session-accept stanza
This fix lets us interoperate with Pidgin's Jingle implementation. (Sjoerd,
David)
* fd.o #24023: Accepting initial streams for a call is racy. (Sjoerd, Daf)
* fd.o #20629: DBus events in tests should contain full path. (Daf)
* fd.o #22795: jingle/google-relay.py is secretly made of cheese. (Daf)
* fd.o #23903: Gabble crashes in File Transfer. (Guillaume)
* fd.o #23685: build Gibber with fno-strict-aliasing so asyncns.c builds with
new GCC. (Guillaume)
* fd.o #20565: Contacts should be initially offline and not unknown. (Daf)
* When members are removed from a call due to a stream error, always indicate
so. (Daf)
* Fix corner cases in SetLocation()'s language handling. (Daf)
* fd.o #24195: Doesn't think clients without google p2p tranport are media
capable. This fix lets us interoperate with Gajim's Jingle implementation.
(Sjoerd, Daf)
* Make stun-server.py not fail if the default STUN server hostname can't be
resolved. (David)
* fd.o #23684: Gabble advertizes an avatar's sha1 in its presence stanza
without following XEP-0153. (Alban)
* Honour errors that tell us to wait and try again when fetching vCards.
(Alban)
telepathy-gabble 0.9.0 (2009-09-16)
===================================
The "Use STAPLE REMOVER on TREMENDOUS DANGEROUS-LOOKING YAK" release.
This is the first release in the 0.9 development branch.
Most users should continue to use the 0.8.x stable branch for now.
This release introduces some regressions: proxies and keep-alive aren't
supported any more. These features will be back in future releases.
Dependencies:
* Gabble doesn't depend on loudmouth anymore. Instead, it ships a
copy of Wocky, a new XMPP library based on gio. As a side effect of this,
gio >= 2.21 and gnutls >= 2.8.2 are now needed to build Gabble.
* telepathy-glib >= 0.7.37 is now required
Enhancements:
* Add the ability to send a message when terminating a VoIP call (wjt)
* Add ContactSearch channels using spec draft 2 (wjt, cassidy)
* Implement the final ContactCapabilities spec, and refactor Capabilities code
to represent capabilities as sets of XML namespaces, rather than
bitfields (wjt, smcv)
* fd.o#19952: Support requesting channels with InitialAudio/InitialVideo
through the final API from telepathy-spec 0.17.28 (smcv)
* Gabble now loads certificates from ~/.config/telepathy/certs/ as well as
from the system-wide location (/etc/ssl/certs/ca-certificates.crt).
Fixes:
* Improve pubsub.c test coverage (cassidy)
* fd.o #22968: don't try to pass credentials through Unix sockets on non-Linux,
since the way we currently do it is known to be non-portable. Patches to
implement Credentials on more OSs would be welcomed. (smcv)
telepathy-gabble 0.8.5 (2009-10-02)
===================================
The “a page out of Remembrance of Things Past and a blowtorch with which
to set it on fire” release.
Fixes:
* Don't re-fetch our own avatar in a loop when connecting to Google
Talk. This should fix #23684 once and for all. (Alban)
* Fix a crash introduced by the vCard-related fixes in 0.8.4. (Alban)
telepathy-gabble 0.8.4 (2009-09-25)
===================================
The “bourgeois traditional omelette form” release.
Highlights:
* Jingle call interoperability with Pidgin and Gajim.
Fixes:
* When receiving a file, Gabble now closes the local socket once all the data
has been written. (Guillaume)
* fd.o #24043: Doesn't parse candidates in a Jingle session-accept stanza
This fix lets us interoperate with Pidgin's Jingle implementation. (Sjoerd,
David)
* fd.o #24023: Accepting initial streams for a call is racy. (Sjoerd, Daf)
* fd.o #20629: DBus events in tests should contain full path. (Daf)
* fd.o #22795: jingle/google-relay.py is secretly made of cheese. (Daf)
* fd.o #23903: Gabble crashes in File Transfer. (Guillaume)
* fd.o #23685: build Gibber with fno-strict-aliasing so asyncns.c builds with
new GCC. (Guillaume)
* fd.o #20565: Contacts should be initially offline and not unknown. (Daf)
* When members are removed from a call due to a stream error, always indicate
so. (Daf)
* Fix corner cases in SetLocation()'s language handling. (Daf)
* fd.o #24195: Doesn't think clients without google p2p tranport are media
capable. This fix lets us interoperate with Gajim's Jingle implementation.
(Sjoerd, Daf)
* Make stun-server.py not fail if the default STUN server hostname can't be
resolved. (David)
* fd.o #23684: Gabble advertizes an avatar's sha1 in its presence stanza
without following XEP-0153. (Alban)
* Honour errors that tell us to wait and try again when fetching vCards.
(Alban)
telepathy-gabble 0.8.3 (2009-09-10)
===================================
The “one cigarette, some coffee, and four tiny stones” release.
Enhancements:
* fd.o #23681: Allow setting presence on a connection before it goes online.
This avoids e.g. going from Available -> Busy immediately when signing on.
(daf)
Fixes:
* fd.o #23684: fix handling of avatar conflict with several resources, and
a possible infinite ping-pong of presence stanzas from the server (albanc)
* Time out disco requests after 20, not 20,000, seconds! (grundleborg)
* Correctly respond to disco requests for video-v1 bundle, avoiding a loop
when iChat blindly retries failed disco requests (smcv)
* Fix Requested and State properties of muc D-Bus tubes that we previously
created and are still present when we re-join the muc. These tubes are now
listed in Tubes.ListTubes(). fd.o #23678. (cassidy)
* Don't send the same disco request to the same (full) JID more than once. fd.o
#23841. (wjt)
* Update the Jingle raw-udp and ice-udp namespaces we claim to support to the
current version. (wjt)
* fd.o #23348, #23349: fix compilation on NetBSD by including more headers
(Thomas Klausner)
* fd.o #21327: force ISO date format in ChangeLog (wjt)
* Reduce the size of the ChangeLog by truncating at version 0.6.0 and not
including diffstats (previously, the changelog.gz in our Debian packages
was larger than Gabble itself!) (smcv)
telepathy-gabble 0.8.2 (2009-09-03)
===================================
The “tape two fried eggs over your eyes and walk the streets of Paris for an
hour” release.
Enhancements:
* Improve jid validation, so that obviously-invalid jids are rejected.
(daf)
Fixes:
* Don't crash when a vCard set fails, and there are edits pending. This
can happen if you're trying to set your avatar and then disconnect.
(daf)
* fd.o#23013: ContactCapabilities.SetSelfCapabilities can crash gabble
with wrong parms (sjoerd)
* Fix parsing of incoming session accept from Google Video Chat. This
should make outgoing calls to Google Video Chat users work, as well as
incoming calls. Hooray! (wjt, with help from sjoerd and Olivier Crête)
telepathy-gabble 0.8.1 (2009-08-20)
===================================
The “five pounds of cherries and a live beaver” release.
Fixes:
* fd.o#22535: Gabble no longer crashes if you disconnect while it's
trying to start a Google relay session for a call. This should have
been fixed in 0.7.31, but it's really fixed now. :-) (wjt)
* Fix an occasional crash when PEP requests time out, or are cancelled
when you disconnect. (daf)
* Correct an assertion about vCard edits not to fire incorrectly. (daf)
* Clarify some correct-but-confusing behaviour in libjingle 0.3 mode,
which fixes a Coverity false-positive. (smcv)
telepathy-gabble 0.8.0 (2009-08-18)
===================================
The “place a chair facing the oven and sit in it forever” release. This is the
first release in the 0.8 stable series.
Dependencies:
* telepathy-glib >= 0.7.34 is now required as Gabble implements the
Location API.
Enhancements:
* Location and Debug are now implemented as stable interfaces.
* Timeouts are synchronised to the second where possible, leading to fewer
wakeups.
Fixes:
* Fix race condition introduced by fix for fd.o #22023.
* Make vCard request less likely to time out.
* Fix a bug where a vCard request failure could cause SetAvatar or SetAliases
not to return.
|