summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--NEWS57
m---------lib/ext/wocky0
-rw-r--r--src/capabilities.c1
-rw-r--r--src/ft-manager.c2
5 files changed, 62 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index bb2a5bed8..bba1b7a7b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,12 +3,14 @@
*.gcno
*.gcov
*.l[ao]
+*.log
*.loT
*.orig
*.pc
*.py[co]
*.rej
*.sw[op]
+*.trs
*~
*#
.#*
@@ -103,3 +105,4 @@ cscope.out
/tests/twisted/tools/with-session-bus-*.bustle-logs
/tests/twisted/with-session-bus-*.address
/tests/twisted/with-session-bus-*.pid
+/tools/telepathy-glib-env
diff --git a/NEWS b/NEWS
index 89c34e786..e91c46bed 100644
--- a/NEWS
+++ b/NEWS
@@ -52,6 +52,63 @@ Internal changes:
• Remove regression tests for obsolete APIs to reduce delta between
0.20 and 1.0 branches (Simon, Guillaume)
+telepathy-gabble 0.18.4 (2016-11-15)
+====================================
+
+The "crawling" release.
+
+Fixes:
+
+• Update wocky
+ · Use SoupSession instead of SoupSessionAsync to fix
+ function deprecation errors (fd.o #96383, Diane Trout)
+ · Replaced deprecated usage of gnutls_certificate_credentials
+ with gnutls_certificate_credentials_t (George Kiagiadakis)
+ · Updated CRL of the ssl-related unit tests to fix errors
+ when running the tests with the openssl backend, due to
+ the CRL being expired (fd.o #79548, Diane Trout)
+ · Renamed a unit test to avoid duplicate test names, which
+ is an error in recent GLib versions (Diane Trout)
+ · Removed WockyHttpProxy in favour of GIO http proxy,
+ fixing a failing unit test (fd.o #94031, George Kiagiadakis)
+ · Bumped GLib dependency to 2.44 for using the GIO
+ http proxy (George Kiagiadakis)
+ · Fixed a race condition in the wocky-connector-test (George
+ Kiagiadakis)
+
+• Replaced deprecated _BSD_SOURCE with _DEFAULT_SOURCE
+ to fix compilation with recent glibc (Diane Trout)
+
+• Make XEP-0030 disco#info query advertise the disco#info feature
+ (fd.o #98127, Maxime Buquet)
+
+telepathy-gabble 0.18.3 (2014-05-07)
+====================================
+
+Fixes:
+
+• fd.o #76465: fix a crash in Jingle (Guillaume)
+
+telepathy-gabble 0.18.2 (2014-03-20)
+====================================
+
+The “mithril boxing gloves” release.
+
+Fixes:
+
+• update Wocky:
+ · don't try to cancel a source ID twice, which issues a critical warning
+ in GLib 2.39
+ · fix failure to build with recent (Markdown-based) gtk-doc
+
+• plugin loader: don't crash if g_dir_open() fails twice (fd.o #66085, Will)
+
+• fix a crash in 1-1 Tubes on 64-bit machines (fd.o #70038, Guillaume)
+
+• fix enum cast warnings under clang (fd.o #70038, Guillaume)
+
+• add a regression test for fd.o #68829 (Simon)
+
telepathy-gabble 0.18.1 (2013-09-06)
====================================
diff --git a/lib/ext/wocky b/lib/ext/wocky
-Subproject 83c68bdd127b67a9c53184c06187dd4ca5ddc89
+Subproject 352247c52b89b5a58c02f8675a95ea64cc3724d
diff --git a/src/capabilities.c b/src/capabilities.c
index 1c4801fd8..be0dc00c6 100644
--- a/src/capabilities.c
+++ b/src/capabilities.c
@@ -53,6 +53,7 @@ static const Feature self_advertised_features[] =
{ FEATURE_FIXED, NS_JINGLE032 },
#endif
+ { FEATURE_FIXED, NS_DISCO_INFO },
{ FEATURE_FIXED, NS_CHAT_STATES },
{ FEATURE_FIXED, NS_NICK },
{ FEATURE_FIXED, NS_NICK "+notify" },
diff --git a/src/ft-manager.c b/src/ft-manager.c
index cca26d4cb..d394465cc 100644
--- a/src/ft-manager.c
+++ b/src/ft-manager.c
@@ -20,7 +20,7 @@
#include "config.h"
-#define _BSD_SOURCE
+#define _DEFAULT_SOURCE
#define _XOPEN_SOURCE /* glibc2 needs this */
#include <time.h>
#include <dbus/dbus-glib.h>