|
1 | 1 | # Changelog
|
2 | 2 |
|
3 |
| -## [2.0.0-alpha.1] 2022-06-17 |
| 3 | +## [2.0.0-alpha.2] 2022-07-07 |
4 | 4 |
|
5 |
| -### Removed |
| 5 | +### Added |
| 6 | +- `stg email format` wraps `git format-patch` and provides a mechanism |
| 7 | + to generate patch emails and optional cover letter in mbox format. |
| 8 | +- `stg email send` wraps `git send-email` and allows sending patch |
| 9 | + emails, either from files generated by `stg email format` or by |
| 10 | + specifying patches directly. |
| 11 | + |
| 12 | +### Changed |
| 13 | +- Bash completions for shell aliases now fallback to filename |
| 14 | + completions (#191). |
| 15 | +- Help options listings now ensure --color and --help are shown last. |
| 16 | +- Various zsh completion improvments: |
| 17 | + - Add descriptions for --color values |
| 18 | + - Complete -O/--diff-opts values (using `git diff-tree --git-completion-helper`) |
| 19 | + - Comprehend `stg -C <dir>` options |
| 20 | + - Improved/corrected alias expansion |
| 21 | + - Improved error messages when completion is attempted outside git |
| 22 | + repo and/or StGit-initialized branch |
| 23 | + - Patch name completions now look and feel like output from `stg |
| 24 | + series` |
| 25 | + - Complete patch range syntax ('patch0..patchN') for all relevant |
| 26 | + commands |
| 27 | + - Completion for `stg squash` no longer allows duplicate patch name |
| 28 | + arguments |
| 29 | + - Removed completions for removed `stg mail` command |
| 30 | + - Completion for `stg sink` no longer offers hidden patches |
| 31 | + - Completion for `stg rename` comprehends second, new patch name |
| 32 | + argument |
| 33 | + - Completion for `stg diff --range` now works |
| 34 | + |
| 35 | +### Fixed |
| 36 | +- Compatibility with git versions prior to 2.35.0 is repaired by |
| 37 | + avoiding using `git apply --allow-empty` (#192). |
| 38 | +- Fish completions for -O/--diff-opts are repaired |
| 39 | + |
| 40 | + |
| 41 | +## [2.0.0-alpha.1] 2022-06-17 |
6 | 42 |
|
7 | 43 | ### Added
|
8 | 44 | - `stg series` gains the `-i/--commit-id` option to display patches'
|
|
64 | 100 | - `stg spill` replaces `stg refresh --spill`.
|
65 | 101 |
|
66 | 102 | ### Changed
|
| 103 | +- StGit aliases are now more like Git aliases. Normal aliases refer to |
| 104 | + StGit subcommands, but aliases prefixed with '!' are shell aliases |
| 105 | + that may run arbitrary commands. An example normal alias would be |
| 106 | + `git config stgit.alias.list 'series --description --empty'`. An |
| 107 | + example shell alias would be `git config stgit.alias.st '!git status |
| 108 | + --short'`. |
67 | 109 | - The `--ack` and `--review` options now optionally take a value. The
|
68 | 110 | `--ack-by` and `--review-by` options are deprecated.
|
69 | 111 | - Commands such as `stg goto`, `stg push`, and `stg pop` now require
|
|
0 commit comments