Releases: briandowns/spinner
Releases · briandowns/spinner
v1.23.1
What's Changed
- fix: CVE-2022-29526 by @testwill in #152
- Consolidate the dependencies for the IsTerminal() API by @debarshiray in #156
New Contributors
- @testwill made their first contribution in #152
- @debarshiray made their first contribution in #156
Full Changelog: v1.23.0...v1.23.1
v1.23.0
update deps Signed-off-by: Brian Downs <[email protected]>
v1.22.0
update go.mod Signed-off-by: Brian Downs <[email protected]>
v1.21.0
fix vendoring Signed-off-by: Brian Downs <[email protected]>
v1.20.0
Support for multi-line spinner strings (#146)
v1.19.0
add enable/disable toggle (#144)
v1.18.1
start spinner only when fd is terminal (#131)
v1.18.0
updates (#129) Signed-off-by: Brian Downs <[email protected]>
v1.17.0
Move cursor to the beginning of the line before erasing (#126) The \033[K escape sequence signifies 'clear from cursor position to the end of the line'. Without moving the cursor to the beggining of the line first it results in no text being deleted. The behaviour of Carriage Return (\r) in terminal emulators is not formally standardized but it is generally interpreted as a move to the beginning of the line. Fixes https://github.com/briandowns/spinner/issues/123
v1.16.0
Merge pull request #120 from briandowns/fix_new_line revert previous change for windows