1. 2a180e2 errgroup: use consistent read for SetLimit panic by Justin Mayhew · 6 weeks ago master v0.19.0
  2. 1966f53 errgroup: fix some typos in comment by cuishuang · 3 months ago v0.18.0
  3. 04914c2 all: upgrade go directive to at least 1.24.0 [generated] by Gopher Robot · 5 months ago v0.17.0
  4. 7fad2c9 errgroup: revert propagation of panics by Alan Donovan · 7 months ago v0.16.0
  5. 8a14946 errgroup: remove duplicated comment by xieyuschen · 8 months ago v0.15.0
  6. 1869c69 all: replace deprecated ioutil by Iliya Lyan · 8 months ago
  7. d1ac909 sync/errgroup: PanicError.Error print stack trace by qiulaidongfeng · 8 months ago
  8. 506c70f errgroup: propagate panic and Goexit through Wait by qiulaidongfeng · 12 months ago v0.14.0
  9. 396f3a0 errgroup: document calling Go before Wait by Sean Liao · 10 months ago v0.13.0
  10. b637f27 errgroup: drop support for Go versions before 1.20 by Ian Lance Taylor · 11 months ago v0.12.0
  11. 960bf1f all: upgrade go directive to at least 1.23.0 [generated] by Gopher Robot · 11 months ago
  12. fe3591b sync/errgroup: improve documentation for semaphore limit behavior by berbreik · 1 year ago v0.11.0
  13. 913fb63 singleflight: fix typo in singleflight_test.go by catatsuy · 1 year, 2 months ago v0.10.0
  14. 151027e README: don't recommend go get by Ian Lance Taylor · 1 year, 2 months ago v0.9.0
  15. 411f99e LICENSE: update per Google Legal by Russ Cox · 1 year, 6 months ago v0.8.0
  16. 14be23e semaphore: cancel acquisition with a done context by Branden Brown · 2 years, 3 months ago v0.7.0
  17. 59c1ca1 errgroup: add reference to sync.WaitGroup by Olivier Mengué · 2 years, 3 months ago v0.6.0
  18. 10739b0 all: update go directive to 1.18 by Dmitri Shuralyov · 2 years, 3 months ago v0.5.0
  19. 22ba207 singleflight: add panicError.Unwrap method by Eric Wohltman · 2 years, 4 months ago v0.4.0
  20. 93782cc errgroup: use WithCancelCause to cancel context by Jon Johnson · 2 years, 10 months ago internal-branch.go1.21-vendor v0.3.0
  21. 4966af6 singleflight: example for using Group by Sean Liao · 2 years, 8 months ago
  22. a6666c1 go.mod: upgrade to go 1.17 by Bryan C. Mills · 4 years, 9 months ago
  23. 1ea3257 singleflight: make the check for exec support in TestPanicDoChan platform-agnostic by Bryan C. Mills · 2 years, 9 months ago v0.2.0
  24. 8fcdb60 singleflight: avoid race between multiple Do calls by Cuong Manh Le · 3 years, 4 months ago internal-branch.go1.20-vendor v0.1.0
  25. 7f9b162 singleflight: remove forgotten field by Cuong Manh Le · 3 years, 4 months ago
  26. f12130a syncmap: remove redundant type conversion by cui fliter · 3 years, 4 months ago
  27. 7fc1605 x/sync/errgroup: clarify docs for Go by Anderson Queiroz · 3 years, 5 months ago
  28. 886fb93 A+C: delete AUTHORS and CONTRIBUTORS by Russ Cox · 3 years, 6 months ago
  29. 0de741c x/sync/errgroup: make note of the default errgroup goroutine limit (unlimited) by Jean de Klerk · 3 years, 8 months ago
  30. 0976fa6 x/sync/errgroup: add TryGo and SetLimit to control concurrency by Changkun Ou · 3 years, 8 months ago internal-branch.go1.19-vendor
  31. 036812b all: go fmt ./... by Russ Cox · 5 years ago internal-branch.go1.18-vendor
  32. 09787c9 README.md: add badge to pkg.go.dev by Julie Qiu · 5 years ago
  33. 67f06af singleflight: fix flaky TestForget by Cuong Manh Le · 5 years ago
  34. b3e1573 singleflight: skip tests involving exec on js/wasm by Bryan C. Mills · 5 years ago
  35. 3042136 singleflight: fix hangs after first Do panic by hanliang.kirk · 5 years ago
  36. 6e8e738 errgroup: fix go vet "copy lock value" warning by Cholerae Hu · 6 years ago
  37. 43a5402 semaphore: unblock waiters when the front waiter cancels by 徐志强 · 6 years ago
  38. cd5d95a syncmap: use type alias for Map by Eric Rutherford · 6 years ago
  39. 1122301 semaphore: better error message when releasing more than held by Jean de Klerk · 7 years ago
  40. 56d3577 singleflight: fix duplicate deleting key when Forget called by LE Manh Cuong · 7 years ago
  41. e225da7 all: add a go.mod file by Michael Matloob · 7 years ago
  42. 37e7f08 semaphore: add more Acquire documentation by Jean de Klerk · 7 years ago
  43. 42b3178 all: remove x/net/context in favour of context by Jean de Klerk · 7 years ago
  44. 1d60e46 CONTRIBUTING.md: remove note about not accepting Pull Requests by Andrew Bonventre · 8 years ago
  45. fd80eb9 semaphore: add worker-pool example by Bryan C. Mills · 8 years ago
  46. 8e0aa68 README: switch to Markdown, add better links by Kevin Burke · 8 years ago
  47. f52d181 semaphore: make test time independent of GOMAXPROCS by Jonathan Amsterdam · 9 years ago
  48. 57af736 syncmap: release m.mu during (*RWMutexMap).Range callbacks by Bryan C. Mills · 9 years ago
  49. 305c7b3 syncmap: backport CL 42095 by Bryan C. Mills · 9 years ago
  50. de49d9d semaphore: avoid loop variable capture by closure by Jonathan Amsterdam · 9 years ago
  51. 5a06fca semaphore: add a weighted semaphore implementation by Jonathan Amsterdam · 9 years ago
  52. a60ad46 syncmap: remove blocking for all operations on existing keys by Bryan C. Mills · 9 years ago
  53. 86ddc85 syncmap: make quick-check output more readable by Bryan C. Mills · 9 years ago
  54. 37569ff syncmap: add benchmark for Range by Bryan C. Mills · 9 years ago
  55. 54b13b0 syncmap: add a synchronized map implementation. by Bryan C. Mills · 9 years ago
  56. 450f422 .: add codereview.cfg by Josh Bleecher Snyder · 9 years ago
  57. 81567d9 errgroup: fix misleading comment in MD5All example by Bryan C. Mills · 9 years ago
  58. 1ae7c7b singleflight: copy from internal/singleflight in standard library by Matt Layher · 9 years ago
  59. 316e794 sync: delete dummy builders_test file by Bryan C. Mills · 10 years ago
  60. 53cf14c errgroup: fix build errors in errgroup_test by Bryan C. Mills · 10 years ago
  61. 457c582 errgroup: add package by Bryan C. Mills · 10 years ago
  62. c6cf257 sync: add a Go file to make the builders happy by Brad Fitzpatrick · 10 years ago
  63. b62d5b6 initial commit by Andrew Gerrand · 10 years ago