Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: go1.22.0
Choose a base ref
...
head repository: golang/go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: go1.22.1
Choose a head ref
  • 20 commits
  • 39 files changed
  • 14 contributors

Commits on Feb 7, 2024

  1. [release-branch.go1.22] spec: fix typo in year (it's 2024 now)

    While at it, set the date to the Go 1.22 release date.
    
    Change-Id: I03872626e500433eb63786d24c67810c8c6289f4
    Reviewed-on: https://go-review.googlesource.com/c/go/+/562337
    Auto-Submit: Robert Griesemer <gri@google.com>
    Reviewed-by: Robert Griesemer <gri@google.com>
    Reviewed-by: Robert Findley <rfindley@google.com>
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
    TryBot-Bypass: Robert Griesemer <gri@google.com>
    Reviewed-on: https://go-review.googlesource.com/c/go/+/562320
    Reviewed-by: Russ Cox <rsc@golang.org>
    griesemer authored and dr2chase committed Feb 7, 2024
    Configuration menu
    Copy the full SHA
    dd31ad7 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. [release-branch.go1.22] internal/testenv: allow "-noopt" anywhere in …

    …builder name in test
    
    testenv's TestHasGoBuild test is supposed to allow noopt builders to not
    have go build, but the pattern match is failing on the LUCI builders
    where a test shard might have an additional "-test_only" suffix in the
    builder name. Furthermore, in the LUCI world, "run mods" (the builder
    type suffixes) are supposed to be well-defined and composable, so it
    doesn't make sense to restrict "-noopt" to the builder suffix anyway.
    
    This change modifies the test to allow "-noopt" to appear anywhere in
    the builder name when checking if it's running on a noopt builder.
    
    For #65470.
    Fixes #65471.
    
    Change-Id: I393818e3e8e452c7b0927cbc65726d552aa8ff8e
    Reviewed-on: https://go-review.googlesource.com/c/go/+/558596
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
    Reviewed-by: Bryan Mills <bcmills@google.com>
    (cherry picked from commit 93f0c0b)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/560696
    mknyszek committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    53d1b73 View commit details
    Browse the repository at this point in the history
  2. [release-branch.go1.22] internal/testenv: support the LUCI mobile bui…

    …lders in tests
    
    This change updates the testenv tests to correctly match on future LUCI
    builder names for mobile builders. This isn't a problem today because
    those haven't been set up yet, but the builder names are structured and
    it's clear where the modifiers will appear. Might as well set them up
    now.
    
    For #65473.
    Fixes #65474.
    
    Change-Id: I244b88a62a90312c0f3ff2360527d58531070362
    Reviewed-on: https://go-review.googlesource.com/c/go/+/558597
    Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
    Reviewed-by: Bryan Mills <bcmills@google.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    (cherry picked from commit 5c7c24c)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/560536
    mknyszek committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    20107e0 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

  1. [release-branch.go1.22] cmd/cgo/internal/testsanitizers: disable loca…

    …tion checking for clang
    
    Pending a resolution to #65606, this CL marks clang's ASAN runtime as
    unable to symbolize stack traces to unblock the LUCI clang builder.
    
    For #65606.
    For #65469.
    Fixes #65641.
    
    Change-Id: I649773085aff30e5703e7f7ac2c72a0430a015c2
    Cq-Include-Trybots: luci.golang.try:go1.22-linux-amd64-clang15
    Reviewed-on: https://go-review.googlesource.com/c/go/+/562675
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    (cherry picked from commit d94ab59)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/563015
    mknyszek authored and thanm committed Feb 16, 2024
    Configuration menu
    Copy the full SHA
    d6a2719 View commit details
    Browse the repository at this point in the history
  2. [release-branch.go1.22] runtime: don't call traceReadCPU on the syste…

    …m stack
    
    traceReadCPU calls profBuf.read, which does a raceacquire. g0 does not
    have a race context, so this crashes when running on the system stack.
    
    We could borrow a race context, but it is simpler to just move
    traceReadCPU off of the system stack.
    
    For #65607.
    Fixes #65644.
    
    Change-Id: I335155b96d683aebb92b2f4e1eea063dd139f2d5
    Reviewed-on: https://go-review.googlesource.com/c/go/+/562996
    Auto-Submit: Michael Pratt <mpratt@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Michael Knyszek <mknyszek@google.com>
    (cherry picked from commit 9fa153b)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/562559
    prattmic authored and thanm committed Feb 16, 2024
    Configuration menu
    Copy the full SHA
    6fbd01a View commit details
    Browse the repository at this point in the history
  3. [release-branch.go1.22] cmd/compile: accept -lang=go1 as -lang=go1.0

    Fixes #65619.
    
    Change-Id: I55fef8cf7be4654c7242462d45f12999e0c91c02
    Reviewed-on: https://go-review.googlesource.com/c/go/+/562322
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Bryan Mills <bcmills@google.com>
    (cherry picked from commit 08370dc)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/562815
    mdempsky authored and thanm committed Feb 16, 2024
    Configuration menu
    Copy the full SHA
    fb86598 View commit details
    Browse the repository at this point in the history
  4. [release-branch.go1.22] cmd/compile: fail noder.LookupFunc gracefully…

    … if function generic
    
    PGO uses noder.LookupFunc to look for devirtualization targets in
    export data.  LookupFunc does not support type-parameterized
    functions, and will currently fail the build when attempting to lookup
    a type-parameterized function because objIdx is passed the wrong
    number of type arguments.
    
    This doesn't usually come up, as a PGO profile will report a generic
    function with a symbol name like Func[.go.shape.foo]. In export data,
    this is just Func, so when we do LookupFunc("Func[.go.shape.foo]")
    lookup simply fails because the name doesn't exist.
    
    However, if Func is not generic when the profile is collected, but the
    source has since changed to make Func generic, then LookupFunc("Func")
    will find the object successfully, only to fail the build because we
    failed to provide type arguments.
    
    Handle this with a objIdxMayFail, which allows graceful failure if the
    object requires type arguments.
    
    Bumping the language version to 1.21 in pgo_devirtualize_test.go is
    required for type inference of the uses of mult.MultFn in
    cmd/compile/internal/test/testdata/pgo/devirtualize/devirt_test.go.
    
    For #65615.
    Fixes #65618.
    
    Change-Id: I84d9344840b851182f5321b8f7a29a591221b29f
    Reviewed-on: https://go-review.googlesource.com/c/go/+/562737
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    Reviewed-by: Matthew Dempsky <mdempsky@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    (cherry picked from commit 532c6f1)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/563016
    prattmic authored and thanm committed Feb 16, 2024
    Configuration menu
    Copy the full SHA
    6cbe522 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. [release-branch.go1.22] cmd/compile: make jump table symbol static

    The jump table symbol is accessed only from the function symbol
    (in the same package), so it can be static. Also, if the function
    is DUPOK and it is, somehow, compiled differently in two different
    packages, the linker must choose the jump table symbol associated
    to the function symbol it chose. Currently the jump table symbol
    is DUPOK, so that is not guaranteed. Making it static will
    guarantee that, as each copy of the function symbol refers to its
    own jump table symbol.
    
    Updates #65783.
    Fixes #65818.
    
    Change-Id: I27e051d01ef585d07700b75d4dfac5768f16441e
    Reviewed-on: https://go-review.googlesource.com/c/go/+/565535
    Reviewed-by: Keith Randall <khr@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Keith Randall <khr@golang.org>
    (cherry picked from commit 2908352)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/566475
    cherrymui authored and cagedmantis committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    686662f View commit details
    Browse the repository at this point in the history
  2. [release-branch.go1.22] runtime/internal/atomic: correct GOARM=7 guar…

    …d at a DMB instruction
    
    CL 525637 changed to the guard of DMB instruction from the
    compiled-in runtime.goarm value to GOARM_7 macro and CPU feature
    detection. It missed a place where runtime.goarm is loaded to a
    register and reused later. This CL corrects the condition.
    
    Updates #65601.
    Fixes #65760.
    
    Change-Id: I2ddefd03a1eb1048dbec0254c6e234c65b054279
    Reviewed-on: https://go-review.googlesource.com/c/go/+/564855
    Run-TryBot: Cherry Mui <cherryyz@google.com>
    TryBot-Result: Gopher Robot <gobot@golang.org>
    Reviewed-by: Keith Randall <khr@google.com>
    Reviewed-by: Keith Randall <khr@golang.org>
    (cherry picked from commit a0226c5)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/567555
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    TryBot-Bypass: Carlos Amedee <carlos@golang.org>
    cherrymui authored and cagedmantis committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    8fe2ad6 View commit details
    Browse the repository at this point in the history
  3. [release-branch.go1.22] go/types, types2: ensure that Alias.actual is…

    … set in NewAlias
    
    Types returned by the go/types API must be immutable (or at least
    concurrency safe), but NewAlias returned an alias without actual set.
    
    Ensure that actual is set by unaliasing. Also make some superficial
    simplifications to unalias, and avoid indirection where unnecessary.
    
    Fixes #65728
    
    Change-Id: Ic9a020da5accf9032056a924b65c9e9e08cb2e0a
    Reviewed-on: https://go-review.googlesource.com/c/go/+/560915
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
    Reviewed-by: Robert Griesemer <gri@google.com>
    (cherry picked from commit 10a6564)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/564356
    findleyr authored and cagedmantis committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    3b71998 View commit details
    Browse the repository at this point in the history
  4. [release-branch.go1.22] cmd/trace/v2,internal/trace: use correct fram…

    …e for identifying goroutines
    
    To determine the identity of a goroutine for displaying in the trace UI,
    we should use the root frame from a call stack. This will be the
    starting function for the goroutine and is the same for each call stack
    from a given goroutine. The new tracer no longer includes starting PCs
    for goroutines which existed at the start of tracing, so we can't use a
    PC for grouping together goroutines any more. Instead, we just use the
    name of the entry function for grouping.
    
    For #65574
    Fixes #65577
    
    Change-Id: I5324653316f1acf0ab90c30680f181060ea45dd7
    Reviewed-on: https://go-review.googlesource.com/c/go/+/562455
    Reviewed-by: Michael Knyszek <mknyszek@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: David Chase <drchase@google.com>
    (cherry picked from commit a517131)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/562558
    Reviewed-by: Michael Pratt <mpratt@google.com>
    nsrip-dd authored and cagedmantis committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    c33adf4 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. [release-branch.go1.22] cmd/go/internal/modcmd: correctly filter out …

    …main modules in verify
    
    This change fixes a bug where we incorrectly filtered out the main
    modules from the beginning of the build list before verifying them. We
    made the assumption that the first MainModules.Len() entries of the
    build list were the main modules, but now it can contain the go and
    toolchain version entries, so removing the first MainModules.Len()
    entries could leave main module names in the build list if any of
    their names sorted after the string 'go'.
    
    For #62663
    Fixes #65852
    
    Change-Id: I35ab6857a556f58d306303322afe24c48fc8b38f
    Reviewed-on: https://go-review.googlesource.com/c/go/+/565378
    Reviewed-by: Bryan Mills <bcmills@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    (cherry picked from commit 3f60da7)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/565775
    TryBot-Result: Gopher Robot <gobot@golang.org>
    Run-TryBot: Michael Matloob <matloob@golang.org>
    matloob authored and cagedmantis committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    d8c4239 View commit details
    Browse the repository at this point in the history
  2. [release-branch.go1.22] net/mail: properly handle special characters …

    …in phrase and obs-phrase
    
    Fixes a couple of misalignments with RFC 5322 which introduce
    significant diffs between (mostly) conformant parsers.
    
    This change reverts the changes made in CL50911, which allowed certain
    special RFC 5322 characters to appear unquoted in the "phrase" syntax.
    It is unclear why this change was made in the first place, and created
    a divergence from comformant parsers. In particular this resulted in
    treating comments in display names incorrectly.
    
    Additionally properly handle trailing malformed comments in the group
    syntax.
    
    For #65083
    Fixed #65849
    
    Change-Id: I00dddc044c6ae3381154e43236632604c390f672
    Reviewed-on: https://go-review.googlesource.com/c/go/+/555596
    Reviewed-by: Damien Neil <dneil@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-on: https://go-review.googlesource.com/c/go/+/566215
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    rolandshoemaker authored and cagedmantis committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    5330cd2 View commit details
    Browse the repository at this point in the history
  3. [release-branch.go1.22] net: work around runtime scheduler starvation…

    … on js and wasip1
    
    For #65883.
    Updates #65177.
    Updates #65178.
    Updates #64321.
    
    Change-Id: I698fd3b688c7dfbde692eb7c29cbdafc89e7ca32
    Cq-Include-Trybots: luci.golang.try:go1.22-js-wasm,go1.22-wasip1-wasm_wasmtime,go1.22-wasip1-wasm_wazero
    Reviewed-on: https://go-review.googlesource.com/c/go/+/557037
    Auto-Submit: Bryan Mills <bcmills@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Damien Neil <dneil@google.com>
    (cherry picked from commit f19f31f)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/566175
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    Bryan C. Mills authored and cagedmantis committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    f73eba7 View commit details
    Browse the repository at this point in the history
  4. [release-branch.go1.22] html/template: escape additional tokens in Ma…

    …rshalJSON errors
    
    Escape "</script" and "<!--" in errors returned from MarshalJSON errors
    when attempting to marshal types in script blocks. This prevents any
    user controlled content from prematurely terminating the script block.
    
    Updates #65697
    Fixes #65969
    
    Change-Id: Icf0e26c54ea7d9c1deed0bff11b6506c99ddef1b
    Reviewed-on: https://go-review.googlesource.com/c/go/+/564196
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Damien Neil <dneil@google.com>
    (cherry picked from commit ccbc725)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/567535
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    rolandshoemaker authored and cagedmantis committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    056b0ed View commit details
    Browse the repository at this point in the history
  5. [release-branch.go1.22] net/http: add missing call to decConnsPerHost

    A recent change to Transport.dialConnFor introduced an early return that
    skipped dialing. This path did not call decConnsPerHost, which can cause
    subsequent HTTP calls to hang if Transport.MaxConnsPerHost is set.
    
    For #65705
    Fixes #65759
    
    Change-Id: I157591114b02a3a66488d3ead7f1e6dbd374a41c
    Reviewed-on: https://go-review.googlesource.com/c/go/+/564036
    Reviewed-by: Damien Neil <dneil@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Auto-Submit: Damien Neil <dneil@google.com>
    Reviewed-by: Than McIntosh <thanm@google.com>
    (cherry picked from commit 098a87f)
    Reviewed-on: https://go-review.googlesource.com/c/go/+/566536
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    tibbes authored and cagedmantis committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    16830ab View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2024

  1. [release-branch.go1.22] crypto/x509: make sure pub key is non-nil bef…

    …ore interface conversion
    
    alreadyInChain assumes all keys fit a interface which contains the
    Equal method (which they do), but this ignores that certificates may
    have a nil key when PublicKeyAlgorithm is UnknownPublicKeyAlgorithm. In
    this case alreadyInChain panics.
    
    Check that the key is non-nil as part of considerCandidate (we are never
    going to build a chain containing UnknownPublicKeyAlgorithm anyway).
    
    For #65390
    Fixes #65831
    Fixes CVE-2024-24783
    
    Change-Id: Ibdccc0a487e3368b6812be35daad2512220243f3
    Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/2137282
    Reviewed-by: Damien Neil <dneil@google.com>
    Run-TryBot: Roland Shoemaker <bracewell@google.com>
    Reviewed-by: Tatiana Bradley <tatianabradley@google.com>
    Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/2174343
    Reviewed-by: Carlos Amedee <amedee@google.com>
    Reviewed-by: Roland Shoemaker <bracewell@google.com>
    Reviewed-on: https://go-review.googlesource.com/c/go/+/569235
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Auto-Submit: Michael Knyszek <mknyszek@google.com>
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    rolandshoemaker authored and gopherbot committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    337b8e9 View commit details
    Browse the repository at this point in the history
  2. [release-branch.go1.22] net/http, net/http/cookiejar: avoid subdomain…

    … matches on IPv6 zones
    
    When deciding whether to forward cookies or sensitive headers
    across a redirect, do not attempt to interpret an IPv6 address
    as a domain name.
    
    Avoids a case where a maliciously-crafted redirect to an
    IPv6 address with a scoped addressing zone could be
    misinterpreted as a within-domain redirect. For example,
    we could interpret "::1%.www.example.com" as a subdomain
    of "www.example.com".
    
    Thanks to Juho Nurminen of Mattermost for reporting this issue.
    
    Fixes CVE-2023-45289
    Fixes #65859
    For #65065
    
    Change-Id: I8f463f59f0e700c8a18733d2b264a8bcb3a19599
    Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/2131938
    Reviewed-by: Tatiana Bradley <tatianabradley@google.com>
    Reviewed-by: Roland Shoemaker <bracewell@google.com>
    Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/2174344
    Reviewed-by: Carlos Amedee <amedee@google.com>
    Reviewed-on: https://go-review.googlesource.com/c/go/+/569236
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Auto-Submit: Michael Knyszek <mknyszek@google.com>
    neild authored and gopherbot committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    3a85520 View commit details
    Browse the repository at this point in the history
  3. [release-branch.go1.22] net/textproto, mime/multipart: avoid unbounde…

    …d read in MIME header
    
    mime/multipart.Reader.ReadForm allows specifying the maximum amount
    of memory that will be consumed by the form. While this limit is
    correctly applied to the parsed form data structure, it was not
    being applied to individual header lines in a form.
    
    For example, when presented with a form containing a header line
    that never ends, ReadForm will continue to read the line until it
    runs out of memory.
    
    Limit the amount of data consumed when reading a header.
    
    Fixes CVE-2023-45290
    Fixes #65850
    For #65383
    
    Change-Id: I7f9264d25752009e95f6b2c80e3d76aaf321d658
    Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/2134435
    Reviewed-by: Roland Shoemaker <bracewell@google.com>
    Reviewed-by: Tatiana Bradley <tatianabradley@google.com>
    Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/2174345
    Reviewed-by: Carlos Amedee <amedee@google.com>
    Reviewed-on: https://go-review.googlesource.com/c/go/+/569237
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Auto-Submit: Michael Knyszek <mknyszek@google.com>
    neild authored and gopherbot committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    041a477 View commit details
    Browse the repository at this point in the history
  4. [release-branch.go1.22] go1.22.1

    Change-Id: I9db641e2a029c4c9fa72d7b423b2b6b7f113d9a2
    Reviewed-on: https://go-review.googlesource.com/c/go/+/569257
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    Auto-Submit: Gopher Robot <gobot@golang.org>
    Reviewed-by: Michael Knyszek <mknyszek@google.com>
    gopherbot committed Mar 5, 2024
    Configuration menu
    Copy the full SHA
    db6097f View commit details
    Browse the repository at this point in the history
Loading