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: creachadair/taskgroup
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.2
Choose a base ref
...
head repository: creachadair/taskgroup
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.4.2
Choose a head ref
  • 20 commits
  • 10 files changed
  • 1 contributor

Commits on Mar 30, 2022

  1. Configuration menu
    Copy the full SHA
    9e4ac2e View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2022

  1. Configuration menu
    Copy the full SHA
    5e4619f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    623a74d View commit details
    Browse the repository at this point in the history
  3. Update CI target branch.

    creachadair committed Apr 16, 2022
    Configuration menu
    Copy the full SHA
    67ac0a2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b9acaa9 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2022

  1. Configuration menu
    Copy the full SHA
    f1a6ab1 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2022

  1. Configuration menu
    Copy the full SHA
    68f7f48 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2022

  1. Configuration menu
    Copy the full SHA
    8ed352a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2b7470d View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

  1. Configuration menu
    Copy the full SHA
    2d543c2 View commit details
    Browse the repository at this point in the history
  2. Run gofmt from Go 1.19

    creachadair committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    64345a8 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2022

  1. Configuration menu
    Copy the full SHA
    2134798 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2022

  1. Configuration menu
    Copy the full SHA
    be81d9a View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2022

  1. Configuration menu
    Copy the full SHA
    1b94272 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2022

  1. Add .gitignore

    creachadair committed Dec 31, 2022
    Configuration menu
    Copy the full SHA
    88972ab View commit details
    Browse the repository at this point in the history
  2. Check in Go update rules.

    creachadair committed Dec 31, 2022
    Configuration menu
    Copy the full SHA
    8289b22 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1a729de View commit details
    Browse the repository at this point in the history
  4. Add a single-task monitoring type. (#1)

    The Solo type is a specialization of a Group for a single goroutine.
    
    - Add tests.
    - Update the README.
    - Add an executable example.
    creachadair authored Dec 31, 2022
    Configuration menu
    Copy the full SHA
    dab2ab6 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2023

  1. Fix a race condition between multiple callers of Wait.

    If multiple goroutines called Wait on a Group, they would race on cleaning up
    the error collector. Add a regression test, and avert the error by ensuring
    only one caller does the cleanup.
    creachadair committed Jan 1, 2023
    Configuration menu
    Copy the full SHA
    8b78974 View commit details
    Browse the repository at this point in the history
  2. Fix a bug when waiting on an unstarted group.

    When a group is created but no goroutines are started in it, the fields are not
    populated and the error service routine is not started. This is as intended,
    but meant waiting for an empty group could panic. Fix the latter.
    creachadair committed Jan 1, 2023
    Configuration menu
    Copy the full SHA
    ff1874e View commit details
    Browse the repository at this point in the history
Loading