Timezone data update to 2018f

The IANA timezone data 2018f was announced on Oct 18.

https://mm.icann.org/pipermail/tz-announce/2018-October/000051.html

Europe/Volgograd will move from UTC+3 to UTC+4 on Oct 28 and Fiji
will end DST on 2019-01-13 instead of 2019-01-20.

d8> new Date(Date.UTC(2018,9,27,12)).toLocaleString("en", {timeZone: "Europe/Volgograd"})
"10/27/2018, 3:00:00 PM"
d8> new Date(Date.UTC(2018,9,28,12)).toLocaleString("en", {timeZone: "Europe/Volgograd"})
"10/28/2018, 4:00:00 PM"

d8> new Date(Date.UTC(2019,0,12,0)).toLocaleString("en", {timeZone: "Pacific/Fiji"})
"1/12/2019, 1:00:00 PM"
d8> new Date(Date.UTC(2019,0,13,0)).toLocaleString("en", {timeZone: "Pacific/Fiji"})
"1/13/2019, 12:00:00 PM"

This CL will be followed by a fix for a memory alignment bug on ARM.

TBR=ftang@chromium.org
Bug: 473288
Test: See the above
Change-Id: Ic7b99bb7442c137a4e3f0a0db9debc9641f51948
Reviewed-on: https://chromium-review.googlesource.com/c/1293149
Reviewed-by: Jungshik Shin <jshin@chromium.org>
10 files changed