Update to 1.4.12

pull/684/head
Roger A. Light 8 years ago
parent a0916bdd67
commit eab93e7d3d

23
debian/changelog vendored

@ -1,7 +1,30 @@
mosquitto (1.4.12-1) experimental; urgency=low
* New upstream release.
-- Roger A. Light <roger@atchoo.org> Mon, 29 May 2017 14:56:32 +0100
mosquitto (1.4.10-3) unstable; urgency=high
* SECURITY UPDATE: Pattern ACL can be bypassed by using a username/client id
set to '+' or '#'.
- debian/patches/mosquitto-0.15_cve-2017-7650.patch: Reject send/receive
of messages to/from clients with a '+', '#' or '/' in their
username/client id.
- CVE-2017-7650
* New patch debian/patches/allow_ipv6_bridges.patch allows bridges to make
IPv6 connections when using TLS (closes: #857759).
-- Roger A. Light <roger@atchoo.org> Mon, 29 May 2017 13:43:29 +0100
mosquitto (1.4.10-2) unstable; urgency=medium
* Bumped standards version to 3.9.8. No changes needed.
* Bumped dh compat level to 10.
* Vcs-* links updated.
-- Roger A. Light <roger@atchoo.org> Thu, 03 Nov 2016 22:37:33 +0000
mosquitto (1.4.10-1) unstable; urgency=low
* New upstream release.

@ -3,10 +3,10 @@ Author: Roger Light <roger@atchoo.org>
Forwarded: not-needed
--- a/config.mk
+++ b/config.mk
@@ -84,7 +84,7 @@
@@ -87,7 +87,7 @@
# Also bump lib/mosquitto.h, CMakeLists.txt,
# installer/mosquitto.nsi, installer/mosquitto-cygwin.nsi
VERSION=1.4.10
VERSION=1.4.12
-TIMESTAMP:=$(shell date "+%F %T%z")
+TIMESTAMP:=$(shell dpkg-parsechangelog -l../debian/changelog | grep Date | sed -e 's/Date: //')

@ -3,7 +3,7 @@ Author: Roger Light <roger@atchoo.org>
Forwarded: not-needed
--- a/config.mk
+++ b/config.mk
@@ -241,7 +241,7 @@
@@ -249,7 +249,7 @@
endif
INSTALL?=install

@ -3,12 +3,9 @@ Author: Roger Light <roger@atchoo.org>
Forwarded: yes
--- a/config.h
+++ b/config.h
@@ -27,6 +27,8 @@
@@ -28,3 +28,5 @@
#define uthash_malloc(sz) _mosquitto_malloc(sz)
#define uthash_free(ptr,sz) _mosquitto_free(ptr)
+#include <errno.h>
+
#ifndef EPROTO
# define EPROTO ECONNABORTED
#endif

@ -3,7 +3,7 @@ Author: Roger Light <roger@atchoo.org>
Forwarded: not-needed
--- a/config.mk
+++ b/config.mk
@@ -245,3 +245,5 @@
@@ -253,3 +253,5 @@
mandir=${prefix}/share/man
localedir=${prefix}/share/locale
STRIP?=strip

Loading…
Cancel
Save