)]}'
{
  "log": [
    {
      "commit": "fafe4a06967e06550e69ee42787d9902845d2a3f",
      "tree": "d141a99afcbeac647adc2643798b50b3eb346287",
      "parents": [
        "f53c31601f90c1b840c0703c5537c3ce1e4b6f5c"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Sep 08 05:06:58 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Sep 08 09:29:55 2026 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Ia300e399d4e7fbf4851df32d557f43076adea195\nReviewed-on: https://go-review.googlesource.com/c/text/+/829044\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\n"
    },
    {
      "commit": "f53c31601f90c1b840c0703c5537c3ce1e4b6f5c",
      "tree": "44be007a509a003965c0ccbe3bf095b9c78c6713",
      "parents": [
        "37867f63e497cfa4a4e182c43c2beef75307cdb2"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Wed Aug 26 06:40:11 2026 -0400"
      },
      "committer": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Thu Aug 27 18:29:21 2026 -0700"
      },
      "message": "unicode/norm: don\u0027t truncate runes in the recomposition map key\n\ncombine built its map key as uint32(uint16(a))\u003c\u003c16 + uint32(uint16(b)),\ntruncating both runes to 16 bits. Supplementary-plane runes therefore\naliased BMP entries in both directions: entries whose decomposition uses\na supplementary rune were stored under a truncated key, and lookups with\na supplementary rune found unrelated BMP entries. The result is a\ncomposition that is not canonically equivalent to its input, reachable\nfrom plain BMP text:\n\n\tNFC(U+05D2 U+0307) \u003d U+105C9  // Hebrew gimel + dot above\n\tNFC(U+0300 U+11F41) \u003d U+1F43  // Kawi rune destroyed\n\nThis is not a Unicode 17 regression; it affects the Unicode 15 tables\ntoo, at 15056 two-rune inputs, and 15379 under Unicode 17.\n\nPack each recompMapPacked entry as a big-endian uint64 holding three\n21-bit fields: the two decomposition runes and the composed rune. That\nis wide enough for any rune and keeps the entries at 8 bytes each, so\nthe table size is unchanged.\n\nAn exhaustive scan of every rune followed by every combining or\nbackward-combining rune now reports no output that fails to be\ncanonically equivalent to its input, and NFC is idempotent throughout.\n\nChange-Id: I2795f7d129d7a1adb40e5666f2cd33888935e9fb\nReviewed-on: https://go-review.googlesource.com/c/text/+/822082\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Damien Neil \u003cdneil@google.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\n"
    },
    {
      "commit": "37867f63e497cfa4a4e182c43c2beef75307cdb2",
      "tree": "f6140cb0882a3acaaf332bf31f874476fb3d3164",
      "parents": [
        "0dd525f28d87d6aef1a20b9086dbe034411604c7"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Wed Aug 26 06:25:54 2026 -0400"
      },
      "committer": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Thu Aug 27 18:29:13 2026 -0700"
      },
      "message": "unicode/norm: let any starter block composition in compose\n\nreorderBuffer.compose only refreshed s, the index of the last starter,\ninside the ii.combinesBackward() branch. A rune that does not combine\nbackward therefore left s pointing at whatever starter preceded it, and\nthe next backward-combining mark composed with that stale starter even\nthough an intervening starter should have blocked it.\n\nFor example, NFKC of U+16D68 U+FB01 U+113C2 U+0300 U+0316 decomposes to\nU+16D68 f i U+113C2 U+0316 U+0300. U+0316 does not combine backward, so\ns was left pointing at the \"i\" rather than at the starter U+113C2, and\nU+0300 composed with the \"i\" to give U+00EC, dropping a code point and\nproducing a string that is not canonically equivalent to the input.\n\nUpdate s on every iteration, as combineHangul already does.\n\nFixes golang/go#81001.\n\nChange-Id: I4d2332b4a0c44d60bd0961036391617a728c12df\nReviewed-on: https://go-review.googlesource.com/c/text/+/822081\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Damien Neil \u003cdneil@google.com\u003e\n"
    },
    {
      "commit": "0dd525f28d87d6aef1a20b9086dbe034411604c7",
      "tree": "025b5165ae54dcc6a5018badac982422a3a2977e",
      "parents": [
        "bac26e5be18b99ab58de83689d0c5ad853474c44"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Wed Aug 26 06:24:42 2026 -0400"
      },
      "committer": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Thu Aug 27 18:29:02 2026 -0700"
      },
      "message": "unicode/norm: compose non-Hangul runes after a Hangul syllable\n\nreorderBuffer.compose switches to combineHangul as soon as it sees a\nJamo in the segment, and combineHangul only knows the two algorithmic\nHangul rules: its default case copies the rune through without ever\nconsulting the recomposition table. So once a segment starts with a\nHangul syllable (which decomposes to L V [T], hitting isJamoVT at index\n1), every table-driven composition later in that segment was silently\ndropped.\n\nThis was latent until Unicode 17, which is the first version to add\ncanonical compositions of starter + starter, where the first starter has\nccc\u003d0 and combinesBackward and so has no boundary before it and gets\npulled into the preceding Hangul syllable\u0027s segment. Twelve targets are\naffected: Tulu-Tigalari U+113C5, U+113C7, U+113C8, Gurung Khema\nU+16121-U+16128, and Kirat Rai U+16D68.\n\nFall back to the composition table in combineHangul\u0027s default case,\nmirroring what compose does.\n\nFixes golang/go#81021.\n\nChange-Id: I1a3c343e181aa0f8d19045084c16234d9c4da29f\nReviewed-on: https://go-review.googlesource.com/c/text/+/822080\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nReviewed-by: Damien Neil \u003cdneil@google.com\u003e\n"
    },
    {
      "commit": "bac26e5be18b99ab58de83689d0c5ad853474c44",
      "tree": "6b8449d193c46143313e3057cac12e5da0068fc9",
      "parents": [
        "4f55186fdbf7427403187ca4917e5e90c8c77319"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Wed Jun 24 12:15:45 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Aug 27 10:14:40 2026 -0700"
      },
      "message": "unicode/norm: avoid improper ErrShortDst return in Form.transform\n\nDon\u0027t carry over an ErrShortDst error from one segment to the next.\nUnder some quite specific circumstances, this can result in\ntransform returning ErrShortDst after fully processing the source.\n\nChange-Id: I85b4d7bb858f69c88c16d3eb63e815056a6a6964\nReviewed-on: https://go-review.googlesource.com/c/text/+/794103\nReviewed-by: Neal Patel \u003cneal@golang.org\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Neal Patel \u003cnealpatel@google.com\u003e\nAuto-Submit: Damien Neil \u003cdneil@google.com\u003e\n"
    },
    {
      "commit": "4f55186fdbf7427403187ca4917e5e90c8c77319",
      "tree": "20cb9a417d496ad1ce4c7b5f5d846b75a44815b0",
      "parents": [
        "a1b6c107023d93f825dd61b667786761d3114091"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Wed Jun 24 09:47:15 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Aug 27 10:14:36 2026 -0700"
      },
      "message": "unicode/norm: simplify short source detection in Form.transform\n\nForm.transform returns ErrShortSrc when not all source bytes\nhave been processed:\n\n\tif err \u003d\u003d nil \u0026\u0026 n \u003c rb.nsrc \u0026\u0026 !atEOF {\n\t\terr \u003d transform.ErrShortSrc\n\t}\n\nSimplify this check to check whether all bytes in src have been\nprocessed (in which case the Transformer interface says we need\nto return ErrShortSrc):\n\n\tif err \u003d\u003d nil \u0026\u0026 nSrc \u003c rb.nsrc {\n\t\terr \u003d transform.ErrShortSrc\n\t}\n\nThis change has no actual practical effect.\n\nChanging n (number of bytes handled in the current iteration)\nto nSrc (total number of bytes handled) looks like a bugfix,\nsince we don\u0027t want to return ErrShortSrc just because\nwe ran for more than one iteration.\n\nHowever, when atEOF\u003d\u003dfalse, Form.transform never processes\nits complete input (Because quickSpan won\u0027t process *its*\ncomplete input except when at EOF, I believe because it\u0027s\nwaiting to see if any future characters combine with the\ncurrent input suffix.) It always returns ErrShortSrc\nwith or without this change.\n\nDropping !atEOF looks like it would cause us to return\nErrShortSrc when at EOF and not processing all source\ncharacters (which would be correct behavior), but\nForm.transform always processes the complete source when at EOF.\n\nTo summarize: This change is a complete no-op, but the\ncode is simpler, more obviously correct, and more robust\nto future changes elsewhere. (For example, if something\ncauses Form.transform to fail to process the complete source\nwhen at EOF, it will now correctly return ErrShortSrc.)\n\nChange-Id: Id76f3dea328ac8407936adfcfb14b1066a6a6964\nReviewed-on: https://go-review.googlesource.com/c/text/+/794102\nReviewed-by: Neal Patel \u003cnealpatel@google.com\u003e\nReviewed-by: Neal Patel \u003cneal@golang.org\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nAuto-Submit: Damien Neil \u003cdneil@google.com\u003e\n"
    },
    {
      "commit": "a1b6c107023d93f825dd61b667786761d3114091",
      "tree": "cf2b3db0397f6d5573404a5d6e444a4d69d16d39",
      "parents": [
        "cd1cbc9d9be58f249a412746c9dcbe9bf3c97dae"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Wed Jun 24 09:31:47 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Aug 27 10:14:30 2026 -0700"
      },
      "message": "unicode/norm: prevent decomposeSegment from moving backwards\n\ndecomposeSegment is called with a position index sp,\nand returns a new position index or an error.\nErrors (iShortDst, iShortSrc) are encoded as negative position indices.\n\nWhen the first character examined by decomposeSegment is invalid,\nit returns 0, which is not an error and could cause the caller\u0027s\nposition to move backwards.\n\nThis doesn\u0027t seem to be possible to trigger at this time, since callers\nnever call decomposeSegment with a leading invalid character.\nIn the interest of robustness, make decomposeSegment consume one character\nwhen the first character is invalid.\n\nChange-Id: I1bd7cc4af590c59344581223fe4d560c6a6a6964\nReviewed-on: https://go-review.googlesource.com/c/text/+/794101\nReviewed-by: Neal Patel \u003cneal@golang.org\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Neal Patel \u003cnealpatel@google.com\u003e\nAuto-Submit: Damien Neil \u003cdneil@google.com\u003e\n"
    },
    {
      "commit": "cd1cbc9d9be58f249a412746c9dcbe9bf3c97dae",
      "tree": "adaef9e89e5d0c27cc400d9b6b030337c320d992",
      "parents": [
        "a459614d3591674f5af99e2ad671c69569dac9c2"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Thu Aug 20 12:56:42 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Aug 24 13:53:52 2026 -0700"
      },
      "message": "unicode/bidi: panic rather than log.Panicf\n\nNot much of a change in binary size, but there\u0027s no reason for\nthis package to pull in the log package.\n\nFor #38311\n\nChange-Id: I9adc4b2b6cfadd05a2fe7a1119faac6e6a6a6964\nReviewed-on: https://go-review.googlesource.com/c/text/+/818803\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nAuto-Submit: Damien Neil \u003cdneil@google.com\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Russ Cox \u003crsc@golang.org\u003e\n"
    },
    {
      "commit": "a459614d3591674f5af99e2ad671c69569dac9c2",
      "tree": "318c1391eeddd888f045c2e64f9fd6b00bf756ee",
      "parents": [
        "be70a610fdb69124f7538dc0216d396d0f2556b9"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Thu Aug 20 09:33:23 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Aug 24 13:53:47 2026 -0700"
      },
      "message": "internal/export/idna: fix conformance with optional validation disabled\n\nRun the 17.0.0 IdnaTestV2.txt conformance tests with all optional\nvalidation features disabled:\n\n\tVerifyDnsLength\n\tCheckHyphens\n\tCheckJoiners\n\tCheckBidi\n\tUseSTD3ASCIIRules\n\nFix some cases where disabling validation incorrectly accepted\ninvalid inputs unrelated to the disabled flag.\n\nProcessing step 4: A label starting with \"xn--\" must not encode an\nempty label. This was not enforced, but testing with VerifyDnsLength\n(which disallows any empty label) masked the problem.\n\nValidity criteria 4: When CheckHyphens is false,\na label must not begin with \"xn--\".\nThis was not enforced, but we never tested with CheckHyphens set to false.\n\nValidity criteria 6: A label must not begin with a combining mark.\nThis was only enforced when CheckJoiners was set to true.\n\nFor golang/go#74330\n\nChange-Id: I70e3c41cd9fa5fc32295303d359d7d936a6a6964\nReviewed-on: https://go-review.googlesource.com/c/text/+/818802\nAuto-Submit: Damien Neil \u003cdneil@google.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nReviewed-by: Russ Cox \u003crsc@golang.org\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "be70a610fdb69124f7538dc0216d396d0f2556b9",
      "tree": "cca40b181a4a942cab09cab36841cb5e92969773",
      "parents": [
        "472930df606c57291c1e052273213ca8e45c7309"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Thu Aug 20 11:15:28 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Aug 24 13:41:56 2026 -0700"
      },
      "message": "internal/export/idna: drop trie field from Profiles\n\nThe initial implementation of this package appears to have\nintended to permit using the Punycode profile (which only\nencodes/decodes Punycode) without linking in the Unicode\nmapping tables.\n\nIt does not appear to be currently possible to use the package\nwithout linking in the Unicode tables, and it isn\u0027t clear if\nit ever was. The exported Lookup, Display, and Registration\nprofiles reference the package-level trie. Almost all functions\nin reference the package-level trie.\n\nIn fact, the only function that uses Profile.trie is\nProfile.validateLabel, and it does so only after already\nreferencing the package-level trie.\n\nRemove the Profile.trie field, since it serves no purpose.\n\nChange-Id: I9b3e2fd66a06fa6fd694abbcd298edec6a6a6964\nReviewed-on: https://go-review.googlesource.com/c/text/+/818801\nReviewed-by: Russ Cox \u003crsc@golang.org\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nAuto-Submit: Damien Neil \u003cdneil@google.com\u003e\n"
    },
    {
      "commit": "472930df606c57291c1e052273213ca8e45c7309",
      "tree": "79a4e8e385642a6a43d06c67163d126aefabc59e",
      "parents": [
        "dac6be3876335b7e1d2ea7d209d9bfb930306291"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Thu Aug 20 12:35:42 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Aug 24 13:23:29 2026 -0700"
      },
      "message": "internal/export/idna: make TestTables pass with Go 1.26\n\nSlightly different location for the conformance test file.\nFix up a few error codes to match what Unicode 15.0.0 expects.\nSkip two remaining test failures (which we can either fix,\nor ignore until Go 1.28 comes out and no supported version\nof Go uses 15.0.0.)\n\nChange-Id: I5e5623695345985c4372af2a1b2a03216a6a6964\nReviewed-on: https://go-review.googlesource.com/c/text/+/818800\nReviewed-by: Russ Cox \u003crsc@golang.org\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nAuto-Submit: Damien Neil \u003cdneil@google.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\n"
    },
    {
      "commit": "dac6be3876335b7e1d2ea7d209d9bfb930306291",
      "tree": "bbe3ed84bb25468a55fba4cbf93710714b9e7b1d",
      "parents": [
        "91daecbb061baa9d835f3a3cc130b9d58ce912c5"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Aug 19 16:59:40 2026 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Aug 19 10:28:46 2026 -0700"
      },
      "message": "all: upgrade go directive to at least 1.26.0 [generated]\n\nBy now Go 1.27.0 has been released, and Go 1.25 is no longer supported\nper the Go Release Policy (see https://go.dev/doc/devel/release#policy).\n\nSee https://go.dev/doc/godebug#go-126 for GODEBUG setting changes\nrelevant to Go 1.26.\n\nFor golang/go#69095.\n\n[git-generate]\n(cd . \u0026\u0026 go get go@1.26.0 \u0026\u0026 go mod tidy)\n\nChange-Id: I5336551450321452274148aaeb2fe8ad5a4fecdb\nReviewed-on: https://go-review.googlesource.com/c/text/+/817921\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Carlos Amedee \u003ccarlos@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\n"
    },
    {
      "commit": "91daecbb061baa9d835f3a3cc130b9d58ce912c5",
      "tree": "305f5813e6f6d930aa535b2f6a3434e1dcd6c71a",
      "parents": [
        "acdba6655fd45cdb5ab73c9d6a8981333bd65a39"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Tue Aug 11 13:53:51 2026 -0700"
      },
      "committer": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Tue Aug 11 16:52:22 2026 -0700"
      },
      "message": "encoding/japanese: document that decoding follows RFC 2237, not WHATWG\n\nChange-Id: I5028445a75bc87dd01b4130d0541bac06a6a6964\nReviewed-on: https://go-review.googlesource.com/c/text/+/813480\nReviewed-by: Nicholas Husin \u003chusin@google.com\u003e\nReviewed-by: Nicholas Husin \u003cnsh@golang.org\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "acdba6655fd45cdb5ab73c9d6a8981333bd65a39",
      "tree": "250c4563a9dc8337f5d1a135b5bce96590a007cd",
      "parents": [
        "02aa981a75cb366b39e71729b935c15a7b4e146a"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Sat Aug 08 05:01:53 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Aug 11 08:22:47 2026 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Ide89bcc1f833bf050be936ac0493052217f4cb7a\nReviewed-on: https://go-review.googlesource.com/c/text/+/812220\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: Mark Freeman \u003cmarkfreeman@google.com\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "02aa981a75cb366b39e71729b935c15a7b4e146a",
      "tree": "c9453326423a4c03e8ba8c20c03e205ded852408",
      "parents": [
        "724af9c35838492dcaacc1ac51a8a0187c994c54"
      ],
      "author": {
        "name": "Ian Alexander",
        "email": "jitsu@google.com",
        "time": "Mon Jun 22 23:05:39 2026 -0400"
      },
      "committer": {
        "name": "Mark Freeman",
        "email": "markfreeman@google.com",
        "time": "Wed Aug 05 13:15:38 2026 -0700"
      },
      "message": "secure/precis: fix short destination buffer handling in Nickname profile\n\nThe additional mapping rule for the Nickname profile (RFC 8266) requires\ncollapsing interior sequences of spaces. The Transform implementation\nwas writing an interior space to the destination buffer without first\nchecking if there was enough space for both the space and the next rune.\n\nThis change ensures that transform.ErrShortDst is returned if the\ndestination buffer is too small, preventing potential out-of-bounds\nwrites or incomplete copies.\n\nThanks to Omkhar Arasaratnam (GitHub: omkhar) for reporting this issue.\n\nFixes CVE-2026-56851\nFixes golang/go#80112\n\nChange-Id: I51c8dcc58a5b8fd1002f2cdd832698651db89a15\nReviewed-on: https://go-review.googlesource.com/c/text/+/793360\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Damien Neil \u003cdneil@google.com\u003e\n"
    },
    {
      "commit": "724af9c35838492dcaacc1ac51a8a0187c994c54",
      "tree": "68657c3895d23b20144d9af673f50e5d2d0ee9c3",
      "parents": [
        "bf5b9d658a03d36bd3459b3babdb23a9f56038cb"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Jul 08 05:06:04 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Jul 08 08:41:08 2026 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Id29cebafe678ffcb7989daa2f6ab09c140331d16\nReviewed-on: https://go-review.googlesource.com/c/text/+/798160\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\n"
    },
    {
      "commit": "bf5b9d658a03d36bd3459b3babdb23a9f56038cb",
      "tree": "09e36981516993643d8cfef5c27ed43252285bc9",
      "parents": [
        "b326f3d3c814ab79b3c516f4ac03c2314d8df65f"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Mon Jun 29 17:25:33 2026 -0700"
      },
      "committer": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Tue Jul 07 15:13:06 2026 -0700"
      },
      "message": "internal/export/idna: always treat Punycode encoding pure ASCII as an error\n\nUTS 46 revision 33 specifies that it is an error for a Punycode label to\nencode an ASCII-only string, such as \"xn--example-.com\" encoding\n\"example.com\".\n\nEarlier versions of UTS 46 contained a specification bug which\npermitted this.\n\nDon\u0027t make the fix conditional on the Go toolchain version;\nwe should never accept these labels.\n\nFor golang/go#78760\n\nChange-Id: I93beac3f44251e68a7faa3ea8b5963526a6a6964\nReviewed-on: https://go-review.googlesource.com/c/text/+/796420\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Nicholas Husin \u003cnsh@golang.org\u003e\nReviewed-by: Nicholas Husin \u003chusin@google.com\u003e\n"
    },
    {
      "commit": "b326f3d3c814ab79b3c516f4ac03c2314d8df65f",
      "tree": "ab19ca8f125e380593bbdb656fb7ebc47fb34578",
      "parents": [
        "5ae8e578e495731553eddba11b2d0e86c91a00ce"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Jun 29 14:37:06 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Jun 30 13:39:37 2026 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Icd8111558920500ab70d6e2e38c4cd8ead043f5a\nReviewed-on: https://go-review.googlesource.com/c/text/+/795500\nReviewed-by: Damien Neil \u003cdneil@google.com\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "5ae8e578e495731553eddba11b2d0e86c91a00ce",
      "tree": "322c1e3e33909ef4bcaaec2b642a1a6721747781",
      "parents": [
        "0dc94a239c8bc3b7ef3aa0d059e54af960f459f4"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Tue Apr 14 21:46:24 2026 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri Jun 26 12:27:07 2026 -0700"
      },
      "message": "unicode/norm: avoid infinite loop on invalid input\n\nInvalid characters are given a Properties with a size of 0.\n\nThe nextComposed function can enter an infinite loop when\nencountering an invalid character, since it advances\nits input by the (possibly 0) character size.\n\nRather than finding every place which might assume characters\nhave a non-zero size, change compInfo to return a size-1\nProperties for invalid characters and use the property flags\nto record validity.\n\nFixes golang/go#80142\n\nChange-Id: Ie0791faefeddc1e8f671b0ed73f29e906a6a6964\nReviewed-on: https://go-review.googlesource.com/c/text/+/794100\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nAuto-Submit: Damien Neil \u003cdneil@google.com\u003e\nReviewed-by: Neal Patel \u003cneal@golang.org\u003e\nReviewed-by: Neal Patel \u003cnealpatel@google.com\u003e\n"
    },
    {
      "commit": "0dc94a239c8bc3b7ef3aa0d059e54af960f459f4",
      "tree": "2a5a5f3f0656875685904ba41cb301cfd40bc437",
      "parents": [
        "f4bb6328041b090f85b93014bd369edfcd24bdef"
      ],
      "author": {
        "name": "cuishuang",
        "email": "imcusg@gmail.com",
        "time": "Tue Oct 21 10:44:50 2025 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Jun 15 10:01:27 2026 -0700"
      },
      "message": "all: fix some comments\n\nChange-Id: Ic2005390185150566bbd791ccc5661d216a648ee\nReviewed-on: https://go-review.googlesource.com/c/text/+/713440\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "f4bb6328041b090f85b93014bd369edfcd24bdef",
      "tree": "9c3570f2084ed3d044736d96e533515599aa86db",
      "parents": [
        "3ef517e623a4bfc08d6457f87d73afda7af7d8e1"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Jun 08 05:02:27 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Jun 08 08:10:20 2026 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Ifd5a045d97093611d3d2b9e114e95d5253edbf01\nReviewed-on: https://go-review.googlesource.com/c/text/+/788100\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\n"
    },
    {
      "commit": "3ef517e623a4bfc08d6457f87d73afda7af7d8e1",
      "tree": "db1e55788e490fd722eb72363e4dd73e95edb05d",
      "parents": [
        "8577a70117e110160c45f32af0e0df84eef844f7"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri May 08 05:02:14 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri May 08 07:56:42 2026 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Idc86e9c9e933dd8c032a0a9a3e992987cad72226\nReviewed-on: https://go-review.googlesource.com/c/text/+/775681\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\nLUCI-TryBot-Result: golang-scoped@luci-project-accounts.iam.gserviceaccount.com \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\n"
    },
    {
      "commit": "8577a70117e110160c45f32af0e0df84eef844f7",
      "tree": "c9527ef86fa23ec73708ab7addafb0d00dbc8a83",
      "parents": [
        "7ca2c6d99153f6456168837916829c735c67d355"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Apr 08 05:02:00 2026 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Apr 09 04:43:05 2026 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I2a85b88d5955ee3e4c154262c64593197c829bda\nReviewed-on: https://go-review.googlesource.com/c/text/+/763522\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "7ca2c6d99153f6456168837916829c735c67d355",
      "tree": "8439bdbb0230c49d3ef28a9afe6ceea67105d6ed",
      "parents": [
        "73d1ba91404d0de47cb6a9b3fb52a31565ca4d25"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Sun Mar 08 04:02:32 2026 -0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Mar 09 18:41:36 2026 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I505b26ab0d0db293e905fe6755d411095dd04690\nReviewed-on: https://go-review.googlesource.com/c/text/+/752821\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\n"
    },
    {
      "commit": "73d1ba91404d0de47cb6a9b3fb52a31565ca4d25",
      "tree": "25a42102e1cee0acd1045e78d2e9ba774994dfd2",
      "parents": [
        "817fba9abd337b4d9097b10c61a540c74feaaeff"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Feb 11 18:54:25 2026 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Feb 11 11:09:41 2026 -0800"
      },
      "message": "all: upgrade go directive to at least 1.25.0 [generated]\n\nBy now Go 1.26.0 has been released, and Go 1.24 is no longer supported\nper the Go Release Policy (see https://go.dev/doc/devel/release#policy).\n\nSee go.dev/doc/godebug#go-125 for GODEBUG changes relevant to Go 1.25.\n\nFor golang/go#69095.\n\n[git-generate]\n(cd . \u0026\u0026 go get go@1.25.0 \u0026\u0026 go mod tidy)\n\nChange-Id: Ifbd75b274421a1d1985c492ab1c93b0116467942\nReviewed-on: https://go-review.googlesource.com/c/text/+/744601\nReviewed-by: Michael Pratt \u003cmpratt@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Junyang Shao \u003cshaojunyang@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "817fba9abd337b4d9097b10c61a540c74feaaeff",
      "tree": "2050e4923f845f9027e09346f6c9138f9419759f",
      "parents": [
        "3264de9174be11be843825a6dae979beffb483a2"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Sun Feb 08 04:01:59 2026 -0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Feb 09 08:14:29 2026 -0800"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I15940ae7657ea118f6e8afe8b24d52bbb0118fa3\nReviewed-on: https://go-review.googlesource.com/c/text/+/743121\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "3264de9174be11be843825a6dae979beffb483a2",
      "tree": "ea0f12395870cabb4ae595615025d4e769fa7d2b",
      "parents": [
        "74af29835a6da65bf18d985619fa645e04a01549"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Thu Jan 22 15:16:34 2026 -0500"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Jan 22 14:51:19 2026 -0800"
      },
      "message": "all: clean up old Go hacks\n\nWe are not maintaining pre-Go 1.24 code anymore,\nand certainly not pre-Go 1.16 or pre-Go 1.9 code.\n\nChange-Id: Idd3a1fd476f8eb34b8fbb6352addb5955e6b5893\nReviewed-on: https://go-review.googlesource.com/c/text/+/738582\nAuto-Submit: Russ Cox \u003crsc@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Roland Shoemaker \u003croland@golang.org\u003e\n"
    },
    {
      "commit": "74af29835a6da65bf18d985619fa645e04a01549",
      "tree": "b3289d5b79e8ba4c6257f2169ba622d820ce778a",
      "parents": [
        "117e03b3060d70a9f514eef78f07e5210cc44a4c"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Thu Jan 22 15:10:48 2026 -0500"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Jan 22 14:13:28 2026 -0800"
      },
      "message": "all: fix tags in remaining Unicode tables\n\nUpdate internal/gen/gen.go and then\nUNICODE_VERSION\u003d17.0.0 go generate\n\nChange-Id: I9f1cbc089e1a0d89687c7c53f1c157f70a51d8f0\nReviewed-on: https://go-review.googlesource.com/c/text/+/738581\nAuto-Submit: Russ Cox \u003crsc@golang.org\u003e\nReviewed-by: Roland Shoemaker \u003croland@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "117e03b3060d70a9f514eef78f07e5210cc44a4c",
      "tree": "89b9dfaf201ed351675acdf0f17997b095df92fc",
      "parents": [
        "9463ea4393e969a59c7a0af1b497b4361ff1dc52"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Thu Jan 22 14:59:27 2026 -0500"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Jan 22 14:11:59 2026 -0800"
      },
      "message": "all: delete old Unicode tables\n\ngit rm `{git grep -l -E \u0027!go1.(9|1|2[0123])\u0027 | grep -v internal/gen}\n\nThe go.mod for this repo requires Go 1.24, so remove the code\nthat is only here for older versions.\n\nChange-Id: I29b5fbc697b34139adc2fb3d8752dbaddfdb3480\nReviewed-on: https://go-review.googlesource.com/c/text/+/738580\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Roland Shoemaker \u003croland@golang.org\u003e\nAuto-Submit: Russ Cox \u003crsc@golang.org\u003e\n"
    },
    {
      "commit": "9463ea4393e969a59c7a0af1b497b4361ff1dc52",
      "tree": "1bccd4b62131fbc58cad628a36c65f0e2f29cb3f",
      "parents": [
        "7278b25aaff94e106b7de0bfaaa4a1861d3b3c89"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Fri Jan 16 16:15:53 2026 -0500"
      },
      "committer": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Thu Jan 22 13:57:30 2026 -0800"
      },
      "message": "all: update to Unicode 17\n\nManual edits in internal/gen/gen.go and internal/export/idna\u0027s file URLs\n(Unicode 17 moved the IDNA files.)\n\nEverything else is UNICODE_VERSION\u003d17.0.0 go generate.\n\nFor golang/go#77266.\n\nChange-Id: I38738aab7775471c51464b20d1f34fc53d50797d\nReviewed-on: https://go-review.googlesource.com/c/text/+/737404\nReviewed-by: Roland Shoemaker \u003croland@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "7278b25aaff94e106b7de0bfaaa4a1861d3b3c89",
      "tree": "bb5167fc8a12f93904cab76425de9b6c3e3a8441",
      "parents": [
        "f964ad80f9e4185588298009b5195d8ecfe34d1b"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Fri Jan 16 16:05:18 2026 -0500"
      },
      "committer": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Thu Jan 22 13:17:17 2026 -0800"
      },
      "message": "internal/export/idna: update for post-Unicode 10 idna changes\n\nUnicode 11 changed the test file format, and we\u0027ve never updated\nto the new format nor kept up with algorithmic changes.\n\nUnicode 16 dropped the disallowed_STD3 variants from the\nIdnaMappingTable.txt file and made more algorithmic changes.\n\nUpdate to the new test format and implement the new algorithm.\nNote that unicode16 is a constant, so disabled version-specific\ncode is dead code.\n\nFor golang/go#77266.\n\nChange-Id: Ic9d0a6a7a5922c12383de12264c2a6d38b951047\nReviewed-on: https://go-review.googlesource.com/c/text/+/737402\nReviewed-by: Roland Shoemaker \u003croland@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "f964ad80f9e4185588298009b5195d8ecfe34d1b",
      "tree": "e0b7ed2d76294e6be7d3f0a2c54237390dc3c128",
      "parents": [
        "678d34e5c1bfbefd51bbd8e6a639744c36be73fd"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Fri Jan 16 14:00:28 2026 -0500"
      },
      "committer": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Thu Jan 22 13:17:04 2026 -0800"
      },
      "message": "internal/export/idna: delete old code\n\nThe go.mod for this repo requires Go 1.24, so remove the code\nthat is tagged with earlier Go versions. In general we could do\nthis across the repo. I\u0027m doing it here because I was confused\nby the idna10.0.0 vs idna9.0.0 split, which is more unusual\nthan the usual per-version tables. But since we\u0027re deleting things,\ndelete the too-old tables too.\n\nFor golang/go#77266.\n\nChange-Id: Icc22b54fa976136142bda1c8917458c4595427b3\nReviewed-on: https://go-review.googlesource.com/c/text/+/737401\nReviewed-by: Roland Shoemaker \u003croland@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "678d34e5c1bfbefd51bbd8e6a639744c36be73fd",
      "tree": "1f988d5df9b5929057217ec91f4f5c5eb644ceb5",
      "parents": [
        "536231a9abc69feaab8d726b5ec75ee8d3620829"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Fri Jan 16 13:11:49 2026 -0500"
      },
      "committer": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Thu Jan 22 13:16:56 2026 -0800"
      },
      "message": "unicode/norm: preserve QC Maybe bit in packed forminfo\n\nThe bit packing for runes with decompositions assumed that\nQC Maybe cannot happen and only stored the yes/no bit,\nnot the maybe bit. Squeeze the length from 6 to 5 bits to\nmake room for saving the maybe bit too. This has no effect\nin Unicode 15 but will be needed for Unicode 16.\n\nFor golang/go#77266.\n\nChange-Id: I377a0fc7af218ef5a481139b788fbb8b1e3980fb\nReviewed-on: https://go-review.googlesource.com/c/text/+/737400\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Roland Shoemaker \u003croland@golang.org\u003e\n"
    },
    {
      "commit": "536231a9abc69feaab8d726b5ec75ee8d3620829",
      "tree": "2697afb345a98c244f97c5c1b10cf25b6380e245",
      "parents": [
        "0dd57a6ef90c283b902525213f15d6b2a59cc84b"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Jan 08 04:02:25 2026 -0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri Jan 09 13:00:41 2026 -0800"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Ie059a5ccc0b4463719a6fdf3ef602d605b6adbed\nReviewed-on: https://go-review.googlesource.com/c/text/+/734800\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\nReviewed-by: Junyang Shao \u003cshaojunyang@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "0dd57a6ef90c283b902525213f15d6b2a59cc84b",
      "tree": "0b50f2a7226f1572f89520514d0d5f3b0a83c67f",
      "parents": [
        "087616b6cde9434a9f6f788f4fe975b40651be26"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Dec 08 04:02:30 2025 -0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Dec 08 08:57:43 2025 -0800"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I22f39c618b0287a37b6844c5ed0d8b0c5ebf69e9\nReviewed-on: https://go-review.googlesource.com/c/text/+/728001\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "087616b6cde9434a9f6f788f4fe975b40651be26",
      "tree": "ae564543a260a15dfa72cc8932785b3fe232aa05",
      "parents": [
        "16f85a7ff268a4e26c78cf3c4202152a7a1d6d90"
      ],
      "author": {
        "name": "Dmitri Shuralyov",
        "email": "dmitshur@golang.org",
        "time": "Fri Nov 28 13:07:39 2025 -0500"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri Nov 28 14:06:01 2025 -0800"
      },
      "message": "transform: fix %q verb use with wrong type\n\nCaught early by the improved vet check gated behind the 1.26 language\nversion combined with a tiplang builder that tests with 1.26 language\nversion.\n\nChange-Id: If22c0f81d35d7266f05bf5481439db46ea889b25\nCq-Include-Trybots: luci.golang.try:x_text-gotip-linux-amd64-tiplang\nReviewed-on: https://go-review.googlesource.com/c/text/+/725061\nAuto-Submit: Alan Donovan \u003cadonovan@google.com\u003e\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: Alan Donovan \u003cadonovan@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nCommit-Queue: Alan Donovan \u003cadonovan@google.com\u003e\n"
    },
    {
      "commit": "16f85a7ff268a4e26c78cf3c4202152a7a1d6d90",
      "tree": "50f60cce4047a807cbdc125add982bc2eee135d7",
      "parents": [
        "e7ff6b3572e1a83c072ef150c985f86603986e1b"
      ],
      "author": {
        "name": "Sean Liao",
        "email": "sean@liao.dev",
        "time": "Sun Oct 26 13:59:06 2025 +0000"
      },
      "committer": {
        "name": "Sean Liao",
        "email": "sean@liao.dev",
        "time": "Fri Nov 14 12:24:27 2025 -0800"
      },
      "message": "all: eliminate vet diagnostics\n\nFor golang/go#74011\n\nChange-Id: Ib98bdd5ff547879d6695cec2f3cb40b52baac736\nReviewed-on: https://go-review.googlesource.com/c/text/+/714223\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: Junyang Shao \u003cshaojunyang@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "e7ff6b3572e1a83c072ef150c985f86603986e1b",
      "tree": "e6d69b6eefec26e4443b865f846c0c719c3f1269",
      "parents": [
        "fbf012b8c1140cde0210e241356553d0000332e8"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Sat Nov 08 04:02:09 2025 -0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Nov 11 07:05:00 2025 -0800"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Idb134cb77e5e6a1c16ceb6412234937af016c653\nReviewed-on: https://go-review.googlesource.com/c/text/+/718980\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\n"
    },
    {
      "commit": "fbf012b8c1140cde0210e241356553d0000332e8",
      "tree": "e70cefcf138ebabd17ecd3da8f818e1e5ae6d752",
      "parents": [
        "c6abd0305e90ada9293824462268d0ec20d02e5e"
      ],
      "author": {
        "name": "cuishuang",
        "email": "imcusg@gmail.com",
        "time": "Sun Oct 05 16:11:38 2025 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri Oct 24 11:42:22 2025 -0700"
      },
      "message": "all: use reflect.TypeFor instead of reflect.TypeOf\n\nFor golang/go#60088.\n\nChange-Id: Ifbea6ba534dd6037dff028c0a52b210fc0076ae1\nReviewed-on: https://go-review.googlesource.com/c/text/+/709196\nReviewed-by: Sean Liao \u003csean@liao.dev\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nAuto-Submit: Sean Liao \u003csean@liao.dev\u003e\n"
    },
    {
      "commit": "c6abd0305e90ada9293824462268d0ec20d02e5e",
      "tree": "ac7af94411ca4a65765af558c65cdabae49d0826",
      "parents": [
        "42f038dad6d204bacd83c23ca0f312d8866039ce"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Oct 08 05:01:53 2025 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Oct 08 08:25:01 2025 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I325df01d59743d807da87a0ae9bf8e224af211c4\nReviewed-on: https://go-review.googlesource.com/c/text/+/710076\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "42f038dad6d204bacd83c23ca0f312d8866039ce",
      "tree": "916adf8675b306e55ffd328cda9b5000600c3a6f",
      "parents": [
        "a42f0e2da638996f313ef6dbbe3a4435533fbd97"
      ],
      "author": {
        "name": "Nicola Murino",
        "email": "nicola.murino@gmail.com",
        "time": "Mon Nov 27 11:38:36 2023 +0100"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Sep 23 11:50:20 2025 -0700"
      },
      "message": "x/text: fix nil dereference in gotext extract\n\nIdent.Obj may be nil if the referenced declaration is in another file.\n\nFixes golang/go#60555\n\nChange-Id: I730af89c7f52540b305b3da8c19448d089e9744c\nReviewed-on: https://go-review.googlesource.com/c/text/+/545055\nReviewed-by: Emmanuel Odeke \u003cemmanuel@orijtech.com\u003e\nReviewed-by: Junyang Shao \u003cshaojunyang@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Sean Liao \u003csean@liao.dev\u003e\nAuto-Submit: Emmanuel Odeke \u003cemmanuel@orijtech.com\u003e\nReviewed-by: Michael Knyszek \u003cmknyszek@google.com\u003e\n"
    },
    {
      "commit": "a42f0e2da638996f313ef6dbbe3a4435533fbd97",
      "tree": "7f2a2a6939405b7078fb07e5f923040d461c259e",
      "parents": [
        "e69f31bf9cf2f46bd3325bc9bad37fe9001731c2"
      ],
      "author": {
        "name": "cuishuang",
        "email": "imcusg@gmail.com",
        "time": "Fri Apr 11 18:27:20 2025 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Sep 15 17:27:36 2025 -0700"
      },
      "message": "all: use built-in max/min to simplify the code\n\nChange-Id: Ic195ff4df3749050079c85739f61897279933268\nReviewed-on: https://go-review.googlesource.com/c/text/+/664816\nAuto-Submit: Sean Liao \u003csean@liao.dev\u003e\nReviewed-by: Sean Liao \u003csean@liao.dev\u003e\nReviewed-by: Michael Knyszek \u003cmknyszek@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Mark Freeman \u003cmarkfreeman@google.com\u003e\n"
    },
    {
      "commit": "e69f31bf9cf2f46bd3325bc9bad37fe9001731c2",
      "tree": "8dc3ad7e99622e7f6095205549002c9a8affbfcd",
      "parents": [
        "60c9786d9e6cc83e1900ce976fdba2e1c327d220"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Sun Sep 07 05:02:12 2025 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Sun Sep 07 20:32:21 2025 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Ie88d27f52cf129fafc7894ef379747b163942c34\nReviewed-on: https://go-review.googlesource.com/c/text/+/701039\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\n"
    },
    {
      "commit": "60c9786d9e6cc83e1900ce976fdba2e1c327d220",
      "tree": "e1543b809cca9bbd748720ad4309f01ea8171e09",
      "parents": [
        "425d715b4a85c7698cedf621412bb53794cbda53"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Aug 13 14:21:49 2025 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Aug 13 07:53:00 2025 -0700"
      },
      "message": "all: upgrade go directive to at least 1.24.0 [generated]\n\nBy now Go 1.25.0 has been released, and Go 1.23 is no longer supported\nper the Go Release Policy (see https://go.dev/doc/devel/release#policy).\n\nFor golang/go#69095.\n\n[git-generate]\n(cd . \u0026\u0026 go get go@1.24.0 \u0026\u0026 go mod tidy \u0026\u0026 go fix ./... \u0026\u0026 go mod edit -toolchain\u003dnone)\n\nChange-Id: I793a81e1c6140c5a747964d82dbc62fc85c1c712\nReviewed-on: https://go-review.googlesource.com/c/text/+/695197\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\n"
    },
    {
      "commit": "425d715b4a85c7698cedf621412bb53794cbda53",
      "tree": "4f4fcf9bd74cf8f8334245c19c7fa5c823d477bf",
      "parents": [
        "b6d26456dd3ff554a56f10b1e388db0f8ca862d1"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Aug 07 05:02:05 2025 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Aug 07 07:53:29 2025 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I36e4166f1215f0d2be49abe8ce20a8001e12a834\nReviewed-on: https://go-review.googlesource.com/c/text/+/693995\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "b6d26456dd3ff554a56f10b1e388db0f8ca862d1",
      "tree": "9702ea4b00357269d4e790b0491990184991152f",
      "parents": [
        "80721808805f9d846d907c85d73ca6b5b6ecb870"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Jul 09 12:07:00 2025 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Jul 09 13:56:05 2025 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I389c3ce8c58b1f3ecb4b100a0707c1036b21ae50\nReviewed-on: https://go-review.googlesource.com/c/text/+/687035\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: Carlos Amedee \u003ccarlos@golang.org\u003e\n"
    },
    {
      "commit": "80721808805f9d846d907c85d73ca6b5b6ecb870",
      "tree": "35fc8d32e4d0f966ae1017c220c41cedbcad6673",
      "parents": [
        "6cacac16ce2f94d21bf864011f5e0d2181a1a8bf"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Jun 05 06:02:20 2025 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Jun 05 08:08:00 2025 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Ie551df012b5a8d6a6a0d5acb00b0955c7aec2b41\nReviewed-on: https://go-review.googlesource.com/c/text/+/678640\nReviewed-by: Carlos Amedee \u003ccarlos@golang.org\u003e\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "6cacac16ce2f94d21bf864011f5e0d2181a1a8bf",
      "tree": "eb5434236175388d327ed005ed34c5090504113a",
      "parents": [
        "700cc20645cf719b928f5fce7e07528c4f7fa601"
      ],
      "author": {
        "name": "Dmitri Shuralyov",
        "email": "dmitshur@golang.org",
        "time": "Thu Jun 05 10:30:45 2025 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Jun 05 08:05:44 2025 -0700"
      },
      "message": "go.mod: update tagx:ignore\u0027d golang.org/x dependencies\n\nThese dependencies aren\u0027t yet automatically updated due to cycles,\nleaving them to be maintained manually. They haven\u0027t been updated\nin some time. Do that now.\n\nUpdating to a newer x/tools version fixes a build error at Go tip:\n\n$ go version\ngo version go1.25-devel_eebae283b6 Mon Jun 2 15:28:33 2025 -0700 darwin/arm64  # CL 675736\n$ go test -c -o\u003d/dev/null ./...\n# golang.org/x/tools/internal/tokeninternal\n$GOMODCACHE/golang.org/x/tools@v0.21.1-0.20240508182429-e35e4ccd0d2d/internal/tokeninternal/tokeninternal.go:64:9: invalid array length -delta * delta (constant -256 of type int64)\nFAIL\tgolang.org/x/text/cmd/gotext [build failed]\n\nFor golang/go#73264.\nFor golang/go#73205.\n\nChange-Id: Ie6be2f827ba7e49f6d8469e9a53f314b4247759d\nReviewed-on: https://go-review.googlesource.com/c/text/+/679115\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Carlos Amedee \u003ccarlos@golang.org\u003e\n"
    },
    {
      "commit": "700cc20645cf719b928f5fce7e07528c4f7fa601",
      "tree": "5dc7c16f33c1892f9ca71f20a8ea239b1dff3a51",
      "parents": [
        "4890c57b7721969ba8997aea0970c11004f1f5b7"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon May 05 06:06:11 2025 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon May 05 11:12:53 2025 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I1b83f9faaac54edf433904ac46263cc4fc353012\nReviewed-on: https://go-review.googlesource.com/c/text/+/669917\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "4890c57b7721969ba8997aea0970c11004f1f5b7",
      "tree": "d5611d3790bffa3029425a6e6b0e48bd6f81bb29",
      "parents": [
        "566b44fc931e2542778a18423c655ce99b4f1402"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Sat Apr 05 06:02:21 2025 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Sat Apr 05 17:34:10 2025 -0700"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I1a68d897a5fe8375d604a0163ea501c964c79f4f\nReviewed-on: https://go-review.googlesource.com/c/text/+/663096\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\n"
    },
    {
      "commit": "566b44fc931e2542778a18423c655ce99b4f1402",
      "tree": "0da09e9d86f6eb4709113c93c070a0c20fbea3de",
      "parents": [
        "d5156da34ee45c60eb41ec2ec3a98d885a0c39eb"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Mar 05 05:01:52 2025 -0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Mar 05 07:52:56 2025 -0800"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: Ie292e82f774d7a7b2ab5d53279bd874dae6cbdac\nReviewed-on: https://go-review.googlesource.com/c/text/+/655036\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\n"
    },
    {
      "commit": "d5156da34ee45c60eb41ec2ec3a98d885a0c39eb",
      "tree": "6394ae5ff74d6c77f252e1327077bc8a0c8a8741",
      "parents": [
        "221d88cef7bcfb033ba5c9bcdb542c653a3ffd23"
      ],
      "author": {
        "name": "Oleksandr Redko",
        "email": "oleksandr.red+github@gmail.com",
        "time": "Sun Dec 08 23:13:19 2024 +0200"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Mar 03 12:12:23 2025 -0800"
      },
      "message": "collate/build: do not use println in tests\n\nChange-Id: I4f50430a35b009618c4762c74c418919dc54cdb1\nReviewed-on: https://go-review.googlesource.com/c/text/+/634495\nReviewed-by: Sean Liao \u003csean@liao.dev\u003e\nAuto-Submit: Sean Liao \u003csean@liao.dev\u003e\nReviewed-by: Junyang Shao \u003cshaojunyang@google.com\u003e\nReviewed-by: Michael Pratt \u003cmpratt@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "221d88cef7bcfb033ba5c9bcdb542c653a3ffd23",
      "tree": "e6b652eeb26c539932ded06ec7726aaef4b8b2ac",
      "parents": [
        "b18c10747b869c14ee013a92c21e7e42da50e275"
      ],
      "author": {
        "name": "Justin King",
        "email": "jcking@google.com",
        "time": "Fri Jan 24 12:40:39 2025 -0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Mar 03 09:43:40 2025 -0800"
      },
      "message": "x/text: fix scientific notation by removing extraneous spaces\n\nThe existing implementation adds extraneous spaces around the\nsuperscriptingExponent. This is different from what ICU4C does.\nIt also turns out adding those extra spaces messes with other\npadding calculations.\n\nFixes golang/go#71428\n\nChange-Id: Id6702390dc40c17bdd5dff2597aa8e1044f5768e\nReviewed-on: https://go-review.googlesource.com/c/text/+/644121\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Sean Liao \u003csean@liao.dev\u003e\nAuto-Submit: Sean Liao \u003csean@liao.dev\u003e\nReviewed-by: Tristan Swadell \u003ctswadell@google.com\u003e\n"
    },
    {
      "commit": "b18c10747b869c14ee013a92c21e7e42da50e275",
      "tree": "17e01a57d7919e95b21e5b7ce9d7511233a8686d",
      "parents": [
        "835f8ac434b1ee6d687ff14591a696da59055dd1"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Fri Feb 28 10:47:27 2025 -0500"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Mar 03 09:40:12 2025 -0800"
      },
      "message": "internal/export/unicode: change C comment to mention unassigned code points\n\nAs of CL 641395, C includes unassigned code points.\n(It always has in the Unicode definition.)\nDocument that.\n\nChange-Id: Icab0ef37e6efeebb1e2882f7743e29acc7ab77d8\nReviewed-on: https://go-review.googlesource.com/c/text/+/653615\nAuto-Submit: Sean Liao \u003csean@liao.dev\u003e\nReviewed-by: Sean Liao \u003csean@liao.dev\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    },
    {
      "commit": "835f8ac434b1ee6d687ff14591a696da59055dd1",
      "tree": "7b0995f50b19635298ce798e826b5a0f7ca88f6c",
      "parents": [
        "ae68efb59e4cb5ce58d9f0e6fc159aced193cc05"
      ],
      "author": {
        "name": "cuishuang",
        "email": "imcusg@gmail.com",
        "time": "Thu Feb 27 16:25:17 2025 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri Feb 28 12:23:15 2025 -0800"
      },
      "message": "language: use a more straightforward return value\n\nChange-Id: I7f5d8ecc1ad6a1ff110283d2c62816170922e72c\nReviewed-on: https://go-review.googlesource.com/c/text/+/653236\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Michael Pratt \u003cmpratt@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "ae68efb59e4cb5ce58d9f0e6fc159aced193cc05",
      "tree": "c496fb1fabb7c820c0772bf47bcbb8ae435df3b4",
      "parents": [
        "518d9c01744991a7d953034165c4f6150a24a76c"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Wed Jan 08 11:30:58 2025 -0500"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Feb 27 10:47:16 2025 -0800"
      },
      "message": "internal/export/unicode: add CategoryAliases, Cn, and LC\n\nCategoryAliases is for regexp to use, for things like \\p{Letter} as an alias for \\p{L}.\nCn and LC are special-case categories that were never implemented\nbut should have been.\n\nFor golang/go#70780.\n\nChange-Id: I1401c1be42106a0ebecabb085c25e97485c363cf\nReviewed-on: https://go-review.googlesource.com/c/text/+/641395\nAuto-Submit: Russ Cox \u003crsc@golang.org\u003e\nReviewed-by: Marcel van Lohuizen \u003cmpvl@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    },
    {
      "commit": "518d9c01744991a7d953034165c4f6150a24a76c",
      "tree": "25bbf8f285203f9c4d7894646fe3751d7b59bb5d",
      "parents": [
        "3b64043c9e8fa8cd61a019df17dc729630915fa9"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri Feb 14 21:17:11 2025 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri Feb 14 13:51:56 2025 -0800"
      },
      "message": "all: upgrade go directive to at least 1.23.0 [generated]\n\nBy now Go 1.24.0 has been released, and Go 1.22 is no longer supported\nper the Go Release Policy (https://go.dev/doc/devel/release#policy).\n\nFor golang/go#69095.\n\n[git-generate]\n(cd . \u0026\u0026 go get go@1.23.0 \u0026\u0026 go mod tidy \u0026\u0026 go fix ./... \u0026\u0026 go mod edit -toolchain\u003dnone)\n\nChange-Id: I315d8641c8a1501284ec7295493d23523afbcc0f\nReviewed-on: https://go-review.googlesource.com/c/text/+/649698\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\n"
    },
    {
      "commit": "3b64043c9e8fa8cd61a019df17dc729630915fa9",
      "tree": "8c5709a951d82c581afa0927611171278c461db3",
      "parents": [
        "1e59086680cc4c90cd7e9a2f5fcf98043df4396c"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Feb 04 06:02:55 2025 -0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Feb 04 07:50:10 2025 -0800"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: If969fddb3ff610170fae2ad6b797be516e98b0f4\nReviewed-on: https://go-review.googlesource.com/c/text/+/646475\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\n"
    },
    {
      "commit": "1e59086680cc4c90cd7e9a2f5fcf98043df4396c",
      "tree": "b75d0b9513704f2dde37927a32bda46e4429740c",
      "parents": [
        "d42948e5579eb996bedb7df76c7ad57fae4e83c7"
      ],
      "author": {
        "name": "Alan Donovan",
        "email": "adonovan@google.com",
        "time": "Tue Jan 28 12:49:59 2025 -0500"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Jan 28 10:49:05 2025 -0800"
      },
      "message": "message/pipeline: add two Unalias calls\n\nChange-Id: I692c027e2b97ee5509a63a2c88265759fc766800\nReviewed-on: https://go-review.googlesource.com/c/text/+/645016\nAuto-Submit: Alan Donovan \u003cadonovan@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    },
    {
      "commit": "d42948e5579eb996bedb7df76c7ad57fae4e83c7",
      "tree": "f58b318476c16df14e40201fcc2a25ef18f68bcc",
      "parents": [
        "efd25daf282ae4d20d3625f1ccb4452fe40967ae"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Dec 04 14:01:50 2024 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Dec 04 16:04:30 2024 +0000"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I02eb549b47bf711f9c70b10ef33f619c19129bee\nReviewed-on: https://go-review.googlesource.com/c/text/+/633477\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "efd25daf282ae4d20d3625f1ccb4452fe40967ae",
      "tree": "ab79dea56667f4df0a33a06b5313a2de7869b5e8",
      "parents": [
        "8a0e65e7b4f02a20d3127cd6960cdf11941d2ad4"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Nov 07 21:07:52 2024 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Nov 07 21:27:58 2024 +0000"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I6b939f9a4f016b265d30fbd408f34705f89c0982\nReviewed-on: https://go-review.googlesource.com/c/text/+/626375\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "8a0e65e7b4f02a20d3127cd6960cdf11941d2ad4",
      "tree": "e1ea3b735c09b2ba87e7f0a2b45ab1caec654fc9",
      "parents": [
        "fefda1abda0b8b7ada7be0c47594528770c4c162"
      ],
      "author": {
        "name": "Ian Lance Taylor",
        "email": "iant@golang.org",
        "time": "Thu Oct 31 15:46:39 2024 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Sat Nov 02 04:17:02 2024 +0000"
      },
      "message": "README: don\u0027t recommend go get\n\nThese days people will just import the packages and the go tool will\ndo the right thing. We don\u0027t need to explain it.\n\nAdd a pointer to the git repo, though.\n\nFor golang/go#62645\n\nChange-Id: I0a1721eb456645c1422580497e3dcc9906a41223\nReviewed-on: https://go-review.googlesource.com/c/text/+/624296\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nCommit-Queue: Ian Lance Taylor \u003ciant@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\n"
    },
    {
      "commit": "fefda1abda0b8b7ada7be0c47594528770c4c162",
      "tree": "5fc8cfe42c29b65fda9ba7662729ccd82117ae02",
      "parents": [
        "a457f47ba270b8aaa55d617b739beaee4233b2a0"
      ],
      "author": {
        "name": "Dmitri Shuralyov",
        "email": "dmitshur@golang.org",
        "time": "Mon Oct 21 11:59:22 2024 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Oct 21 18:16:43 2024 +0000"
      },
      "message": "internal/texttest: remove Run and Bench helpers\n\nVersions of Go whose testing package doesn\u0027t yet support subtests and\nsub-benchmarks are no longer supported. Drop an intermediate layer of\ncompatibility from the ./internal/texttest package.\n\nThe initial version of this change was git-generate\u0027d with the script:\n\nrm internal/testtext/go1_{6,7}.go\ngofmt -r \u0027testtext.Run(t, n, f) -\u003e t.Run(n, f)\u0027 -w .\ngofmt -r \u0027testtext.Bench(b, n, f) -\u003e b.Run(n, f)\u0027 -w .\ngoimports -w .\n\nUnfortunately it seems gofmt -r dropped inner comments inside f, and\nalso added some spurious blank lines. So it was manually amended not\nto include those changes.\n\nChange-Id: I5bcb553b90ce392aada7896d576194be479f2616\nReviewed-on: https://go-review.googlesource.com/c/text/+/621575\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Michael Pratt \u003cmpratt@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\n"
    },
    {
      "commit": "a457f47ba270b8aaa55d617b739beaee4233b2a0",
      "tree": "bb4891a6820b532b76253cc32b1fa07361f5730b",
      "parents": [
        "3043346206dbc748052ef6e130f428f895cd3760"
      ],
      "author": {
        "name": "Dmitri Shuralyov",
        "email": "dmitshur@golang.org",
        "time": "Mon Oct 21 11:49:26 2024 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Oct 21 18:15:57 2024 +0000"
      },
      "message": "all: normalize subtest names to NFC\n\nLUCI builders upload test results to ResultDB, which permits printable\nUnicode characters in test names, provided they\u0027re written in NFC form.\n\nChange-Id: I0abf67beb52da722af97e6981c308c4b4d801cbb\nReviewed-on: https://go-review.googlesource.com/c/text/+/621555\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Michael Pratt \u003cmpratt@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\n"
    },
    {
      "commit": "3043346206dbc748052ef6e130f428f895cd3760",
      "tree": "6625b927eed54f1a8d1f9c0d245fbf8a5a293b2e",
      "parents": [
        "38a95c2d4a4bd3b96a28705c9a2d47874067ec6d"
      ],
      "author": {
        "name": "Daniël van Eeden",
        "email": "git@myname.nl",
        "time": "Thu Sep 19 16:19:56 2024 +0200"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Sep 23 14:20:18 2024 +0000"
      },
      "message": "x/text: Correct examples in number/doc\n\n\nPlayground example: https://go.dev/play/p/9cuRyaNveO8\n\nChange-Id: I2fbc3fec0f3755eb3d11b47edfb2201d66fc622d\nReviewed-on: https://go-review.googlesource.com/c/text/+/614395\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Marcel van Lohuizen \u003cmpvl@golang.org\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Carlos Amedee \u003ccarlos@golang.org\u003e\n"
    },
    {
      "commit": "38a95c2d4a4bd3b96a28705c9a2d47874067ec6d",
      "tree": "3e31f182d3475defc1d114b3ae7e8f4080e9d0be",
      "parents": [
        "20097e45e63022c5480dea7ccb3db8712288b828"
      ],
      "author": {
        "name": "cuishuang",
        "email": "imcusg@gmail.com",
        "time": "Mon Sep 09 15:09:38 2024 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Sep 11 02:29:05 2024 +0000"
      },
      "message": "all: fix some comments\n\nChange-Id: I6ba7a9de50acfa522d96609abead28d207ab4f81\nReviewed-on: https://go-review.googlesource.com/c/text/+/611795\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Tim King \u003ctaking@google.com\u003e\nAuto-Submit: Tim King \u003ctaking@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "20097e45e63022c5480dea7ccb3db8712288b828",
      "tree": "c90139286d2b788439c40fe1ef95dde728aa72e8",
      "parents": [
        "1e3e9fdab19c86b2b575f3bdb8831eaa3468381f"
      ],
      "author": {
        "name": "Dmitri Shuralyov",
        "email": "dmitshur@golang.org",
        "time": "Wed Sep 04 18:27:41 2024 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Sep 04 23:13:35 2024 +0000"
      },
      "message": "all: fix printf(var) mistakes detected by latest printf checker\n\nThe CodeWriter.WriteComment method is odd. It calls fmt.Sprintf\non its arguments so the caller doesn\u0027t need to, but isn\u0027t named\nsomething like WriteCommentf as I\u0027d expect. I tried renaming it,\nbut it became a bigger change than I wanted. Leaving that for a\nfuture CL - this one just fixes clear mistakes to fix the build.\n\nFor golang/go#69267.\n\nChange-Id: Ifba42d4512696194fbf21d6c8d3da76440b1ce9e\nReviewed-on: https://go-review.googlesource.com/c/text/+/610676\nReviewed-by: Tim King \u003ctaking@google.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\n"
    },
    {
      "commit": "1e3e9fdab19c86b2b575f3bdb8831eaa3468381f",
      "tree": "530631c544cb1d1dabe91e54f268c088672f08c5",
      "parents": [
        "b2bec85eb9df7c6fcf50218bde3db5e22b35e481"
      ],
      "author": {
        "name": "Richard Miller",
        "email": "millerresearch@gmail.com",
        "time": "Tue Aug 20 14:40:47 2024 +0100"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Aug 20 17:46:13 2024 +0000"
      },
      "message": "all: rename Example test functions to prevent vet errors\n\nBuilding x/text was being prevented by vet errors caused by Example\ntest functions of the form ExampleXxx where Xxx was not an identifier\ndeclared in the package. This is corrected by renaming:\n  ExampleCollator_Strings to ExampleCollator_strings in text/collate\n  ExampleDecodeWindows1252 to Example_decodeWindows1252 in text/encoding\n  ExampleSelect to ExampleSelectf in text/feature/plural\n\nFixes golang/go#68967\n\nChange-Id: Id584a518af766676ab44fc49c12160e36f66542a\nReviewed-on: https://go-review.googlesource.com/c/text/+/606736\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Tim King \u003ctaking@google.com\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    },
    {
      "commit": "b2bec85eb9df7c6fcf50218bde3db5e22b35e481",
      "tree": "f27a147b3eefd8c84b06dfae6780078d3a8cc728",
      "parents": [
        "ae0cf96bbcd9fd2e2247254946b3509c3b6fccff"
      ],
      "author": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Sun Aug 04 15:07:52 2024 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Aug 06 15:16:44 2024 +0000"
      },
      "message": "go.mod: update golang.org/x dependencies\n\nUpdate golang.org/x dependencies to their latest tagged versions.\n\nChange-Id: I136532b352871ee714a4ccba9671a370a8abdd95\nReviewed-on: https://go-review.googlesource.com/c/text/+/602518\nAuto-Submit: Gopher Robot \u003cgobot@golang.org\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\n"
    },
    {
      "commit": "ae0cf96bbcd9fd2e2247254946b3509c3b6fccff",
      "tree": "6782763f3fbdebc6c9ff77f993f459ea07ceaf6e",
      "parents": [
        "9c2f3a21352d1ff4e47776534e3f334b39ec0183"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Tue Jul 16 11:35:25 2024 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Jul 16 16:08:04 2024 +0000"
      },
      "message": "LICENSE: update per Google Legal\n\nVery minor tweaks:\n - Remove (c) pseudosymbol.\n - Remove \"All Rights Reserved.\"\n - Change \"Google Inc.\" (no longer exists) to \"Google LLC\".\n\n[git-generate]\necho \u0027\n,s/\\(c\\) //\n,s/ All rights reserved.//\n,s/Google Inc./Google LLC/\nw\nq\n\u0027 | sam -d LICENSE\n\nChange-Id: I5c4495c11ac39e1361c3d370a7ceda78459cc089\nReviewed-on: https://go-review.googlesource.com/c/text/+/598587\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nAuto-Submit: Russ Cox \u003crsc@golang.org\u003e\n"
    },
    {
      "commit": "9c2f3a21352d1ff4e47776534e3f334b39ec0183",
      "tree": "1368fd21678926d5c3030b9d6a878828363c2655",
      "parents": [
        "59e1219a5f3786e7011dc4816d0dbb09fee91bc8"
      ],
      "author": {
        "name": "Mauri de Souza Meneguzzo",
        "email": "mauri870@gmail.com",
        "time": "Thu May 09 19:08:14 2024 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue May 14 20:26:09 2024 +0000"
      },
      "message": "cmd/gotext: fix segfault in extract \u0026 rewrite commands\n\nIf extract or rewrite are called with no arguments it results in a\nsegmentation fault, since we dereference the out flag that was\nnot defined for these commands.\n\nFixes golang/go#62697\n\nChange-Id: I697943b7c221431d0361bcec74c18183f6e141ea\nGitHub-Last-Rev: 313ddfad2b9a43d4fbaa875fa4dd3110dcf38083\nGitHub-Pull-Request: golang/text#46\nReviewed-on: https://go-review.googlesource.com/c/text/+/529255\nReviewed-by: Marcel van Lohuizen \u003cmpvl@golang.org\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\n"
    },
    {
      "commit": "59e1219a5f3786e7011dc4816d0dbb09fee91bc8",
      "tree": "9a821def52f9599a46817845fc557765431cd114",
      "parents": [
        "a20a3e249605cda389f7039e0fccaabf709c47b3"
      ],
      "author": {
        "name": "aimuz",
        "email": "mr.imuz@gmail.com",
        "time": "Wed May 08 09:41:50 2024 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue May 14 20:24:33 2024 +0000"
      },
      "message": "message: optimize lookupAndFormat function for better performance\n\nThis commit optimizes the lookupAndFormat function to reduce code redundancy\nand improve performance. Benchmarks show a significant performance increase\nacross various Sprintf and Fprint functions.\n\nbenchstat old.txt new.txt\ngoos: darwin\ngoarch: arm64\npkg: golang.org/x/text/message\n                         │   old.txt   │               new.txt               │\n                         │   sec/op    │   sec/op     vs base                │\nSprintfPadding-12          333.0n ± 1%   216.0n ± 1%  -35.15% (p\u003d0.000 n\u003d10)\nSprintfEmpty-12            307.3n ± 1%   170.9n ± 1%  -44.38% (p\u003d0.000 n\u003d10)\nSprintfString-12           313.5n ± 1%   178.9n ± 2%  -42.91% (p\u003d0.000 n\u003d10)\nSprintfTruncateString-12   315.6n ± 1%   182.3n ± 2%  -42.23% (p\u003d0.000 n\u003d10)\nSprintfQuoteString-12      320.1n ± 0%   198.6n ± 1%  -37.96% (p\u003d0.000 n\u003d10)\nSprintfInt-12              325.0n ± 1%   203.1n ± 1%  -37.51% (p\u003d0.000 n\u003d10)\nSprintfIntInt-12           340.2n ± 1%   233.2n ± 2%  -31.47% (p\u003d0.000 n\u003d10)\nSprintfPrefixedInt-12      335.2n ± 1%   226.2n ± 1%  -32.54% (p\u003d0.000 n\u003d10)\nSprintfFloat-12            330.1n ± 1%   209.7n ± 1%  -36.48% (p\u003d0.000 n\u003d10)\nSprintfComplex-12          365.1n ± 1%   276.0n ± 2%  -24.41% (p\u003d0.000 n\u003d10)\nSprintfBoolean-12          311.8n ± 0%   178.6n ± 3%  -42.72% (p\u003d0.000 n\u003d10)\nSprintfHexString-12        328.1n ± 1%   204.8n ± 2%  -37.56% (p\u003d0.000 n\u003d10)\nSprintfHexBytes-12         334.0n ± 2%   216.4n ± 1%  -35.20% (p\u003d0.000 n\u003d10)\nSprintfBytes-12            340.8n ± 7%   213.9n ± 1%  -37.25% (p\u003d0.000 n\u003d10)\nSprintfStringer-12         662.5n ± 3%   453.2n ± 1%  -31.59% (p\u003d0.000 n\u003d10)\nSprintfStructure-12        373.8n ± 6%   275.7n ± 1%  -26.23% (p\u003d0.000 n\u003d10)\nManyArgs-12                485.1n ± 4%   425.4n ± 1%  -12.30% (p\u003d0.000 n\u003d10)\nFprintInt-12               265.8n ± 2%   262.0n ± 1%   -1.41% (p\u003d0.011 n\u003d10)\nFprintfBytes-12            348.4n ± 1%   258.8n ± 1%  -25.70% (p\u003d0.000 n\u003d10)\nFprintIntNoAlloc-12        262.0n ± 2%   261.2n ± 2%        ~ (p\u003d0.565 n\u003d10)\ngeomean                    342.4n        233.7n       -31.75%\n\nChange-Id: Id9999469f3fd0ca0290a5cb81f42fff81277b451\nGitHub-Last-Rev: 904d624b132ac1a49cdd908e9b95ff2b16a5f7a0\nGitHub-Pull-Request: golang/text#51\nReviewed-on: https://go-review.googlesource.com/c/text/+/584095\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: Marcel van Lohuizen \u003cmpvl@golang.org\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    },
    {
      "commit": "a20a3e249605cda389f7039e0fccaabf709c47b3",
      "tree": "4d0e447729ca934fa5daa289625382c79dffa4e3",
      "parents": [
        "8d533a0c40adec778a7d09ac6c8aa640d3c883f4"
      ],
      "author": {
        "name": "Alan Donovan",
        "email": "adonovan@google.com",
        "time": "Mon May 13 16:24:53 2024 -0400"
      },
      "committer": {
        "name": "Alan Donovan",
        "email": "adonovan@google.com",
        "time": "Mon May 13 21:04:30 2024 +0000"
      },
      "message": "x/text: update x/tools for go/ssa range-over-func fix\n\nCL 584295 added a quick fix to a panic in go/ssa when it\nencounters range-over-func. This CL imports that fix.\nA principled fix will land in CL 555075.\n\nFixes golang/go#67348\n\nChange-Id: I49dd63d4845d0fc804b6e7d0353584a57aea19fc\nReviewed-on: https://go-review.googlesource.com/c/text/+/584977\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\n"
    },
    {
      "commit": "8d533a0c40adec778a7d09ac6c8aa640d3c883f4",
      "tree": "06ae6e931db8ecedeb1628ace269c43ee86888d0",
      "parents": [
        "6c97a165dd661335ff7bce6104a008558123c353"
      ],
      "author": {
        "name": "Zach Young",
        "email": "zacharysyoung@gmail.com",
        "time": "Sat Dec 02 00:17:48 2023 +0000"
      },
      "committer": {
        "name": "Dominik Honnef",
        "email": "dominik@honnef.co",
        "time": "Mon Apr 15 18:14:38 2024 +0000"
      },
      "message": "encoding/charmap: update UCM spec file URL prefix\n\nUCM spec files used by encoding/maketables.go moved from\nsource.icu-project.org to github.com, and maketables is failing.\n\nThe new repo is at\nhttps://github.com/unicode-org/icu-data/tree/main/charset/data/ucm.\n\nChanged all UCM mappings to use the \"raw endpoint\" prefix,\nhttps://raw.githubusercontent.com/unicode-org/icu-data/main/charset/data/ucm/….\n\nFixes golang/go#64504.\n\nChange-Id: Ib2ccf948ad79578efc4a0c356bb25325190dc333\nGitHub-Last-Rev: 2a277c7d09c5d1c3cae1b6ccf999da67c9659192\nGitHub-Pull-Request: golang/text#48\nReviewed-on: https://go-review.googlesource.com/c/text/+/546576\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: Dominik Honnef \u003cdominik@honnef.co\u003e\n"
    },
    {
      "commit": "6c97a165dd661335ff7bce6104a008558123c353",
      "tree": "816514dea5cbfc9d4ef0bfae999004cd4812d69b",
      "parents": [
        "f488e191e67ed95a5b9b7b39024e5a5f5f1ffd02"
      ],
      "author": {
        "name": "Dmitri Shuralyov",
        "email": "dmitshur@golang.org",
        "time": "Tue Oct 10 17:00:12 2023 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Oct 11 21:58:48 2023 +0000"
      },
      "message": "all: update go directive to 1.18\n\nDone with:\n\ngo get go@1.18\ngo mod tidy\ngo fix ./...\n\nUsing go1.21.3.\n\nAlso update code generators to use only the new go:build lines,\nnot the old +build ones.\n\nFor golang/go#60268.\n\nChange-Id: I832981d939ab0aad5c941555a6a4cd005958a189\nReviewed-on: https://go-review.googlesource.com/c/text/+/534242\nReviewed-by: Damien Neil \u003cdneil@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nLUCI-TryBot-Result: Go LUCI \u003cgolang-scoped@luci-project-accounts.iam.gserviceaccount.com\u003e\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\n"
    },
    {
      "commit": "f488e191e67ed95a5b9b7b39024e5a5f5f1ffd02",
      "tree": "8e9e07af9dbbab2fd4ea0740692df1f5a3097606",
      "parents": [
        "fb697c0580b4b6ab0a21ca17e64788b981fb6018"
      ],
      "author": {
        "name": "cui fliter",
        "email": "imcusg@gmail.com",
        "time": "Sat Aug 26 23:26:54 2023 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Aug 28 17:26:32 2023 +0000"
      },
      "message": "unicode/norm: fix function name on comment\n\nChange-Id: I1d7daf1101c289f99367db2b23105e99d7e19b65\nReviewed-on: https://go-review.googlesource.com/c/text/+/523255\nRun-TryBot: shuang cui \u003cimcusg@gmail.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Joedian Reid \u003cjoedian@golang.org\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    },
    {
      "commit": "fb697c0580b4b6ab0a21ca17e64788b981fb6018",
      "tree": "6889ff02bd3e43f44c8eb101b3cd699cd04d7931",
      "parents": [
        "f3e69ed4a8ab60c16ae76f4ddb08f2726b0a9428"
      ],
      "author": {
        "name": "Smith A",
        "email": "miilord.aaa@gmail.com",
        "time": "Fri Jul 21 23:31:27 2023 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri Jul 21 21:34:41 2023 +0000"
      },
      "message": "cmd/gotext: actually use -dir flag\n\ngotext has the read -dir flag but is not used.\nThe dir parameter should be passed to pipeline.Config\n\nFixes golang/go#61507\n\nChange-Id: I242a768964fe56c4c7877de9dc487777c6815dae\nReviewed-on: https://go-review.googlesource.com/c/text/+/512015\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Heschi Kreinick \u003cheschi@google.com\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@golang.org\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    },
    {
      "commit": "f3e69ed4a8ab60c16ae76f4ddb08f2726b0a9428",
      "tree": "c2f18ef013b6290e778d026a30429c9f62cdfd09",
      "parents": [
        "ab07ad1b65bc4cdc738e747f7569a3795d2e60ec"
      ],
      "author": {
        "name": "Il Harper",
        "email": "afanyiyu@gmail.com",
        "time": "Sat Nov 19 04:59:42 2022 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Jul 20 17:29:45 2023 +0000"
      },
      "message": "cmd/gotext: fix misbehaviors\n\nThe existing implementation has misbehaviors described in golang/go#56842:\n\n- `gotext extract` ignores `lang` flag\n- `gotext generate` ignores `out` flag\n- Misbehavior of `gotext generate` when no flag specified\n\nThis commit fixes these bugs:\n\n- Update `Command.UsageLine` for `cmdGenerate`\n- Fix flag misbehaviors by encapsuling flag definition statements into individual `Command.Init()` functions of commands\n- Fix `gotext generate` misbehavior by executing `pipeline.State.Merge()` before `pipeline.State.Generate()`\n\nFixes golang/go#56842\n\nChange-Id: Id5e324b573b2b389bec22181482a97445230d0cc\nReviewed-on: https://go-review.googlesource.com/c/text/+/452115\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Heschi Kreinick \u003cheschi@google.com\u003e\nReviewed-by: Marcel van Lohuizen \u003cmpvl@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nRun-TryBot: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\n"
    },
    {
      "commit": "ab07ad1b65bc4cdc738e747f7569a3795d2e60ec",
      "tree": "b32ec595952679692d5a1bed919b5755a6edf34b",
      "parents": [
        "e50348080f29449bcd6808c11400b3d45f08b09d"
      ],
      "author": {
        "name": "cui fliter",
        "email": "imcusg@gmail.com",
        "time": "Sat Jul 15 00:30:59 2023 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Jul 17 14:36:42 2023 +0000"
      },
      "message": "all: remove repetitive words\n\nChange-Id: I496265fcad6dee919eff6fc1fbcf9121ae61730f\nReviewed-on: https://go-review.googlesource.com/c/text/+/509855\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Heschi Kreinick \u003cheschi@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    },
    {
      "commit": "e50348080f29449bcd6808c11400b3d45f08b09d",
      "tree": "428ddd81ccf6930800308fb47e150dab593977d8",
      "parents": [
        "2df65d769a9e24cb1e11b714ec1918ed5d7657cb"
      ],
      "author": {
        "name": "Dmitri Shuralyov",
        "email": "dmitshur@golang.org",
        "time": "Mon Jun 26 18:52:45 2023 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Jun 26 23:12:51 2023 +0000"
      },
      "message": "encoding/japanese, language: shorten very long sub-test names\n\nSome of the generated sub-test names end up being excessively long,\nwhich doesn\u0027t mix well with them being stored as test IDs that track\ntest runs over time. Replacing test case names with numbers harms\ntheir readability, so start by trimming a few that end up being 500+\nbytes in length.\n\nChange-Id: Id3b22105efc08eb1bb51436aa257682d357d662c\nReviewed-on: https://go-review.googlesource.com/c/text/+/506416\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nRun-TryBot: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Heschi Kreinick \u003cheschi@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\n"
    },
    {
      "commit": "2df65d769a9e24cb1e11b714ec1918ed5d7657cb",
      "tree": "77412151e9f7a35b286834ac9a70659f8cd767f7",
      "parents": [
        "e3c038a67ff8a7b728cf9a527ca4d14ff7540536"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Tue Jun 13 14:03:43 2023 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Jun 13 19:00:12 2023 +0000"
      },
      "message": "all: regenerate for Unicode 15.0.0\n\ngo generate ./...\n\nThis CL only contains the changes made by go generate ./...\n\nFor golang/go#55079.\n\nChange-Id: I840205f9046e6ccaab370b1dc5393aaf02d5fcb2\nReviewed-on: https://go-review.googlesource.com/c/text/+/503036\nRun-TryBot: Russ Cox \u003crsc@golang.org\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nAuto-Submit: Russ Cox \u003crsc@golang.org\u003e\n"
    },
    {
      "commit": "e3c038a67ff8a7b728cf9a527ca4d14ff7540536",
      "tree": "09d71228cf4214546434de1fec3f68a228ece3b3",
      "parents": [
        "3a7a2557e7386e7e39d8b31290c3e8962c39e0fc"
      ],
      "author": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Tue Jun 13 13:46:27 2023 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Jun 13 18:59:47 2023 +0000"
      },
      "message": "all: prepare for Unicode 15.0.0\n\ninternal/gen has never been updated for Go 1.17\u0027s //go:build tags.\nDo that, and add the entry for Unicode 15.0.0.\n\nUnicode 15.0.0 will change 9fff to be a CJK ideograph, which will\nbreak the unicode/runenames example test.\nDelete that part of the example.\n\nFor golang/go#55079.\n\nChange-Id: I12b0c6d031d6d6e1970c8fe6eb5453fa64c9f365\nReviewed-on: https://go-review.googlesource.com/c/text/+/503035\nRun-TryBot: Russ Cox \u003crsc@golang.org\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nAuto-Submit: Russ Cox \u003crsc@golang.org\u003e\n"
    },
    {
      "commit": "3a7a2557e7386e7e39d8b31290c3e8962c39e0fc",
      "tree": "c3ecd44a815ee5bf7a43ae70b910f1c8214c1dd6",
      "parents": [
        "d61dd50441c6e2d3595be435b162ca96c58848f9"
      ],
      "author": {
        "name": "Marcel van Lohuizen",
        "email": "mpvl@golang.org",
        "time": "Wed Jun 07 13:35:29 2023 +0200"
      },
      "committer": {
        "name": "Russ Cox",
        "email": "rsc@golang.org",
        "time": "Mon Jun 12 16:55:37 2023 +0000"
      },
      "message": "internal/export/idna: make more space for mapping index\n\nThis prepares for an upcoming Unicode upgrade.\n\nBeyond Unicode 13 the size of mappings will grow beyond\nwhat can be represented in the allocated 13 bits. Instread\nof doubling the size of info, we introduce a table of indices\ninto the mappings data. This also allows us to remove the\nlength byte, reducing the overhead of introducing this new\ntable.\n\nThis change allows for about a 5x growth of the number\nof mappings, which should suffice for the foreseeable\nfuture.\n\nChange-Id: Id475dc2473145a1f36bd83b983fa4aa170df6206\nReviewed-on: https://go-review.googlesource.com/c/text/+/501515\nRun-TryBot: Ian Lance Taylor \u003ciant@golang.org\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "d61dd50441c6e2d3595be435b162ca96c58848f9",
      "tree": "c606e1732e9c794074891706349874904f9d7642",
      "parents": [
        "efb744f6d9f03fc4b427c774f83540712ac8e8dc"
      ],
      "author": {
        "name": "Dmitri Shuralyov",
        "email": "dmitshur@golang.org",
        "time": "Sun Jun 04 12:02:11 2023 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Jun 08 17:02:29 2023 +0000"
      },
      "message": "go.mod: delete repeated \"indirect\"\n\nIt got added by \u0027go mod tidy\u0027 in CL 471399\nbecause the \u0027; \u0027 separator was missing.\n\nFor golang/go#48523.\nFor golang/go#58737.\n\nChange-Id: I63642a4f49beb9679f9c5bbb4e2aa8ed0cc73c9e\nReviewed-on: https://go-review.googlesource.com/c/text/+/501835\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nRun-TryBot: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\n"
    },
    {
      "commit": "efb744f6d9f03fc4b427c774f83540712ac8e8dc",
      "tree": "aa446b8287ef982dbd952d6330a0f1080e799b70",
      "parents": [
        "48e4a4a957429d31328a685863b594ca9a06b552"
      ],
      "author": {
        "name": "Timothy Gu",
        "email": "timothygu99@gmail.com",
        "time": "Thu Nov 04 18:42:52 2021 -0700"
      },
      "committer": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Thu Jun 08 16:54:15 2023 +0000"
      },
      "message": "internal/export/idna: fix infinite loop in Go pre-1.10\n\nlookupString returns 0 for incomplete UTF-8 sequences, so to\nprevent infinite loops we must specifically check for that case.\nHowever, CL 73730 which fixed this issue in 2017 was lost in the\nshuffle that allowed multiple Unicode versions in x/text (CL 83235),\nand the fix was never applied to idna9.0.0.go.\n\nThis CL fixes that oversight.\n\nUpdates golang/go#22184\n\nChange-Id: I3a6ab08b157f4017560020ff259d1afbe49a9e71\nReviewed-on: https://go-review.googlesource.com/c/text/+/361494\nReviewed-by: Damien Neil \u003cdneil@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@golang.org\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nReviewed-by: Marcel van Lohuizen \u003cmpvl@golang.org\u003e\n"
    },
    {
      "commit": "48e4a4a957429d31328a685863b594ca9a06b552",
      "tree": "c4596979db4a90e3edcf48edb005dd3ae9a9ab19",
      "parents": [
        "9db913aaf20ced01b7a130d9fb222d74a1339fa6"
      ],
      "author": {
        "name": "cui fliter",
        "email": "imcusg@gmail.com",
        "time": "Wed Mar 29 22:45:25 2023 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Apr 04 14:19:46 2023 +0000"
      },
      "message": "all: fix some comments\n\nChange-Id: I1ae88db264cb5fb513773241ec2a8e7694c8c6e5\nReviewed-on: https://go-review.googlesource.com/c/text/+/480175\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Michael Knyszek \u003cmknyszek@google.com\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "9db913aaf20ced01b7a130d9fb222d74a1339fa6",
      "tree": "153e720e3129bec55707b62868d6e956bbc5500f",
      "parents": [
        "30dadde3188b39150d373bac513a97df9d816a5b"
      ],
      "author": {
        "name": "Ian Lance Taylor",
        "email": "iant@golang.org",
        "time": "Sun Feb 26 14:11:05 2023 -0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Feb 27 23:15:59 2023 +0000"
      },
      "message": "go.mod: update to newer x/tools\n\nget get -u golang.org/x/tools\ngo mod tidy\n\nFixes golang/go#58737\n\nChange-Id: I5c33106d65183b5b5ac5008d7ca532458831f021\nReviewed-on: https://go-review.googlesource.com/c/text/+/471399\nReviewed-by: Brad Fitzpatrick \u003cbradfitz@golang.org\u003e\nReviewed-by: Heschi Kreinick \u003cheschi@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@golang.org\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@golang.org\u003e\nReviewed-by: Than McIntosh \u003cthanm@google.com\u003e\n"
    },
    {
      "commit": "30dadde3188b39150d373bac513a97df9d816a5b",
      "tree": "c2b72b07c228adbe1a45105002f32a688812f3f2",
      "parents": [
        "71a9c9afc4cd710b9412f7f99f0d8e35b10e488a"
      ],
      "author": {
        "name": "Oleksandr Redko",
        "email": "oleksandr.red+github@gmail.com",
        "time": "Mon Feb 06 17:33:17 2023 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Feb 07 17:11:07 2023 +0000"
      },
      "message": "all: correct comment typos\n\nChange-Id: I1e31e93937e960fc7fcc4672208dae067e1f33e7\nGitHub-Last-Rev: 9cdbf6ffdf7640755b32c9f965e6b7321bea5eb3\nGitHub-Pull-Request: golang/text#42\nReviewed-on: https://go-review.googlesource.com/c/text/+/465655\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: David Chase \u003cdrchase@google.com\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "71a9c9afc4cd710b9412f7f99f0d8e35b10e488a",
      "tree": "fb083b43331eea4595d289b2c3d2ea1b12caf820",
      "parents": [
        "ec5565b1b747ce5ca569aeefc09e737b479a12ac"
      ],
      "author": {
        "name": "cui fliter",
        "email": "imcusg@gmail.com",
        "time": "Tue Jan 31 10:28:49 2023 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Jan 31 16:01:06 2023 +0000"
      },
      "message": "all: fix some comments\n\nChange-Id: Idc053f5d3a787746c0205dbda5cc34b7d2be4655\nReviewed-on: https://go-review.googlesource.com/c/text/+/464255\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Michael Knyszek \u003cmknyszek@google.com\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    },
    {
      "commit": "ec5565b1b747ce5ca569aeefc09e737b479a12ac",
      "tree": "4ba58f049964522f7f8a56b4d370e0f3b55cca3e",
      "parents": [
        "c8236a6712b1b530895a7182a8a9fc06f1c5cf4e"
      ],
      "author": {
        "name": "Damien Neil",
        "email": "dneil@google.com",
        "time": "Tue Dec 06 10:15:22 2022 -0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Dec 06 18:24:05 2022 +0000"
      },
      "message": "README.md: update documentation of module versioning\n\nSince x/ repos are now automatically periodically tagged, the previous\ndefinition of the minor and patch versions of this module are now\nobsolete. Delete that section of the README; regular semantic versioning\nrules apply here.\n\nFixes golang/go#57089\n\nChange-Id: I394ae4bb4eec1aa21c26b678b9ed1251b1eecf14\nReviewed-on: https://go-review.googlesource.com/c/text/+/455516\nReviewed-by: Heschi Kreinick \u003cheschi@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nRun-TryBot: Damien Neil \u003cdneil@google.com\u003e\nAuto-Submit: Damien Neil \u003cdneil@google.com\u003e\n"
    },
    {
      "commit": "c8236a6712b1b530895a7182a8a9fc06f1c5cf4e",
      "tree": "a8d945653ab1e5c068171ea5867996b72aeee144",
      "parents": [
        "ada7473102ad456072fb2ef01a115cb0adb8d9a8"
      ],
      "author": {
        "name": "Tomasz Jezierski",
        "email": "tjomek.jezierski@gmail.com",
        "time": "Thu Nov 10 19:08:02 2022 +0100"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Thu Nov 10 18:46:32 2022 +0000"
      },
      "message": "unicode/bidi: remove unused global\n\nIt seems like controlToClass variable is not used anymore.\nAs it allocates in init we should remove it.\nBefore:\ninit golang.org/x/text/unicode/bidi @0.70 ms, 0.003 ms clock, 272 bytes, 2 allocs\nAfter:\ninit golang.org/x/text/unicode/bidi @0.79 ms, 0 ms clock, 0 bytes, 0 allocs\n\nChange-Id: I79b236feb841c45908431cdb440bd1f4eb082d00\nReviewed-on: https://go-review.googlesource.com/c/text/+/449595\nRun-TryBot: Ian Lance Taylor \u003ciant@golang.org\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Michael Knyszek \u003cmknyszek@google.com\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "ada7473102ad456072fb2ef01a115cb0adb8d9a8",
      "tree": "55b1db3e1989740f7bbcb9b135f013adced1327b",
      "parents": [
        "1bdb400fb39a45cc788ffe7e5d7a2a9719afc7e9"
      ],
      "author": {
        "name": "cui fliter",
        "email": "imcusg@gmail.com",
        "time": "Wed Sep 07 13:33:51 2022 +0000"
      },
      "committer": {
        "name": "Cherry Mui",
        "email": "cherryyz@google.com",
        "time": "Wed Nov 09 15:35:36 2022 +0000"
      },
      "message": "all: remove redundant type conversion\n\nChange-Id: Ie059c983bcb3cd6bce7b2097720cbee899abf771\nGitHub-Last-Rev: ce456997ea558cceac55ac7732dfcf14ae0b5119\nGitHub-Pull-Request: golang/text#33\nReviewed-on: https://go-review.googlesource.com/c/text/+/429059\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Michael Knyszek \u003cmknyszek@google.com\u003e\nRun-TryBot: Cherry Mui \u003ccherryyz@google.com\u003e\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\n"
    },
    {
      "commit": "1bdb400fb39a45cc788ffe7e5d7a2a9719afc7e9",
      "tree": "53019d26571b97e9cd23730d50709a28df11ab7d",
      "parents": [
        "252bee03417df7609718dd0885f25d37818cb5c1"
      ],
      "author": {
        "name": "Sebastiaan van Stijn",
        "email": "github@gone.nl",
        "time": "Thu Oct 13 14:51:28 2022 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Fri Oct 14 17:33:59 2022 +0000"
      },
      "message": "language: remove compatibility with go \u003c 1.2\n\nThis was added in 9f86e0be982f3e937cd7146d47f65a80d618e8bc to provide compatibility with go1.1, which is an obsolete version.\n\nChange-Id: Ie3edbf9bd377608344e14ba327c437cbc4aa0c9a\nGitHub-Last-Rev: a009d8c981cbb0948a93c4a01ce0d24bacf8ae1a\nGitHub-Pull-Request: golang/text#37\nReviewed-on: https://go-review.googlesource.com/c/text/+/442796\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Joedian Reid \u003cjoedian@golang.org\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    },
    {
      "commit": "252bee03417df7609718dd0885f25d37818cb5c1",
      "tree": "971b43ab5462bab5e30cc5482080dcb6f32e2b8a",
      "parents": [
        "ecab6e5ab6ec037a966bd330f3c04322d09cb79e"
      ],
      "author": {
        "name": "Heschi Kreinick",
        "email": "heschi@google.com",
        "time": "Wed Oct 12 16:20:59 2022 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Oct 12 20:24:58 2022 +0000"
      },
      "message": "go.mod: ignore cyclic dependency for tagging\n\nAnother followup to CL 439295, sorry. I forgot x/mod is also a problem,\njust via a longer path.\n\nFor golang/go#48523.\n\nChange-Id: I0e1685bedc0747f8a939cd650d603910450c61d6\nReviewed-on: https://go-review.googlesource.com/c/text/+/442518\nAuto-Submit: Heschi Kreinick \u003cheschi@google.com\u003e\nReviewed-by: Bryan Mills \u003cbcmills@google.com\u003e\nRun-TryBot: Heschi Kreinick \u003cheschi@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "ecab6e5ab6ec037a966bd330f3c04322d09cb79e",
      "tree": "213473b84f1129b93e43de1f25f8ed20e9b43a55",
      "parents": [
        "369c86ba1108cfc8744033afe107422a2ad76611"
      ],
      "author": {
        "name": "Heschi Kreinick",
        "email": "heschi@google.com",
        "time": "Wed Oct 12 15:34:28 2022 -0400"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Oct 12 20:09:49 2022 +0000"
      },
      "message": "go.mod: ignore cyclic dependency for tagging\n\nFollowup to CL 439295; let\u0027s try tagging indirect deps too.\n\nFor golang/go#48523.\n\nChange-Id: I35c6b8a3ad382b585c0042888abf085e053ef8fb\nReviewed-on: https://go-review.googlesource.com/c/text/+/442517\nAuto-Submit: Heschi Kreinick \u003cheschi@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nRun-TryBot: Heschi Kreinick \u003cheschi@google.com\u003e\nReviewed-by: Bryan Mills \u003cbcmills@google.com\u003e\n"
    },
    {
      "commit": "369c86ba1108cfc8744033afe107422a2ad76611",
      "tree": "e35ec8c491200e74884278e014595c4d135d8545",
      "parents": [
        "434eadcdbc3b0256971992e8c70027278364c72c"
      ],
      "author": {
        "name": "cui fliter",
        "email": "imcusg@gmail.com",
        "time": "Tue Oct 11 17:55:29 2022 +0800"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Wed Oct 12 13:49:10 2022 +0000"
      },
      "message": "all: fix a few function names on comments\n\nChange-Id: Ibdf787b7a62e8201393f2a4487cd8c67d8b0c91d\nReviewed-on: https://go-review.googlesource.com/c/text/+/441717\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Joedian Reid \u003cjoedian@golang.org\u003e\n"
    },
    {
      "commit": "434eadcdbc3b0256971992e8c70027278364c72c",
      "tree": "6f1747b71d72c69ea13dcaae766a2ebb97b6fb79",
      "parents": [
        "23407e72ed5b895a2dfd230aec777f4fbe026d6a"
      ],
      "author": {
        "name": "Roland Shoemaker",
        "email": "bracewell@google.com",
        "time": "Fri Sep 02 09:35:37 2022 -0700"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Oct 11 16:58:47 2022 +0000"
      },
      "message": "language: reject excessively large Accept-Language strings\n\nThe BCP 47 tag parser has quadratic time complexity due to inherent\naspects of its design. Since the parser is, by design, exposed to\nuntrusted user input, this can be leveraged to force a program to\nconsume significant time parsing Accept-Language headers.\n\nThe parser cannot be easily rewritten to fix this behavior for\nvarious reasons. Instead the solution implemented in this CL is to\nlimit the total complexity of tags passed into ParseAcceptLanguage\nby limiting the number of dashes in the string to 1000. This should\nbe more than enough for the majority of real world use cases, where\nthe number of tags being sent is likely to be in the single digits.\n\nThanks to the OSS-Fuzz project for discovering this issue and to Adam\nKorczynski (ADA Logics) for writing the fuzz case and for reporting the\nissue.\n\nFixes CVE-2022-32149\nFixes golang/go#56152\n\nChange-Id: I7bda1d84cee2b945039c203f26869d58ee9374ae\nReviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/1565112\nReviewed-by: Damien Neil \u003cdneil@google.com\u003e\nReviewed-by: Tatiana Bradley \u003ctatianabradley@google.com\u003e\nReviewed-on: https://go-review.googlesource.com/c/text/+/442235\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nAuto-Submit: Roland Shoemaker \u003croland@golang.org\u003e\nRun-TryBot: Roland Shoemaker \u003croland@golang.org\u003e\n"
    },
    {
      "commit": "23407e72ed5b895a2dfd230aec777f4fbe026d6a",
      "tree": "92cbbe5c36a24d8221d2e3752b7ad42f8b519303",
      "parents": [
        "b18d3dd8a4b426ebedcf279b593e85ac4985b9d3"
      ],
      "author": {
        "name": "Heschi Kreinick",
        "email": "heschi@google.com",
        "time": "Wed Oct 05 16:07:52 2022 -0400"
      },
      "committer": {
        "name": "Heschi Kreinick",
        "email": "heschi@google.com",
        "time": "Wed Oct 05 20:17:40 2022 +0000"
      },
      "message": "go.mod: ignore cyclic dependency for tagging\n\ntools and text have a cyclic dependency, which needs to be broken during\nthe upgrading/tagging process. This direction is due to\nmessage/pipeline, which is marked as \"IN DEVELOPMENT\", so I think it\u0027s\nless important to keep it up to date.\n\nFor golang/go#48523.\n\nChange-Id: Ic4cdfd05628649035eee8a37e662cf22827c705b\nReviewed-on: https://go-review.googlesource.com/c/text/+/439295\nRun-TryBot: Heschi Kreinick \u003cheschi@google.com\u003e\nReviewed-by: Bryan Mills \u003cbcmills@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\n"
    },
    {
      "commit": "b18d3dd8a4b426ebedcf279b593e85ac4985b9d3",
      "tree": "978c107da1e0c8320aafe47f5cb60c287bd80cec",
      "parents": [
        "795e854ff348c9cac4fd0033ce04c417705dd0bb"
      ],
      "author": {
        "name": "cui fliter",
        "email": "imcusg@gmail.com",
        "time": "Tue Oct 04 14:50:44 2022 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Tue Oct 04 22:54:18 2022 +0000"
      },
      "message": "secure/precis: replace bytes.Compare with bytes.Equal\n\nChange-Id: Ifa6ba05253b38e1cb3d5791e62b36a523fb68e52\nGitHub-Last-Rev: 2d7de01c3d93285224e3c65f55845a316da8f4d0\nGitHub-Pull-Request: golang/text#36\nReviewed-on: https://go-review.googlesource.com/c/text/+/438559\nRun-TryBot: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\nAuto-Submit: Dmitri Shuralyov \u003cdmitshur@golang.org\u003e\n"
    },
    {
      "commit": "795e854ff348c9cac4fd0033ce04c417705dd0bb",
      "tree": "8e3e9e3102c214dc89612983b7e4ae2019921bcc",
      "parents": [
        "b0ca10ff35f1325c7d0ac7830fe3f036bd72d8f9"
      ],
      "author": {
        "name": "cui fliter",
        "email": "imcusg@gmail.com",
        "time": "Fri Sep 16 02:08:40 2022 +0000"
      },
      "committer": {
        "name": "Gopher Robot",
        "email": "gobot@golang.org",
        "time": "Mon Sep 19 15:59:07 2022 +0000"
      },
      "message": "all: replace io/ioutil with io and os package\n\nFor golang/go#45557\n\nChange-Id: Ibf78d87cc94baa0d1696e5abc2edad3d2723e42b\nGitHub-Last-Rev: ad314caaff6e51edb51a63d183c0ff906cf6b2ad\nGitHub-Pull-Request: golang/text#34\nReviewed-on: https://go-review.googlesource.com/c/text/+/430815\nReviewed-by: Cherry Mui \u003ccherryyz@google.com\u003e\nTryBot-Result: Gopher Robot \u003cgobot@golang.org\u003e\nReviewed-by: Ian Lance Taylor \u003ciant@google.com\u003e\nReviewed-by: Meng Zhuo \u003cmzh@golangcn.org\u003e\nRun-TryBot: Ian Lance Taylor \u003ciant@google.com\u003e\nRun-TryBot: Meng Zhuo \u003cmzh@golangcn.org\u003e\nAuto-Submit: Ian Lance Taylor \u003ciant@google.com\u003e\n"
    }
  ],
  "next": "b0ca10ff35f1325c7d0ac7830fe3f036bd72d8f9"
}
