Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit 21903ed

Browse files
committed
Merge branch '1.9'
2 parents 6e1623d + 3b22f8c commit 21903ed

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ QXmpp 1.10.0 (UNRELEASED)
99

1010
*under development*
1111

12+
QXmpp 1.9.3 (January 23, 2025)
13+
------------------------------
14+
15+
- OutgoingClient: Fix ssl connection/setting invalid ssl config (@pasnox, #675)
16+
- FileEncryption: Fix wrong Cipher::ok() assert (@pasnox, #676)
17+
- OmemoManager: Fix removing old signed pre key pairs (@melvo, #674)
18+
- OmemoManager: Do not try to renew signed pre key pairs while loading (@melvo, #674)
19+
1220
QXmpp 1.9.2 (December 07, 2024)
1321
-------------------------------
1422

doc/doap.xml

+7
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,13 @@ SPDX-License-Identifier: CC0-1.0
741741
<xmpp:since>1.8</xmpp:since>
742742
</xmpp:SupportedXep>
743743
</implements>
744+
<release>
745+
<Version>
746+
<revision>1.9.3</revision>
747+
<created>2025-01-23</created>
748+
<file-release rdf:resource='https://github.com/qxmpp-project/qxmpp/archive/refs/tags/v1.9.3.tar.gz'/>
749+
</Version>
750+
</release>
744751
<release>
745752
<Version>
746753
<revision>1.9.2</revision>

src/client/QXmppFileEncryption.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ EncryptionDevice::EncryptionDevice(std::unique_ptr<QIODevice> input,
154154
setOpenMode(m_input->openMode() & QIODevice::ReadOnly);
155155

156156
Q_ASSERT(m_cipher->validKeyLength(int(key.length())));
157-
Q_ASSERT(m_cipher->ok());
158157
}
159158

160159
EncryptionDevice::~EncryptionDevice() = default;
@@ -270,7 +269,6 @@ DecryptionDevice::DecryptionDevice(std::unique_ptr<QIODevice> input,
270269
setOpenMode(m_output->openMode() & QIODevice::WriteOnly);
271270

272271
Q_ASSERT(m_cipher->validKeyLength(int(key.length())));
273-
Q_ASSERT(m_cipher->ok());
274272
}
275273

276274
DecryptionDevice::~DecryptionDevice() = default;

src/client/QXmppOutgoingClient.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ QXmppOutgoingClientPrivate::QXmppOutgoingClientPrivate(QXmppOutgoingClient *qq)
130130

131131
void QXmppOutgoingClientPrivate::connectToHost(const ServerAddress &address)
132132
{
133-
QSslConfiguration sslConfig;
133+
auto sslConfig = QSslConfiguration::defaultConfiguration();
134134

135135
// override CA certificates if requested
136136
if (!config.caCertificates().isEmpty()) {

0 commit comments

Comments
 (0)