summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* [release-branch.go1.18] go1.18.3go1.18.3Dmitri Shuralyov2022-06-011-1/+1
* [release-branch.go1.18] path/filepath: do not remove prefix "." when followin...Yasuhiro Matsumoto2022-05-313-1/+42
* [release-branch.go1.18] misc/cgo/testsanitizers: buffer the signal channel in...Bryan C. Mills2022-05-301-1/+1
* [release-branch.go1.18] crypto/tls: avoid extra allocations in steady-state H...David Taylor2022-05-271-0/+11
* [release-branch.go1.18 crypto/tls: randomly generate ticket_age_addTatiana Bradley2022-05-271-0/+14
* [release-branch.go1.18] os/exec: return clear error for missing cmd.PathRuss Cox2022-05-272-0/+11
* [release-branch.go1.18] text/template/parse: allow space after continue or breakRob Pike2022-05-262-4/+8
* [release-branch.go1.18] cmd/compile: backport fix for #51840Matthew Dempsky2022-05-252-4/+50
* [release-branch.go1.18] cmd/compile: allow exporting `.rcvr` identWayne Zuo2022-05-252-1/+23
* [release-branch.go1.18] [release-branch.go1.18 crypto/rand: properly handle l...Roland Shoemaker2022-05-256-43/+46
* [release-branch.go1.18] misc/cgo/testsanitizers: use buffered channel in tsan...Cherry Mui2022-05-251-1/+1
* cmd/compile: be sure to export types mentioned in f.i.g. method signatureDavid Chase2022-05-174-1/+38
* [release-branch.go1.18] go1.18.2go1.18.2Heschi Kreinick2022-05-101-1/+1
* [release-branch.go1.18] go/types, types2: use a type lookup by identity in me...Robert Findley2022-05-106-75/+246
* [release-branch.go1.18] net: skip TestDialCancel on darwin-arm64Heschi Kreinick2022-05-091-0/+6
* [release-branch.go1.18] net/http/httptest: fix race in Server.CloseMaisem Ali2022-05-092-18/+65
* [release-branch.go1.18] go/types: clarify that contexts do not guarantee dedu...Robert Findley2022-05-094-8/+12
* [release-branch.go1.18] cmd/compile: always write fun[0] in incomplete itabKeith Randall2022-05-093-8/+64
* [release-branch.go1.18] runtime: align m.procid to 8 bytes on 32-bit systemsMichael Pratt2022-05-091-0/+1
* [release-branch.go1.18] cmd/compile: disable rewrite loop detector for deadco...Keith Randall2022-05-091-3/+5
* [release-branch.go1.18] reflect: ensure map keys match key type in MapIndex a...Dan Kortschak2022-05-092-2/+16
* [release-branch.go1.18] syscall: check correct group in FaccessatDamien Neil2022-05-091-1/+1
* [release-branch.go1.18] cmd/go: write changes to go.mod and go.sum after load...Bryan C. Mills2022-05-092-0/+41
* [release-branch.go1.18] go/types,types2: delay the check for conflicting stru...Robert Findley2022-05-095-38/+107
* [release-branch.go1.18] cmd/compile: set correct package for vars/params/resu...Cuong Manh Le2022-05-094-0/+39
* [release-branch.go1.18] sync/atomic: use consistent first-store-in-progress m...Keith Randall2022-05-092-4/+53
* [release-branch.go1.18] cmd/compile: use dictionary to convert type to shaped...Keith Randall2022-05-092-4/+56
* [release-branch.go1.18] runtime: support for debugger function calls on linux...eric fang2022-05-0911-119/+492
* [release-branch.go1.18] runtime: don't block preemption signal in new M's or ...Ian Lance Taylor2022-05-061-0/+4
* [release-branch.go1.18] syscall: relax output check in TestGroupCleanupUserNa...Bryan C. Mills2022-05-041-16/+9
* [release-branch.go1.18] crypto/x509: properly handle issuerUniqueID and subje...Roland Shoemaker2022-05-042-2/+50
* [release-branch.go1.18] cmd/compile/internal/types2: use correct value of iotaRobert Griesemer2022-05-025-2/+79
* [release-branch.go1.18] cmd/go: allow '-buildvcs=auto' and treat it as the de...Bryan C. Mills2022-04-208-27/+159
* [release-branch.go1.18] go1.18.1go1.18.1Dmitri Shuralyov2022-04-121-1/+1
* [release-branch.go1.18] encoding/pem: fix stack overflow in DecodeJulie Qiu2022-04-122-100/+100
* [release-branch.go1.18] go/types: don't report errors for untyped int shifts ...Robert Findley2022-04-063-20/+53
* [release-branch.go1.18] go/types, types2: fix overlap test for union termlistRobert Griesemer2022-04-065-12/+87
* [release-branch.go1.18] crypto/elliptic: tolerate zero-padded scalars in gene...Filippo Valsorda2022-04-062-1/+15
* [release-branch.go1.18] cmd/go: prevent panic in go work useFilippo Rossi2022-04-053-22/+38
* [release-branch.go1.18] crypto/x509: only disable SHA-1 verification for cert...Roland Shoemaker2022-04-053-34/+85
* [release-branch.go1.18] cmd/go: prevent go work use panic when given a fileJohn Anthony2022-04-052-4/+21
* [release-branch.go1.18] crypto/x509: fix Certificate.Verify crashBrad Fitzpatrick2022-04-042-1/+40
* [release-branch.go1.18] go/types, types2: preserve parent scope when substitu...Robert Findley2022-04-046-14/+215
* [release-branch.go1.18] runtime: make static/dynamic startup detection work w...Paul E. Murphy2022-04-041-11/+21
* [release-branch.go1.18] cmd/compile: replace Type.OrigSym with Type.OrigTypeMatthew Dempsky2022-04-0410-34/+47
* [release-branch.go1.18] all update vendored golang.org/x/toolsRobert Findley2022-04-044-27/+37
* [release-branch.go1.18] cmd/compile/internal/importer: key tparams by Package...Robert Findley2022-04-046-6/+45
* [release-branch.go1.18] cmd/compile: fix panic with nested dead hidden closuresCuong Manh Le2022-04-042-0/+23
* [release-branch.go1.18] cmd/go: avoid stamping VCS metadata in test binariesBryan C. Mills2022-04-045-11/+123
* [release-branch.go1.18] cmd/compile: pointers to notinheap types need their o...Keith Randall2022-04-042-1/+33