aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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()