aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-04-25 15:59:47 +0200
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-04-25 15:59:47 +0200
commit3f7b55f55648e9611866a36131616270fc49da06 (patch)
tree405b7c187e580a9504cc02f62ec2359a1840d857
parent24af53cfeb998dcf3a6c6d49d312e50809a4a324 (diff)
parent282d5530534c0297710759b81568cdb1c7c627c6 (diff)
Merge remote-tracking branch 'origin/5.9.8' into 5.9
-rw-r--r--dist/changes-5.9.832
-rwxr-xr-xtests/auto/qml/ecmascripttests/test262.py2
2 files changed, 33 insertions, 1 deletions
diff --git a/dist/changes-5.9.8 b/dist/changes-5.9.8
new file mode 100644
index 0000000000..62e6513939
--- /dev/null
+++ b/dist/changes-5.9.8
@@ -0,0 +1,32 @@
+Qt 5.9.8 is a bug-fix release. It maintains both forward and backward
+compatibility (source and binary) with Qt 5.9.0 through 5.9.7.
+
+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.9 series is binary compatible with the 5.8.x series.
+Applications compiled for 5.8 will continue to run with 5.9.
+
+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.
+
+****************************************************************************
+* Qt 5.9.8 Changes *
+****************************************************************************
+
+Qml
+---
+ - [QTBUG-72109] Fixed some timezone issues with JS Date objects, such as
+ those in the Europe/Dublin timezone
+
+Qt Quick
+--------
+ - [QTBUG-64402] Fixed a crash in QQuickAnimatorProxyJob::sceneGraphInitialized()
+
diff --git a/tests/auto/qml/ecmascripttests/test262.py b/tests/auto/qml/ecmascripttests/test262.py
index ae4c54df9d..e055c7a8e7 100755
--- a/tests/auto/qml/ecmascripttests/test262.py
+++ b/tests/auto/qml/ecmascripttests/test262.py
@@ -555,7 +555,7 @@ def Main():
# Uncomment the next line for more logging info.
#logging.basicConfig(level=logging.DEBUG)
# Some date tests rely on being run in pacific time and the USA's locale:
- os.environ["TZ"] = "America/Vancouver"
+ os.environ["TZ"] = "America/Los_Angeles" # it *matters* that this is (7m8s) *East* of PST's nominal meridian !
os.environ["LANG"] = "en_US.UTF-8"
os.environ["LC_TIME"] = "en_US.UTF-8"
parser = BuildOptions()