)]}'
{
  "log": [
    {
      "commit": "c3c769104499e6284e66d4a63bffaed4f34c335e",
      "tree": "d7ba476ffbc37f78ef00dbd0d3ed5711aaf74415",
      "parents": [
        "bb013e5635084b9ab7d9b9091cc520d7e8bc31d5"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Aug 23 17:29:48 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 23 17:29:48 2026"
      },
      "message": "Raise minimum Go version in go.mod from 1.16 to 1.26 (#228)\n\n* Raise minimum Go version in go.mod from 1.16 to 1.26\n\nThe go directive still declared Go 1.16 while README documents the Go\nRelease Policy (current + previous release) and CI runs every job against\nGo 1.27 and 1.26. The CHANGELOG already announced v1.2.0 as the last\nrelease supporting Go 1.16.\n\nSince Go 1.21 the go directive is a hard minimum rather than advisory. It\nalso selects the module\u0027s default GODEBUG values, which is why a test had\nto move with it: crossing Go 1.22 flips httpmuxgo121 from 1 to 0, so\nnet/http.ServeMux matches patterns segment-wise on the escaped path\ninstead of the decoded one. TestProjectsService_GetProject_WithSlash\nregistered its handler as \"/projects/plugins/delete-project\" and relied on\n%2F being decoded into a path separator before matching, which now 404s.\nRegistering the escaped form routes the request the client actually sends.\n\ngo mod tidy was run because crossing Go 1.17 enables module graph pruning.\nIt produced no further changes: the only dependency, go-querystring,\ndeclares go 1.13, so its graph stays unpruned and go.sum is untouched.\n\nCo-Authored-By: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e\nClaude-Session: https://claude.ai/code/session_012DnvWmC8vnAyNJL68H6qcu\n\n* Add changelog entry for the Go 1.26 minimum version\n\nv1.2.0 announced itself as the last release supporting Go 1.16 but nothing\nrecorded what the next release actually requires. Add an Unreleased\nsection naming the new minimum and explaining why an older toolchain can\nno longer build the module, so consumers still on old Go know to pin\nv1.2.0 rather than discover it as a build failure.\n\nCo-Authored-By: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e\nClaude-Session: https://claude.ai/code/session_012DnvWmC8vnAyNJL68H6qcu\n\n* Switch Go version from v1.26 to 1.26.0\r\n\r\nWhile Go module versions do use semver and \"v\" prefix, Go toolchain versions do not. See https://go.dev/doc/toolchain#version and https://go.dev/doc/toolchain#name.\n\n* go get go@1.26.0\n\ngo: upgraded go 1.26 \u003d\u003e 1.26.0\n\n---------\n\nCo-authored-by: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e"
    },
    {
      "commit": "bb013e5635084b9ab7d9b9091cc520d7e8bc31d5",
      "tree": "26c1c5209f2d8eddaabbe7acc50ff75ae662946d",
      "parents": [
        "5b3d24e4f382e4e4a5804e7b317ea84b96775d58"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sat Aug 22 19:14:15 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 19:14:15 2026"
      },
      "message": "Add changelog entries for v1.1.0, v1.1.1 and v1.2.0 (#227)\n\nCHANGELOG.md had drifted out of sync with the released tags. Both v1.1.0\n(2025-07-12) and v1.1.1 (2025-12-05) were tagged and published, but never\nrecorded here, leaving the file jumping straight from 1.0.0 (2024-10-20) to\n0.5.2 (2017-11-04). Anyone reading the changelog alone could not tell those\nreleases existed or what they contained. Both sections are backfilled so the\nfile is a complete standalone log again, independent of GitHub Releases.\n\nThe new 1.2.0 section prepares the next release. The change set since v1.1.1\nis purely additive at the API level: one new function (WithRunAs), one new\nChangeInfo field (CurrentRevisionNumber) and three new ReviewerInput fields\n(State, Notify, NotifyDetails). Nothing was removed, renamed or re-signed,\nwhich makes a minor version the correct choice under semantic versioning.\n\nAn upgrade note documents the one source-level caveat: ReviewerInput gained\nState between Reviewer and Confirmed, so unkeyed composite literals no longer\ncompile. Go\u0027s compatibility promise excludes unkeyed literals, so this stays a\nminor release, but callers relying on them need to switch to keyed fields.\n\n\nClaude-Session: https://claude.ai/code/session_012DnvWmC8vnAyNJL68H6qcu\n\nCo-authored-by: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e"
    },
    {
      "commit": "5b3d24e4f382e4e4a5804e7b317ea84b96775d58",
      "tree": "723e54814f6fc5f61201a3b9624e54060b7bf6d2",
      "parents": [
        "42c7af0c245c95ff5f77b47b7b71d027c96958e5"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sat Aug 22 16:55:42 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 16:55:42 2026"
      },
      "message": "Support Go 1.27 and put staticcheck under Renovate management (#226)\n\n* Upgrade supported Go versions from 1.25, 1.26 to 1.26, 1.27\n\nGo 1.27 is the current upstream release, so per the Go Release Policy our\nsupported window moves to 1.27 + 1.26. Until now CI never exercised the\nversion most users will be on, while still spending runner time on 1.25,\nwhich upstream no longer supports.\n\nThe gofmt job was left behind on 1.26 + 1.25 while the other four jobs\nmoved. All five now agree, so a formatting difference under the newest\ntoolchain cannot slip through unnoticed.\n\nstaticcheck moves from 2026.1 to 2026.2.1 in the same change because it\nonly supports the last two Go releases. 2026.1 was built against Go 1.26\nand aborts on a 1.27 toolchain with \"export data version 4 is greater\nthan maximum supported version 2\" for every stdlib import, so the\nstaticcheck job would fail on the new matrix entry. 2026.2 is the release\nthat added Go 1.27 support. The two bumps have to land together to keep\nthe pipeline green, exactly as 2025.1.1 blocked the move to 1.26 in #219.\n\n2026.2.1 rather than 2026.2 because it fixes two SA4023 false positives\nthat 2026.2 introduced, one of which treats unconstrained generics as\nnever nil.\n\nThe go directive in go.mod stays at 1.16 on purpose: what we test against\nis not the same as the minimum we require from consumers, and raising\nthat floor is a separate, breaking decision.\n\nCo-Authored-By: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e\nClaude-Session: https://claude.ai/code/session_019TrHS18fsvzYVCT8DYWyMU\n\n* Adopt Renovate best-practices preset\n\nrenovate.json has been a bare config:recommended since Renovate onboarded\nin #207 and was never revisited, not even when Dependabot was removed in\n#220 to make Renovate the single source of dependency updates. Four gaps\nfollow from that, all addressed here.\n\nconfig:best-practices replaces config:recommended. It is the maintainers\u0027\nown recommendation and adds, among others, helpers:pinGitHubActionDigests\nand :configMigration. Digest pinning matters most: our workflows resolve\nactions through mutable tags such as @v7, so an upstream tag move would\nsilently change what runs in CI. Expect a follow-up Renovate pull request\nthat rewrites every uses: reference to an immutable SHA with a trailing\nversion comment. The npm and Docker parts of the preset are inert here.\n\nA weekly schedule replaces the default trickle of pull requests. Renovate\nnow opens them Monday between 00:00 and 05:00 Europe/Berlin, and routine\nGitHub Actions updates arrive grouped in a single pull request. Major\naction bumps stay ungrouped because they usually need workflow changes\nand deserve their own review. Security updates are unaffected: Renovate\nlets vulnerability alerts skip the schedule by default.\n\nsemanticCommits is pinned off rather than auto-detected. Left to guess\nfrom history, Renovate flip-flopped between \"chore(deps): update\ndependency go to 1.26\" in #209 and #211 and \"Update actions/checkout\naction to v7\" in #214 and #217. The plain imperative form matches the\nrest of the log.\n\ngomodTidy is enabled because Renovate does not run go mod tidy by\ndefault, which lets a go.mod-only pull request land an inconsistent\ngo.sum. The first Go module update may therefore carry unrelated go.sum\nchurn; go.sum currently still lists github.com/google/go-cmp even though\ngo.mod requires only github.com/google/go-querystring.\n\nCo-Authored-By: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e\nClaude-Session: https://claude.ai/code/session_019TrHS18fsvzYVCT8DYWyMU\n\n* Manage staticcheck version with Renovate\n\nRenovate\u0027s github-actions manager reads the with: version input of\ngolangci/golangci-lint-action, which is how #211 and #212 kept\ngolangci-lint current, but it has no equivalent support for\ndominikh/staticcheck-action. So the staticcheck pin has only ever moved\nby hand, folded into whichever commit bumped the Go matrix. #208 shows\nthe asymmetry plainly: it bumped the action to v1.4.1 and left the\nstaticcheck release alone.\n\nThat manual coupling is not reliable. The Go 1.27 bump on this branch\nmissed it, and staticcheck 2026.1 fails outright on a 1.27 toolchain, so\nthe gap would have surfaced as a red pipeline rather than a stale pin.\n\nA regex custom manager closes it. The annotation sits on the version:\nline rather than the uses: line so it survives the digest pinning that\nconfig:best-practices will apply to every action reference.\n\nReleases are looked up in dominikh/go-tools, not staticcheck-action:\nthe action only ships the wrapper, while staticcheck itself is released\nfrom go-tools. The regex versioning scheme is required because that\nrepository mixes three tag shapes - CalVer releases such as 2026.2.1,\nrelease candidates such as 2026.2rc1, and a stray semver tag v0.3.3 left\nover from 2022. Matching only major.minor[.patch] admits the stable\nCalVer releases and discards the other two, and it orders them correctly\nso 2026.1 is superseded by 2026.2 and then 2026.2.1.\n\nVerified with a local dry run: from 2026.1 Renovate resolves a minor\nupdate to 2026.2.1, skipping the release candidate and the semver tag.\n\nCo-Authored-By: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e\nClaude-Session: https://claude.ai/code/session_019TrHS18fsvzYVCT8DYWyMU\n\n* Upgrade golangci-lint from v2.12.2 to v2.13.1 for Go 1.27\n\nThe golangci-lint job fails on the new Go 1.27 matrix entry:\n\n  could not import math/rand/v2 (src/math/rand/v2/rand.go:213:17:\n  method must have no type parameters) (typecheck)\n  undefined: rand (typecheck)\n\ngolangci-lint type checks the standard library sources of whatever\ntoolchain is installed, not just our own packages, so the go directive in\ngo.mod does not shield it. v2.12.2 was released in May and built with a\npre-1.27 Go, and its go/types cannot parse generic methods, a language\nfeature Go 1.27 introduced and uses in math/rand/v2. The v2.13.1 binary\nthe action downloads is built with go1.27.0.\n\nThis is the same toolchain coupling that forced staticcheck to move in\nthe Go version bump on this branch. Two linters, one cause: both parse\nthe installed standard library, so both are pinned to the newest Go we\ntest against and have to move with it.\n\nUnlike the 2.11 to 2.12 upgrade in #221, this one needs no follow-up\nfixes. Running the v2.13.1 release binary against the repository under\ngo1.27.0 reports 0 issues.\n\nCo-Authored-By: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e\nClaude-Session: https://claude.ai/code/session_019TrHS18fsvzYVCT8DYWyMU\n\n---------\n\nCo-authored-by: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e"
    },
    {
      "commit": "42c7af0c245c95ff5f77b47b7b71d027c96958e5",
      "tree": "95ef82f59474a05f114d4becc20c07666d4d8855",
      "parents": [
        "df467bed79d4221ad5d454f19cd557a86b5b1c74"
      ],
      "author": {
        "name": "renovate[bot]",
        "email": "29139614+renovate[bot]@users.noreply.github.com",
        "time": "Sun Aug 09 08:37:26 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 09 08:37:26 2026"
      },
      "message": "Update dependency golangci/golangci-lint to v2.12.2 (#212)\n\nCo-authored-by: renovate[bot] \u003c29139614+renovate[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "df467bed79d4221ad5d454f19cd557a86b5b1c74",
      "tree": "a15a3c1d39aca69e6681befa4e32990387b5d2b0",
      "parents": [
        "4baf32b8d01a0f561c830267f4208ec866e61058"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Aug 09 08:34:16 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 09 08:34:16 2026"
      },
      "message": "Fix golangci-lint 2.12 findings (#221)\n\n* Replace deprecated reflect.Ptr with reflect.Pointer\n\ngolangci-lint 2.12 enables govet\u0027s `inline` analyzer, which was not part\nof the 2.11.3 analyzer set. It reports `reflect.Ptr` because the standard\nlibrary marks that constant with a `//go:fix inline` directive: `Ptr` is\nthe pre-Go 1.18 name and `Pointer` is its replacement.\n\nThe finding is latent on master rather than introduced by the pending\ngolangci-lint upgrade, so fixing it here lets that upgrade land without\ncarrying an unrelated code change.\n\nreflect.Pointer requires Go 1.18. The module still declares `go 1.16`,\nbut govet\u0027s stdversion analyzer does not flag the use and the supported\nGo versions are 1.25 and 1.26, so no go.mod change is needed.\n\n* Remove stale nolint directives for vetshadow\n\n`vetshadow` was a golangci-lint v1 linter name that no longer exists.\nSince the v2 migration these two directives have suppressed nothing:\nshadow checking now lives behind govet\u0027s `shadow` analyzer, which is not\npart of the default analyzer set and is not enabled in .golangci.yml.\n\ngolangci-lint reports them on every run as \"Found unknown linters in\n//nolint directives: vetshadow\". Dropping the dead directives clears that\nwarning without changing which findings are reported."
    },
    {
      "commit": "4baf32b8d01a0f561c830267f4208ec866e61058",
      "tree": "0e2484d3191d6a523f21d38a2e0636a942f50650",
      "parents": [
        "bfeb61fb872c24f41d77504c4c688d37d9163c4d"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Aug 09 08:02:23 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 09 08:02:23 2026"
      },
      "message": "Remove Dependabot in favor of Renovate (#220)\n\nRenovate was introduced in #207 but the Dependabot config was left in\nplace, so both bots watched the same gomod and github-actions\necosystems. This produced duplicate pull requests for identical\nupdates -- #217 (Renovate) and #218 (Dependabot) both bumped\nactions/setup-go to v7.\n\nDrop the Dependabot config so Renovate is the single source of\ndependency updates. renovate.json is unchanged; its current\nconfig:recommended behaviour is what we want going forward.\n\nCo-authored-by: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e"
    },
    {
      "commit": "bfeb61fb872c24f41d77504c4c688d37d9163c4d",
      "tree": "03afb1c7236c76df6f6f82b49a05c91af631a888",
      "parents": [
        "14503db4e36b05b8f7abed59f12c90cbaec9bdf3"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Aug 09 08:02:13 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 09 08:02:13 2026"
      },
      "message": "Upgrade supported Go versions from 1.24, 1.25 to 1.25, 1.26 (#219)\n\nGo 1.26 is the current upstream release, so per the Go Release Policy\nour supported window moves to 1.26 + 1.25. Until now CI never exercised\nthe version most users are on, while still spending runner time on 1.24,\nwhich upstream no longer supports.\n\nstaticcheck moves from 2025.1.1 to 2026.1 in the same change because it\nonly supports the last two Go releases. Left at 2025.1.1 it would reject\nor misparse the new 1.26 matrix entry, so the two bumps have to land\ntogether to keep the pipeline green.\n\nThe README claimed we support \"current + 2 previous\", which matched\nneither the two-entry CI matrix nor the release policy it links to.\nCorrected to state the policy we actually follow.\n\nThe go directive in go.mod stays at 1.16 on purpose: what we test\nagainst is not the same as the minimum we require from consumers, and\nraising that floor is a separate, breaking decision.\n\nCo-authored-by: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e"
    },
    {
      "commit": "14503db4e36b05b8f7abed59f12c90cbaec9bdf3",
      "tree": "d56fa3eb2f2859b2f76572a8ede43203029344a7",
      "parents": [
        "1de2e34992707123847ad29fbcba61490800fab8"
      ],
      "author": {
        "name": "renovate[bot]",
        "email": "29139614+renovate[bot]@users.noreply.github.com",
        "time": "Sun Aug 09 07:54:22 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 09 07:54:22 2026"
      },
      "message": "Update actions/checkout action to v7 (#214)\n\nCo-authored-by: renovate[bot] \u003c29139614+renovate[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "1de2e34992707123847ad29fbcba61490800fab8",
      "tree": "e2a9cc35511f960d7ec4b9a6c293fed167e32868",
      "parents": [
        "9d00b00e9e2e190f0e3d93bd787dcc82583f1ce0"
      ],
      "author": {
        "name": "renovate[bot]",
        "email": "29139614+renovate[bot]@users.noreply.github.com",
        "time": "Sun Aug 09 07:41:32 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 09 07:41:32 2026"
      },
      "message": "Update actions/setup-go action to v7 (#217)\n\nCo-authored-by: renovate[bot] \u003c29139614+renovate[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "9d00b00e9e2e190f0e3d93bd787dcc82583f1ce0",
      "tree": "e2a9cc35511f960d7ec4b9a6c293fed167e32868",
      "parents": [
        "1ec7df4de9950bd5d9b308a5a6058dd2360d66f3"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sun Aug 09 07:41:21 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 09 07:41:21 2026"
      },
      "message": "Bump actions/setup-go from 6 to 7 (#218)\n\nBumps [actions/setup-go](https://github.com/actions/setup-go) from 6 to 7.\n- [Release notes](https://github.com/actions/setup-go/releases)\n- [Commits](https://github.com/actions/setup-go/compare/v6...v7)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-go\n  dependency-version: \u00277\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "1ec7df4de9950bd5d9b308a5a6058dd2360d66f3",
      "tree": "c80cfd97d40db1e4a897888280a674d84133734f",
      "parents": [
        "9ef9336fa4514951c9695b9e3e65989454cc4ce8"
      ],
      "author": {
        "name": "Kaishu Sahu",
        "email": "kaishusahu101@gmail.com",
        "time": "Mon Mar 16 17:45:39 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 16 17:45:39 2026"
      },
      "message": "Add WithRunAs context for X-Gerrit-RunAs header support (#206)\n\n* Add WithRunAs context for X-Gerrit-RunAs header support\n\nAdd WithRunAs(ctx, accountID) to run API requests as a different user.\nRequires the RunAs capability (typically granted to administrators).\nIntegrates with NewRequest and NewRawPutRequest.\n\n* Add links to official gerrit runAs header docs\n\nCo-authored-by: Andy Grunwald \u003candygrunwald@gmail.com\u003e\n\n---------\n\nCo-authored-by: Andy Grunwald \u003candygrunwald@gmail.com\u003e"
    },
    {
      "commit": "9ef9336fa4514951c9695b9e3e65989454cc4ce8",
      "tree": "62b5c843594f18d8c88ac92d1afc895b42b4a678",
      "parents": [
        "eb71b14a73d9373de58f24ea541281ab5e00ccbc"
      ],
      "author": {
        "name": "renovate[bot]",
        "email": "29139614+renovate[bot]@users.noreply.github.com",
        "time": "Sun Mar 15 13:06:50 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Mar 15 13:06:50 2026"
      },
      "message": "chore(deps): update dependency golangci/golangci-lint to v2.11.3 (#211)\n\nCo-authored-by: renovate[bot] \u003c29139614+renovate[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "eb71b14a73d9373de58f24ea541281ab5e00ccbc",
      "tree": "db60ffaa3a24c95f6d1f182b6ee62e86859fdf7a",
      "parents": [
        "0cf1dd8826c7d030ba81f7092c03096681b05930"
      ],
      "author": {
        "name": "renovate[bot]",
        "email": "29139614+renovate[bot]@users.noreply.github.com",
        "time": "Sun Mar 15 10:42:01 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Mar 15 10:42:01 2026"
      },
      "message": "chore(deps): update dependency go to 1.26 (#209)\n\nCo-authored-by: renovate[bot] \u003c29139614+renovate[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "0cf1dd8826c7d030ba81f7092c03096681b05930",
      "tree": "5d94c1c2bca23115bd7d1eb1c4cf501e93c2ade5",
      "parents": [
        "c9b56a536f275b42caed2037ebacc94653e81bcc"
      ],
      "author": {
        "name": "renovate[bot]",
        "email": "29139614+renovate[bot]@users.noreply.github.com",
        "time": "Sun Mar 15 10:41:50 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Mar 15 10:41:50 2026"
      },
      "message": "chore(deps): update dominikh/staticcheck-action action to v1.4.1 (#208)\n\nCo-authored-by: renovate[bot] \u003c29139614+renovate[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "c9b56a536f275b42caed2037ebacc94653e81bcc",
      "tree": "c093d96c207872716aa94a1fb248ab03203a26e6",
      "parents": [
        "fbf6460e596b06610689b680e8b7c9ae81bebd90"
      ],
      "author": {
        "name": "renovate[bot]",
        "email": "29139614+renovate[bot]@users.noreply.github.com",
        "time": "Sun Mar 15 10:12:35 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Mar 15 10:12:35 2026"
      },
      "message": "Add renovate.json (#207)\n\nCo-authored-by: renovate[bot] \u003c29139614+renovate[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "fbf6460e596b06610689b680e8b7c9ae81bebd90",
      "tree": "9cd2a59afecb664526535e329657f2eb3769aaae",
      "parents": [
        "c4283a36065c821511b7a06ddb93bb6d97a9658f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sun Mar 15 10:05:39 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Mar 15 10:05:39 2026"
      },
      "message": "Bump goreleaser/goreleaser-action from 6 to 7 (#205)\n\nBumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 6 to 7.\n- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)\n- [Commits](https://github.com/goreleaser/goreleaser-action/compare/v6...v7)\n\n---\nupdated-dependencies:\n- dependency-name: goreleaser/goreleaser-action\n  dependency-version: \u00277\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "c4283a36065c821511b7a06ddb93bb6d97a9658f",
      "tree": "1cdcd5bc8efd1e0ebefaf109c2f1adcf4e9167f2",
      "parents": [
        "8a17aa8f72ec13eb1c721eb3addf61fee6c539e0"
      ],
      "author": {
        "name": "Stephen Finucane",
        "email": "stephenfinucane@hotmail.com",
        "time": "Sat Feb 28 08:11:23 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Feb 28 08:11:23 2026"
      },
      "message": "Add ChangeInfo.CurrentRevisionNumber field (#204)\n\nPer [1].\n\n[1] https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#change-info\n\nSigned-off-by: Stephen Finucane \u003cstephen@that.guru\u003e"
    },
    {
      "commit": "8a17aa8f72ec13eb1c721eb3addf61fee6c539e0",
      "tree": "8aeb2aaf417fc3c878d8e54a1dbbd6ccfe1202d7",
      "parents": [
        "dfb90fe234575775d03e22b094607d34e5f7e1e8"
      ],
      "author": {
        "name": "Giuseppe Valente",
        "email": "7AC@users.noreply.github.com",
        "time": "Fri Jan 23 15:34:14 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jan 23 15:34:14 2026"
      },
      "message": "Add fields `State`, `Notify` and `NotifyDetails` to ReviewerInput (#203)\n\nThis adds the missing fields to ReviewerInput per the Gerrit REST API:\n- State: allows adding reviewers as CC or REVIEWER, or removing them (REMOVED)\n- Notify: controls email notification handling (NONE, OWNER, OWNER_REVIEWERS, ALL)\n- NotifyDetails: additional notification configuration\n\nGerrit API docs: https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#reviewer-input"
    },
    {
      "commit": "dfb90fe234575775d03e22b094607d34e5f7e1e8",
      "tree": "6ec37dfa1c234032fa5b192110e30189843e84da",
      "parents": [
        "fdd33d63508fc067376110389b2a9e5bf682587d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jan 01 10:45:28 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jan 01 10:45:28 2026"
      },
      "message": "Bump actions/setup-go from 5 to 6 (#201)\n\nBumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6.\n- [Release notes](https://github.com/actions/setup-go/releases)\n- [Commits](https://github.com/actions/setup-go/compare/v5...v6)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-go\n  dependency-version: \u00276\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "fdd33d63508fc067376110389b2a9e5bf682587d",
      "tree": "be0cabadb05709b6edf5c91627926e952edd42e1",
      "parents": [
        "c628cf8e941204a81723c6400d4c29148da6ea7b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jan 01 10:42:54 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jan 01 10:42:54 2026"
      },
      "message": "Bump github.com/google/go-querystring from 1.1.0 to 1.2.0 (#200)\n\nBumps [github.com/google/go-querystring](https://github.com/google/go-querystring) from 1.1.0 to 1.2.0.\n- [Release notes](https://github.com/google/go-querystring/releases)\n- [Commits](https://github.com/google/go-querystring/compare/v1.1.0...v1.2.0)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/google/go-querystring\n  dependency-version: 1.2.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "c628cf8e941204a81723c6400d4c29148da6ea7b",
      "tree": "6ed369174d462ad60b8d9a4d16878e0d1a9c38e5",
      "parents": [
        "888066ffc123c85314d0aca6be82056a8ddbefbd"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jan 01 10:42:36 2026"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jan 01 10:42:36 2026"
      },
      "message": "Bump actions/checkout from 5 to 6 (#202)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v5...v6)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n  dependency-version: \u00276\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "888066ffc123c85314d0aca6be82056a8ddbefbd",
      "tree": "7f34d83aa949290ac81e919bccf51e9412f0e33f",
      "parents": [
        "db4c287aefdbbf81c67576b832fe160af1357746"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Fri Dec 05 10:45:00 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Dec 05 10:45:00 2025"
      },
      "message": "Introduce golangci-lint as an additional linter (#199)\n\n* Introduce golangci-lint as an additional linter\n\n* Fix `occured` is a misspelling of `occurred` (misspell)\n\n* Fix Error return value of `fmt.Fprint` is not checked (errcheck)"
    },
    {
      "commit": "db4c287aefdbbf81c67576b832fe160af1357746",
      "tree": "c29bbd81e58bda641f4dfbe6be088c86af40ae30",
      "parents": [
        "007e2f7877f370f5b0aba986e115dbf833f6e631"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Dec 05 08:16:15 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Dec 05 08:16:15 2025"
      },
      "message": "Bump actions/setup-go from 5 to 6 (#196)\n\nBumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6.\n- [Release notes](https://github.com/actions/setup-go/releases)\n- [Commits](https://github.com/actions/setup-go/compare/v5...v6)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-go\n  dependency-version: \u00276\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "007e2f7877f370f5b0aba986e115dbf833f6e631",
      "tree": "3d30fe29627164df1ef92507c06d1a9a1f40d802",
      "parents": [
        "a7b2c28fbf9b684a5f521276e939f432f7b8a6df"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Dec 05 08:09:07 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Dec 05 08:09:07 2025"
      },
      "message": "Bump actions/checkout from 5 to 6 (#198)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v5...v6)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n  dependency-version: \u00276\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "a7b2c28fbf9b684a5f521276e939f432f7b8a6df",
      "tree": "fec45c798abbfddef432b411b4fbd9583150ea8f",
      "parents": [
        "ebba98a7fe2818905c03a00414d225e457477ad3"
      ],
      "author": {
        "name": "Michael Kelly",
        "email": "mkelly@arista.com",
        "time": "Fri Dec 05 01:51:30 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Dec 05 01:51:30 2025"
      },
      "message": "don\u0027t treat + as a special character for queries\n\nThis special behavior for the \"+\" character was added as part of PR #22\nto resolve issue #18 around 9 years ago, but the issue described there\nseems more like a problem caused by \"+\" being used instead of \" \"\n(a space) in the original search query, and we haven\u0027t received new\ninformation to suggest otherwise. So, undo the special behavior for the\n\"+\" character.\n\nGitHub-Pull-Request: https://github.com/andygrunwald/go-gerrit/pull/193"
    },
    {
      "commit": "ebba98a7fe2818905c03a00414d225e457477ad3",
      "tree": "9a0eafcd3e5fc9ab1e64a73c01c31058e54d3855",
      "parents": [
        "6541e71926e2c5944816fca1dce73188442d8e29"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Aug 17 10:26:13 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 17 10:26:13 2025"
      },
      "message": "Upgrade Go to v1.25 (#195)\n\n"
    },
    {
      "commit": "6541e71926e2c5944816fca1dce73188442d8e29",
      "tree": "626d3101527fcfd01790361ab977950817839fd9",
      "parents": [
        "4d22969f11d8e053e67c43a002eac3a699a34d84"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sun Aug 17 10:22:43 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 17 10:22:43 2025"
      },
      "message": "Bump actions/checkout from 4 to 5 (#194)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n  dependency-version: \u00275\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "4d22969f11d8e053e67c43a002eac3a699a34d84",
      "tree": "294ca64557f6cdfd33c55eab5f7abda1dcbdf304",
      "parents": [
        "8ddf62302249d26790fb8fe4a0546a3d8eb0441b"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sat Jul 12 13:37:27 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jul 12 13:37:27 2025"
      },
      "message": "Update dependencies and fix CI build (#192)\n\n* Go: Update to v1.24\n\n* Staticcheck: Update to v2025.1.1\n\n* go fmt"
    },
    {
      "commit": "8ddf62302249d26790fb8fe4a0546a3d8eb0441b",
      "tree": "bfed3c9abddd5e3217ce5e6983911874308988ec",
      "parents": [
        "a051e69298ad3f471e8cc2dc8f21b241bca6e753"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Jul 12 13:29:39 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jul 12 13:29:39 2025"
      },
      "message": "Bump dominikh/staticcheck-action from 1.3.1 to 1.4.0 (#191)\n\nBumps [dominikh/staticcheck-action](https://github.com/dominikh/staticcheck-action) from 1.3.1 to 1.4.0.\n- [Release notes](https://github.com/dominikh/staticcheck-action/releases)\n- [Changelog](https://github.com/dominikh/staticcheck-action/blob/master/CHANGES.md)\n- [Commits](https://github.com/dominikh/staticcheck-action/compare/v1.3.1...v1.4.0)\n\n---\nupdated-dependencies:\n- dependency-name: dominikh/staticcheck-action\n  dependency-version: 1.4.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "a051e69298ad3f471e8cc2dc8f21b241bca6e753",
      "tree": "7487b6ff8f8eb997e711a0331ca7226d7d03a92f",
      "parents": [
        "8c6ff13c2bc32bd359f0a150268d82df226f0c31"
      ],
      "author": {
        "name": "Daco",
        "email": "dacofr@users.noreply.github.com",
        "time": "Sat Jul 12 07:08:40 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jul 12 07:08:40 2025"
      },
      "message": "Add missing MoreProjects field in ProjectInfo (#190)\n\n"
    },
    {
      "commit": "8c6ff13c2bc32bd359f0a150268d82df226f0c31",
      "tree": "2a1aa429e9f13cde7162bdefa543d7fe2a9688e5",
      "parents": [
        "650ad12c8718fc7b18463001cb54ec8593ea5045"
      ],
      "author": {
        "name": "sidju",
        "email": "account@sidju.se",
        "time": "Sat Jun 14 16:18:23 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jun 14 16:18:23 2025"
      },
      "message": "Add response_format_options to ChangeInput struct (#181)\n\n* Add response_format_options to ChangeInput struct\n\nEnables requesting additional data from a change creation.\n\n* ChangeInput: Rename RespFormatOptions -\u003e ResponseFormatOptions\n\n---------\n\nCo-authored-by: Andy Grunwald \u003candy.grunwald@aiven.io\u003e"
    },
    {
      "commit": "650ad12c8718fc7b18463001cb54ec8593ea5045",
      "tree": "1db5b56ccdc5fe6da7524f8c23728086b228d7d1",
      "parents": [
        "31687dc5673cabc520980d8b1de2fe4d8f7cf666"
      ],
      "author": {
        "name": "SaintNova",
        "email": "saint_nova@yahoo.com.mx",
        "time": "Sat May 17 14:40:15 2025"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 17 14:40:15 2025"
      },
      "message": "Add missing Patch field to ChangeInfo (#188)\n\n"
    },
    {
      "commit": "31687dc5673cabc520980d8b1de2fe4d8f7cf666",
      "tree": "5543b77b1fcd8ef1dbf655b5d85b3e195614f0bd",
      "parents": [
        "aab8de105323c7c509c80ffe5690713c06b2f988"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Wed Oct 30 09:22:39 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Oct 30 09:22:39 2024"
      },
      "message": "testing: Remove console output while running unit tests (#176)\n\n"
    },
    {
      "commit": "aab8de105323c7c509c80ffe5690713c06b2f988",
      "tree": "31621b8f0f8e2fd9d091bf0198a09c02778bd3c8",
      "parents": [
        "1cda733eb4250206a0be5c7b0843eb05b25f1c54"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Oct 20 08:50:37 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Oct 20 08:50:37 2024"
      },
      "message": "Upgrade Changelog for v1.0.0 (#174)\n\n"
    },
    {
      "commit": "1cda733eb4250206a0be5c7b0843eb05b25f1c54",
      "tree": "b22d4562b41992cafd096d4c9517882aca718865",
      "parents": [
        "08ff0c0462f9472dad81c5e966d5fc86a59dd71e"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Oct 20 08:42:24 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Oct 20 08:42:24 2024"
      },
      "message": "Introduce goreleaser to make the release of a new version easier (#173)\n\n"
    },
    {
      "commit": "08ff0c0462f9472dad81c5e966d5fc86a59dd71e",
      "tree": "33c23e374a18d9f6305aca59e0dd5719cfa4fc26",
      "parents": [
        "d093e012b8e11cd4a5f8ae72f997bdfd60c99e50"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Oct 20 07:16:25 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Oct 20 07:16:25 2024"
      },
      "message": "Github Actions: Upgrade supported Go versions from 1.21, 1.22 to 1.22, 1.23 (#172)\n\n* Github Actions: Upgrade supported Go versions from 1.21, 1.22 to 1.22, 1.23\r\n\r\n* Upgrade staticcheck from 2023.1 to 2024.1.1"
    },
    {
      "commit": "d093e012b8e11cd4a5f8ae72f997bdfd60c99e50",
      "tree": "7a1ff89feb4fd09374d459ab5408f0a0653c8cab",
      "parents": [
        "b410a34e3c2923f8a1b26a4c68fcea608ce9447c"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Oct 20 07:09:31 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Oct 20 07:09:31 2024"
      },
      "message": "Github Actions: Fix Actions trigger on branch name (#171)\n\n"
    },
    {
      "commit": "b410a34e3c2923f8a1b26a4c68fcea608ce9447c",
      "tree": "0ac28af80f07df3e00c141e790fad37221e2bcc8",
      "parents": [
        "18c7753ac78acf02ffa2f0ac78ba71b4a02f76c9"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Oct 20 07:07:51 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Oct 20 07:07:51 2024"
      },
      "message": "Github Actions: Upgrade `runs-on` image from ubuntu-22.04 to ubtuntu-24.04 (#170)\n\n"
    },
    {
      "commit": "18c7753ac78acf02ffa2f0ac78ba71b4a02f76c9",
      "tree": "ffa243856bc6e6e1a0687d8bfea19fa2576e0a8f",
      "parents": [
        "0983e87949db2bc5c9b166b499d8741b95db048e"
      ],
      "author": {
        "name": "Simon Yang",
        "email": "simony@google.com",
        "time": "Sun Oct 20 07:01:56 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Oct 20 07:01:56 2024"
      },
      "message": "Add support for submit_requirement fields in ChangeInfo. (#169)\n\n"
    },
    {
      "commit": "0983e87949db2bc5c9b166b499d8741b95db048e",
      "tree": "285fcd3a586b2ed4dfd57ba1a78c893ebf8a5b0f",
      "parents": [
        "c725a0f286eb31b2996ef1c947ba055ad18daa38"
      ],
      "author": {
        "name": "Jimmy Trinh",
        "email": "jht1005@wildcats.unh.edu",
        "time": "Fri May 24 17:14:39 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 24 17:14:39 2024"
      },
      "message": "Update CherryPickInput to support new fields (#165)\n\nGerrit has introduced new fields to finely tune behavior when\r\ncherry-picking changes such as notification support and allowing for\r\nmerge conflicts to go through. This changes add all of the new fields\r\navailable as of gerrit v3.10.0.\r\n\r\nCo-authored-by: Jimmy Trinh \u003cjtrinh@arista.com\u003e"
    },
    {
      "commit": "c725a0f286eb31b2996ef1c947ba055ad18daa38",
      "tree": "7f08337487d98e48adb3e649775ae364d6fc11ee",
      "parents": [
        "bb1cabe72fd0ddb3a5609e56eee396a38395471a"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sat Apr 27 07:38:35 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Apr 27 07:38:35 2024"
      },
      "message": "Update Go version (add v1.22, remove v1.20) (#164)\n\n"
    },
    {
      "commit": "bb1cabe72fd0ddb3a5609e56eee396a38395471a",
      "tree": "9810875e50b28774a72969a15bdbb11c1ea554fd",
      "parents": [
        "e8bb8e48c4bac60d4ba8bf0d849cd2a684ee2ab2"
      ],
      "author": {
        "name": "jtrinh-anet",
        "email": "152528860+jtrinh-anet@users.noreply.github.com",
        "time": "Sat Apr 27 07:35:17 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Apr 27 07:35:17 2024"
      },
      "message": "Update SubmitInput entity to support new fields (#163)\n\nNew fields have been added to SubmitInput to support features such as\r\nsubmitting on behalf of other users, and notification handling. The\r\nfields have been all listed as optional to match the current API (as of\r\n3.8+)."
    },
    {
      "commit": "e8bb8e48c4bac60d4ba8bf0d849cd2a684ee2ab2",
      "tree": "59f4d92562226e3a17888458ae88bbdf6d34334a",
      "parents": [
        "7c5be029a66940d4ca022b3aa9c9d990e7446f19"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Apr 19 12:38:55 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 19 12:38:55 2024"
      },
      "message": "Bump dominikh/staticcheck-action from 1.3.0 to 1.3.1 (#162)\n\nBumps [dominikh/staticcheck-action](https://github.com/dominikh/staticcheck-action) from 1.3.0 to 1.3.1.\r\n- [Release notes](https://github.com/dominikh/staticcheck-action/releases)\r\n- [Changelog](https://github.com/dominikh/staticcheck-action/blob/master/CHANGES.md)\r\n- [Commits](https://github.com/dominikh/staticcheck-action/compare/v1.3.0...v1.3.1)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: dominikh/staticcheck-action\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "7c5be029a66940d4ca022b3aa9c9d990e7446f19",
      "tree": "7240b04d31156656ad0f82f8621be8dc9b03bb1b",
      "parents": [
        "444a268dda25a2f4617c4b93823cb071face93d7"
      ],
      "author": {
        "name": "Musab",
        "email": "musabshakeel@gmail.com",
        "time": "Sun Mar 31 07:59:35 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Mar 31 07:59:35 2024"
      },
      "message": "Fix MoveInput struct definition (keep_all_labels -\u003e keep_all_votes) (#161)\n\nSince Gerrit 3.4.0, the MoveInput field has been `keep_all_votes` and\r\nnot `keep_all_labels`. This change makes the MoveInput struct reflect\r\nthat."
    },
    {
      "commit": "444a268dda25a2f4617c4b93823cb071face93d7",
      "tree": "7390747dea543b574d6cd245a59cbed47305d362",
      "parents": [
        "b85f9f504fc49b2b8a1bfc5f82bb5b16a18c0d57"
      ],
      "author": {
        "name": "Mike Kelly",
        "email": "mkelly@arista.com",
        "time": "Thu Mar 28 07:21:40 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Mar 28 07:21:40 2024"
      },
      "message": "Add missing fields from ReviewResult (#160)\n\nReviewResult has an `error` and `change_info` field that should be\r\ncaptured as well."
    },
    {
      "commit": "b85f9f504fc49b2b8a1bfc5f82bb5b16a18c0d57",
      "tree": "4015b5d26ab4c203d8511dac8959c5faee7dd01b",
      "parents": [
        "6478d3098755d4965bf393b8a50ca8ea819a4d6f"
      ],
      "author": {
        "name": "Mike Kelly",
        "email": "mkelly@arista.com",
        "time": "Wed Mar 27 20:15:44 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Mar 27 20:15:44 2024"
      },
      "message": "Change ReviewInput to use map[string]int for labels (#159)\n\n* Change ReviewInput to use map[string]int for labels\r\n\r\nThe example provided at:\r\n\r\nhttps://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#set-review\r\n\r\nuses ints for the label values, not strings.  This change lines\r\nReviewInput up with that example.\r\n\r\n* Fix formatting"
    },
    {
      "commit": "6478d3098755d4965bf393b8a50ca8ea819a4d6f",
      "tree": "32d5cccbb2d8068ddfcf1b3d569189593e45ff87",
      "parents": [
        "235fa610a8767a1c195f00c9c96d0bda4cb4a41a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Jan 13 21:50:56 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jan 13 21:50:56 2024"
      },
      "message": "Bump actions/setup-go from 4 to 5 (#156)\n\nBumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5.\r\n- [Release notes](https://github.com/actions/setup-go/releases)\r\n- [Commits](https://github.com/actions/setup-go/compare/v4...v5)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/setup-go\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "235fa610a8767a1c195f00c9c96d0bda4cb4a41a",
      "tree": "76101658682f26082616a8204b1e1f6994c21bd5",
      "parents": [
        "40e4f30dae8f202610871f0bd83ce59e319d2949"
      ],
      "author": {
        "name": "Roman Mohr",
        "email": "rmohr@google.com",
        "time": "Sat Jan 13 21:50:47 2024"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jan 13 21:50:47 2024"
      },
      "message": "Implement parents_data in RevisionInfo (#157)\n\nIntroduced in https://gerrit-review.git.corp.google.com/c/gerrit/+/376877.\r\n\r\nSigned-off-by: Roman Mohr \u003crmohr@google.com\u003e"
    },
    {
      "commit": "40e4f30dae8f202610871f0bd83ce59e319d2949",
      "tree": "d767c17569aa1ac239ced1f29d2941e6e3ab036b",
      "parents": [
        "89fb5cfd24f3f904c05ac6d7fd259f7d5ad3001a"
      ],
      "author": {
        "name": "Mike Kelly",
        "email": "kellyma@gmail.com",
        "time": "Thu Nov 16 20:22:40 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Nov 16 20:22:40 2023"
      },
      "message": "Add golang context support (#153)\n\nThis is a large cross cutting change to the existing interfaces for\r\ngo-gerrit that introduces context support to all interfaces drilling\r\ndown to the HTTP level.\r\n\r\nContexts enable support for both passing information through (eg:\r\ntracing, logging, etc) and features like cancellation of slow\r\noperations (eg: REST calls).\r\n\r\nIn order for consumers of this breaking change to adapt their code to\r\nuse the new interface they must add a context parameter to their\r\ninvocations.  In most cases this can just be `context.Background()`"
    },
    {
      "commit": "89fb5cfd24f3f904c05ac6d7fd259f7d5ad3001a",
      "tree": "fd710c9a91ead4e2d8ec0c02720dbb037eb26fa8",
      "parents": [
        "f01a53b889d6243f934d5762b40e25f23910d0c3"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Oct 20 15:45:39 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Oct 20 15:45:39 2023"
      },
      "message": "Bump actions/checkout from 3 to 4 (#154)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.\r\n- [Release notes](https://github.com/actions/checkout/releases)\r\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\r\n- [Commits](https://github.com/actions/checkout/compare/v3...v4)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/checkout\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "f01a53b889d6243f934d5762b40e25f23910d0c3",
      "tree": "abcbfdf68d6f00761d91415aa06cf9fd71a378b1",
      "parents": [
        "bed97006069431d718554392589fd227c20ef512"
      ],
      "author": {
        "name": "Luke Granger-Brown",
        "email": "github@lukegb.com",
        "time": "Fri Oct 20 15:19:29 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Oct 20 15:19:29 2023"
      },
      "message": "add more fields to RebaseInput\n\nSee https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#rebase-input.\r\n\r\nGitHub-Pull-Request: https://github.com/andygrunwald/go-gerrit/pull/155"
    },
    {
      "commit": "bed97006069431d718554392589fd227c20ef512",
      "tree": "d0f368fb1478ef5ac14faad678e72dbcbcda73b8",
      "parents": [
        "4f1401b7904a9f655d141a87ddd3ad145e0c5eb3"
      ],
      "author": {
        "name": "Han-Wen Nienhuys",
        "email": "hanwen@google.com",
        "time": "Sun Aug 20 16:54:56 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Aug 20 16:54:56 2023"
      },
      "message": "Support more account operations  (#150)\n\n* Add missing fields in AccountInfo\r\n\r\n* Add AccountService.GetAccountExternalIDs\r\n\r\nAdd the type AccountExternalIdInfo to serve as return value. The\r\nnaming (Id rather than ID) is picked to be consistent with the Gerrit\r\ndocumentation.\r\n\r\n* Add AccountService.QueryAccounts\r\n\r\n---------\r\n\r\nCo-authored-by: Andy Grunwald \u003candygrunwald@gmail.com\u003e"
    },
    {
      "commit": "4f1401b7904a9f655d141a87ddd3ad145e0c5eb3",
      "tree": "d0f368fb1478ef5ac14faad678e72dbcbcda73b8",
      "parents": [
        "8a06083088a04d3af1169872704f7ed001be60ee"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Aug 20 16:40:45 2023"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Aug 20 16:53:31 2023"
      },
      "message": "AccountExternalIdInfo/Accounts.GetAccountExternalIDs: Adjusted docs according the official documentation\n"
    },
    {
      "commit": "8a06083088a04d3af1169872704f7ed001be60ee",
      "tree": "165444f521e4584104f19a6f521c46392caaf25f",
      "parents": [
        "1d229fdf1a01811d8bcc645e621845e25b5cd707"
      ],
      "author": {
        "name": "Han-Wen Nienhuys",
        "email": "hanwen@google.com",
        "time": "Thu Aug 17 13:53:36 2023"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Aug 20 16:53:30 2023"
      },
      "message": "Add AccountService.QueryAccounts\n"
    },
    {
      "commit": "1d229fdf1a01811d8bcc645e621845e25b5cd707",
      "tree": "9526ce3978426fc34a30ea5dea768aa975207bc4",
      "parents": [
        "999473b3d3a30cfc60edbe47f1b56f589915156d"
      ],
      "author": {
        "name": "Han-Wen Nienhuys",
        "email": "hanwen@google.com",
        "time": "Thu Aug 17 13:22:29 2023"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Aug 20 16:53:30 2023"
      },
      "message": "Add AccountService.GetAccountExternalIDs\n\nAdd the type AccountExternalIdInfo to serve as return value. The\nnaming (Id rather than ID) is picked to be consistent with the Gerrit\ndocumentation.\n"
    },
    {
      "commit": "999473b3d3a30cfc60edbe47f1b56f589915156d",
      "tree": "77fad9105a585083b73db75ef5d162bec018693d",
      "parents": [
        "d2361a15852a605f0827b0747bb012cefc29964e"
      ],
      "author": {
        "name": "Han-Wen Nienhuys",
        "email": "hanwen@google.com",
        "time": "Wed Aug 16 14:34:39 2023"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Aug 20 16:53:30 2023"
      },
      "message": "Add missing fields in AccountInfo\n"
    },
    {
      "commit": "d2361a15852a605f0827b0747bb012cefc29964e",
      "tree": "32162e8e3b8ce96762ee88c27fd7c49e0fc8d8a9",
      "parents": [
        "c44fe2fbf2ca68d371739fa1fa81ba01eae1571a"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Fri Aug 18 19:46:27 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Aug 18 19:46:27 2023"
      },
      "message": "Update Go version for testing: Remove 1.19, add 1.21 (#151)\n\n"
    },
    {
      "commit": "c44fe2fbf2ca68d371739fa1fa81ba01eae1571a",
      "tree": "772f629018623713bebc88b6c8ae50bb47346dc5",
      "parents": [
        "2dcb9fb7d605d62258febf91076568b99ca0ff6f"
      ],
      "author": {
        "name": "pastel001",
        "email": "daiwulong1989@126.com",
        "time": "Wed Jun 28 11:56:49 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 28 11:56:49 2023"
      },
      "message": "Add create project\u0027s tag and delete project\u0027s tag and tags (#146)\n\n* Add create project\u0027s tag and delete project\u0027s tag and tags\r\n\r\nChange-Id: I7ddebf587a7d387dd3174e01d621812267b2296f\r\n\r\n* Add unittest\r\n\r\nChange-Id: Iccd1257f39d74a94cfc779cea875ff4c51fcefbc\r\n\r\n* go fmt\r\n\r\nChange-Id: I948ec32df1d99e518aa774dedb19500f3c2bc3b2\r\n\r\n---------\r\n\r\nCo-authored-by: dai-wl \u003cdai-wl@reachauto.com\u003e"
    },
    {
      "commit": "2dcb9fb7d605d62258febf91076568b99ca0ff6f",
      "tree": "2a5edf2766ef7e4e1da54b6aeaf9301fb6e0213e",
      "parents": [
        "423d372345aa2a9dc55ad5f679796df2685bc93e"
      ],
      "author": {
        "name": "Mike Kelly",
        "email": "kellyma@gmail.com",
        "time": "Wed Jun 28 11:55:50 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 28 11:55:50 2023"
      },
      "message": "Add support for project deletion (with plugin) (#147)\n\ndelete-project is one of the blessed gerrit plugins.  This change\r\nenables us to use it to delete existing projects."
    },
    {
      "commit": "423d372345aa2a9dc55ad5f679796df2685bc93e",
      "tree": "98ba357f63eb433d3895582b4ffa5b41b1de35aa",
      "parents": [
        "e9d8f5454eba296d52738004644e4ddaacad3110"
      ],
      "author": {
        "name": "Dmitri Shuralyov",
        "email": "dmitri@shuralyov.com",
        "time": "Mon May 08 07:28:29 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 08 07:28:29 2023"
      },
      "message": "add Comment{Input,Info} fields (#145)\n\nReferences:\r\n\r\n• https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#comment-input\r\n• https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#comment-info"
    },
    {
      "commit": "e9d8f5454eba296d52738004644e4ddaacad3110",
      "tree": "1eed6481d80ed6d6fb2ebe6f60e3cbd2951bfe9b",
      "parents": [
        "da63a5c62d809552c9ad129390d14dfa61438b51"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Tue Apr 04 14:33:19 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 04 14:33:19 2023"
      },
      "message": "Update dependabot.yml: Set interval to monthly"
    },
    {
      "commit": "da63a5c62d809552c9ad129390d14dfa61438b51",
      "tree": "eea65203d093ae0f2214302d34969f5f276f2e56",
      "parents": [
        "34adb1f344d42b68e9259346ede4a406fec15474"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sat Mar 25 08:15:02 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Mar 25 08:15:02 2023"
      },
      "message": "GitHub Actions: Upgrade Ubuntu + Go version and remove Caching"
    },
    {
      "commit": "34adb1f344d42b68e9259346ede4a406fec15474",
      "tree": "46ce2db6e0aa4f421654e490aa7d6e74917d5efc",
      "parents": [
        "cf782c5377ba70973ce5aeed6a08a6a17df2f643"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Mar 25 08:14:22 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Mar 25 08:14:22 2023"
      },
      "message": "Bump actions/setup-go from 3 to 4 (#144)\n\nBumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 4.\r\n- [Release notes](https://github.com/actions/setup-go/releases)\r\n- [Commits](https://github.com/actions/setup-go/compare/v3...v4)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/setup-go\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "cf782c5377ba70973ce5aeed6a08a6a17df2f643",
      "tree": "1df75165f0d901abf587f4a2fb284d88517768bb",
      "parents": [
        "3ee7c8915b4964036042190e68ecca8e35a42abe"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 13 07:11:07 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 13 07:11:07 2023"
      },
      "message": "Bump actions/cache from 3.3.0 to 3.3.1 (#143)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.3.0 to 3.3.1.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.3.0...v3.3.1)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "3ee7c8915b4964036042190e68ecca8e35a42abe",
      "tree": "19b6b01f64999e5a6019a9bd470ab868ccf476a0",
      "parents": [
        "d8651807afddfd01e2c8aff203ae5cb761ea511d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sun Mar 12 14:51:10 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Mar 12 14:51:10 2023"
      },
      "message": "Bump actions/cache from 3.2.6 to 3.3.0 (#142)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.2.6 to 3.3.0.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.2.6...v3.3.0)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-minor\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "d8651807afddfd01e2c8aff203ae5cb761ea511d",
      "tree": "6fade3967d74b3242b29d9333e4e9ff3753ba42b",
      "parents": [
        "8cd0d63a8a536682a4f981406b97c06db2b3e4f8"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Mar 02 19:56:18 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Mar 02 19:56:18 2023"
      },
      "message": "Bump actions/cache from 3.2.5 to 3.2.6 (#140)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.2.5 to 3.2.6.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.2.5...v3.2.6)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "8cd0d63a8a536682a4f981406b97c06db2b3e4f8",
      "tree": "ebb1104136dbd81c1084cebc0704b5826f3fcfaf",
      "parents": [
        "04e01d7217b242821c46ddb8839b48f1ff46f685"
      ],
      "author": {
        "name": "Li-Yu Yu",
        "email": "aaronyu@google.com",
        "time": "Thu Mar 02 19:56:05 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Mar 02 19:56:05 2023"
      },
      "message": "Add GetHashtags/SetHashtags (#141)\n\n"
    },
    {
      "commit": "04e01d7217b242821c46ddb8839b48f1ff46f685",
      "tree": "dd02ef5c7842be0c303e6ff9a1073b29e7541415",
      "parents": [
        "7e1bcf324cc07d145de40d02c90c5fadf0be9076"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sat Feb 11 08:38:16 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Feb 11 08:38:16 2023"
      },
      "message": "Upgrade static check to v2023.1 (#139)\n\n"
    },
    {
      "commit": "7e1bcf324cc07d145de40d02c90c5fadf0be9076",
      "tree": "fc2536d30ea1cb13c1a58d6f1d2360b81b64da84",
      "parents": [
        "7e847d2ee145c2ba96177c59d066e322fcdd852d"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Fri Feb 10 07:32:39 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Feb 10 07:32:39 2023"
      },
      "message": "go mod tidy (#137)\n\n"
    },
    {
      "commit": "7e847d2ee145c2ba96177c59d066e322fcdd852d",
      "tree": "c8f3e44f7ad71279b6c5bdc2a4110039ed437004",
      "parents": [
        "15d9b4422724dbd0b94abacd5824d3100f5c31d6"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Feb 10 07:29:32 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Feb 10 07:29:32 2023"
      },
      "message": "Bump actions/cache from 3.2.4 to 3.2.5 (#136)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.2.4 to 3.2.5.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.2.4...v3.2.5)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "15d9b4422724dbd0b94abacd5824d3100f5c31d6",
      "tree": "3db4322803ecc046137a056b9a4658c7b732fb44",
      "parents": [
        "14e23041d59e53aa350f44ce620e6d039230cbcd"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Feb 08 12:20:44 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Feb 08 12:20:44 2023"
      },
      "message": "Bump dominikh/staticcheck-action from 1.2.0 to 1.3.0 (#132)\n\nBumps [dominikh/staticcheck-action](https://github.com/dominikh/staticcheck-action) from 1.2.0 to 1.3.0.\r\n- [Release notes](https://github.com/dominikh/staticcheck-action/releases)\r\n- [Changelog](https://github.com/dominikh/staticcheck-action/blob/master/CHANGES.md)\r\n- [Commits](https://github.com/dominikh/staticcheck-action/compare/v1.2.0...v1.3.0)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: dominikh/staticcheck-action\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-minor\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "14e23041d59e53aa350f44ce620e6d039230cbcd",
      "tree": "661226aa249836943e301cce37d1cb222c4fbbfc",
      "parents": [
        "9ea5350ab8f4f5cc46f4125bd865891d633cb8a5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Feb 08 12:20:30 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Feb 08 12:20:30 2023"
      },
      "message": "Bump actions/cache from 3.0.11 to 3.2.4 (#134)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.0.11 to 3.2.4.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.0.11...v3.2.4)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-minor\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "9ea5350ab8f4f5cc46f4125bd865891d633cb8a5",
      "tree": "326c73a73a3099d1fd6508e6f46c84c095155944",
      "parents": [
        "952a13da42974b100e5e9f7c1043a72880b8abad"
      ],
      "author": {
        "name": "Tim Wang",
        "email": "weihewang2012@gmail.com",
        "time": "Wed Feb 08 12:20:18 2023"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Feb 08 12:20:18 2023"
      },
      "message": "Add revision kind to RevisionInfo (#135)\n\n"
    },
    {
      "commit": "952a13da42974b100e5e9f7c1043a72880b8abad",
      "tree": "0b949272a5399ee9983679b5454c69efef8a9b3f",
      "parents": [
        "f7262270e3615b8fefc821725cfdf0722921f9cb"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Wed Feb 08 12:17:55 2023"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Wed Feb 08 12:17:55 2023"
      },
      "message": "Upgrade Go versions: Removing v1.18, adding v1.20\n"
    },
    {
      "commit": "f7262270e3615b8fefc821725cfdf0722921f9cb",
      "tree": "a0727190cbf1a72aca203da336dc8bf9811d1d71",
      "parents": [
        "41749a62809298f29d8bdf8b21d946853972ec44"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Oct 19 18:19:18 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Oct 19 18:19:18 2022"
      },
      "message": "Bump actions/cache from 3.0.8 to 3.0.11 (#128)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.0.8 to 3.0.11.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.0.8...v3.0.11)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "41749a62809298f29d8bdf8b21d946853972ec44",
      "tree": "23d9dedfc91a20715d3d4212cf5e5beca185d233",
      "parents": [
        "5de64eef4d8dcf88ac3dd6445fee82a2debdacd3"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Wed Sep 21 16:10:59 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Sep 21 16:10:59 2022"
      },
      "message": "GitHub Actions: Raise Go versions to v1.18 and v1.19 (#125)\n\n* GitHub Actions: Raise Go versions to v1.18 and v1.19\r\n\r\n* GitHub Actions: Only run once on a Pull Request\r\n\r\n* Fix \"package io/ioutil is deprecated\"\r\n\r\npackage io/ioutil is deprecated: As of Go 1.16, the same functionality is now provided by package io or package os, and those implementations should be preferred in new code. See the specific function documentation for details.  (SA1019)\r\n\r\n* go fmt"
    },
    {
      "commit": "5de64eef4d8dcf88ac3dd6445fee82a2debdacd3",
      "tree": "0b4d56caea85101b42ccf02f953d3874715fae99",
      "parents": [
        "2e881e2fb2b535c0c6c49725cf8d9e5b01b9a584"
      ],
      "author": {
        "name": "Li-Yu Yu",
        "email": "afg984@gmail.com",
        "time": "Wed Sep 21 15:54:30 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Sep 21 15:54:30 2022"
      },
      "message": "changes: Add RemoveAttention (#124)\n\n"
    },
    {
      "commit": "2e881e2fb2b535c0c6c49725cf8d9e5b01b9a584",
      "tree": "ddc70b4b7389df73f37f27aedfa2915261bffa71",
      "parents": [
        "4fc99996c8601f809bbd658e87da2fd86b5ff44d"
      ],
      "author": {
        "name": "Daniel Martí",
        "email": "mvdan@mvdan.cc",
        "time": "Sat Sep 17 07:08:46 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Sep 17 07:08:46 2022"
      },
      "message": "apply gofmt, add new fields to ReviewInput (#123)\n\n* apply Go 1.19\u0027s gofmt\r\n\r\nIt fixes up godocs slightly.\r\n\r\n* add new fields to ReviewInput\r\n\r\nIn particular, I need ignore_automatic_attention_set_rules,\r\nbut I\u0027m adding all other missing fields in the struct too.\r\n\r\nI\u0027ve added RecipientType as a named type, as it\u0027s an enum-like string.\r\n\r\n* Add docs for RecipientType\r\n\r\nCo-authored-by: Andy Grunwald \u003candy.grunwald@aiven.io\u003e"
    },
    {
      "commit": "4fc99996c8601f809bbd658e87da2fd86b5ff44d",
      "tree": "54bc0c90305a41f3c0707f0606895366269aab49",
      "parents": [
        "f645b08d7617256516efa7feb52bbd2affe65e8a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Sep 06 19:22:38 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Sep 06 19:22:38 2022"
      },
      "message": "Bump actions/cache from 3.0.7 to 3.0.8 (#121)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.0.7 to 3.0.8.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.0.7...v3.0.8)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "f645b08d7617256516efa7feb52bbd2affe65e8a",
      "tree": "118d85c7a1ddc9fade1660ba6ae2c89056c868dd",
      "parents": [
        "b678d1c3da0372cbb0d614ee6713517262a292b2"
      ],
      "author": {
        "name": "swift",
        "email": "35773579+Seizens@users.noreply.github.com",
        "time": "Tue Sep 06 19:22:26 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Sep 06 19:22:26 2022"
      },
      "message": "add: project commits included in (#122)\n\n"
    },
    {
      "commit": "b678d1c3da0372cbb0d614ee6713517262a292b2",
      "tree": "c22cac54693a0cafac4f394414fadfafd28a7bab",
      "parents": [
        "4861c8ceba6b5271a7475cd44cc52a49a53dc877"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Aug 12 06:37:26 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Aug 12 06:37:26 2022"
      },
      "message": "Bump actions/cache from 3.0.5 to 3.0.7 (#120)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.0.5 to 3.0.7.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.0.5...v3.0.7)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "4861c8ceba6b5271a7475cd44cc52a49a53dc877",
      "tree": "1b69269a25405d70d9c3864a7aadc5c2956e52d5",
      "parents": [
        "28cf26f84eccd633beda21451bedaa91fe86306d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 14 07:07:12 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 14 07:07:12 2022"
      },
      "message": "Bump actions/cache from 3.0.4 to 3.0.5 (#118)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.0.4 to 3.0.5.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.0.4...v3.0.5)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "28cf26f84eccd633beda21451bedaa91fe86306d",
      "tree": "5fe6a431b3dba10cee527d5516a2e01b34937538",
      "parents": [
        "2d5a93b0f5d83a119cfa333fdad34c5fddb71f58"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 08 06:39:06 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 08 06:39:06 2022"
      },
      "message": "Bump actions/cache from 3.0.3 to 3.0.4 (#114)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.0.3 to 3.0.4.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.0.3...v3.0.4)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "2d5a93b0f5d83a119cfa333fdad34c5fddb71f58",
      "tree": "3bedff5a90614442008ab81dd8060e3ebfcbd2a4",
      "parents": [
        "d3e91fbf2db52ebe80abdda2051f8c2774a26d54"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 01 09:34:33 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 01 09:34:33 2022"
      },
      "message": "Bump actions/cache from 3.0.2 to 3.0.3 (#113)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.0.3.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.0.2...v3.0.3)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "d3e91fbf2db52ebe80abdda2051f8c2774a26d54",
      "tree": "a8301e89d0114dd921dd8e1c625d824b16ab68ea",
      "parents": [
        "4bec308719bbdad6fee3ac4ee7b4b16d4eade941"
      ],
      "author": {
        "name": "Ben Clayton",
        "email": "bclayton@google.com",
        "time": "Wed Apr 27 11:13:55 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Apr 27 11:13:55 2022"
      },
      "message": "Add support for Change API\u0027s \"Set Ready-For-Review\" endpoint (#110)\n\n"
    },
    {
      "commit": "4bec308719bbdad6fee3ac4ee7b4b16d4eade941",
      "tree": "c0e24569492cb2782f78ca012dfda9246f6a765b",
      "parents": [
        "5f47610e28546fb23da867caa6cde4765b11cdba"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Apr 11 07:03:29 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 11 07:03:29 2022"
      },
      "message": "Bump actions/cache from 3.0.1 to 3.0.2 (#108)\n\nBumps [actions/cache](https://github.com/actions/cache) from 3.0.1 to 3.0.2.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v3.0.1...v3.0.2)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "5f47610e28546fb23da867caa6cde4765b11cdba",
      "tree": "7d29e808d4517c9e30e4248a9a21aeb641e48a36",
      "parents": [
        "525eecd29744d156145ef219b9d66c4a13d582f3"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Apr 11 07:03:07 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 11 07:03:07 2022"
      },
      "message": "Bump actions/setup-go from 2 to 3 (#109)\n\nBumps [actions/setup-go](https://github.com/actions/setup-go) from 2 to 3.\r\n- [Release notes](https://github.com/actions/setup-go/releases)\r\n- [Commits](https://github.com/actions/setup-go/compare/v2...v3)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/setup-go\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "525eecd29744d156145ef219b9d66c4a13d582f3",
      "tree": "1ecc1c3c5bff6bed3ef1c4815f954df8aa954bef",
      "parents": [
        "b24a96159bbcad96ec4f5ea3b87dd5a8b256a4af"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Apr 04 06:45:45 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 04 06:45:45 2022"
      },
      "message": "Bump dominikh/staticcheck-action from 1.1.0 to 1.2.0 (#107)\n\nBumps [dominikh/staticcheck-action](https://github.com/dominikh/staticcheck-action) from 1.1.0 to 1.2.0.\r\n- [Release notes](https://github.com/dominikh/staticcheck-action/releases)\r\n- [Commits](https://github.com/dominikh/staticcheck-action/compare/v1.1.0...v1.2.0)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: dominikh/staticcheck-action\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-minor\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "b24a96159bbcad96ec4f5ea3b87dd5a8b256a4af",
      "tree": "2fc255017b4b218a2dffb864dc863ff2cb720cff",
      "parents": [
        "79adba8eec764dce060f0c9439b826b56d956e73"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Fri Apr 01 19:11:26 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 01 19:11:26 2022"
      },
      "message": "Escape % character in fm.Fprint (#106)\n\n* Escape % character in fm.Fprint\r\n\r\n* Fix escaping"
    },
    {
      "commit": "79adba8eec764dce060f0c9439b826b56d956e73",
      "tree": "5195f4e3cfd31a11ac6802a14886766130815775",
      "parents": [
        "6928c4fb09ef22e5ef6b55112d19e08290188310"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Apr 01 18:43:27 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 01 18:43:27 2022"
      },
      "message": "Bump actions/checkout from 2 to 3 (#104)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.\r\n- [Release notes](https://github.com/actions/checkout/releases)\r\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\r\n- [Commits](https://github.com/actions/checkout/compare/v2...v3)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/checkout\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "6928c4fb09ef22e5ef6b55112d19e08290188310",
      "tree": "0b8fcd76a53211c07d986b8c515785ff9c7a407e",
      "parents": [
        "90f99d21ae25118c74a7d49fa6ebba81d8eab202"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Apr 01 18:43:14 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 01 18:43:14 2022"
      },
      "message": "Bump actions/cache from 2 to 3.0.1 (#105)\n\nBumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1.\r\n- [Release notes](https://github.com/actions/cache/releases)\r\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\r\n- [Commits](https://github.com/actions/cache/compare/v2...v3.0.1)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: actions/cache\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "90f99d21ae25118c74a7d49fa6ebba81d8eab202",
      "tree": "75876d14fb6c6b063b91e8c844bf06f461bc37c4",
      "parents": [
        "5105eaf91a88ac3d8d413ae4860041b30c5772ba"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Fri Apr 01 18:41:05 2022"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Fri Apr 01 18:41:05 2022"
      },
      "message": "Fix staticcheck in GitHub CI\n"
    },
    {
      "commit": "5105eaf91a88ac3d8d413ae4860041b30c5772ba",
      "tree": "569fbfe935b4e442568d1fa8232feb2db7a6d476",
      "parents": [
        "916b31a0749a762db51d98ef217773745fb6a890"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Fri Apr 01 18:38:55 2022"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Fri Apr 01 18:38:55 2022"
      },
      "message": "Switch CI to only support v1.17 und v1.18\n"
    },
    {
      "commit": "916b31a0749a762db51d98ef217773745fb6a890",
      "tree": "5f2948dd6ca6f13486cbb7aa8917b6a80c52ce21",
      "parents": [
        "918f939c54ca448c21926d2a3e67febf4167198c"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Fri Apr 01 18:38:43 2022"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Fri Apr 01 18:38:43 2022"
      },
      "message": "Configured dependabot\n"
    },
    {
      "commit": "918f939c54ca448c21926d2a3e67febf4167198c",
      "tree": "cd3d744080aa696dc77c2affd1d79420b88b16c4",
      "parents": [
        "ff14d0674afb9b172cf324af84466666c3ac55c9"
      ],
      "author": {
        "name": "xuweiwei",
        "email": "victory_it@163.com",
        "time": "Mon Mar 21 07:23:37 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 21 07:23:37 2022"
      },
      "message": "fix: remove a extra characters in url path (#103)\n\n"
    },
    {
      "commit": "ff14d0674afb9b172cf324af84466666c3ac55c9",
      "tree": "094babfca9aa1a83d589091cfa585ae1c2c99151",
      "parents": [
        "67c934529a81c2e26f71455b75baaa77f4896e0c"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Sep 19 12:51:10 2021"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Sep 19 12:51:10 2021"
      },
      "message": "Groups: Add _more_groups attribute to GroupInfo\n"
    },
    {
      "commit": "67c934529a81c2e26f71455b75baaa77f4896e0c",
      "tree": "a4de07299fa8be3b832ba97db23df2d2721d64a2",
      "parents": [
        "5a2c9c25fb1670f13f245034e52efdf43844f54e"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Sep 19 12:42:08 2021"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Sep 19 12:42:08 2021"
      },
      "message": "Fix #92: Add pagination support for SuggestAccount\n"
    },
    {
      "commit": "5a2c9c25fb1670f13f245034e52efdf43844f54e",
      "tree": "cbe22ee78027bc382c6c45ec876077eec1e70f3f",
      "parents": [
        "024fc51d6e5061add09a591d57a2d7f43c11f6f7"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Sep 19 09:21:31 2021"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Sep 19 09:21:31 2021"
      },
      "message": "New example: Creating a project\n"
    },
    {
      "commit": "024fc51d6e5061add09a591d57a2d7f43c11f6f7",
      "tree": "0efcd0127725563fb269177ed11243f3b59ba743",
      "parents": [
        "3fc80f9a138066777d398c3006915aaee39977fe"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Sep 19 09:21:16 2021"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sun Sep 19 09:21:16 2021"
      },
      "message": "Add section about \"Development\" into README\n"
    },
    {
      "commit": "3fc80f9a138066777d398c3006915aaee39977fe",
      "tree": "c807c83c686325a6af80b8cdd388c5170eee4b7f",
      "parents": [
        "67e5874b2a4a49688a972f7bd0e90358b19dc40d"
      ],
      "author": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sat Sep 18 09:52:20 2021"
      },
      "committer": {
        "name": "Andy Grunwald",
        "email": "andygrunwald@gmail.com",
        "time": "Sat Sep 18 09:52:44 2021"
      },
      "message": "Smaller README rework and example directory\n"
    }
  ],
  "next": "67e5874b2a4a49688a972f7bd0e90358b19dc40d"
}
