Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update module github.com/jedib0t/go-pretty/v6 to v6.6.6 #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

banban9999
Copy link
Collaborator

@banban9999 banban9999 commented Feb 22, 2021

This PR contains the following updates:

Package Type Update Change
github.com/jedib0t/go-pretty/v6 require minor v6.0.5 -> v6.6.6

Release Notes

jedib0t/go-pretty (github.com/jedib0t/go-pretty/v6)

v6.6.6

Compare Source

What's Changed

New Contributors

Full Changelog: jedib0t/go-pretty@v6.6.5...v6.6.6

v6.6.5

Compare Source

What's Changed

Full Changelog: jedib0t/go-pretty@v6.6.4...v6.6.5

v6.6.4

Compare Source

What's Changed

Full Changelog: jedib0t/go-pretty@v6.6.3...v6.6.4

v6.6.3

Compare Source

What's Changed

Full Changelog: jedib0t/go-pretty@v6.6.2...v6.6.3

v6.6.2

Compare Source

What's Changed

Full Changelog: jedib0t/go-pretty@v6.6.1...v6.6.2

v6.6.1

Compare Source

What's Changed

Full Changelog: jedib0t/go-pretty@v6.6.0...v6.6.1

v6.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: jedib0t/go-pretty@v6.5.9...v6.6.0

v6.5.9

Compare Source

What's Changed

New Contributors

Full Changelog: jedib0t/go-pretty@v6.5.8...v6.5.9

v6.5.8

Compare Source

What's Changed

Full Changelog: jedib0t/go-pretty@v6.5.7...v6.5.8

v6.5.7

Compare Source

What's Changed

Full Changelog: jedib0t/go-pretty@v6.5.6...v6.5.7

v6.5.6

Compare Source

What's Changed

Full Changelog: jedib0t/go-pretty@v6.5.5...v6.5.6

v6.5.5

Compare Source

What's Changed

New Contributors

Full Changelog: jedib0t/go-pretty@v6.5.4...v6.5.5

v6.5.4

Compare Source

What's Changed

New Contributors

Full Changelog: jedib0t/go-pretty@v6.5.3...v6.5.4

v6.5.3

Compare Source

Bug-Fixes

  • table & list:
    • process "\r" correctly (moving the cursor back to start of line)

v6.5.2

Compare Source

Bug-Fixes

  • table & list:
    • process "\r" correctly (erase everything preceding it in the line)

v6.5.1

Compare Source

Features

  • progress
    • auto-trim output to fit terminal width

v6.5.0

Compare Source

Features

  • table
    • SuppressTrailingSpaces() to remove trailing spaces in tables without borders; thanks @​shreddedbacon

Bug-Fixes

  • table
    • handle negative column WidthMax values gracefully; fixes #​285

v6.4.9

Compare Source

