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: vbauerster/mpb
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.8.1
Choose a base ref
...
head repository: vbauerster/mpb
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.8.2
Choose a head ref
  • 14 commits
  • 28 files changed
  • 1 contributor

Commits on Aug 17, 2024

  1. drop averageDecorators slice from bState struct

    DecoratorAverageAdjust is very uncommon method to call because start
    time can be set at construction time. It's not worth to keep slice for
    method which is potentially never called.
    vbauerster committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    423ec45 View commit details
    Browse the repository at this point in the history
  2. avoid data races by waiting inside func(s *bState)

    This allows ranging over decorators concurrently without using mutexes
    or other sync book keeping because next call to d.Decor() is awaited.
    vbauerster committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    3605d1b View commit details
    Browse the repository at this point in the history
  3. drop mutex book keeping on MovingAverage impls

    Commit d2d7398c allows to drop mutex book keeping.
    vbauerster committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    b07e214 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    111651a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ff80242 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c31e10e View commit details
    Browse the repository at this point in the history
  7. no need for iter chan

    Inline iteration inside func(s *bState)
    vbauerster committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    5d0c7d2 View commit details
    Browse the repository at this point in the history
  8. drop shutdownListeners slice from bState struct

    Instead traverse once at shutdown.
    vbauerster committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    655922b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    c0a9ceb View commit details
    Browse the repository at this point in the history
  10. comment for future self

    vbauerster committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    3af1f33 View commit details
    Browse the repository at this point in the history
  11. minor: one line comment

    vbauerster committed Aug 17, 2024
    Configuration menu
    Copy the full SHA
    ab517f6 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2024

  1. minor: godoc edit

    vbauerster committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    303de2e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f97705a View commit details
    Browse the repository at this point in the history
  3. v8.8.2

    vbauerster committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    67adb9c View commit details
    Browse the repository at this point in the history
Loading