From d7931d733e679c00c313ecff89052ed59bf49c30 Mon Sep 17 00:00:00 2001 From: Antti Kokko Date: Tue, 30 Jul 2019 11:25:41 +0300 Subject: Add changes file for Qt 5.13.1 + 552e8dac97cf04a355b0935491b61cc5f2fb4201 Doc: Fix \sa statement in qabstractoauth.cpp + be4077347fa8d492553e7e08e4fffe0f439fbd4f Bump version + d0b28afe0e57857152a61f4a1d2b0dfe7a4bb6bb Add changes file for Qt 5.12.4 + 039611b2b78ad74fa0de7c87cb1415b50efdb7de Bump version + ee681478c4b05ab6640c0318ed4fa25d62c6f356 Bump version + be7a26e4af3b3ab2cc7e37277256c4e29a14d4bd Doc: Replace example file lists with links to code.qt.io Change-Id: I1643fc8fb026fb7cb0ed762c718b910b707ba29d Reviewed-by: Jani Heikkinen --- dist/changes-5.13.1 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dist/changes-5.13.1 diff --git a/dist/changes-5.13.1 b/dist/changes-5.13.1 new file mode 100644 index 0000000..57ebdbe --- /dev/null +++ b/dist/changes-5.13.1 @@ -0,0 +1,20 @@ +Qt 5.13.1 is a bug-fix release. It maintains both forward and backward +compatibility (source and binary) with Qt 5.13.0. + +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.13 series is binary compatible with the 5.12.x series. +Applications compiled for 5.12 will continue to run with 5.13. + +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. + + - This release contains only minor code improvements. -- cgit v1.2.3 From 773a0dc64c73c1584fd1ed8fe081a9d9b1b1e4d5 Mon Sep 17 00:00:00 2001 From: Antti Kokko Date: Tue, 20 Aug 2019 13:16:24 +0300 Subject: Add changes file for Qt 5.12.5 + ee681478c4b05ab6640c0318ed4fa25d62c6f356 Bump version Change-Id: I00a167251e25ae9e16967b302a257d383171943b Reviewed-by: Jani Heikkinen --- dist/changes-5.12.5 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dist/changes-5.12.5 diff --git a/dist/changes-5.12.5 b/dist/changes-5.12.5 new file mode 100644 index 0000000..e8be931 --- /dev/null +++ b/dist/changes-5.12.5 @@ -0,0 +1,20 @@ +Qt 5.12.5 is a bug-fix release. It maintains both forward and backward +compatibility (source and binary) with Qt 5.12.0 through 5.12.4. + +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.12 series is binary compatible with the 5.11.x series. +Applications compiled for 5.11 will continue to run with 5.12. + +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. + + - This release contains only minor code improvements. -- cgit v1.2.3 From 639800ccfe85daecd4432f8b7f64b258e7d2e6dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Nordheim?= Date: Tue, 17 Sep 2019 09:16:05 +0200 Subject: Remove test cases using oauthbin.com It is no longer available Change-Id: Ia7bba0dec1040f5e00f22ddaa9819b63f4f27d9e Reviewed-by: Jesus Fernandez --- tests/auto/oauth1/tst_oauth1.cpp | 77 ---------------------------------------- 1 file changed, 77 deletions(-) diff --git a/tests/auto/oauth1/tst_oauth1.cpp b/tests/auto/oauth1/tst_oauth1.cpp index eb13420..10da4f9 100644 --- a/tests/auto/oauth1/tst_oauth1.cpp +++ b/tests/auto/oauth1/tst_oauth1.cpp @@ -637,28 +637,6 @@ void tst_OAuth1::grant_data() << QUrl("http://term.ie/oauth/example/echo_api.php") << QNetworkAccessManager::PostOperation; } - if (hostReachable(QLatin1String("oauthbin.com"))) { - QTest::newRow("oauthbin.com_get") << "key" - << "secret" - << "requestkey" - << "requestsecret" - << "accesskey" - << "accesssecret" - << QUrl("http://oauthbin.com/v1/request-token") - << QUrl("http://oauthbin.com/v1/access-token") - << QUrl("http://oauthbin.com/v1/echo") - << QNetworkAccessManager::GetOperation; - QTest::newRow("oauthbin.com_post") << "key" - << "secret" - << "requestkey" - << "requestsecret" - << "accesskey" - << "accesssecret" - << QUrl("http://oauthbin.com/v1/request-token") - << QUrl("http://oauthbin.com/v1/access-token") - << QUrl("http://oauthbin.com/v1/echo") - << QNetworkAccessManager::PostOperation; - } } void tst_OAuth1::grant() @@ -762,30 +740,6 @@ void tst_OAuth1::authenticatedCalls_data() << parameters << QNetworkAccessManager::GetOperation; } - if (hostReachable(QLatin1String("oauthbin.com"))) { - QTest::newRow("oauthbin.com_get") << "key" - << "secret" - << "accesskey" - << "accesssecret" - << QUrl("http://oauthbin.com/v1/echo") - << parameters - << QNetworkAccessManager::GetOperation; - QTest::newRow("oauthbin.com_post") << "key" - << "secret" - << "accesskey" - << "accesssecret" - << QUrl("http://oauthbin.com/v1/echo") - << parameters - << QNetworkAccessManager::PostOperation; - QTest::newRow("oauthbin.com_percent_encoded_query") - << "key" - << "secret" - << "accesskey" - << "accesssecret" - << QUrl("http://oauthbin.com/v1/echo?key=%40value+1%2B2=3") - << parameters - << QNetworkAccessManager::GetOperation; - } } void tst_OAuth1::authenticatedCalls() @@ -879,37 +833,6 @@ void tst_OAuth1::prepareRequestCalls_data() << parameters << QByteArray("GET"); } - if (hostReachable(QLatin1String("oauthbin.com"))) { - QTest::newRow("oauthbin.com_get") << "key" - << "secret" - << "accesskey" - << "accesssecret" - << QUrl("http://oauthbin.com/v1/echo") - << parameters - << QByteArray("GET"); - QTest::newRow("oauthbin.com_post") << "key" - << "secret" - << "accesskey" - << "accesssecret" - << QUrl("http://oauthbin.com/v1/echo") - << parameters - << QByteArray("POST"); - QTest::newRow("oauthbin.com_percent_encoded_query") - << "key" - << "secret" - << "accesskey" - << "accesssecret" - << QUrl("http://oauthbin.com/v1/echo?key=%40value+1%2B2=3") - << parameters - << QByteArray("GET"); - QTest::newRow("oauthbin.com_patch") << "key" - << "secret" - << "accesskey" - << "accesssecret" - << QUrl("http://oauthbin.com/v1/echo") - << parameters - << QByteArray("PATCH"); - } } void tst_OAuth1::prepareRequestCalls() -- cgit v1.2.3