Release prep for 2.1.2

This commit is contained in:
Roger A. Light
2026-02-09 09:28:34 +00:00
parent 20d9578077
commit 99fa50f30e
10 changed files with 36 additions and 11 deletions

View File

@@ -6,7 +6,7 @@
cmake_minimum_required(VERSION 3.18) cmake_minimum_required(VERSION 3.18)
set (VERSION 2.1.1) set (VERSION 2.1.2)
project(mosquitto project(mosquitto
VERSION ${VERSION} VERSION ${VERSION}
DESCRIPTION "Eclipse Mosquitto" DESCRIPTION "Eclipse Mosquitto"

View File

@@ -1,4 +1,4 @@
2.1.2 - 2026-02-xx 2.1.2 - 2026-02-09
================== ==================
Broker: Broker:

View File

@@ -162,7 +162,7 @@ WITH_HTTP_API=yes
# Also bump lib/mosquitto.h, CMakeLists.txt, # Also bump lib/mosquitto.h, CMakeLists.txt,
# installer/mosquitto.nsi, installer/mosquitto64.nsi # installer/mosquitto.nsi, installer/mosquitto64.nsi
VERSION=2.1.1 VERSION=2.1.2
# Client library SO version. Bump if incompatible API/ABI changes are made. # Client library SO version. Bump if incompatible API/ABI changes are made.
SOVERSION=1 SOVERSION=1

View File

@@ -11,7 +11,7 @@ SetCompressor /SOLID lzma
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "Eclipse Mosquitto" Name "Eclipse Mosquitto"
!define VERSION 2.1.1 !define VERSION 2.1.2
OutFile "mosquitto-${VERSION}-install-windows-x86.exe" OutFile "mosquitto-${VERSION}-install-windows-x86.exe"
InstallDir "$PROGRAMFILES\Mosquitto" InstallDir "$PROGRAMFILES\Mosquitto"

View File

@@ -11,7 +11,7 @@ SetCompressor /SOLID lzma
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "Eclipse Mosquitto" Name "Eclipse Mosquitto"
!define VERSION 2.1.1 !define VERSION 2.1.2
OutFile "mosquitto-${VERSION}-install-windows-x64.exe" OutFile "mosquitto-${VERSION}-install-windows-x64.exe"
!include "x64.nsh" !include "x64.nsh"

View File

@@ -2,7 +2,7 @@
MAJOR=2 MAJOR=2
MINOR=1 MINOR=1
REVISION=1 REVISION=2
sed -i "s/^VERSION=.*/VERSION=${MAJOR}.${MINOR}.${REVISION}/" config.mk sed -i "s/^VERSION=.*/VERSION=${MAJOR}.${MINOR}.${REVISION}/" config.mk

View File

@@ -1,5 +1,5 @@
name: mosquitto name: mosquitto
version: 2.1.1 version: 2.1.2
summary: Eclipse Mosquitto MQTT broker summary: Eclipse Mosquitto MQTT broker
description: This is a message broker that supports version 5.0, 3.1.1, and 3.1 of the MQTT protocol. description: This is a message broker that supports version 5.0, 3.1.1, and 3.1 of the MQTT protocol.
MQTT provides a method of carrying out messaging using a publish/subscribe MQTT provides a method of carrying out messaging using a publish/subscribe

View File

@@ -1,6 +1,6 @@
{ {
"name": "mosquitto", "name": "mosquitto",
"version-string": "2.1.1", "version-string": "2.1.2",
"dependencies": [ "dependencies": [
"argon2", "argon2",
"cjson", "cjson",

View File

@@ -11,7 +11,7 @@
# Source # Source
* [mosquitto-2.1.1.tar.gz](https://mosquitto.org/files/source/mosquitto-2.1.1.tar.gz) ([GPG signature](https://mosquitto.org/files/source/mosquitto-2.1.1.tar.gz.asc)) * [mosquitto-2.1.2.tar.gz](https://mosquitto.org/files/source/mosquitto-2.1.2.tar.gz) ([GPG signature](https://mosquitto.org/files/source/mosquitto-2.1.2.tar.gz.asc))
* [Git source code repository](https://github.com/eclipse-mosquitto/mosquitto) (github.com) * [Git source code repository](https://github.com/eclipse-mosquitto/mosquitto) (github.com)
Older downloads are available at [https://mosquitto.org/files/](../files/) Older downloads are available at [https://mosquitto.org/files/](../files/)
@@ -24,8 +24,8 @@ distributions.
## Windows ## Windows
* [mosquitto-2.1.1-install-windows-x64.exe](https://mosquitto.org/files/binary/win64/mosquitto-2.1.1-install-windows-x64.exe) * [mosquitto-2.1.2-install-windows-x64.exe](https://mosquitto.org/files/binary/win64/mosquitto-2.1.2-install-windows-x64.exe)
* [mosquitto-2.1.1-install-windows-x86.exe](https://mosquitto.org/files/binary/win32/mosquitto-2.1.1-install-windows-x86.exe) * [mosquitto-2.1.2-install-windows-x86.exe](https://mosquitto.org/files/binary/win32/mosquitto-2.1.2-install-windows-x86.exe)
Older installers can be found at [https://mosquitto.org/files/binary/](https://mosquitto.org/files/binary/). Older installers can be found at [https://mosquitto.org/files/binary/](https://mosquitto.org/files/binary/).

View File

@@ -0,0 +1,25 @@
<!--
.. title: Version 2.1.2 released.
.. slug: version-2-1-2-released
.. date: 2026-02-09 09:30:00 UTC
.. tags: Releases
.. category:
.. link:
.. description:
.. type: text
-->
Version 2.1.2 of Mosquitto has been released. This is a bugfix release.
# Broker:
- Forbid running with `persistence true` and with a persistence plugin at the
same time. Closes [#3480].
# Build:
- Build fixes for OpenBSD. Closes [#3474].
- Add missing libedit to docker builds. Closes [#3476].
- Fix static/shared linking of libwebsockets under cmake.
[#3474]: https://github.com/eclipse-mosquitto/mosquitto/issues/3474
[#3476]: https://github.com/eclipse-mosquitto/mosquitto/issues/3476
[#3480]: https://github.com/eclipse-mosquitto/mosquitto/issues/3480