Skip to content

Commit 7f57652

Browse files
authored
Upgrade to 2.1.4 (#77)
1 parent af73315 commit 7f57652

5 files changed

Lines changed: 28 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## [2.1.4](https://github.com/slackhq/gh-stacked-diff/compare/v2.1.3...v2.1.4) - 2026-04-20
6+
7+
### Added
8+
9+
- `--no-template` flag added to `new` to only use the commit body as the PR description without applying the PR description template. Can also be set by `noTemplate` config.
10+
11+
### Changed
12+
13+
- ✅ and 🟡 were switched to a green ✓ and yellow ●. Some terminals (for example, Android Studio) displayed those two character width emoji's as different lengths and so the formatting of tables was off.
14+
15+
### Fixed
16+
17+
- github forks are now supported. Before this fix, command like `new` would try to create pull requests on the `upstream` repository. Now they correctly use `origin`.
18+
19+
Special thanks to the following contributors for contributing to this release!
20+
21+
- [Evan Isnor](https://github.com/evanisnor)
22+
523
## [2.1.3](https://github.com/slackhq/gh-stacked-diff/compare/v2.1.2...v2.1.3) - 2026-04-10
624

725
### Added

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ in the remote branch.
9797
Useful to view list indexes, or copy commit hashes, to use for the
9898
commitIndicator required by other commands.
9999
100-
A means that there is a PR associated with the commit (actually it
100+
A means that there is a PR associated with the commit (actually it
101101
means there is a branch, but having a branch means there is a PR when
102102
using this workflow). If there is more than one commit on the
103103
associated branch, those commits are also listed (indented under
104104
their associated commit summary).
105105
106-
A 🟡 means that multiple commits have the same subject.
106+
A means that multiple commits have the same subject.
107107
Change the subjects to differentiate commits.
108108
109109
Usage:
@@ -207,6 +207,7 @@ Flags:
207207
to be added to a PR by Github, and if you add-reviewers too soon it
208208
will think that they have all passed. Default of -1 means to use 4
209209
or the average number of checks of merged PRs, whatever is less. (default -1)
210+
-T, --no-template Use the commit body as the PR description without applying the PR description template
210211
-r, --reviewers string Comma-separated list of Github usernames to add as reviewers once
211212
checks have passed.
212213
-s, --silent Whether to use voice output (false) or be silent (true) to notify that reviewers have been added.
@@ -713,6 +714,9 @@ The following flags are available on all commands:
713714
Whether to show worktrees in log command
714715
showUiLegend=true|false (default: true)
715716
Whether to show keyboard shortcut legend in interactive UIs
717+
noTemplate=true|false (default: false)
718+
Use the commit body as the PR description without applying
719+
the PR description template
716720
Can be specified multiple times for different keys.
717721
718722
Equivalent config.yaml:
@@ -722,6 +726,7 @@ The following flags are available on all commands:
722726
worktreeMainBranchGuard: path
723727
showWorktrees: true
724728
showUiLegend: true
729+
noTemplate: false
725730
-l, --log-level string Possible log levels:
726731
debug
727732
info

commands/parse_arguments.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func buildRootCommand() *cobra.Command {
102102
" worktreeMainBranchGuard: path\n"+
103103
" showWorktrees: true\n"+
104104
" showUiLegend: true\n"+
105-
" noTemplate: true")
105+
" noTemplate: false")
106106
rootCmd.PersistentFlags().Lookup("config").DefValue = ""
107107

108108
rootCmd.PersistentPreRun = func(cmd *cobra.Command, args []string) {

util/current_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.3
1+
2.1.4

util/stable_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.3
1+
2.1.4

0 commit comments

Comments
 (0)