All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/mosquitto: bump version to 1.6.5
@ 2019-09-16  7:32 Peter Korsgaard
  2019-09-16  8:52 ` Thomas Petazzoni
  2019-09-26  8:48 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Korsgaard @ 2019-09-16  7:32 UTC (permalink / raw)
  To: buildroot

Bugfix release, fixing a number of issues:

- Fix v5 DISCONNECT packets with remaining length == 2 being treated as a
  protocol error.  Closes #1367.
- Fix support for libwebsockets 3.x (excluding 3.2.0)
- Fix slow websockets performance when sending large messages.  Closes
  #1390.
- Fix bridges potentially not connecting on Windows.  Closes #478.
- Fix clients authorised using use_identity_as_username or
  use_subject_as_username being disconnected on SIGHUP.  Closes #1402.
- Improve error messages in some situations when clients disconnect.
  Reduces the number of "Socket error on client X, disconnecting" messages.
- Fix Will for v5 clients not being sent if will delay interval was greater
  than the session expiry interval.  Closes #1401.
- Fix CRL file not being reloaded on HUP.  Closes #35.
- Fix repeated "Error in poll" messages on Windows when only websockets
  listeners are defined.  Closes #1391.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 package/mosquitto/mosquitto.hash | 2 +-
 package/mosquitto/mosquitto.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/mosquitto/mosquitto.hash b/package/mosquitto/mosquitto.hash
index bfab4ddb05..aa6eeaf13a 100644
--- a/package/mosquitto/mosquitto.hash
+++ b/package/mosquitto/mosquitto.hash
@@ -1,5 +1,5 @@
 # Locally calculated after checking gpg signature
-sha256 a3d5822c249f6a6e13311b1b09eff6807ea01608a5a77934e1769842e9d146ef  mosquitto-1.6.4.tar.gz
+sha256 bc71b38b5a26fc7cc772853e5607c657868db9f9a6d2b15e2b677649a0f85d20  mosquitto-1.6.5.tar.gz
 
 # License files
 sha256 cc77e25bafd40637b7084f04086d606f0a200051b61806f97c93405926670bc1  LICENSE.txt
diff --git a/package/mosquitto/mosquitto.mk b/package/mosquitto/mosquitto.mk
index f098213e1e..fd8e6df26a 100644
--- a/package/mosquitto/mosquitto.mk
+++ b/package/mosquitto/mosquitto.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-MOSQUITTO_VERSION = 1.6.4
+MOSQUITTO_VERSION = 1.6.5
 MOSQUITTO_SITE = https://mosquitto.org/files/source
 MOSQUITTO_LICENSE = EPL-1.0 or EDLv1.0
 MOSQUITTO_LICENSE_FILES = LICENSE.txt epl-v10 edl-v10
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] package/mosquitto: bump version to 1.6.5
  2019-09-16  7:32 [Buildroot] [PATCH] package/mosquitto: bump version to 1.6.5 Peter Korsgaard
@ 2019-09-16  8:52 ` Thomas Petazzoni
  2019-09-26  8:48 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2019-09-16  8:52 UTC (permalink / raw)
  To: buildroot

On Mon, 16 Sep 2019 09:32:01 +0200
Peter Korsgaard <peter@korsgaard.com> wrote:

> Bugfix release, fixing a number of issues:
> 
> - Fix v5 DISCONNECT packets with remaining length == 2 being treated as a
>   protocol error.  Closes #1367.
> - Fix support for libwebsockets 3.x (excluding 3.2.0)
> - Fix slow websockets performance when sending large messages.  Closes
>   #1390.
> - Fix bridges potentially not connecting on Windows.  Closes #478.
> - Fix clients authorised using use_identity_as_username or
>   use_subject_as_username being disconnected on SIGHUP.  Closes #1402.
> - Improve error messages in some situations when clients disconnect.
>   Reduces the number of "Socket error on client X, disconnecting" messages.
> - Fix Will for v5 clients not being sent if will delay interval was greater
>   than the session expiry interval.  Closes #1401.
> - Fix CRL file not being reloaded on HUP.  Closes #35.
> - Fix repeated "Error in poll" messages on Windows when only websockets
>   listeners are defined.  Closes #1391.
> 
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
>  package/mosquitto/mosquitto.hash | 2 +-
>  package/mosquitto/mosquitto.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH] package/mosquitto: bump version to 1.6.5
  2019-09-16  7:32 [Buildroot] [PATCH] package/mosquitto: bump version to 1.6.5 Peter Korsgaard
  2019-09-16  8:52 ` Thomas Petazzoni
@ 2019-09-26  8:48 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2019-09-26  8:48 UTC (permalink / raw)
  To: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

 > Bugfix release, fixing a number of issues:
 > - Fix v5 DISCONNECT packets with remaining length == 2 being treated as a
 >   protocol error.  Closes #1367.
 > - Fix support for libwebsockets 3.x (excluding 3.2.0)
 > - Fix slow websockets performance when sending large messages.  Closes
 >   #1390.
 > - Fix bridges potentially not connecting on Windows.  Closes #478.
 > - Fix clients authorised using use_identity_as_username or
 >   use_subject_as_username being disconnected on SIGHUP.  Closes #1402.
 > - Improve error messages in some situations when clients disconnect.
 >   Reduces the number of "Socket error on client X, disconnecting" messages.
 > - Fix Will for v5 clients not being sent if will delay interval was greater
 >   than the session expiry interval.  Closes #1401.
 > - Fix CRL file not being reloaded on HUP.  Closes #35.
 > - Fix repeated "Error in poll" messages on Windows when only websockets
 >   listeners are defined.  Closes #1391.

 > Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Committed to 2019.08.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-09-26  8:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-16  7:32 [Buildroot] [PATCH] package/mosquitto: bump version to 1.6.5 Peter Korsgaard
2019-09-16  8:52 ` Thomas Petazzoni
2019-09-26  8:48 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.