Skip to content

Commit 0d4f0e8

Browse files
committed
Add breaking changes entry for the changed sort order for branches
1 parent 3575bb9 commit 0d4f0e8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/i18n/english.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2102,6 +2102,11 @@ git:
21022102
21032103
If, on the other hand, you want this even for feature branches, you can set it to 'allBranches' instead.`,
21042104
"0.51.0": `- The 'subprocess', 'stream', and 'showOutput' fields of custom commands have been replaced by a single 'output' field. This should be transparent, if you used these in your config file it should have been automatically updated for you. There's one notable change though: the 'stream' field used to mean both that the command's output would be streamed to the command log, and that the command would be run in a pseudo terminal (pty). We converted this to 'output: log', which means that the command's output will be streamed to the command log, but not use a pty, on the assumption that this is what most people wanted. If you do actually want to run a command in a pty, you can change this to 'output: logWithPty' instead.`,
2105+
"0.54.0": `- The default sort order for local and remote branches has changed: it used to be 'recency' (based on reflog) for local branches, and 'alphabetical' for remote branches. Both of these have been changed to 'date' (which means committerdate). If you do liked the old defaults better, you can revert to them with the following config:
2106+
2107+
git:
2108+
localBranchSortOrder: recency
2109+
remoteBranchSortOrder: alphabetical`,
21052110
},
21062111
}
21072112
}

0 commit comments

Comments
 (0)