fix(deps): update module github.com/vbauerster/mpb/v8 to v8.8.3

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2024-08-29 17:20:01 +00:00
committed by GitHub
parent 2b3052eac3
commit 3bdddea8fa
9 changed files with 115 additions and 113 deletions

View File

@@ -24,7 +24,7 @@ func inspect(decorators []decor.Decorator) (dest []decor.Decorator) {
func PrependDecorators(decorators ...decor.Decorator) BarOption {
decorators = inspect(decorators)
return func(s *bState) {
s.sortDecorators(decorators)
s.populateEwmaDecorators(decorators)
s.decorators[0] = decorators
}
}
@@ -33,7 +33,7 @@ func PrependDecorators(decorators ...decor.Decorator) BarOption {
func AppendDecorators(decorators ...decor.Decorator) BarOption {
decorators = inspect(decorators)
return func(s *bState) {
s.sortDecorators(decorators)
s.populateEwmaDecorators(decorators)
s.decorators[1] = decorators
}
}