<div dir="ltr">Hello team,<div><br></div><div>According to the latest 2020a tz update: Canada's Yukon, represented by America/Whitehorse and<br>    America/Dawson, advanced to -07 year-round, beginning with its<br>    spring-forward transition on 2020-03-08, and will not fall back on<br>    2020-11-01.<br><br><br>We have written a test cases like below for canada yukon timezone. We imported new 2020a tz into our environment. <br><br>Our code seems correct but test cases are failing. So we found that there is wrong in Iana tz side.<br><br>Please check and correct us. This is the below code we have written.<br><br><br>@Test<br>    public void doesNotFallBackToMinus8InDawsonNovember2020() {<br>        DateTimeZone timezone = DateTimeZone.forID("America/Dawson");<br>        Instant dayAfter = new DateTime(2020, 11, 2, 0, 0, timezone)-------> on 2nd nov 00:00:00<br>                .withLaterOffsetAtOverlap()<br>                .toInstant();<br>        Instant day = new DateTime(2020, 11, 1, 0, 0, timezone)------> on 1 st nov 00:00:00<br>                .withLaterOffsetAtOverlap()<br>                .toInstant();<br>        long dayAfterOffset = timezone.getOffset(dayAfter.getMillis());<br>        int dayAfterHours = (int) TimeUnit.MILLISECONDS.toHours(dayAfterOffset);<br>        long offsetOnDay = timezone.getOffset(day.getMillis());<br>        int hoursOnDay = (int) TimeUnit.MILLISECONDS.toHours(offsetOnDay);<br>        assertEquals(hoursOnDay, dayAfterHours);  ------->  here we are getting error: java.lang.AssertionError: expected:<-7> but was:<-8><br>    }<br><br>The above test case according to your update (will not fall back on 2020-11-01) is correct. But test case is failing.<br><br>Could you please clarify us that is there anything wrong from IANA tz. <br><br>If not how can i write my test case according to that? <br></div><div><br></div><div>Regards,</div><div>Sundar</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, May 20, 2020 at 3:51 PM <<a href="mailto:tz-request@iana.org">tz-request@iana.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Welcome to the <a href="mailto:tz@iana.org" target="_blank">tz@iana.org</a> mailing list!<br>
<br>
<br>
---<br>
<br>
NOTE WELL<br>
<br>
Any submission to the IETF intended by the Contributor for publication<br>
as all or part of an IETF Internet-Draft or RFC and any statement made<br>
within the context of an IETF activity is considered an "IETF<br>
Contribution". Such statements include oral statements in IETF<br>
sessions, as well as written and electronic communications made at any<br>
time or place, which are addressed to:<br>
<br>
* The IETF plenary session * The IESG, or any member thereof on behalf<br>
of the IESG * Any IETF mailing list, including the IETF list itself,<br>
any working group or design team list, or any other list functioning<br>
under IETF auspices * Any IETF working group or portion thereof * Any<br>
Birds of a Feather (BOF) session * The IAB or any member thereof on<br>
behalf of the IAB * The RFC Editor or the Internet-Drafts function *<br>
All IETF Contributions are subject to the rules of RFC 5378 and RFC<br>
3979 (updated by RFC 4879).<br>
<br>
Statements made outside of an IETF session, mailing list or other<br>
function, that are clearly not intended to be input to an IETF<br>
activity, group or function, are not IETF Contributions in the context<br>
of this notice.<br>
<br>
Please consult RFC 5378 and RFC 3979 for details.<br>
<br>
A participant in any IETF activity is deemed to accept all IETF rules<br>
of process, as documented in Best Current Practices RFCs and IESG<br>
Statements.<br>
<br>
A participant in any IETF activity acknowledges that written, audio<br>
and video records of meetings may be made and may be available to the<br>
public.<br>
<br>
---<br>
<br>
To post to this list, send your email to:<br>
<br>
  <a href="mailto:tz@iana.org" target="_blank">tz@iana.org</a><br>
<br>
General information about the mailing list is at:<br>
<br>
  <a href="https://mm.icann.org/mailman/listinfo/tz" rel="noreferrer" target="_blank">https://mm.icann.org/mailman/listinfo/tz</a><br>
<br>
If you ever want to unsubscribe or change your options (eg, switch to<br>
or from digest mode, change your password, etc.), visit your<br>
subscription page at:<br>
<br>
  <a href="https://mm.icann.org/mailman/options/tz/gkssarma59%40gmail.com" rel="noreferrer" target="_blank">https://mm.icann.org/mailman/options/tz/gkssarma59%40gmail.com</a><br>
<br>
You can also make such adjustments via email by sending a message to:<br>
<br>
  <a href="mailto:tz-request@iana.org" target="_blank">tz-request@iana.org</a><br>
<br>
with the word `help' in the subject or body (don't include the<br>
quotes), and you will get back a message with instructions.<br>
<br>
You must know your password to change your options (including changing<br>
the password, itself) or to unsubscribe.  It is:<br>
<br>
  Gks59@smu<br>
<br>
Normally, Mailman will remind you of your <a href="http://iana.org" rel="noreferrer" target="_blank">iana.org</a> mailing list<br>
passwords once every month, although you can disable this if you<br>
prefer.  This reminder will also include instructions on how to<br>
unsubscribe or change your account options.  There is also a button on<br>
your options page that will email your current password to you.<br>
</blockquote></div>