Most upgrades are minor version without breaking changes.
One big upgrade is Apollo 2 -> 3, which required a few changes in the
Apollo setup (see src/apollo.ts).
Other changes are due to changes in Prettier, requiring to add
parenthesis around arrow function parameters.
Because of an incompatibility in older version of typescript-eslint with
newer versions of typescript, I had to switch to the "next" unstable
version of react-scripts. It should not break stuff though.
See typescript-eslint/typescript-eslint#2442
Quentin Gliech
created
d75fa17
build(deps): bump github.com/99designs/keyring from 1.1.5 to 1.1.6
Click to expand commit body
Bumps [github.com/99designs/keyring](https://github.com/99designs/keyring) from 1.1.5 to 1.1.6.
- [Release notes](https://github.com/99designs/keyring/releases)
- [Commits](https://github.com/99designs/keyring/compare/v1.1.5...v1.1.6)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
dependabot-preview[bot]
created
db20bc3
repo: fallback editor list by looking if the binary exist
Michael Muré
created
1204b66
Merge pull request #412 from MichaelMure/gogit-repo
Click to expand commit body
repository: go-git backed Repo
Michael Muré
created
4055495
repo: fix wrong ordering in gogit's ListCommit
148b335
command: match the output in ls and in the termui
Michael Muré
created
ae0529e
Merge pull request #457 from zdenek-crha/bright_terminal_readability
Click to expand commit body
Bright terminal readability
Michael Muré
created
999e612
Fix 'no description' readability in terminal with bright background
Click to expand commit body
The rendering of color for 'No description provided' text is broken on
bright terminals - it sets black background which together with default
black forground color renders opaque rectangle.
The GreyBold color alias is broken too - name suggests bold gray
forground color, but actually sets bold default fg color with black
bacground.
First make color alias consistent. Rename it to BlackBold and have it
set bold black fg color (same as similar *Bold aliases).
Second, update all places which use it to render text to also use white
background to prevent it from disappering in terminals with black
background color.
Zdenek Crha
created
6bf6484
Fix help bar readability in terminal with bright background
Click to expand commit body
Set both background and foreground color when displaying help bar to
avoid sitation where default foreground color used by terminal is hard
to read on blue background (like cyan on blue or black on blue).
Apply colors to whole generated help bar to avoid 'stripes' of different
background color where whitespace is used between help items.