summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntti Kokko <antti.kokko@qt.io>2020-03-03 15:10:31 +0200
committerAlex Blasche <alexander.blasche@qt.io>2020-03-17 10:40:29 +0100
commitb445ea4ff203fbcb5011adae0236dd028f11bc89 (patch)
tree4f8f1921739a07060e37d54916acd371adf2da3d
parent58e0224a6677667b1102b34ad5b35a787bd74077 (diff)
Add changes file for Qt 5.14.2v5.14.2
+ 00f7f8514f3415bb68d964af18482f47c0d5c94d Android: JNI_OnLoad return JNI_VERSION_1_6 instead of JNI_VERSION_1_4 + db6cd4110594abe09079ed4106d8fd30a848efa4 Bump version + f4c68cb2fc894f1ff5a9271637d006095c2274d1 winrt: set proper state on service detail discovery fail + 0bb394194aad69574b98de5b43da82b0f0a4a454 winrt: Avoid possible hang in QBluetoothServer::hasPendingConnections + b9502e498c1033b8334afca7808807d3b6f00926 "Fix" heartrate-server on Android + 76d98250d46b4afa3d83b550bd26b33021928310 Catch turned off Bluetooth adapter when stopping LE discovery + fd48361a193889cdc25af8aeb311acc8ad85fa26 Add location-turned-on check before starting device discovery + c81430b704e17d2f2eb5445e261ab3753bef3328 Ensure that a failing classic discovery doesn't prevent LE scan + 0c8f3eb35eead6e4db7732020d7fb2863ba3787f Grant ACCESS_FINE_LOCATION to QtBluetooth + a2769b323dc890def9dffaf98c768cec12eba3c0 Suppress deployment-settings files on Android + 0282c2fc4ae437cb4f549f25f3e748a90e64f864 Android: Ensure that LE errors are forwarded from JNI to Qt Change-Id: I1fad98c115f7a78b96ecc7fe314166d82f52ce01 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
-rw-r--r--dist/changes-5.14.249
1 files changed, 49 insertions, 0 deletions
diff --git a/dist/changes-5.14.2 b/dist/changes-5.14.2
new file mode 100644
index 00000000..4b0fa8a8
--- /dev/null
+++ b/dist/changes-5.14.2
@@ -0,0 +1,49 @@
+Qt 5.14.2 is a bug-fix release. It maintains both forward and backward
+compatibility (source and binary) with Qt 5.14.0 through 5.14.1.
+
+For more details, refer to the online documentation included in this
+distribution. The documentation is also available online:
+
+https://doc.qt.io/qt-5/index.html
+
+The Qt version 5.14 series is binary compatible with the 5.13.x series.
+Applications compiled for 5.13 will continue to run with 5.14.
+
+Some of the changes listed in this file include issue tracking numbers
+corresponding to tasks in the Qt Bug Tracker:
+
+https://bugreports.qt.io/
+
+Each of these identifiers can be entered in the bug tracker to obtain more
+information about a particular change.
+
+****************************************************************************
+* QtBluetooth *
+****************************************************************************
+
+ - Windows:
+ * [QTBUG-80770] Fixed service state (DiscoveryRequired) when service
+ detail discovery fails.
+ * [QTBUG-81827] Avoid possible lock when calling
+ QBluetoothServer::hasPendingConnections.
+ - Android:
+ * Fixed the missing QLowEnergyService::error() signal emission if the
+ error was detected on the Java side. This probably cut 50% of all
+ errors out.
+ * Fixed runtime exception that happened when calling "stopLeScan" when
+ device's Bluetooth adapter is turned off.
+ * [QTBUG-81875] Fixed QBluetoothDeviceDiscoveryAgent with Android API 29.
+ * Fixed race condition where incoming and outgoing Low Energy requests
+ could overwrite each others payload.
+ - Linux:
+ * [QTBUG-81696] Added support for characteristic Write Without Response
+ requests when using BlueZ 5.50 or later.
+
+****************************************************************************
+* QtNFC *
+****************************************************************************
+
+ - Android:
+ * Fixed case when QNearFieldTarget::waitForRequestCompleted() did not stop
+ early (caused overly long timeout case) despite QNearFieldTarget::sendCommand()
+ having failed already.