)]}'
{
  "log": [
    {
      "commit": "c4c64cad1fd0a1a8dab2523e04e61d35308e131e",
      "tree": "b63999efdccfa0221826431d967acc2188ad00d1",
      "parents": [
        "9d24e82272b4f38b78bc8cff74fa936d31ccd8ef"
      ],
      "author": {
        "name": "Simarpreet Singh",
        "email": "simar@linux.com",
        "time": "Thu Sep 19 01:52:11 2019 -0700"
      },
      "committer": {
        "name": "Sameer Ajmani",
        "email": "sameer@golang.org",
        "time": "Sat Sep 21 00:17:08 2019 +0000"
      },
      "message": "rate: Add SetBurst() to dynamically update burst size\n\nThis commit adds the ability to dynamically update\nburst size.\n\nFixes golang/go#23575\n\nSigned-off-by: Simarpreet Singh \u003csimar@linux.com\u003e\nChange-Id: I40da9ffdb108dee6ad15efb8700e3ae60d1169d9\nReviewed-on: https://go-review.googlesource.com/c/time/+/184082\nReviewed-by: Sameer Ajmani \u003csameer@golang.org\u003e\nRun-TryBot: Sameer Ajmani \u003csameer@golang.org\u003e\nTryBot-Result: Gobot Gobot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "9d24e82272b4f38b78bc8cff74fa936d31ccd8ef",
      "tree": "ef293ffb7d1a071125eee08352d0da5d3f6c66f0",
      "parents": [
        "85acf8d2951cb2a3bde7632f9ff273ef0379bcbd"
      ],
      "author": {
        "name": "Michael Matloob",
        "email": "matloob@golang.org",
        "time": "Fri Feb 15 17:48:40 2019 -0500"
      },
      "committer": {
        "name": "Michael Matloob",
        "email": "matloob@golang.org",
        "time": "Fri Mar 08 20:28:27 2019 +0000"
      },
      "message": "all: add a go.mod file\n\nThis change adds a go.mod file to this repo, following the\nrequirements stated in bcmills\u0027s comment here:\nhttps://golang.org/issue/28136#issuecomment-462971974. It\u0027s\nimportant to note that we will not be\nadding versions to the repo for now.\n\nThis change does not add a go.sum file because this repo has no\ndependencies on other repos.\n\nThe change was generated by running \"go mod init\" and \"go mod tidy\" using Go\n1.11.5 in the top-level directory of the repository.\n\nUpdates golang/go#28136\n\nChange-Id: If06ef87228cd9c8520de9aa457a97947caaaf53f\nReviewed-on: https://go-review.googlesource.com/c/time/+/162824\nRun-TryBot: Michael Matloob \u003cmatloob@golang.org\u003e\nTryBot-Result: Gobot Gobot \u003cgobot@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Bryan C. Mills \u003cbcmills@google.com\u003e\n"
    },
    {
      "commit": "85acf8d2951cb2a3bde7632f9ff273ef0379bcbd",
      "tree": "8e1ff9a3cc8dc67170e3d2d4ebde5592db87b9eb",
      "parents": [
        "fbb02b2291d28baffd63558aa44b4b56f178d650"
      ],
      "author": {
        "name": "Brad Fitzpatrick",
        "email": "bradfitz@golang.org",
        "time": "Thu Nov 08 03:19:45 2018 +0000"
      },
      "committer": {
        "name": "Brad Fitzpatrick",
        "email": "bradfitz@golang.org",
        "time": "Thu Nov 08 05:44:48 2018 +0000"
      },
      "message": "rate: remove Go 1.6 support, use std context\n\nThis is part of the general cleanup effort now that App Engine\nrequires Go 1.9+.\n\nRelated: CL 145677, CL 148277, CL 145202, CL 143717, CL 146837.\n\nChange-Id: I831415f7484acb823cf8ac20db05a4a001df4c35\nReviewed-on: https://go-review.googlesource.com/c/148417\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\n"
    },
    {
      "commit": "fbb02b2291d28baffd63558aa44b4b56f178d650",
      "tree": "a1a313d6f63d861e6e9affd6144bb2c1cad54b7e",
      "parents": [
        "26559e0f760e39c24d730d3224364aef164ee23f"
      ],
      "author": {
        "name": "Bob Potter",
        "email": "bobby.potter@gmail.com",
        "time": "Thu Apr 12 16:56:04 2018 +0000"
      },
      "committer": {
        "name": "Brad Fitzpatrick",
        "email": "bradfitz@golang.org",
        "time": "Thu Apr 12 16:59:47 2018 +0000"
      },
      "message": "rate: avoid creating timer in WaitN if delay is zero\n\nname      old time/op    new time/op    delta\nAllowN-4    76.7ns ± 6%    76.6ns ± 3%      ~     (p\u003d0.897 n\u003d10+10)\nWaitNNoDelay-4     1.36µs ± 3%    0.10µs ± 1%   -92.64%  (p\u003d0.000 n\u003d10+9)\n\nname      old alloc/op   new alloc/op   delta\nAllowN-4     0.00B          0.00B           ~     (all equal)\nWaitNNoDelay-4       208B ± 0%        0B       -100.00%  (p\u003d0.000 n\u003d10+10)\n\nname      old allocs/op  new allocs/op  delta\nAllowN-4      0.00           0.00           ~     (all equal)\nWaitNNoDelay-4       3.00 ± 0%      0.00       -100.00%  (p\u003d0.000 n\u003d10+10)\n\nChange-Id: I83addc3b3f7b053d6eee637fe188e21ca9b39f11\nGitHub-Last-Rev: 2284b8e7b14d2f54870ddb80a40e8cf24996cd1f\nGitHub-Pull-Request: golang/time#5\nReviewed-on: https://go-review.googlesource.com/106461\nReviewed-by: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\n"
    },
    {
      "commit": "26559e0f760e39c24d730d3224364aef164ee23f",
      "tree": "d8ba8ead6198ddf1518b8caaa3a8f789f750bf88",
      "parents": [
        "6dc17368e09b0e8634d71cac8168d853e869a0c7"
      ],
      "author": {
        "name": "Andrew Bonventre",
        "email": "andybons@golang.org",
        "time": "Wed Mar 14 13:21:34 2018 -0400"
      },
      "committer": {
        "name": "Andrew Bonventre",
        "email": "andybons@golang.org",
        "time": "Wed Mar 14 18:02:08 2018 +0000"
      },
      "message": "CONTRIBUTING.md: remove note about not accepting Pull Requests\n\nUpdates golang/go#24185\n\nChange-Id: I54972e6370a1de467b36c58e69483d0b42350c88\nReviewed-on: https://go-review.googlesource.com/100697\nReviewed-by: Andrew Bonventre \u003candybons@golang.org\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@golang.org\u003e\n"
    },
    {
      "commit": "6dc17368e09b0e8634d71cac8168d853e869a0c7",
      "tree": "c7de4d491377e5de2a9dfd4837ab25e541b48a82",
      "parents": [
        "8be79e1e0910c292df4e79c241bb7e8f7e725959"
      ],
      "author": {
        "name": "Kevin Burke",
        "email": "kev@inburke.com",
        "time": "Tue Jul 18 20:46:07 2017 -0700"
      },
      "committer": {
        "name": "Kevin Burke",
        "email": "kev@inburke.com",
        "time": "Wed Sep 27 05:47:26 2017 +0000"
      },
      "message": "README: add better links, Markdown\n\nMove the README to README.md so Gerrit can render it; currently\nGerrit only renders files named exactly \"README.md\" (for example at\nhttps://go.googlesource.com/go).\n\nAdd more links to the README explaining how to file issues,\nhow to submit code changes, where to download the code to and\nhow to get it. Hopefully this should help people who go to\nhttps://go.googlesource.com/time or https://github.com/golang/time\nfigure out how to get started with development.\n\nChange-Id: I10f544c0bf2d17b49c5c9c9b096ac7f4b61c7cd2\nReviewed-on: https://go-review.googlesource.com/49891\nReviewed-by: Kevin Burke \u003ckev@inburke.com\u003e\n"
    },
    {
      "commit": "8be79e1e0910c292df4e79c241bb7e8f7e725959",
      "tree": "31a9acccc6e386e32f7f180aa8ad3268f858d9d1",
      "parents": [
        "c06e80d9300e4443158a03817b8a8cb37d230320"
      ],
      "author": {
        "name": "Brad Fitzpatrick",
        "email": "bradfitz@golang.org",
        "time": "Mon Apr 24 23:28:54 2017 +0000"
      },
      "committer": {
        "name": "Brad Fitzpatrick",
        "email": "bradfitz@golang.org",
        "time": "Mon Apr 24 23:40:30 2017 +0000"
      },
      "message": "rate: restore Go 1.6 support\n\nhttps://golang.org/cl/41194 updatd the x/time/rate package to use the\nstandard library\u0027s context package for golang/go#16745 but App Engine\nis stuck 14 months in the past and can only run Go 1.6, which lacks\ncontext.\n\nThis CL restores Go 1.6 support.\n\nThe Go build system stopped testing packages against Go 1.6 once Go\n1.8 came out, so just disable the tests for Go 1.6 rather than jumping\nthrough hoops to make them work.\n\nChange-Id: I271dcd492dd0ca53961340d63b26facb5dbdf025\nReviewed-on: https://go-review.googlesource.com/41624\nRun-TryBot: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\nTryBot-Result: Gobot Gobot \u003cgobot@golang.org\u003e\nReviewed-by: Chris Broadfoot \u003ccbro@golang.org\u003e\n"
    },
    {
      "commit": "c06e80d9300e4443158a03817b8a8cb37d230320",
      "tree": "046f05bb5a3db8762d6b9c128463add715ab3313",
      "parents": [
        "f51c12702a4d776e4c1fa9b0fabab841babae631"
      ],
      "author": {
        "name": "Brad Fitzpatrick",
        "email": "brad@danga.com",
        "time": "Thu Apr 20 09:48:16 2017 -0700"
      },
      "committer": {
        "name": "Brad Fitzpatrick",
        "email": "bradfitz@golang.org",
        "time": "Thu Apr 20 18:14:20 2017 +0000"
      },
      "message": "rate: use standard library context package\n\nFixes golang/go#16745\n\nChange-Id: I34f87a2ae570c2bb0ce9ccb72fc5be0d34266e49\nReviewed-on: https://go-review.googlesource.com/41194\nRun-TryBot: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\nTryBot-Result: Gobot Gobot \u003cgobot@golang.org\u003e\nReviewed-by: Dan Peterson \u003cdpiddy@gmail.com\u003e\nReviewed-by: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\n"
    },
    {
      "commit": "f51c12702a4d776e4c1fa9b0fabab841babae631",
      "tree": "8f3022fd5c0ffb22f6d5e3a93155c57a1fdc75d8",
      "parents": [
        "711ca1cb87636abec28122ef3bc6a77269d433f3"
      ],
      "author": {
        "name": "Song Gao",
        "email": "song@gao.io",
        "time": "Thu Oct 27 21:02:39 2016 -0700"
      },
      "committer": {
        "name": "Brad Fitzpatrick",
        "email": "bradfitz@golang.org",
        "time": "Fri Oct 28 15:51:19 2016 +0000"
      },
      "message": "rate: change doc for ReserveN to reflect its signature\n\nChange-Id: I97299d5a90b4273f42cb992bcf05b3c4786a2ac7\nReviewed-on: https://go-review.googlesource.com/32239\nReviewed-by: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\n"
    },
    {
      "commit": "711ca1cb87636abec28122ef3bc6a77269d433f3",
      "tree": "73a29aad30153517b494a959a43d28c73c23eaa7",
      "parents": [
        "2bc1b4fbcc7c3eda9a26f6e523cac1196c6fecd7"
      ],
      "author": {
        "name": "Sameer Ajmani",
        "email": "sameer@golang.org",
        "time": "Wed Sep 07 11:18:24 2016 -0400"
      },
      "committer": {
        "name": "Brad Fitzpatrick",
        "email": "bradfitz@golang.org",
        "time": "Mon Sep 26 18:24:26 2016 +0000"
      },
      "message": "rate: ignore burst in WaitN when rate limit is Inf\n\nWaitN fails when the number of tokens requested exceeds the limiter\u0027s\nburst size, even when the rate limit is Inf.  The documented behavior is\nthat the burst size is ignored when the rate limit is Inf.  Change WaitN\nto conform with the documentation, and add tests.\n\nFixes golang/go#16854\n\nChange-Id: I3ca0a8dac47641c76bed4258cd7010f0a704ff8c\nReviewed-on: https://go-review.googlesource.com/28610\nRun-TryBot: Sameer Ajmani \u003csameer@golang.org\u003e\nTryBot-Result: Gobot Gobot \u003cgobot@golang.org\u003e\nReviewed-by: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\n"
    },
    {
      "commit": "2bc1b4fbcc7c3eda9a26f6e523cac1196c6fecd7",
      "tree": "91147e879b04987e4ca9f21f5c4c22d52450b707",
      "parents": [
        "a4bde12657593d5e90d0533a3e4fd95e635124cb"
      ],
      "author": {
        "name": "Blake Mizerany",
        "email": "blake.mizerany@gmail.com",
        "time": "Mon Sep 19 08:35:16 2016 -0700"
      },
      "committer": {
        "name": "Brad Fitzpatrick",
        "email": "bradfitz@golang.org",
        "time": "Mon Sep 19 20:36:28 2016 +0000"
      },
      "message": "rate: double reserveN perf by 2x\n\nThis commit increase the speed of reserveN by 2x by removing the defer\nto unlock.\n\nNOTE: I did an audit of the code between Lock and Unlock and did not see\nanything that can panic causing the Unlock to averted.\n\nbenchmark             old ns/op     new ns/op     delta\nBenchmarkAllowN-4     290           143           -50.69%\n\nbenchmark             old allocs     new allocs     delta\nBenchmarkAllowN-4     0              0              +0.00%\n\nbenchmark             old bytes     new bytes     delta\nBenchmarkAllowN-4     0             0             +0.00%\n\nChange-Id: I01c23f4998f5451ea8efedd02e744fb5a74eae0d\nReviewed-on: https://go-review.googlesource.com/29379\nReviewed-by: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\nRun-TryBot: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\nTryBot-Result: Gobot Gobot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "a4bde12657593d5e90d0533a3e4fd95e635124cb",
      "tree": "1bcb0acc912c8f80ba02e415a86d3b8589a26a26",
      "parents": [
        "3d9bcec796af48977d9ac9ca4a0445c8d09e5049"
      ],
      "author": {
        "name": "Matthew Dempsky",
        "email": "mdempsky@google.com",
        "time": "Tue Feb 02 10:34:45 2016 -0800"
      },
      "committer": {
        "name": "Brad Fitzpatrick",
        "email": "bradfitz@golang.org",
        "time": "Tue Feb 02 18:38:20 2016 +0000"
      },
      "message": "rate: skip TestLongRunningQPS on OpenBSD\n\ntime.Sleep is significantly oversleeping on OpenBSD, rendering this\ntest invalid.  Skip until that\u0027s resolved.\n\nUpdates #14183.\n\nChange-Id: Ib0b79d198a0600454c5f74383d9933a2c05ddd2f\nReviewed-on: https://go-review.googlesource.com/19171\nReviewed-by: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\n"
    },
    {
      "commit": "3d9bcec796af48977d9ac9ca4a0445c8d09e5049",
      "tree": "1dc1157f28e4df00a0c74fab805a55a89a2654c2",
      "parents": [
        "68cff97871e5dd2fbe028f23662166b23827249f"
      ],
      "author": {
        "name": "Sameer Ajmani",
        "email": "sameer@golang.org",
        "time": "Wed Nov 04 17:38:25 2015 -0500"
      },
      "committer": {
        "name": "Sameer Ajmani",
        "email": "sameer@golang.org",
        "time": "Fri Dec 11 14:45:01 2015 +0000"
      },
      "message": "x/time/rate: provides a rate limiter.\n\nThe rate limiter works with golang.org/x/net/context\u0027s cancelation\nmechanism: the Wait method blocks until the limiter permits the\noperation to proceed or the context is canceled (in which case the\nrequested rate allocation is remitted for use by other operations).\n\nCo-author: Arkadi Pyuro \u003carkadi@google.com\u003e\n\nChange-Id: I841db4e61fd169ac119fdc43105a1e16ca97e0a2\nReviewed-on: https://go-review.googlesource.com/16672\nReviewed-by: Russ Cox \u003crsc@golang.org\u003e\n"
    },
    {
      "commit": "68cff97871e5dd2fbe028f23662166b23827249f",
      "tree": "ed5f1b883a6069e846fa9a182907b9569cb57513",
      "parents": [],
      "author": {
        "name": "Andrew Gerrand",
        "email": "adg@golang.org",
        "time": "Tue Nov 03 17:27:42 2015 +1100"
      },
      "committer": {
        "name": "Andrew Gerrand",
        "email": "adg@golang.org",
        "time": "Tue Nov 03 17:27:42 2015 +1100"
      },
      "message": "initial commit\n"
    }
  ]
}
