Make QAbstractItemModel::sibling virtual.
[profile/ivi/qtbase.git] / dist / changes-5.0.0
1 Some of the changes listed in this file include issue tracking numbers
2 corresponding to tasks in the Qt Bug Tracker:
3
4   http://bugreports.qt-project.org/
5
6 Each of these identifiers can be entered in the bug tracker to obtain more
7 information about a particular change.
8
9
10 ****************************************************************************
11 *                       Source incompatible changes                        *
12 ****************************************************************************
13
14
15 - QObject
16   * The signatures of the connectNotify() and disconnectNotify() functions
17     have changed. The functions now get passed a QMetaMethod that identifies
18     the signal, rather than a const char *.
19
20 - QSslCertificate::subjectInfo() and QSslCertificate::issuerInfo() now
21   return a QStringList instead of a QString
22
23 - QSslCertificate::isValid() has been deprecated. Originally it only checked
24   the certificate dates, but later checking for blacklisting was added. Now
25   there's a more specific QSslCertificate::isBlacklisted() method.
26
27 - Unite clipping support has been removed from QPainter. The alternative is
28   to unite QRegion's and using the result on QPainter.
29
30 - QLibrary::resolve() now returns a function pointer instead of a void
31   pointer.
32
33 - QSslCertificate::alternateSubjectNames() is deprecated (but can be enabled
34   via QT_DISABLE_DEPRECATED_BEFORE), use
35   QSslCertificate::subjectAlternativeNames() instead.
36
37 - QLibraryInfo::buildKey() has been removed. Likewise, the QT_BUILD_KEY
38   preprocessor #define has also been removed. The build-key is obsolete
39   and is no longer necessary.
40
41 - QCoreApplication::translate() will no longer return the source text when
42   the translation is empty. Use lrelease -removeidentical for optimization.
43
44 - QTranslator subclasses need to adjust the signature of the virtual method
45   translate() in order to add the "int n = -1" argument.
46
47 - QString and QByteArray constructors that take a size argument will now treat
48   negative sizes to indicate nul-terminated strings (a nul-terminated array of
49   QChar, in the case of QString). In Qt 4, negative sizes were ignored and
50   result in empty QString and QByteArray, respectively. The size argument to
51   those constructors now has a default value of -1, thus replacing the separate
52   constructors that did the same.
53
54 - Qt::escape() is deprecated (but can be enabled via
55   QT_DISABLE_DEPRECATED_BEFORE), use QString::toHtmlEscaped() instead.
56
57 - QBool is gone. QString::contains, QByteArray::contains, and QList::contains
58   used to return an internal QBool class so that the Qt3 code
59   "if (a.contains() == 2)" wouldn't compile anymore. Such code cannot exist
60   in Qt4, so these methods return a bool now. If your code used the undocumented
61   QBool, simply replace it with bool.
62
63 - qIsDetached<> has been removed without replacement.
64
65 - QMetaType:
66   * QMetaType::construct() has been renamed to QMetaType::create().
67   * QMetaType::unregisterType() has been removed.
68   * QMetaType now records if the type argument inherits QObject. This
69     can be used in scripting APIs, so that custom QObject subclasses
70     are treated as QObject pointers. In QtScript for example, this can
71     mean that QScriptValue.isQObject can be true where it was false before.
72   * QMetaType::QWidgetStar has been removed. Use qMetaTypeId<QWidget*>()
73     or QVariant::canConvert<QWidget*>() as appropriate.
74
75 - QMetaMethod:
76   * QMetaMethod::signature() has been renamed to QMetaMethod::methodSignature(),
77     and the return type has been changed to QByteArray. This was done to be able
78     to generate the signature string on demand, rather than always storing it in
79     the meta-data.
80   * QMetaMethod::typeName() no longer returns an empty string when the return
81     type is void; it returns "void". The recommended way of checking whether a
82     method returns void is to compare the return value of QMetaMethod::returnType()
83     to QMetaType::Void.
84
85 - QVariant:
86   * Inconsistent constructor taking Qt::GlobalColor and producing QVariant(QColor)
87     instance was removed. Code constructing such variants can be migrated by
88     explicitly calling QColor constructor. For example from "QVariant(Qt::red)"
89     to "QVariant(QColor(Qt::red))"
90
91 - QTestLib:
92   * The plain-text, xml and lightxml test output formats have been changed to
93     show a test result for every row of test data in data-driven tests.  In
94     Qt4, only fails and skips were shown for individual data rows and passes
95     were not shown for individual data rows, preventing accurate calculation
96     of test run rates and pass rates.
97   * The QTRY_VERIFY and QTRY_COMPARE macros have been moved into QTestLib.
98     These macros formerly lived in tests/shared/util.h but are now provided
99     by including the <QtTest/QtTest> header. In addition,
100     QTRY_VERIFY_WITH_TIMEOUT and QTRY_COMPARE_WITH_TIMEOUT are provided,
101     allowing for specifying custom timeout values.
102   * The QTEST_NOOP_MAIN macro has been removed from the API.  If a test is
103     known at compile-time to be inapplicable for a particular build it should
104     be omitted via .pro file logic, or the test should call QSKIP in the
105     initTestCase() method to skip the entire test and report a meaningful
106     explanation in the test log.
107   * The DEPENDS_ON macro has been removed from the API.  This macro did nothing
108     and misled some users to believe that they could make test functions depend
109     on each other or impose an execution order on test functions.
110   * The QTest::qt_snprintf function has been removed from the API.  This was an
111     internal testlib function that was exposed in the public API due to its use
112     in a public macro.  Any calls to this function should be replaced by a call
113     to qsnprintf(), which comes from the <QtCore/QByteArray> header.
114   * The QTest::pixmapsAreEqual() function has been removed from the API.
115     Comparison of QPixmap objects should be done using QCOMPARE, which provides
116     more informative output in the event of a failure.
117   * The QSKIP macro no longer has the "mode" parameter, which caused problems
118     for calculating test metrics, as the SkipAll mode hid information about
119     what test data was skipped.  Calling QSKIP in a test function now behaves
120     like SkipSingle -- skipping a non-data-driven test function or skipping
121     only the current data row of a data-driven test function.  Every skipped
122     data row is now reported in the test log.
123
124 - The QSsl::TlsV1 enum value was renamed to QSsl::TlsV1_0 .
125
126 - QAccessible:
127   * Internal QAccessible::State enum value HasInvokeExtension removed
128 - QAccessibleInterface:
129   * The "child" integer parameters have been removed. This moves the api
130     to be closer to IAccessible2.
131     This means several functions lose their integer parameter:
132     text(Text t, int child) -> text(Text t), rect(int child) -> rect()
133     setText(Text t, int child, const QString &text) -> setText(Text t, const QString &text)
134     role(int child) -> role(), state(int child) -> state()
135   * parent() and child() was added in order to do hierarchical navigation.
136   * relations() was added as a replacement to relationTo()
137   * As a consequence of the above two points, navigate() was removed.
138   * Accessible-Action related functions have been removed. QAccessibleInterface
139     subclasses are expected to implement the QAccessibleActionInterface instead.
140     These functions have been removed:
141     QAccessibleInterface::userActionCount, QAccessibleInterface::actionText,
142     QAccessibleInterface::doAction
143 - QAccessibleEvent also loses the child parameter.
144     QAccessibleEvent(Type type, int child) -> QAccessibleEvent(Type type)
145     QAccessibleEvent::child() removed.
146 - QAccessibleActionInterface:
147   * Refactored to be based on action names. All functions have been changed from using
148     int parameters to strings.
149
150 - QSound has been moved from QtGui to QtMultimedia
151
152 - QTabletEvent::QTabletEvent does not take a hiResGlobalPos argument anymore,
153   as all coordinates are floating point based now.
154
155 - QTouchEvent:
156
157   * The DeviceType enum and deviceType() have been deprecated due to
158     the introduction of QTouchDevice.
159
160   * The signature of the constructor has changed. It now takes a
161     QTouchDevice pointer instead of just a DeviceType value.
162
163   * TouchPointState no longer includes TouchPointStateMask and
164     TouchPointPrimary. QTouchEvent::TouchPoint::isPrimary() has
165     been removed.
166
167   * QWidget *widget() has been removed and is replaced by QObject
168     *target() in order to avoid QWidget dependencies.
169
170   * QEvent::TouchCancel has been introduced. On systems where it makes
171     sense this event type can be used to differentiate between a
172     regular TouchEnd and abrupt touch sequence cancellations caused by
173     the compositor, for example when a system gesture gets recognized.
174
175 - QMetaType
176
177   * Q_DECLARE_METATYPE(Foo*) now requires that Foo is fully defined. In
178     cases where a forward declared type should be used as a metatype,
179     Q_DECLARE_OPAQUE_POINTER(Foo*) can be used to allow that.
180   * Similarly, Q_DECLARE_METATYPE(QSharedPointer<Foo>), and
181     Q_DECLARE_METATYPE(QWeakPointer<Foo>) require Foo to be fully defined. Again
182     though, Q_DECLARE_OPAQUE_POINTER(Foo*) can be used to allow that.
183
184 - QItemEditorFactory
185
186   * The signature of the createEditor and valuePropertyName methods
187     have been changed to take arguments of type int instead of QVariant::Type.
188
189 - QWindowSystemInterface:
190
191   * The signature of all handleTouchEvent() variants have changed,
192     taking a QTouchDevice* instead of just a DeviceType value.
193     Platform or generic plug-ins have to create and register at least
194     one QTouchDevice before sending the first touch event.
195
196   * The event type parameter is removed from handleTouchEvent().
197
198 - The previously exported function qt_translateRawTouchEvent() has been removed.
199   Use QWindowSystemInterface::handleTouchEvent() instead.
200
201 - QAbstractEventDispatcher
202
203   * The signature for the pure-virtual registerTimer() has changed. Subclasses
204   of QAbstractEventDispatcher will need to be updated to reimplement the new
205   pure-virtual 'virtual void registerTimer(int timerId, int interval,
206   Qt::TimerType timerType, QObject *object) = 0;'
207
208   * QAbstractEventDispatcher::TimerInfo is no longer a QPair<int, int>. It is
209   now a struct with 3 members: struct TimerInfo { int timerId; int interval;
210   Qt::TimerType timerType; }; Reimplementations of
211   QAbstractEventDispatcher::registeredTimers() will need to be updated to pass
212   3 arguments to the TimerInfo constructor (instead of 2).
213
214 - QUuid
215
216   * Removed implicit conversion operator QUuid::operator QString(), instead
217   QUuid::toString() function should be used.
218
219 - The QHttp, QHttpHeader, QHttpResponseHeader and QHttpRequestHeader classes have
220   been removed, QNetworkAccessManager should be used instead.
221
222 - The QFtp and QUrlInfo classes are no longer exported, QNetworkAccessManager should be used
223   instead. These classes are available in a separate module, qtftp.
224
225 - QProcess
226
227   * On Windows, QProcess::ForwardedChannels will not forward the output of GUI
228     applications anymore, if they do not create a console.
229
230 - QAbstractSocket's connectToHost() and disconnectFromHost() are now virtual and
231   connectToHostImplementation() and disconnectFromHostImplementation() don't exist.
232
233 - QTcpServer::incomingConnection() now takes a qintptr instead of an int.
234
235 - QNetworkConfiguration::bearerName() removed, and bearerTypeName() should be used.
236
237 - QDir::convertSeparators() (deprecated since Qt 4.2) has been removed. Use
238   QDir::toNativeSeparators() instead.
239
240 - QIconEngineV2 was merged into QIconEngine
241   You might need to adjust your code if it used a QIconEngine.
242
243 - qmake
244   * Projects which explicitly set an empty TARGET are considered broken now.
245   * The makespec and .qmake.cache do not see build pass specific variables any more.
246   * load()/include() with a target namespace and infile()/$$fromfile() now start with
247     an entirely pristine context.
248   * Configure's -sysroot and -hostprefix are now handled slightly differently.
249     The QT_INSTALL_... properties are now automatically prefixed with the sysroot;
250     the raw values are available as QT_INSTALL_.../raw and the sysroot as QT_SYSROOT.
251     The new QT_HOST_... properties can be used to refer to the Qt host tools.
252   * Several functions and built-in variables were modified to return normalized paths.
253   * The -(no-)exception flags in configure have been removed. Qt modules are now compiled
254     without exceptions by default, as they do not use them and can neither handle them
255     properly. Qt Core still has exceptions enabled to correctly throw bad_alloc exceptions
256     in our tool classes.
257     Whether code should be compiled with exception support enabled or disabled can be
258     controlled by a CONFIG += exceptions/exceptions_off setting in the .pro file.
259
260 - QTextCodecPlugin has been removed since it is no longer used. All text codecs
261   are now built into QtCore.
262
263 - QDir::NoDotAndDotDot is QDir::NoDot|QDir::NoDotDot therefore there is no need
264   to use or check both.
265
266 - QFSFileEngine, QAbstractFileEngine, QAbstractFileEngineIterator and
267   QAbstractFileEngineHandler were removed from public API and are no longer
268   exported. They may temporarily live as private implementation details, but
269   they may be altogether dropped or otherwise changed at will in the future.
270
271 - QLocale
272   * toShort(), toUShort(), toInt(), toUInt(), toLongLong() and toULongLong() no
273     longer take a parameter for base, they will only perform localised base 10
274     conversions. For converting other bases use the QString methods instead.
275
276 - QSystemLocale has been removed from the public API.
277
278 - QSqlQueryModel::indexInQuery() is now virtual. See note below under QtSql.
279
280 - QSqlDriver::subscribeToNotification, unsubscribeFromNotification,
281   subscribedToNotifications, isIdentifierEscaped, and stripDelimiters
282   are now virtual. See note below under QtSql.
283
284 - qMacVersion() has been removed. Use QSysInfo::macVersion() or
285   QSysInfo::MacintoshVersion instead.
286
287 - QColorDialog::customColor() now returns a QColor value instead of QRgb.
288   QColorDialog::setCustomColor() and QColorDialog::setStandardColor() now
289   take a QColor value for their second parameter instead of QRgb.
290
291 - QPageSetupDialog has had the PageSetupDialogOption enum and the api to
292   set and get the enum removed as none of the Options are used any more.
293
294 ****************************************************************************
295 *                           General                                        *
296 ****************************************************************************
297
298 General Improvements
299 --------------------
300
301 - The directory structure of the qtbase unit-tests has been reworked to
302   more closely match the directory structure of the code under test.
303   Integration tests have been moved to tests/auto/integrationtests.
304
305 - Qt is compiled with C++11 support enabled by default, provided the compiler
306   supports C++11. Qmake based projects can enable C++11 support explicitly
307   using 'CONFIG+=c++11' in their .pro files. To enable it conditionally, use
308   'contains(QT_CONFIG,c++11):CONFIG+=c++11'. This will enable C++11 support
309   only if Qt was built with C++11 support.
310
311 Third party components
312 ----------------------
313
314 - SQLITE_ENABLE_FTS3,SQLITE_ENABLE_FTS3_PARENTHESIS and SQLITE_ENABLE_RTREE
315 flags are now enabled by default on all platforms, for the sqlite3 copy under
316 the 3rdparty directory.
317
318
319 ****************************************************************************
320 *                          Library                                         *
321 ****************************************************************************
322
323 QtCore
324 ------
325 * drop a bogus QChar::NoCategory enum value; the proper QChar::Other_NotAssigned
326   value is returned for an unassigned codepoints now.
327
328 * layoutAboutToBeChanged is no longer emitted by QAbstractItemModel::beginMoveRows.
329   layoutChanged is no longer emitted by QAbstractItemModel::endMoveRows. Proxy models
330   should now also connect to (and disconnect from) the rowsAboutToBeMoved and
331   rowsMoved signals.
332
333 * The QAbstractItemModel::sibling method was made virtual, allowing implementations
334   to optimize based on internal data.
335
336 * The default value of the property QSortFilterProxyModel::dynamicSortFilter was
337   changed from false to true.
338
339 * The signature of the virtual QAbstractItemView::dataChanged method has changed to
340   include the roles which have changed. The signature is consistent with the dataChanged
341   signal in the model.
342
343 * QFileSystemWatcher is now able to return failure in case of errors whilst
344   altering the watchlist in both the singular and QStringList overloads of
345   addPath and removePath.
346
347 * QString::mid, QString::midRef and QByteArray::mid, if the position passed
348   is equal to the length (that is, right after the last character/byte),
349   now return an empty QString, QStringRef or QByteArray respectively.
350   in Qt 4 they returned a null QString or a null QStringRef.
351
352 * QString methods toLongLong(), toULongLong(), toLong(), toULong(), toInt(),
353   toUInt(), toShort(), toUShort(), toDouble(), and toFloat() no longer use the
354   default or system locale, they will always use the C locale. This is to
355   guarantee consistent default conversion of strings. For locale-aware conversions
356   use the equivalent QLocale methods.
357
358 * QDate, QTime, and QDateTime have undergone important behavioural changes:
359   * QDate only implements the Gregorian calendar, the switch to the Julian
360     calendar before 1582 has been removed. This means all QDate methods will
361     return different results for dates prior to 15 October 1582, and there is
362     no longer a gap between 4 October 1582 and 15 October 1582.
363   * QDate::setYMD() is deprecated, use QDate::setDate() instead
364   * Most methods now apply strict validity checks and will return appropriate
365     and consistent values when invalid.  For example, QDate::year() will return
366     0 and QDate::shortMonthName() will return QString().
367   * Adding days to a null QDate or seconds to a null QTime will no longer return
368     a valid QDate/QTime.
369   * QDate stores the Julian Day as a qint64 extending date support across a
370     more interesting range, see the class documentation for details.
371     * Conversion to YMD form dates is only accurate between to 4800 BCE to
372       1.4 million CE
373     * The QDate::addDays() and QDateTime::addDays() methods now take a qint64
374     * The QDate::daysTo() and QDateTime::daysTo() methods now return a qint64
375
376 * QTextCodec::codecForCStrings() and QTextCodec::setCodecForCStrings() have both
377   been removed. This was removed due to issues with breaking other code from
378   libraries, creating uncertainty/bugs in using QString easily, and (to a lesser
379   extent) performance issues.
380
381 * QTextCodec::codecForTr() and QTextCodec::setCodecForTr() have been removed.
382   QObject::trUtf8 and QCoreApplication::Encoding enum are now obsolete. Qt assumes
383   that the source code is encoded in UTF-8.
384
385 * QFile::setEncodingFunction and QFile::setDecodingFunction are obsolete and do
386   nothing in Qt 5. The QFile::encodeName and QFile::decodeName functions are now
387   hardcoded to operate on QString::fromLocal8Bit and QString::toLocal8Bit
388   only. Therefore, it's still possible to obtain the old behaviour by calling
389   QTextCodec::setCodecForLocale. However, that is not recommended: new code
390   should not make assumptions about the filesystem encoding and older code should
391   have those assumptions removed.
392
393 * QIntValidator and QDoubleValidator no longer fall back to using the C locale if
394   the requested locale fails to validate the input.
395
396 * A new set of classes for doing pattern matching with Perl-compatible regular
397   expressions has been added: QRegularExpression, QRegularExpressionMatch and
398   QRegularExpressionMatchIterator. They aim to replace QRegExp with a more
399   powerful and flexible regular expression engine.
400
401 * QEvent::AccessibilityPrepare, AccessibilityHelp and AccessibilityDescription removed:
402   * The enum values simply didn't make sense in the first place and should simply be dropped.
403
404 * Filtering of native events (QCoreApplication::setEventFilter, as well as
405   QApplication::x11EventFilter/macEventFilter/qwsEventFilter/winEventFilter) have been replaced
406   with QCoreApplication::installNativeEventFilter and removeNativeEventFilter,
407   for an API much closer to QEvent filtering. Note that the native events that can be
408   filtered this way depend on which QPA backend is chosen, at runtime. On X11, XEvents are
409   not used anymore, and have been replaced with xcb_generic_event_t due to the switch to
410   XCB, which requires porting the application code to XCB as well.
411
412 * [QTBUG-23529] QHash is now more resilient to a family of denial of service
413   attacks exploiting algorithmic complexity, by supporting two-arguments overloads
414   of the qHash() hashing function.
415
416 * [QTBUG-4844] QObject::disconnectNotify() is now called when a receiver is destroyed.
417
418 * QStateMachine
419   - [QTBUG-15430] Added a QStateMachine constructor that takes a ChildMode parameter.
420   - [QTBUG-17975] Delayed event posting now works from secondary threads.
421   - [QTBUG-19789] Signal transitions now work correctly when the sender is in a different thread.
422   - [QTBUG-20362] Property assignments now work as expected with nested, parallel states.
423   - [QTBUG-22931] The root state can now be a parallel state group.
424   - [QTBUG-24307] The initial state is now entered before the started() signal is emitted.
425   - [QTBUG-25959] State entry and exit order is now SCXML spec-compliant.
426
427 QtGui
428 -----
429 * Accessibility has been refactored. The hierachy of accessible objects is implemented via
430   proper parent/child functions instead of using navigate which has been deprecated for this purpose.
431   Table and cell interfaces have been added to qaccessible2.h
432
433 * Touch events and points have been extended to hold additional
434   information like capability flags, point-specific flags, velocity,
435   and raw positions.
436
437 * A new set of enabler classes have been added, most importantly QWindow, QScreen,
438   QSurfaceFormat, and QOpenGLContext.
439
440 * Most of the useful QtOpenGL classes have been polished and moved into
441   QtGui. See QOpenGLFramebufferObject, QOpenGLShaderProgram,
442   QOpenGLFunctions, etc.
443
444 * QOpenGLPaintDevice has been added to be able to use QPainter to render into
445   the currently bound context.
446
447 QtWidgets
448 ---------
449 * QInputContext removed as well as related getters and setters on QWidget and QApplication.
450   Input contexts are now platform specific.
451
452 * QInputDialog::getInteger() has been obsoleted. Use QInputDialog::getInt() instead.
453
454 * In Qt 4, many QStyleOption subclasses were introduced in order to keep
455   binary compatibility -- QStyleOption was designed to be extended this way,
456   in fact it embeds a version number. In Qt 5 the various QStyleOption*V{2,3,4}
457   classes have been removed, and their members merged into the respective
458   base classes. Those classes were left as typedefs to keep existing code
459   working. Still, some minor adjustements could be necessary, especially in code
460   that uses QStyleOption directly and does not initialize all the members using
461   the proper Qt API: due to the version bump, QStyle will try to use the additional
462   QStyleOption members, which are left default-initialized.
463
464 * QHeaderView - The following functions have been obsoleted.
465
466   * void setMovable(bool movable) - use void setSectionsMovable(bool movable) instead.
467
468   * bool isMovable() const - use bool sectionsMovable() const instead.
469
470   * void setClickable(bool clickable) - use void setSectionsClickable(bool clickable) instead.
471
472   * bool isClickable() const - use bool sectionsClickable() instead.
473
474   * void setResizeMode(int logicalindex, ResizeMode mode) -
475     use setSectionResizeMode(logicalindex, mode) instead.
476
477   * ResizeMode resizeMode(int logicalindex) const -
478     use sectionResizeMode(int logicalindex) instead.
479
480 * QDateEdit and QTimeEdit have re-gained a USER property. These were originally removed
481     before Qt 4.7.0, and are re-added for 5.0. This means that the userProperty for
482     those classes are now QDate and QTime respectively, not QDateTime as they have been
483     for the 4.7 and 4.8 releases.
484
485 * QGraphicsItem and derived classes - Passing a QGraphicsScene in the items constructor
486   is no longer supported. Construct the item without a scene and then call
487   QGraphicsScene::addItem() to add the item to the scene.
488
489 * QAbstractItemView and derived classes only emit the clicked() signal on left click now,
490   instead of on all mouse clicks.
491
492 * QProxyModel has been removed. It is deprecated since early Qt 4 versions and replaced
493   by QAbstractProxyModel and related classes. A copy of QProxyModel is available
494   in the UiHelpers library.
495
496 QtNetwork
497 ---------
498 * QHostAddress::isLoopback() API added. Returns true if the address is
499   one of the IP loopback addresses.
500
501 * QSslCertificate::serialNumber() now always returns the serial number in
502   hexadecimal format.
503
504 * The openssl network backend now reads the ssl configuration file allowing
505   the use of openssl engines.
506
507 QtDBus
508 ------
509 * QtDBus now generates property annotations for the Qt type names
510   in the org.qtproject.QtDBus namespace. When parsing such annotations
511   both the old and new namespaces are accepted.
512
513 * QtDBus error codes have been updated to be on the org.qtproject.QtDBus.Error
514   namespace.
515
516 QtOpenGL
517 --------
518
519 * Most of the classes in this module (with the notable exception of QGLWidget)
520   now have equivalents in QtGui, along with the naming change QGL -> QOpenGL.
521   The classes in QtOpenGL that have equivalents in QtGui can now be considered
522   deprecated.
523
524 QtScript
525 --------
526 * [QTBUG-2124]  Added default conversion for long and unsigned long.
527 * [QTBUG-6133]  Fixed QScriptContextInfo::functionMetaIndex() for overloaded
528   slots.
529 * [QTBUG-15213] Doc: Added missing properties to the ECMAScript reference.
530 * [QTBUG-15956] Doc: Removed wrong information about Error .stack properties.
531 * [QTBUG-17915] Fixed a crash when a JS property descriptor was only partially
532   defined.
533 * [QTBUG-18188] Fixed a regression that caused contexts created by
534   QScriptEngine::pushContext() to inherit the parent context's scope.
535 * [QTBUG-18201] Suppressed 'LEAK' messages on stderr at application exit.
536 * [QTBUG-20378] Fixed QtScriptTools compilation when some features are disabled.
537 * [QTBUG-20845] Fixed a precision bug in the calculator example.
538 * [QTBUG-21548] Fixed a crash in QScriptEngineDebugger when the QScriptEngine
539   being debugged was deleted.
540 * [QTBUG-21760] Fixed a crash when accessing QObject properties through an
541   activation object.
542 * [QTBUG-21896] Fixed a crash when converting an invalid JS value to a string.
543 * [QTBUG-21993] Fixed a bug that caused QObject wrapper objects created with
544   the PreferExistingWrapperObject option to not be garbage collected, even if
545   the object was not referenced anywhere in the scripting environment.
546 * [QTBUG-22152] Fixed build issue on Solaris.
547 * [QTBUG-23871] Fixed a JIT crash on x86-64 caused by out-of-range branch
548   instructions.
549 * [QTBUG-26261] Fixed a crash when a queued signal handler no longer existed.
550 * [QTBUG-26590] Fixed a bug that caused QObjects with script connections to
551   not be garbage collected as expected.
552
553 QTestLib
554 --------
555 * [QTBUG-20615] Autotests can now log test output to multiple destinations
556   and log formats simultaneously.
557 * [QTBUG-21645] QSignalSpy now handles QVariant signal parameters more
558   intuitively; the QVariant value is copied directly, instead of being
559   wrapped inside a new QVariant. This means that calling
560   qvariant_cast<QVariant>() on the QSignalSpy item (to "unwrap" the value)
561   is no longer required (but still works).
562
563 QtSql
564 -----
565 QSqlQueryModel/QSqlTableModel/QSqlRelationalTableModel
566
567 * The dataChanged() signal is now emitted for changes made to an inserted
568 record that has not yet been committed. Previously, dataChanged() was
569 suppressed in this case for OnRowChange and OnFieldChange. This was probably
570 an attempt to avoid trouble if setData() was called while handling
571 primeInsert(). By emitting dataChanged(), we ensure that all views are aware
572 of the change.
573
574 * While handling primeInsert() signal, the record must be manipulated using
575 the provided reference. Do not attempt to manipulate the records using the
576 model methods setData() or setRecord().
577
578 * removeRows() no longer emits extra beforeDelete signal for out of range row.
579
580 * removeRows() now requires the whole range of targetted rows to be valid
581 before doing anything. Previously, it would remove what it could and
582 ignore the rest of the range.
583
584 * removeRows(), for OnFieldChange and OnRowChange, allows only 1 row to be
585 removed and only if there are no other changed rows.
586
587 * setRecord() and insertRecord()
588   -The generated flags from the source record are preserved in the model
589   and determine which fields are included when changes are applied to
590   the database.
591   -Require all fields to map correctly. Previously fields that didn't
592   map were simply ignored.
593   -For OnManualSubmit, insertRecord() no longer leaves behind an empty
594   row if setRecord() fails.
595   -setRecord() now automatically submits for OnRowChange.
596
597 * QSqlQueryModel::indexInQuery() is now virtual. See
598 QSqlTableModel::indexInQuery() as example of how to implement in a
599 subclass.
600
601 * QSqlQueryMode::setQuery() emits fewer signals. The modelAboutToBeReset()
602 and modelReset() signals suffice to inform views that they must reinterrogate
603 the model.
604
605 * QSqlTableModel::selectRow(): This is a new method that refreshes a single
606 row in the model from the database.
607
608 * QSqlTableModel edit strategies OnFieldChange/OnRowChange QTBUG-2875
609 Previously, after changes were submitted in these edit strategies, select()
610 was called which removed and inserted all rows. This ruined navigation
611 in QTableView. Now, with these edit strategies, there is no implicit select()
612 done after committing. This includes deleted rows which remain in
613 the model as blank rows until the application calls select(). Instead,
614 selectRow() is called to refresh only the affected row.
615
616 * QSqlTableModel::isDirty(): New overloaded method to check whether model
617 has any changes to submit. QTBUG-3108
618
619 * QSqlTableModel::setData() and setRecord() no longer revert pending changes
620 that fail upon resubmitting for edit strategies OnFieldChange and OnRowChange.
621 Instead, pending (failed) changes cause new changes inappropriate to the
622 edit strategy to be refused. The application should resolve or revert pending
623 changes. insertRows() and insertRecord() also respect the edit strategy.
624
625 * QSqlTableModel::setData() and setRecord() in OnRowChange no longer have the
626 side effect of submitting the cached row when invoked on a different row.
627
628 * QSqlDriver::subscribeToNotification, unsubscribeFromNotification,
629 subscribedToNotifications, isIdentifierEscaped, and stripDelimiters
630 are now virtual. Their xxxImplemenation counterparts have been removed
631 now that QSqlDriver subclasses can reimplement these directly.
632
633 ****************************************************************************
634 *                          Database Drivers                                *
635 ****************************************************************************
636
637 sqlite
638 ------
639 * QVariant::Bool type now mapped to integers 0/1 in SQL instead of strings
640 'true' and 'false'. Sqlite does not have a boolean column type and it is
641 customary to use integer. QTBUG-23895
642
643 postgres
644 --------
645 * the error message returned in QSqlError::text() has the SQLSTATE error code
646 appended in parantheses.
647
648 ****************************************************************************
649 *                      Platform Specific Changes                           *
650 ****************************************************************************
651
652 Qt for Linux/X11
653 ----------------
654
655
656 Qt for Windows
657 --------------
658 * Accessibility framework uses IAccessible2
659 * ANGLE can be used to provide Open GL ES 2.0 (see http://code.google.com/p/angleproject/)
660
661 Qt for Mac OS X
662 ---------------
663
664
665 Qt for Embedded Linux
666 ---------------------
667
668
669 Qt for Windows CE
670 -----------------
671
672
673 ****************************************************************************
674 *                      Compiler Specific Changes                           *
675 ****************************************************************************
676
677
678 ****************************************************************************
679 *                          Tools                                           *
680 ****************************************************************************
681
682 - Build System
683
684   * Remove qttest_p4.prf file. From now on we should explicitly enable the
685     things from it which we want. Autotest .pro files should stop using
686     'load(qttest_p4)' and start using 'CONFIG+=testcase' instead.
687
688 - Assistant
689
690 - Designer
691   * [QTBUG-8926] [QTBUG-20440] Properties of type QStringList now have
692     translation attributes which apply to all items.
693     They are by default translatable.
694
695 - Linguist
696
697 - rcc
698
699
700 - moc
701
702 * [QTBUG-20785] The moc now has a -b<file> option to #include an additional
703   file at the beginning of the generated file.
704
705
706 - uic
707
708
709 - uic3
710
711
712 - qmake
713
714 * QMAKE_MOC_OPTIONS variable is now available for passing additional parameters
715   to the moc.
716
717
718 - configure
719
720   * The Mac OS X -dwarf2 configure argument has been removed. DWARF2 is always
721     used on Mac OS X now.
722
723 - qtconfig
724
725
726 ****************************************************************************
727 *                          Plugins                                         *
728 ****************************************************************************
729 - The text codecs that were previously plugins are now built into QtCore.
730 - Code using Q_EXPORT_PLUGIN macros will no longer compile. Use
731   Q_PLUGIN_METADATA instead. Note that this requires that the class
732   be default-constructible.
733
734 ****************************************************************************
735 *                   Important Behavior Changes                             *
736 ****************************************************************************
737
738 - QPointer
739
740    * The implementation of QPointer has been changed to use QWeakPointer. The
741      old guard mechanism has been removed. This causes a slight change
742      in behavior when using QPointer:
743
744      * When using QPointer on a QWidget (or a subclass of QWidget), previously
745      the QPointer would be cleared by the QWidget destructor. Now, the QPointer
746      is cleared by the QObject destructor (since this is when QWeakPointers are
747      cleared). Any QPointers tracking a widget will NOT be cleared before the
748      QWidget destructor destroys the children for the widget being tracked.
749
750 - QUrl
751
752   * QUrl has been changed to operate only on percent-encoded
753     forms. Fully-decoded forms, where the percent character stands for itself,
754     are no longer possible. For that reason, the getters and setters with
755     "encoded" in the name are deprecated, except for QUrl::toEncoded() and
756     QUrl::fromEncoded().
757
758     QUrl now operates in a mode where it decodes as much as it can of the
759     percent-encoding sequences. In addition, the setter methods possess a mode
760     in which a '%' character not part of a percent-encoding sequence will cause
761     the parser to correct the input. Therefore, most software will not require
762     changes to adapt, since the getter methods will continue returning the
763     components in their most-decoded form as they did before and the setter
764     methods will accept input as they did before..
765
766     The most notable difference is when dealing with
767     QUrl::toString(). Previously, this function would return percent characters
768     in the URL by themselves. Now, it will return "%25", like
769     QUrl::toEncoded().
770
771 - QVariant
772
773   * Definition of QVariant::UserType changed. Currently it is the same as
774     QMetaType::User, which means that it points to the first registered custom
775     type, instead of a nonexistent type.
776
777 - QMetaType
778
779   * Interpretation of QMetaType::Void was changed. Before, in some cases
780     it was returned as an invalid type id, but sometimes it was used as a valid
781     type (C++ "void"). In Qt5, new QMetaType::UnknownType was introduced to
782     distinguish between these two. QMetaType::UnknownType is an invalid type id
783     signaling that a type is unknown to QMetaType, and QMetaType::Void
784     is a valid type id of C++ void type. The difference will be visible for
785     example in call to QMetaType::typeName(), this function will return null for
786     QMetaType::UnknownType and a pointer to "void" string for
787     QMetaType::Void.
788     Please, notice that QMetaType::UnknownType has value 0, which previously was
789     reserved for QMetaType::Void.
790
791
792 - QMessageBox
793
794      * The static function QMessageBox::question has changed the default argument
795      for buttons. Before the default was to have an Ok button. That is changed
796      to having a yes and a no button.