Bug-Fixes

  • table
    • do not merge content cells with empty ones (#​280)

v6.4.8

Compare Source

Features

v6.4.7

Compare Source

Features

  • text
  • progress // thanks @​NathanBaulch for all of the following
    • support rendering trackers that haven't started yet (#​270)
    • secondary sort by start time (#​271)
    • stability fix for descending sorts (#​272)
    • render never started trackers properly (#​273)
    • overall ETA never less than max ETA (#​274)

v6.4.6

Compare Source

Features

  • table
    • honor border color overrides for title row (#​260)

v6.4.5

Compare Source

Features

  • table
    • option to custom color borders/separators (#​259)
      • table.Style().Color.Border
      • table.Style().Color.Separator
  • text

v6.4.4

Compare Source

Features

  • table
    • option to avoid coloring borders/separators (table.Style().Options.DoNotColorBordersAndSeparators)

v6.4.3

Compare Source

Bug-Fixes

  • progress
    • fix overall tracker disappearing when appending a tracker after current trackers are done (fixes #​245) (thanks @​iyear)

v6.4.2

Compare Source

Bug-Fixes

  • table
    • colorize title borders (fixes #​234)

v6.4.1

Compare Source

Bug-Fixes

  • table
    • better column sizing for complex auto-merge use-cases (fixes #​226)

v6.4.0

Compare Source

Features

  • progress
    • option to set Pinned Message(s) above active Trackers (thanks to @​iyear)

v6.3.9

Compare Source

Features

v6.3.8

Compare Source

Features

  • progress
    • can now display "speed" of progress for each tracker (thanks @​iyear)

v6.3.7

Compare Source

Bug-Fixes

  • table
    • do not colorize borders using row-painter output of the previous row (fixes #​221)
  • text
    • provide an override method to possibly deal with width calculation issues when LANG is set to some East Asian value (addresses #​220)

v6.3.6

Compare Source

Features

  • list

v6.3.5

Compare Source

Bug-Fixes

  • table
    • fix column separators in tables without headers or footers (fixes #​215)

v6.3.4

Compare Source

Bug-Fixes

  • table
    • fix merging issues in rows with wrapped columns

v6.3.3

Compare Source

Bug-Fixes

  • text
    • deprecate text.RuneCount for being misnamed (#​209)
    • introduce text.RuneWidthWithoutEscSequences as a replacement
  • dependencies
    • upgrade testify from v1.7.0 to v1.7.4 to avoid using yaml.v3 v3.0.0 (#​210)

v6.3.2

Compare Source

Features

  • table
    • Introduce an option to set Alignment for horizontally merged cells

v6.3.1

Compare Source

Features

  • progress
    • Deprecate all the Show* interfaces in progress.Progress and progress.Writer (to be removed in v7)
    • Introduce progress.Style.Visibility with same defaults as before
    • Introduce progress.Style.Visibility.ETAOverall as a new option for addressing bug #​196

v6.3.0

Compare Source

Features

  • progress
    • Log() method to log additional messages/errors in the middle of tracking

v6.2.7

Compare Source

Bug-Fixes

  • table
    • auto-merge: compute column separator length correctly (#​193)

v6.2.6

Compare Source

Bug-Fixes

  • table
    • fix subtle auto-merge bugs with separators and padding (#​192)

v6.2.5

Compare Source

Bug-Fixes

  • progress
    • support control of notation position (#​180)
  • table
    • fix rendering issues with nil values (#​179)

Misc

  • Sonar integration and fixes for some issues/smells
  • Update dependencies and go to 1.16
  • Fix some minor readability and quality issues

Thanks @​ferryvg for the bug-fixes!

v6.2.4

Compare Source

Bug-Fixes

  • progress
    • render once before terminating to ensure one minimum render (#​173)
    • improve rendering and prevent races (#​174, #​175)
  • table
    • fix documentation and remove bad samples (#​176)

Thanks @​virtuald and @​kamikazechaser!

v6.2.3

Compare Source

Bug-Fixes

  • table
    • fix column wrapping logic (fixes #​170)

v6.2.2

Compare Source

Bug-Fixes

v6.2.1

Compare Source

Bug-Fixes

  • progress
    • remove unsafe read/write of Tracker.Message (#​165)

v6.2.0

Compare Source

Bug-Fixes

  • progress (lot of fixes from @​virtuald again -- thanks!)
    • don't use mutex twice in ETA function (#​158)
    • add incremental failure mode (#​160)
    • Tracker.UpdateMessage() to safely update the tracker Message mid-way (#​162)

Misc

  • default branch is now main instead of master

v6.1.1

Compare Source

Bug-Fixes

  • progress (lot of fixes from @​virtuald)
    • simplify indeterminate indicator code (#​148)
    • don't leak time.Tick channel (#​152)
    • way to tell that a tracker/operation failed (#​153)
    • fix incorrect mutex usages (#​154)

Misc

  • documentation fixes

v6.1.0

Compare Source

Features

  • progress
    • Style.Chars.Indeterminate: mechanism to show progress where the end is unknown
    • Quite a few built-in styles for this, including a semi-decent Pac-Man version ;)

Bug-Fixes

  • progress
    • plug possible race conditions due to bad mutex usage

v6.0.6

Compare Source

Features

  • progress
    • ShowETA(): show ETA for individual trackers

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from 1ee089d to 7362d81 Compare April 12, 2021 00:07
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.1.0 Update module github.com/jedib0t/go-pretty/v6 to v6.1.1 Apr 12, 2021
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from 7362d81 to a8d5930 Compare April 26, 2021 00:07
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.1.1 Update module github.com/jedib0t/go-pretty/v6 to v6.2.1 Apr 26, 2021
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.2.1 Update module github.com/jedib0t/go-pretty/v6 to v6.2.2 May 24, 2021
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from a8d5930 to a9dacae Compare May 24, 2021 00:07
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from a9dacae to 5d8e76b Compare July 12, 2021 00:07
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.2.2 Update module github.com/jedib0t/go-pretty/v6 to v6.2.4 Jul 12, 2021
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.2.4 Update module github.com/jedib0t/go-pretty/v6 to v6.2.5 Jan 24, 2022
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from 5d8e76b to b137e09 Compare January 24, 2022 00:07
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.2.5 Update module github.com/jedib0t/go-pretty/v6 to v6.2.7 Feb 14, 2022
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from b137e09 to b74c5df Compare February 14, 2022 00:07
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.2.7 Update module github.com/jedib0t/go-pretty/v6 to v6.3.0 Mar 28, 2022
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from b74c5df to 6c5d3dd Compare March 28, 2022 00:07
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.3.0 Update module github.com/jedib0t/go-pretty/v6 to v6.3.1 Apr 18, 2022
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from 6c5d3dd to ee28aae Compare April 18, 2022 00:08
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.3.1 Update module github.com/jedib0t/go-pretty/v6 to v6.3.2 Jun 13, 2022
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from ee28aae to 819809e Compare June 13, 2022 00:06
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.3.2 Update module github.com/jedib0t/go-pretty/v6 to v6.3.3 Jun 27, 2022
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from 819809e to a4c8551 Compare June 27, 2022 00:07
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.3.3 Update module github.com/jedib0t/go-pretty/v6 to v6.3.5 Jul 18, 2022
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from a4c8551 to d9b9802 Compare July 18, 2022 00:09
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.3.5 Update module github.com/jedib0t/go-pretty/v6 to v6.3.6 Aug 8, 2022
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from d9b9802 to 1a03b7e Compare August 8, 2022 00:06
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.3.6 Update module github.com/jedib0t/go-pretty/v6 to v6.3.7 Aug 29, 2022
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from 1a03b7e to c326adc Compare August 29, 2022 00:07
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.3.7 Update module github.com/jedib0t/go-pretty/v6 to v6.3.8 Sep 5, 2022
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from c326adc to c64cf43 Compare September 5, 2022 00:07
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.3.8 Update module github.com/jedib0t/go-pretty/v6 to v6.3.8 - autoclosed Oct 24, 2022
@banban9999 banban9999 closed this Oct 24, 2022
@banban9999 banban9999 deleted the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch October 24, 2022 00:08
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.3.8 - autoclosed Update module github.com/jedib0t/go-pretty/v6 to v6.3.8 Oct 31, 2022
@banban9999 banban9999 reopened this Oct 31, 2022
@banban9999 banban9999 restored the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch October 31, 2022 00:06
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from c64cf43 to f5f7ffe Compare September 23, 2024 00:06
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.3.8 Update module github.com/jedib0t/go-pretty/v6 to v6.5.9 Sep 23, 2024
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from f5f7ffe to 740facc Compare October 7, 2024 00:06
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.5.9 Update module github.com/jedib0t/go-pretty/v6 to v6.6.0 Oct 7, 2024
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from 740facc to aa8d831 Compare October 28, 2024 00:06
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.6.0 Update module github.com/jedib0t/go-pretty/v6 to v6.6.1 Oct 28, 2024
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from aa8d831 to 96fbf40 Compare November 25, 2024 00:06
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.6.1 Update module github.com/jedib0t/go-pretty/v6 to v6.6.2 Nov 25, 2024
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from 96fbf40 to b8f0808 Compare December 2, 2024 00:06
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.6.2 Update module github.com/jedib0t/go-pretty/v6 to v6.6.3 Dec 2, 2024
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from b8f0808 to 9db1f3d Compare December 16, 2024 00:06
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.6.3 Update module github.com/jedib0t/go-pretty/v6 to v6.6.5 Dec 16, 2024
@banban9999 banban9999 force-pushed the renovate/github.jparrowsec.cn-jedib0t-go-pretty-v6-6.x branch from 9db1f3d to 438fd70 Compare February 17, 2025 00:07
@banban9999 banban9999 changed the title Update module github.com/jedib0t/go-pretty/v6 to v6.6.5 Update module github.com/jedib0t/go-pretty/v6 to v6.6.6 Feb 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant