summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* [release-branch.go1.18] cmd/compile: handle partially overlapping assignmentsKeith Randall2022-08-296-8/+124
* [release-branch.go1.18] cmd/link: fix trampolines breaking DWARF line infoJeremy Quirke2022-08-292-7/+81
* [release-branch.go1.18] misc/cgo/testcarchive: permit SIGQUIT for TestSignalF...Ian Lance Taylor2022-08-294-97/+168
* [release-branch.go1.18] net: fix WriteMsgUDPAddrPort addr handlingdatabase641282022-08-262-1/+50
* [release-branch.go1.18] all: upgrade github.com/google/pprof to v0.0.0-202207...Michael Pratt2022-08-19127-7885/+5363
* [release-branch.go1.18] cmd/compile: fix boolean comparison on RISCV64Cherry Mui2022-08-082-3/+50
* [release-branch.go1.18] cmd/compile: fix boolean comparison on PPC64Cherry Mui2022-08-083-44/+88
* [release-branch.go1.18] cmd/compile: more fix on boolean ops on ARM64Cherry Mui2022-08-084-5/+177
* [release-branch.go1.18] cmd/compile: fix If lowering on ARM64Cherry Mui2022-08-083-3/+201
* [release-branch.go1.18] encoding/xml: skip TestCVE202230633 for short testsRoland Shoemaker2022-08-031-3/+2
* [release-branch.go1.18] go1.18.5go1.18.5Gopher Robot2022-08-011-1/+1
* [release-branch.go1.18] math/big: check buffer lengths in GobDecodeRoland Shoemaker2022-07-294-0/+37
* [release-branch.go1.18] cmd/go: avoid re-enqueuing workspace dependencies wit...Bryan C. Mills2022-07-272-3/+61
* [release-branch.go1.18] cmd/compile: revert "fix missing dict pass for type a...Matthew Dempsky2022-07-272-44/+2
* [release-branch.go1.18] cmd/compile: revert "backport fix for #51840"Matthew Dempsky2022-07-272-50/+4
* [release-branch.go1.18] cmd/compile: do not use special literal assignment if...Cherry Mui2022-07-262-1/+36
* [release-branch.go1.18] testing: include ERROR_SHARING_VIOLATION in Windows c...Bryan C. Mills2022-07-253-8/+22
* [release-branch.go1.18] cmd/go: omit build metadata that may contain system p...Bryan C. Mills2022-07-252-3/+35
* [release-branch.go1.18] runtime: clear timerModifiedEarliest when last timer ...Michael Pratt2022-07-251-2/+10
* [release-branch.go1.18] runtime: use saved LR when unwinding through morestackCherry Mui2022-07-221-2/+13
* [release-branch.go1.18] go1.18.4go1.18.4Gopher Robot2022-07-121-1/+1
* [release-branch.go1.18] encoding/gob: add a depth limit for ignored fieldsRoland Shoemaker2022-07-122-7/+36
* [release-branch.go1.18] path/filepath: fix stack exhaustion in GlobJulie Qiu2022-07-122-1/+21
* [release-branch.go1.18] io/fs: fix stack exhaustion in GlobJulie Qiu2022-07-122-2/+22
* [release-branch.go1.18] compress/gzip: fix stack exhaustion bug in Reader.ReadTatiana Bradley2022-07-122-31/+45
* [release-branch.go1.18] go/parser: limit recursion depthRoland Shoemaker2022-07-124-8/+234
* [release-branch.go1.18] encoding/xml: limit depth of nesting in unmarshalRoland Shoemaker2022-07-122-8/+33
* [release-branch.go1.18] encoding/xml: use iterative Skip, rather than recursiveRoland Shoemaker2022-07-122-7/+26
* [release-branch.go1.18] net/http: preserve nil values in Header.CloneDamien Neil2022-07-122-0/+11
* [release-branch.go1.18] net/http: don't strip whitespace from Transfer-Encodi...Damien Neil2022-07-122-1/+2
* [release-branch.go1.18] cmd/compile: only check implicit dots for method call...Cuong Manh Le2022-07-072-6/+36
* [release-branch.go1.18] cmd/link: use TOC-relative trampolines on PPC64 when ...Paul E. Murphy2022-07-062-71/+78
* [release-branch.go1.18] cmd/link: preserve symbol attributes when cloning to ...Cherry Mui2022-07-061-25/+4
* [release-branch.go1.18] runtime: add race annotations to cbs.lockMichael Pratt2022-07-061-5/+23
* [release-branch.go1.18] cmd/compile: fix prove pass when upper condition is <...Keith Randall2022-07-063-0/+57
* [release-branch.go1.18] runtime: add race annotations to metricsSemaMichael Pratt2022-07-062-10/+27
* [release-branch.go1.18] cmd/go: pass --no-decorate when listing git tags for ...hidu2022-07-062-1/+29
* [release-branch.go1.18] cmd/compile: fix generic inter-inter comparisons from...Cuong Manh Le2022-07-062-2/+36
* [release-branch.go1.18] cmd/compile: allow 128-bit values to be spilledKeith Randall2022-07-065-0/+107
* [release-branch.go1.18] cmd/compile: fix missing dict pass for type assertionsCuong Manh Le2022-07-062-2/+44
* [release-branch.go1.18] cmd/compile: fix wrong unsafe.Offsetof evaluation ins...Cuong Manh Le2022-07-063-0/+49
* [release-branch.go1.18] runtime: store consistent total allocation stats as u...Michael Anthony Knyszek2022-07-064-37/+39
* [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