)]}'
{
  "log": [
    {
      "commit": "9fb22a3ec4ec5217fc29bb3ee3a0f1076098151f",
      "tree": "f5dabc7347b8aaa83675e4468edbccc657ae2fca",
      "parents": [
        "cc56abbb007e090b830f510df6cb300ae12e1a89"
      ],
      "author": {
        "name": "Elliott Hughes",
        "email": "enh@google.com",
        "time": "Wed Oct 07 17:13:40 2015 -0700"
      },
      "committer": {
        "name": "Elliott Hughes",
        "email": "enh@google.com",
        "time": "Fri Oct 09 15:15:39 2015 -0700"
      },
      "message": "Sync with upstream tzcode (2015g).\n\nThis is quite a large patch because we haven\u0027t updated for some time,\nbut the good news is that upstream is now thread-safe so a lot of our\nchanges go away in this update and the remaining diff is a lot smaller.\n\n(Note that our whitespace still doesn\u0027t match upstream. I use diff -wub\nto compare. Upstream doesn\u0027t even really have a consistent style. New\ncode seems to be two spaces, old code tabs.)\n\nFrom the intervening changelogs (eliding the changes that only affected\nthe tools, which we don\u0027t use):\n\n2014a:\n     An uninitialized-storage bug in \u0027localtime\u0027 has been fixed.\n     (Thanks to Logan Chien.)\n\n2014b:\n     \u0027zic\u0027 and \u0027localtime\u0027 no longer reject locations needing four\n     transitions per year for the forseeable future.  (Thanks to Andrew\n     Main (Zefram).)\n\n2014c:\n     \u003cNone\u003e\n\n2014d:\n     \u003cNone\u003e\n\n2014e:\n     \u003cNone\u003e\n\n2014f:\n     \u0027localtime\u0027, \u0027mktime\u0027, etc. now use much less stack space if\n     ALL_STATE is defined.  (Thanks to Elliott Hughes for reporting the\n     problem.)\n\n     Some lint has been removed when using GCC_DEBUG_FLAGS with GCC\n     4.9.0.\n\n2014g:\n     Unless NETBSD_INSPIRED is defined to 0, the tz library now\n     supplies functions for creating and using objects that represent\n     time zones. The new functions are tzalloc, tzfree, localtime_rz,\n     mktime_z, and (if STD_INSPIRED is also defined) posix2time_z and\n     time2posix_z.  They are intended for performance: for example,\n     localtime_rz (unlike localtime_r) is trivially thread-safe without\n     locking.  (Thanks to Christos Zoulas for proposing NetBSD-inspired\n     functions, and to Alan Barrett and Jonathan Lennox for helping to\n     debug the change.)\n\n     If THREAD_SAFE is defined to 1, the tz library is now thread-safe.\n     Although not needed for tz\u0027s own applications, which are single-threaded,\n     this supports POSIX better if the tz library is used in multithreaded apps.\n\n     Some crashes have been fixed when zdump or the tz library is given\n     invalid or outlandish input.\n\n     The tz library no longer mishandles leap seconds on platforms with\n     unsigned time_t in time zones that lack ordinary transitions after 1970.\n\n     The tz code now attempts to infer TM_GMTOFF and TM_ZONE if not\n     already defined, to make it easier to configure on common platforms.\n     Define NO_TM_GMTOFF and NO_TM_ZONE to suppress this.\n\n     Unless the new macro UNINIT_TRAP is defined to 1, the tz code now\n     assumes that reading uninitialized memory yields garbage values\n     but does not cause other problems such as traps.\n\n     If TM_GMTOFF is defined and UNINIT_TRAP is 0, mktime is now\n     more likely to guess right for ambiguous time stamps near\n     transitions where tm_isdst does not change.\n\n     If HAVE_STRFTIME_L is defined to 1, the tz library now defines\n     strftime_l for compatibility with recent versions of POSIX.\n     Only the C locale is supported, though.  HAVE_STRFTIME_L defaults\n     to 1 on recent POSIX versions, and to 0 otherwise.\n\n     tzselect -c now uses a hybrid distance measure that works better\n     in Africa.  (Thanks to Alan Barrett for noting the problem.)\n\n     The C source code now ports to NetBSD when GCC_DEBUG_FLAGS is used,\n     or when time_tz is defined.\n\n     When HAVE_UTMPX_H is set the \u0027date\u0027 command now builds on systems\n     whose \u003cutmpx.h\u003e file does not define WTMPX_FILE, and when setting\n     the date it updates the wtmpx file if _PATH_WTMPX is defined.\n     This affects GNU/Linux and similar systems.\n\n     For easier maintenance later, some C code has been simplified,\n     some lint has been removed, and the code has been tweaked so that\n     plain \u0027make\u0027 is more likely to work.\n\n     The C type \u0027bool\u0027 is now used for boolean values, instead of \u0027int\u0027.\n\n     The long-obsolete LOCALE_HOME code has been removed.\n\n     The long-obsolete \u0027gtime\u0027 function has been removed.\n\n2014h:\n     The tz library\u0027s localtime and mktime functions now set tzname to a value\n     appropriate for the requested time stamp, and zdump now uses this\n     on platforms not defining TM_ZONE, fixing a 2014g regression.\n     (Thanks to Tim Parenti for reporting the problem.)\n\n     The tz library no longer sets tzname if localtime or mktime fails.\n\n     An access to uninitalized data has been fixed.\n     (Thanks to Jörg Richter for reporting the problem.)\n\n     When THREAD_SAFE is defined, the code ports to the C11 memory model.\n     A memory leak has been fixed if ALL_STATE and THREAD_SAFE are defined\n     and two threads race to initialize data used by gmtime-like functions.\n     (Thanks to Andy Heninger for reporting the problems.)\n\n2014i:\n     The time-related library functions now set errno on failure,\n     and some crashes in the new tzalloc-related library functions\n     have been fixed.  (Thanks to Christos Zoulas for reporting\n     most of these problems and for suggesting fixes.)\n\n     If USG_COMPAT is defined and the requested time stamp is\n     standard time, the tz library\u0027s localtime and mktime functions\n     now set the extern variable timezone to a value appropriate\n     for that time stamp; and similarly for ALTZONE, daylight\n     saving time, and the altzone variable.  This change is a\n     companion to the tzname change in 2014h, and is designed to\n     make timezone and altzone more compatible with tzname.\n\n     The tz library\u0027s functions now set errno to EOVERFLOW if they\n     fail because the result cannot be represented.  ctime and\n     ctime_r now return NULL and set errno when a time stamp is out\n     of range, rather than having undefined behavior.\n\n     Some bugs associated with the new 2014g functions have been\n     fixed.  This includes a bug that largely incapacitated the new\n     functions time2posix_z and posix2time_z.  (Thanks to Christos\n     Zoulas.)  It also includes some uses of uninitialized\n     variables after tzalloc.  The new code uses the standard type\n     \u0027ssize_t\u0027, which the Makefile now gives porting advice about.\n\n2014j:\n     \u003cNone\u003e\n\n2015a:\n     tzalloc now scrubs time zone abbreviations compatibly with the way\n     that tzset always has, by replacing invalid bytes with \u0027_\u0027 and by\n     shortening too-long abbreviations.\n\n2015b:\n     Fix integer overflow bug in reference \u0027mktime\u0027 implementation.\n     (Problem reported by Jörg Richter.)\n\n     Allow -Dtime_tz\u003dtime_t compilations, and allow -Dtime_tz\u003d... libraries\n     to be used in the same executable as standard-library time_t functions.\n     (Problems reported by Bradley White.)\n\n2015c:\n     \u003cNone\u003e\n\n2015d:\n     \u003cNone\u003e\n\n2015e:\n     \u003cNone\u003e\n\n2015f:\n     \u003cNone\u003e\n\n2015g:\n    localtime no longer mishandles America/Anchorage after 2037.\n    (Thanks to Bradley White for reporting the bug.)\n\n    On hosts with signed 32-bit time_t, localtime no longer mishandles\n    Pacific/Fiji after 2038-01-16 14:00 UTC.\n\n    The localtime module allows the variables \u0027timezone\u0027, \u0027daylight\u0027,\n    and \u0027altzone\u0027 to be in common storage shared with other modules,\n    and declares them in case the system \u003ctime.h\u003e does not.\n    (Problems reported by Kees Dekker.)\n\n    On platforms with tm_zone, strftime.c now assumes it is not NULL.\n    This simplifies the code and is consistent with zdump.c.\n    (Problem reported by Christos Zoulas.)\n\nChange-Id: I9eb0a8323cb8bd9968fcfe612dc14f45aa3b59d2\n"
    },
    {
      "commit": "ca75f9cdeb57d02108924f0ca4043956039e8eaf",
      "tree": "8bd5664123e19184cb5b90aea57407cc007344ed",
      "parents": [
        "72d72d91262fabe6bc169618ef3acb0721441cf0"
      ],
      "author": {
        "name": "Dan Albert",
        "email": "danalbert@google.com",
        "time": "Wed Oct 08 17:10:26 2014 -0700"
      },
      "committer": {
        "name": "Dan Albert",
        "email": "danalbert@google.com",
        "time": "Wed Oct 08 17:10:26 2014 -0700"
      },
      "message": "Use snprintf(3) instead of sprintf(3).\n\nThis change should probably be made upstream as well, but they have a\nnote about not using it because it isn\u0027t available on all systems.\n\nChange-Id: I6d8404c031bd2f486532ced55d94bbb4a4cd2e71\n"
    },
    {
      "commit": "ce4783ce76a4ef888466e02e4c6f3a0a3910bce8",
      "tree": "4bc51cd70edd4df6d6489d1ff8b4472f293f27b4",
      "parents": [
        "3db1f359e9f218f5f73a7a9f4d80e4be362a526e"
      ],
      "author": {
        "name": "Elliott Hughes",
        "email": "enh@google.com",
        "time": "Fri Jul 12 17:31:11 2013 -0700"
      },
      "committer": {
        "name": "Elliott Hughes",
        "email": "enh@google.com",
        "time": "Fri Jul 12 17:52:44 2013 -0700"
      },
      "message": "Upgrade to tzcode2013d.\n\nWell, kinda... localtime.c still contains a bunch of Android-specific\nhacks, as does strftime.c. But the other files are now exactly the same\nas upstream.\n\nThis catches up with several years of bug fixes, and fixes most of the\ncompiler warnings that were in this code. (Just two remain.)\n\nBug: 1744909\nChange-Id: I2ddfecb6fd408c847397c17afb0fff859e27feef\n"
    },
    {
      "commit": "edbe7fc97bab7ff0684053d1be564330689bf3ad",
      "tree": "271db0992a091d68f17f073ba9573c4698f97ce1",
      "parents": [
        "78bf5fc677a2d25d50598b01781eafacdb5e6afe"
      ],
      "author": {
        "name": "The Android Open Source Project",
        "email": "initial-contribution@android.com",
        "time": "Wed Mar 18 22:20:24 2009 -0700"
      },
      "committer": {
        "name": "The Android Open Source Project",
        "email": "initial-contribution@android.com",
        "time": "Wed Mar 18 22:20:24 2009 -0700"
      },
      "message": "auto import //branches/master/...@140412\n"
    },
    {
      "commit": "1dc9e472e19acfe6dc7f41e429236e7eef7ceda1",
      "tree": "3be0c520fae17689bbf5584e1136fb820caef26f",
      "parents": [
        "1767f908af327fa388b1c66883760ad851267013"
      ],
      "author": {
        "name": "The Android Open Source Project",
        "email": "initial-contribution@android.com",
        "time": "Tue Mar 03 19:28:35 2009 -0800"
      },
      "committer": {
        "name": "The Android Open Source Project",
        "email": "initial-contribution@android.com",
        "time": "Tue Mar 03 19:28:35 2009 -0800"
      },
      "message": "auto import from //depot/cupcake/@135843\n"
    },
    {
      "commit": "1767f908af327fa388b1c66883760ad851267013",
      "tree": "4b825dc642cb6eb9a060e54bf8d69288fbee4904",
      "parents": [
        "a799b53f10e5a6fd51fef4436cfb7ec99836a516"
      ],
      "author": {
        "name": "The Android Open Source Project",
        "email": "initial-contribution@android.com",
        "time": "Tue Mar 03 18:28:13 2009 -0800"
      },
      "committer": {
        "name": "The Android Open Source Project",
        "email": "initial-contribution@android.com",
        "time": "Tue Mar 03 18:28:13 2009 -0800"
      },
      "message": "auto import from //depot/cupcake/@135843\n"
    },
    {
      "commit": "a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349",
      "tree": "defd1cc07d16ad2f3b21154114e092d11c94c5bb",
      "parents": [],
      "author": {
        "name": "The Android Open Source Project",
        "email": "initial-contribution@android.com",
        "time": "Tue Oct 21 07:00:00 2008 -0700"
      },
      "committer": {
        "name": "The Android Open Source Project",
        "email": "initial-contribution@android.com",
        "time": "Tue Oct 21 07:00:00 2008 -0700"
      },
      "message": "Initial Contribution\n"
    }
  ]
}
