6 - Drop support for Python < 3.5
7 - Remove previously deprecated `stg publish` command
8 - Removed contrib scripts: `stg-swallow`, `stg-fold-files-from`,
9 `stg-dispatch`, `stg-whatchanged`, and `stg-show-old`
12 - The pre-commit hook is now run for `stg refresh`
13 - New `--spill` option for `stg refresh`
14 - Add stgit.series.description config option (#88)
15 - Official support for Python versions up to 3.9
18 - Stack metadata format 4. All metadata now kept in Git objects; no more
19 stack state files in .git/patches. **A one-way auto-upgrade to format
20 version 4 will occur when StGit commands are run on an existing StGit
22 - Use `python3` in shebangs instead of `python`
23 - `contrib/stgbashprompt.sh` is no longer executable
24 - Internal docstrings now use reStructuredText instead of Epytext
27 - Importing large patches is much, much faster (#66)
28 - Other performance improvements when dealing with large patches
29 - Repair diffstat when outside work tree root (#62)
30 - Use encoded (string) environment variables on Windows (#79)
31 - Fix `stg pull` when no upstream is configured (#83)
32 - Fix `refresh` crash with path limiting and files added to index (#85)
33 - Repair `new` with patchdescr.template crash (#87)
34 - Repair `log` from worktree subdir with patches specified
35 - Repair `import` allowing/generating duplicate patch names (#64)
36 - Repair `mail --auto` to strip comments after addrs (#91)
42 - Drop support for Python 3.3; Python 2 (2.6 and 2.7) remain
43 deprecated, but supported for one last release
44 - Tutorial is removed; it now exists as part of the website
47 - Python 2.x support is deprecated and will be removed in a future
51 - Support html5 output of docs from asciidoc
52 - Add `--expose` option for `stg pick` to allow picked commit message to
56 - Limit mail diffstat to 72 columns
57 - Added pyproject.toml file for black configuration
58 - Minimum Git version is 2.2.0
59 - Quote stg and subcommand in man page synopsis
60 - Replaced RELEASENOTES with this CHANGELOG.md
61 - Replaces Documentation/SubmittingPatches with CONTRIBUTING.md
64 - Repair MANIFEST.in and generated source dist
65 - Repair importing mail with ": " (colon space) in subject
66 - Fix mail cover letter shortlog
67 - Fix mail cover letter diffstat
68 - `stg series` now only outputs colors when `isatty()`
69 - Repair mail SSL check (#57)
70 - Repair `stg mail` with both `-a` and `-e` options (#58)
71 - Remove empty short-opt for `--no-submodules` of `stg refresh`
72 - Repair build.py for Python 2 with explicit `flush()`
73 - `stgit.refreshsubmodules` added to sample gitconfig
76 - Update docs build system from upstream Git docs
77 - Use coverage contexts to map commands to covered lines
79 - Use GitHub Actions instead of TravisCI
80 - Format StGit source using black formatter
82 ## [0.22] - 2020-03-02
85 - Remove debian packaging; downstream Debian uses its own anyway
88 - Python 2.x support is deprecated and will be removed in the next StGit
90 - `stg publish` is deprecated and will be removed in the next StGit
94 - `stg import` has new --keep-cr option, like `git mailsplit`
97 - `stg new` now includes patch name in log message
98 - `stg branch --rename` can now rename the current branch
99 - `stg branch --create` now works even if the workspace is dirty,
100 consistent with `git checkout`
101 - `stg branch --description` now works on both regular and stgit
103 - `stg edit --diff` now implies `--edit`
104 - `stg refresh` and `stg edit` now reset the committer information,
105 consistent with `stg push`
106 - git notes are now preserved when patches are modified
107 - Tutorial improvements
108 - Many additional tests and test improvements
109 - All stgit commands now use "new" git library infrastructure
112 - `stg branch --create` inherits remote correctly from parent commitish
113 - Patch names are checked earlier to avoid inconsistent stack states
114 - Improved commit data parsing and handling of non-UTF8 encodings
115 - Repair git error messages when checking stgit version from outside a
119 ## [0.21] - 2019-10-28
122 - Faster handling of large patches (#44)
125 - Build reproducibility repairs (Thanks reproducible-builds.org team!)
126 - Python can now be run with optimizations (`python -O`)
127 - `stg log` now prints trailing newline
128 - Improved command line option parsing for `stg log`
131 ## [0.20] - 2019-10-04
134 - `stg patches -d` can now output colored diffs.
135 - `stg publish --overwrite` allows branch to be overwritten instead of
136 creating new commits.
137 - `stg log --clear` deletes the stack's log history. Use with caution.
138 - Fish shell completions for stg.
139 - Zsh completions for stg.
140 - `stg mail --domain` option overrides the host's domain in the message
144 - Branch protection metadata now captured in config instead of
145 .git/patches/<branch>protect file. This updates stgit's metadata
146 format from v2 to v3.
147 - `stg diff` no longer shows binary diffs by default. Use `-O--binary`
148 or add `--binary` to stgit.diff-opts in config.
149 - Diagnostic output is now routed to stderr instead of stdout.
150 Diagnostic output is also now sent to stderr unconditionally, i.e. no
151 more isatty() test (#35).
152 - Converted to "new" lib infrastructure: `show`, `patches`, `diff`,
153 `pick`, `pull`, `rebase`, and `fold`.
156 - `stg show` detects conflicting --applied and --unapplied options.
157 - `stg show --stat` now shows commit headers.
158 - `stg patches --diff` now shows proper diff instead of `b'...'` repr of
160 - `stg diff --range` detects some invalid values (e.g. `-r ..`).
161 - Date parsing is now more portable, only use platform specific `date`
162 as last parsing option. Affects, e.g., `stg refresh --authdate`.
163 - Repaired seach path for templates to avoid looking in Python
164 site-packages directory.
165 - Ensure stdout and stderr are flushed. Rarely affected `stg diff`.
166 - `stg repair` will now fail if extra command line arguments are
168 - Bash completions are now generated in a reproducible manner.
169 - `stg edit --diff` on an empty patch no longer crashes.
170 - `stg pick` no longer fails when picked commit has empty message (#39).
171 - `stg rebase` no longer crashes when there are conflicts (#34).
172 - `stg pick` no longer crashes if --name is not provided when picking a
173 regular commit object.
174 - Improved test coverage for: branch, diff, pick, sync,
175 - New tests for: files, patches, fold, series
176 - Portable use of iconv, sort, and sed in tests.
177 - Linting using flake8 and isort.
178 - All Python code now conforms to PEP-8.
179 - Updated test infrastructure from git 2.20.
180 - Parallel tests with coverage (`make -j4 coverage`) now works.
181 - Documentation build is not included in code coverage.
182 - Repaired log end messages when using `STGIT_SUBPROCESS_LOG=debug`.
183 - Renamed "dunder" instance attributes to improve debugging.
184 - Fail faster when patch name has slash ('/') (#24).
190 - Python 3 support. StGit supports Python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6,
191 and 3.7. PyPy interpreters are also supported.
192 - Submodules are now ignored when checking if working tree is clean.
193 Submodules are also not included by default when refreshing a patch.
194 - Config booleans are now parsed similarly to git-config.
195 - `contrib/stgit.el` is now licenced with GPLv2.
196 - Add continuous integration (travis-ci) and code coverage (coveralls)
198 - Many new test cases were added.
201 - Repair handling of emails with utf-8 bodies containing latin-1
202 characters. Also correctly decode email headers containing quoted
204 - StGit's version is now correct/available in the release archive.
210 - `commit-msg` hook support for easier integration with Gerrit, allowing
211 a Change-Id line to be inserted in the commit message
212 - `stg mail` improvements for 'Suggested-by:' tag and auto generation of
213 Cc for the cover letter based on all tags in the series
214 - `stg mail` bash completion for the --to, --cc and --bcc options based
215 on the content of the [mail "alias"] section of GIT configuration
216 - `stg edit --review` option to add a 'Reviewed-by:' tag
217 - `stg pop --spill` functionality to allow popping a patch from the
218 stack while keeping its modification in the tree
221 - Project page details updated (gna.org has been shut down)
224 - Various fixes and test coverage improvements
227 ## [0.17.1] 2013-09-30
230 - Test suite improvements.
231 - Print tracebacks to stderr.
232 - Run test suite in parallel.
235 - Fix dirty index errors when resolving conflicts.
236 - Fix --authdate date parsing.
242 - `stg delete --top` option for deleting the top patch.
243 - `stg branch --merge` option for merging the work tree changes into the
245 - Support for sending patches both as attachment and inline.
248 - `stg mail` no longer filters explicitly added `--cc` sender address.
249 - `stg refresh` warns when index is dirty.
252 - Fix for parsing the commit header correctly.
253 - Several `stgit.el` (Emacs mode) improvements.
254 - Fix `stg status --reset` error messages.
255 - HTML documentation fix.
256 - Email template fixes.
262 - UI adjustments to better match the Git commands.
263 - `stg status` is an alias for `git status`.
264 - `stg reset --hard` behaves similarly to the corresponding git
266 - `stg branch --cleanup` option to remove the StGit metadata for a
268 - `stg mail` can use `git send-email` directly.
269 - Vim syntax highlighting for StGit commit messages.
272 - Several improvements to the Emacs mode (stgit.el).
279 - The commands "stg add", "stg rm", "stg cp", and "stg resolved" were
280 removed, since there are corresponding Git equivalents.
283 - New core infrastructure for repository operations, including:
284 - Infinite undo/redo operations and corresponding commands.
285 - Automatic rollback of changes following a failed operation (using
286 transactions)---this ensures that StGit commands either succeed or
287 do nothing. Previously, every commands had its own ad hoc
288 implementation of this.
289 - Some commands were added, including
290 - `stg squash`, for combining two or more patches into one.
291 - `stg publish`, for maintaining merge-friendly branches (which are
293 - `stg prev/next` for printing the name of the previous or next patch
295 - The `stg import` and `stg fold` commands support the `-p N` option for
296 stripping leading slashes from diff paths.
297 - The `stg import` and `stg fold` commands support the `--reject` option
298 for leaving rejected hunks in corresponding `*.rej` files.
299 - New patch identification syntax: `<branch>:<patch>` (see documentation
300 for the "stg id" command).
301 - Autosigning of imported patches when `sign.autosign` configuration
303 - A powerful Emacs mode for StGit was added to the "contrib" directory.
304 It displays the patch stack in an Emacs buffer, and can handle all
306 - Man pages and an improved tutorial.
309 - Improved bash tab-completion, automatically generated from the stg
313 ## [0.14.3] 2008-06-08
314 ## [0.14.2] 2008-13-24
315 ## [0.14.1] 2007-12-11