Improved variable naming for refresh
[stgit.git] / CHANGELOG.md
blob9feaf7ddb61eaf4584cf42a3c1f957e4fd61a378
1 # Changelog
3 ## [Unreleased]
5 ### Removed
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`
11 ### Added
12 - The pre-commit hook is now run for `stg refresh`
13 - New `--spill` option for `stg refresh`
15 ### Changed
16 - Use `python3` in shebangs instead of `python`
17 - `contrib/stgbashprompt.sh` is no longer executable
19 ### Fixed
20 - Importing large patches is much, much faster (#66)
21 - Other performance improvements when dealing with large patches
22 - Repair diffstat when outside work tree root (#62)
23 - Use encoded (string) environment variables on Windows (#79)
25 ## [0.23] 2020-06-12
27 ### Removed
28 - Drop support for Python 3.3; Python 2 (2.6 and 2.7) remain
29   deprecated, but supported for one last release
30 - Tutorial is removed; it now exists as part of the website
32 ### Deprecated
33 - Python 2.x support is deprecated and will be removed in a future
34   release
36 ### Added
37 - Support html5 output of docs from asciidoc
38 - Add `--expose` option for `stg pick` to allow picked commit message to
39   be customized
41 ### Changed
42 - Limit mail diffstat to 72 columns
43 - Added pyproject.toml file for black configuration
44 - Minimum Git version is 2.2.0
45 - Quote stg and subcommand in man page synopsis
46 - Replaced RELEASENOTES with this CHANGELOG.md
47 - Replaces Documentation/SubmittingPatches with CONTRIBUTING.md
49 ### Fixed
50 - Repair MANIFEST.in and generated source dist
51 - Repair importing mail with ": " (colon space) in subject
52 - Fix mail cover letter shortlog
53 - Fix mail cover letter diffstat
54 - `stg series` now only outputs colors when `isatty()`
55 - Repair mail SSL check (#57)
56 - Repair `stg mail` with both `-a` and `-e` options (#58)
57 - Remove empty short-opt for `--no-submodules` of `stg refresh`
58 - Repair build.py for Python 2 with explicit `flush()`
59 - `stgit.refreshsubmodules` added to sample gitconfig
61 ### Internal
62 - Update docs build system from upstream Git docs
63 - Use coverage contexts to map commands to covered lines
64 - Improve mail tests
65 - Use GitHub Actions instead of TravisCI
66 - Format StGit source using black formatter
68 ## [0.22] - 2020-03-02
70 ### Removed
71 - Remove debian packaging; downstream Debian uses its own anyway
73 ### Deprecated
74 - Python 2.x support is deprecated and will be removed in the next StGit
75   release
76 - `stg publish` is deprecated and will be removed in the next StGit
77   release
79 ### Added
80 - `stg import` has new --keep-cr option, like `git mailsplit`
82 ### Changed
83 - `stg new` now includes patch name in log message
84 - `stg branch --rename` can now rename the current branch
85 - `stg branch --create` now works even if the workspace is dirty,
86   consistent with `git checkout`
87 - `stg branch --description` now works on both regular and stgit
88   branches
89 - `stg edit --diff` now implies `--edit`
90 - `stg refresh` and `stg edit` now reset the committer information,
91   consistent with `stg push`
92 - git notes are now preserved when patches are modified
93 - Tutorial improvements
94 - Many additional tests and test improvements
95 - All stgit commands now use "new" git library infrastructure
97 ### Fixed
98 - `stg branch --create` inherits remote correctly from parent commitish
99 - Patch names are checked earlier to avoid inconsistent stack states
100 - Improved commit data parsing and handling of non-UTF8 encodings
101 - Repair git error messages when checking stgit version from outside a
102   git repo
105 ## [0.21] - 2019-10-28
107 ### Changed
108 - Faster handling of large patches (#44)
110 ### Fixed
111 - Build reproducibility repairs (Thanks reproducible-builds.org team!)
112 - Python can now be run with optimizations (`python -O`)
113 - `stg log` now prints trailing newline
114 - Improved command line option parsing for `stg log`
117 ## [0.20] - 2019-10-04
119 ### Added
120 - `stg patches -d` can now output colored diffs.
121 - `stg publish --overwrite` allows branch to be overwritten instead of
122   creating new commits.
123 - `stg log --clear` deletes the stack's log history. Use with caution.
124 - Fish shell completions for stg.
125 - Zsh completions for stg.
126 - `stg mail --domain` option overrides the host's domain in the message
127   ID.
129 ### Changed
130 - Branch protection metadata now captured in config instead of
131   .git/patches/<branch>protect file. This updates stgit's metadata
132   format from v2 to v3.
133 - `stg diff` no longer shows binary diffs by default. Use `-O--binary`
134   or add `--binary` to stgit.diff-opts in config.
135 - Diagnostic output is now routed to stderr instead of stdout.
136   Diagnostic output is also now sent to stderr unconditionally, i.e. no
137   more isatty() test (#35).
138 - Converted to "new" lib infrastructure: `show`, `patches`, `diff`,
139   `pick`, `pull`, `rebase`, and `fold`.
141 ### Fixed
142 - `stg show` detects conflicting --applied and --unapplied options.
143 - `stg show --stat` now shows commit headers.
144 - `stg patches --diff` now shows proper diff instead of `b'...'` repr of
145   diff.
146 - `stg diff --range` detects some invalid values (e.g. `-r ..`).
147 - Date parsing is now more portable, only use platform specific `date`
148   as last parsing option. Affects, e.g., `stg refresh --authdate`.
149 - Repaired seach path for templates to avoid looking in Python
150   site-packages directory.
151 - Ensure stdout and stderr are flushed. Rarely affected `stg diff`.
152 - `stg repair` will now fail if extra command line arguments are
153   provided.
154 - Bash completions are now generated in a reproducible manner.
155 - `stg edit --diff` on an empty patch no longer crashes.
156 - `stg pick` no longer fails when picked commit has empty message (#39).
157 - `stg rebase` no longer crashes when there are conflicts (#34).
158 - `stg pick` no longer crashes if --name is not provided when picking a
159   regular commit object.
160 - Improved test coverage for: branch, diff, pick, sync,
161 - New tests for: files, patches, fold, series
162 - Portable use of iconv, sort, and sed in tests.
163 - Linting using flake8 and isort.
164 - All Python code now conforms to PEP-8.
165 - Updated test infrastructure from git 2.20.
166 - Parallel tests with coverage (`make -j4 coverage`) now works.
167 - Documentation build is not included in code coverage.
168 - Repaired log end messages when using `STGIT_SUBPROCESS_LOG=debug`.
169 - Renamed "dunder" instance attributes to improve debugging.
170 - Fail faster when patch name has slash ('/') (#24).
173 ## [0.19] 2018-11-05
175 ### Changed
176 - Python 3 support. StGit supports Python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6,
177   and 3.7. PyPy interpreters are also supported.
178 - Submodules are now ignored when checking if working tree is clean.
179   Submodules are also not included by default when refreshing a patch.
180 - Config booleans are now parsed similarly to git-config.
181 - `contrib/stgit.el` is now licenced with GPLv2.
182 - Add continuous integration (travis-ci) and code coverage (coveralls)
183   support.
184 - Many new test cases were added.
186 ### Fixed
187 - Repair handling of emails with utf-8 bodies containing latin-1
188   characters. Also correctly decode email headers containing quoted
189   encoded words.
190 - StGit's version is now correct/available in the release archive.
193 ## [0.18] 2017-08-14
195 ### Added
196 - `commit-msg` hook support for easier integration with Gerrit, allowing
197   a Change-Id line to be inserted in the commit message
198 - `stg mail` improvements for 'Suggested-by:' tag and auto generation of
199   Cc for the cover letter based on all tags in the series
200 - `stg mail` bash completion for the --to, --cc and --bcc options based
201   on the content of the [mail "alias"] section of GIT configuration
202 - `stg edit --review` option to add a 'Reviewed-by:' tag
203 - `stg pop --spill` functionality to allow popping a patch from the
204   stack while keeping its modification in the tree
206 ### Changed
207 - Project page details updated (gna.org has been shut down)
209 ### Fixed
210 - Various fixes and test coverage improvements
213 ## [0.17.1] 2013-09-30
215 ### Changed
216 - Test suite improvements.
217 - Print tracebacks to stderr.
218 - Run test suite in parallel.
220 ### Fixed
221 - Fix dirty index errors when resolving conflicts.
222 - Fix --authdate date parsing.
225 ## [0.17] 2013-06-27
227 ### Added
228 - `stg delete --top` option for deleting the top patch.
229 - `stg branch --merge` option for merging the work tree changes into the
230   other branch.
231 - Support for sending patches both as attachment and inline.
233 ### Changed
234 - `stg mail` no longer filters explicitly added `--cc` sender address.
235 - `stg refresh` warns when index is dirty.
237 ### Fixed
238 - Fix for parsing the commit header correctly.
239 - Several `stgit.el` (Emacs mode) improvements.
240 - Fix `stg status --reset` error messages.
241 - HTML documentation fix.
242 - Email template fixes.
245 ## [0.16] 2012-01-09
247 ### Added
248 - UI adjustments to better match the Git commands.
249   - `stg status` is an alias for `git status`.
250   - `stg reset --hard` behaves similarly to the corresponding git
251     command and option.
252 - `stg branch --cleanup` option to remove the StGit metadata for a
253   given branch.
254 - `stg mail` can use `git send-email` directly.
255 - Vim syntax highlighting for StGit commit messages.
257 ### Fixed
258 - Several improvements to the Emacs mode (stgit.el).
259 - Many bug-fixes.
262 ## [0.15] 2009-10-24
264 ### Removed
265 - The commands "stg add", "stg rm", "stg cp", and "stg resolved" were
266   removed, since there are corresponding Git equivalents.
268 ### Added
269 - New core infrastructure for repository operations, including:
270   - Infinite undo/redo operations and corresponding commands.
271   - Automatic rollback of changes following a failed operation (using
272     transactions)---this ensures that StGit commands either succeed or
273     do nothing. Previously, every commands had its own ad hoc
274     implementation of this.
275 - Some commands were added, including
276   - `stg squash`, for combining two or more patches into one.
277   - `stg publish`, for maintaining merge-friendly branches (which are
278     not rebased).
279   - `stg prev/next` for printing the name of the previous or next patch
280     in the series.
281 - The `stg import` and `stg fold` commands support the `-p N` option for
282   stripping leading slashes from diff paths.
283 - The `stg import` and `stg fold` commands support the `--reject` option
284   for leaving rejected hunks in corresponding `*.rej` files.
285 - New patch identification syntax: `<branch>:<patch>` (see documentation
286   for the "stg id" command).
287 - Autosigning of imported patches when `sign.autosign` configuration
288   option is set.
289 - A powerful Emacs mode for StGit was added to the "contrib" directory.
290   It displays the patch stack in an Emacs buffer, and can handle all
291   common StGit tasks.
292 - Man pages and an improved tutorial.
294 ### Changed
295 - Improved bash tab-completion, automatically generated from the stg
296   command definitions.
299 ## [0.14.3] 2008-06-08
300 ## [0.14.2] 2008-13-24
301 ## [0.14.1] 2007-12-11
302 ## [0.14] 2007-12-09
303 ## [0.13] 2007-07-26
304 ## [0.12] 2007-02-06
305 ## [0.11] 2006-10-21
306 ## [0.10] 2006-06-11
307 ## [0.9] 2006-04-07
308 ## [0.8] 2005-12-23
309 ## [0.7] 2005-10-02
310 ## [0.6] 2005-08-21
311 ## [0.5] 2005-07-30
312 ## [0.4] 2005-07-10