Commit Graph

24 Commits

Author SHA1 Message Date
Liang Qi 468e3c38a8 Merge remote-tracking branch 'origin/5.7' into 5.8
Change-Id: I6b8a6bdcc849b76a596d17d3b15e8e1efa58a28c
2017-01-18 12:47:02 +01:00
Jake Petroules 61afd66f14 Fix reference to macOS in the 5.7.1 changelog
This amends d884d20c55

Change-Id: I6f600ed7739f698405076fb567bc71174e205125
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
2016-12-08 05:23:10 +00:00
Alex Blasche 966459d309 Add changes file for 5.8.0
Change-Id: I4e8bf5189295a68e80087fbc4640bd5a57b4bee5
Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
2016-12-07 05:56:11 +00:00
Jani Heikkinen d884d20c55 Add changes file for 5.7.1
Change-Id: I3060846f47faa59a2350da0f44a86746eb9ddf7c
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@theqtcompany.com>
Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
2016-11-02 08:10:05 +00:00
Liang Qi aabce3a08d Merge remote-tracking branch 'origin/5.6' into 5.7
Change-Id: I3eec9a22565585d4fc40831d609a3083ce99a52c
2016-09-16 23:24:43 +02:00
Alex Blasche bd7649557e Add changes file for 5.6.2
Change-Id: Id0c8f14ef466011a3fec0db1f3042e5f540eeaa3
Reviewed-by: Kai Koehne <kai.koehne@qt.io>
2016-09-12 09:45:32 +00:00
Kai Koehne 344583c399 Mention license change in 5.7.0 changelog.
Task-number: QTBUG-53913
Change-Id: I0bd8a21a01531d530ba09d94a6fb839c4e43c630
Reviewed-by: Sami Makkonen <sami.makkonen@qt.io>
Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
2016-06-08 11:25:53 +00:00
Oswald Buddenhagen 9406019386 Merge 5.7 into 5.7.0
Change-Id: I5406c601fa05e347a7c7558e42fb05029799ff27
2016-05-20 19:31:41 +02:00
Alex Blasche b02fb0a3d3 Add changelog for Qt 5.7.0 release
Change-Id: Ic683b32daa35fc771f848046b26fd6edfdaaa0c7
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
2016-05-20 08:32:22 +00:00
Alex Blasche 6909acfd09 Add changelog for 5.6.1 release
Change-Id: If81642830835e45a7465d9872413d1e94953319e
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
2016-05-19 05:56:21 +00:00
Alex Blasche f29aa5e960 Add changelog for QtBluetooth/QtNfc 5.6.0 release
Change-Id: I1422ab23ef1abd812eb5523105cbadc8ef1aa015
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
2016-01-26 14:17:29 +00:00
Alex Blasche 869547fc4f Add changelog for QtConnectivity 5.5.1 release
Change-Id: Icc2f8debeef8c58f008155c9ab5e68e1d5c33835
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@theqtcompany.com>
2015-09-23 10:43:25 +00:00
Alex Blasche a8b89f2a15 Add changelog for Qt 5.5.0 release
Change-Id: If87264deae64c863701633f2d6ff4bd6f3c4d8b0
Reviewed-by: Timur Pocheptsov <Timur.Pocheptsov@digia.com>
2015-06-08 11:42:59 +00:00
Alex Blasche c331ca56de Add QtConnectivity release notes for Qt 5.4.2
Change-Id: I1733dc2b63c491b4facfa7683865723406eb5812
Reviewed-by: Timur Pocheptsov <Timur.Pocheptsov@digia.com>
2015-04-22 15:52:27 +00:00
Alex Blasche 4706708254 Add changelog for QtBluetooth/QtNfc 5.4.1 release.
Change-Id: I1f4f3ace78b4619a43581182d885c479314a7603
Reviewed-by: Aaron McCarthy <mccarthy.aaron@gmail.com>
2015-01-29 09:31:57 +00:00
Alex Blasche 25c2d4793b Fix spelling mistake in change logs
Change-Id: Ia82082ce24c98b69697b348dc20164b8ec034a0b
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
2014-11-18 06:47:40 +01:00
Alex Blasche 71ee504996 Add change log for Qt 5.4.0 release
Change-Id: I9eca03f01ba01e9952c28c6d4bd14f656aa5d838
Reviewed-by: Topi Reiniö <topi.reinio@digia.com>
Reviewed-by: Timur Pocheptsov <Timur.Pocheptsov@digia.com>
Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
2014-11-17 09:04:28 +01:00
Alex Blasche 167faeec86 Fix L2CP socket connections
L2CP's psm (the RFCOMM port equivalent) was never published via SDP.
Therefore the service client could not get the required information
to connect to the server. After this patch Qt properly publishes
the psm.

Also, QBluetoothSocket::connect() initiated a service
discovery to obtain the missing psm. Since the published SDP
entry didn't contain one, protocolServiceMultiplexer() always returned
0 and another service discovery was initiated. This caused a crash
inside QBluetoothSocket because the 1st QBluetoothServiceDiscoveryAgent
instance was deleted in favor of the 2nd.

The patch changes the client behavior such that it doesn't crash
if the service discovery didn't turn up a valid psm/port.
It improves the robustness in case of an error and avoids
a second service discovery (which wouldn't turn up more information
anyway).

The bug only affected Bluez as it is the only platform supporting
pure L2CP sockets.

Last but not least a capability to test L2CP sockets was added to
bttestui.

Change-Id: I46c88a67c2baa4782ea908e645dcd4db9422dbba
Reviewed-by: Fabian Bumberger <fbumberger@rim.com>
2014-08-27 16:54:57 +02:00
Alex Blasche 73d6c67d88 Add changelog for QtBluetooth & QtNfc 5.3.2 release.
Change-Id: Id21197134f525d6835664a2b2f27ca48d405406c
Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
2014-08-13 11:51:35 +02:00
Alex Blasche 5fe214b8db Add changelog for upcoming Qt 5.3.1 release.
Change-Id: I8343a3a474e3b6378b24c08182d767262111ec19
Reviewed-by: Sergio Ahumada <sahumada@blackberry.com>
Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
2014-06-04 14:59:57 +02:00
Alex Blasche 5aee8f17fb Minor changelog clarification and other "nice-ifications"
Change-Id: I1eee55a970a7ed5e1813d70ec254ed0348d1e567
Reviewed-by: Oleg Shparber <trollixx@gmail.com>
Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
2014-04-30 18:22:26 +02:00
Alex Blasche d755d1e76e Add Qt 5.3.0 change log for QtNfc and QtBluetooth
Change-Id: Id489adfe1cfb4c652907e67950b8a12bf1c18c8c
Reviewed-by: Fabian Bumberger <fbumberger@rim.com>
2014-04-15 14:26:59 +02:00
Thiago Macieira 44fd56d22e Update changelog for 5.2.1
Change-Id: Ie67e598578628663fff9cee7b0f82200f575f2b2
Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
2014-01-23 11:07:42 +01:00
Alex Blasche d659e17a8f Add change log for 5.2.1
Change-Id: I12b294e9d3db91a1580b022ccae9dacb5b841ae0
Reviewed-by: Kai Koehne <kai.koehne@digia.com>
2014-01-13 08:48:22 +01:00