-
-
Notifications
You must be signed in to change notification settings - Fork 991
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect handling of IANA time zone data #373
Comments
Thanks for raising this. I'm just acknowledging this is probably wrong, but I'm unlikely to have the time to look into why. The work on establishing a standard format for validation seems like a great idea though - just wish it had existed 10 years ago! |
I was surprised to find it didn't exist, too :) I haven't yet filed bugs for |
Filing a JDK bug is nigh on impossible. However, I have the rights to JIRA. So if you send me the details I can post it for you! |
Wonderful - thanks very much, will follow up by email. |
Dhaka is out by a millisecond, but there was probably a deliberate reason for that. Anyway, I've fixed everything else. Thanks for the tool. |
Hi @jodastephen! We are currently having issues with Elasticsearch (2.4.1 and 5, it's a regression from previous versions) due to this bug (see elastic/elasticsearch#20911) and it would be nice to get it fixed in a release. Any plan for the 2.9.5 release? Thanks for your feedback! |
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zonesi (see yrodiere/joda-time@eaaff1d or JodaOrg/joda-time#373). It also remove the joda-convert dependency that seems to be unused. closes elastic#20911
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zones (see JodaOrg/joda-time#332, JodaOrg/joda-time#386 and JodaOrg/joda-time#373). It also remove the joda-convert dependency that seems to be unused. closes #20911 Here is the changelog for 2.9.5: ``` Changes in 2.9.5 ---------------- - Add Norwegian period translations [#378] - Add Duration.dividedBy(long,RoundingMode) [#69, #379] - DateTimeZone data updated to version 2016i - Fixed bug where clock read twice when comparing two nulls in DateTimeComparator [#404] - Fixed minor issues with historic time-zone data [#373] - Fix bug in time-zone binary search [#332, #386] The fix in v2.9.2 caused problems when the time-zone being parsed was not the last element in the input string. New approach uses a different approach to the problem. - Update tests for JDK 9 [#394] - Close buffered reader correctly in zone info compiler [#396] - Handle locale correctly zone info compiler [#397] ```
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zones (see JodaOrg/joda-time#332, JodaOrg/joda-time#386 and JodaOrg/joda-time#373). It also remove the joda-convert dependency that seems to be unused. closes #20911 Here is the changelog for 2.9.5: ``` Changes in 2.9.5 ---------------- - Add Norwegian period translations [#378] - Add Duration.dividedBy(long,RoundingMode) [#69, #379] - DateTimeZone data updated to version 2016i - Fixed bug where clock read twice when comparing two nulls in DateTimeComparator [#404] - Fixed minor issues with historic time-zone data [#373] - Fix bug in time-zone binary search [#332, #386] The fix in v2.9.2 caused problems when the time-zone being parsed was not the last element in the input string. New approach uses a different approach to the problem. - Update tests for JDK 9 [#394] - Close buffered reader correctly in zone info compiler [#396] - Handle locale correctly zone info compiler [#397] ``` (cherry picked from commit 2e53190)
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zones (see JodaOrg/joda-time#332, JodaOrg/joda-time#386 and JodaOrg/joda-time#373). It also remove the joda-convert dependency that seems to be unused. closes #20911 Here is the changelog for 2.9.5: ``` Changes in 2.9.5 ---------------- - Add Norwegian period translations [#378] - Add Duration.dividedBy(long,RoundingMode) [#69, #379] - DateTimeZone data updated to version 2016i - Fixed bug where clock read twice when comparing two nulls in DateTimeComparator [#404] - Fixed minor issues with historic time-zone data [#373] - Fix bug in time-zone binary search [#332, #386] The fix in v2.9.2 caused problems when the time-zone being parsed was not the last element in the input string. New approach uses a different approach to the problem. - Update tests for JDK 9 [#394] - Close buffered reader correctly in zone info compiler [#396] - Handle locale correctly zone info compiler [#397] ``` (cherry picked from commit 2e53190)
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zones (see JodaOrg/joda-time#332, JodaOrg/joda-time#386 and JodaOrg/joda-time#373). It also remove the joda-convert dependency that seems to be unused.
This commit updates JodaTime to version 2.9.5 that contain a fix for a bug when parsing time zones (see JodaOrg/joda-time#332, JodaOrg/joda-time#386 and JodaOrg/joda-time#373). It also remove the joda-convert dependency that seems to be unused.
Key information
TimeZone.getDefault()
:sun.util.calendar.ZoneInfo[id="Europe/London", [...]]
DateTimeZone.getDefault()
:Europe/London
Problem description
My tzvalidate project aims to make it easy to validate that code intepreting the IANA time zone data all does it in the same way. Joda Time appears to have some discrepancies. (Without looking into the code, it's hard to guess how many code changes would be required.)
Test case
As a single example, using the 2016d data release, Joda Time claims America/Argentina/Catamarca had a transition at 1999-10-03T04:00:00Z; I believe this transition should be at 1999-10-03T03:00:00Z. (This was just a change from standard to daylight, but without any overall offset change.
http://www.timeanddate.com/time/zone/argentina/catamarca confirms that this would have been at 3am UTC (midnight local)
Sample code:
Expected output: 1999-10-03T03:00:00.000Z
Actual output: 1999-10-03T04:00:00.000Z
I'm very happy to provide the full tzvalidate files for 2016d - the one I'm treating as "canonical" agrees with both
zic
and Noda Time, as well as a third party implementation. I haven't attached the files here as they're rather large.The text was updated successfully, but these errors were encountered: