Merge branch 'sg/completion-commit-cleanup'
[git/mingw.git] / contrib / hooks / multimail / CHANGES
blob0b823d8f5f6eaa13f900bfbb0152383b32be20b8
1 Release 1.1.0
2 =============
4 * When a single commit is pushed, omit the reference changed email.
5   Set multimailhook.combineWhenSingleCommit to false to disable this
6   new feature.
8 * In gitolite environments, the pusher's email address can be used as
9   the From address by creating a specially formatted comment block in
10   gitolite.conf (see multimailhook.from in README).
12 * Support for SMTP authentication and SSL/TLS encryption was added,
13   see smtpUser, smtpPass, smtpEncryption in README.
15 * A new option scanCommitForCc was added to allow git-multimail to
16   search the commit message for 'Cc: ...' lines, and add the
17   corresponding emails in Cc.
19 * If $USER is not set, use the variable $USERNAME. This is needed on
20   Windows platform to recognize the pusher.
22 * The emailPrefix variable can now be set to an empty string to remove
23   the prefix.
25 * A short tutorial was added in doc/gitolite.rst to set up
26   git-multimail with gitolite.
28 * The post-receive file was renamed to post-receive.example. It has
29   always been an example (the standard way to call git-multimail is to
30   call git_multimail.py), but it was unclear to many users.
32 * A new refchangeShowGraph option was added to make it possible to
33   include both a graph and a log in the summary emails.  The options
34   to control the graph formatting can be set via the new graphOpts
35   option.
37 * New option --force-send was added to disable new commit detection
38   for update hook. One use-case is to run git_multimail.py after
39   running "git fetch" to send emails about commits that have just been
40   fetched (the detection of new commits was unreliable in this mode).
42 * The testing infrastructure was considerably improved (continuous
43   integration with travis-ci, automatic check of PEP8 and RST syntax,
44   many improvements to the test scripts).
46 This version has been tested with Python 2.4 to 2.7, and Git 1.7.1 to
47 2.4.
49 Release 1.0.0
50 =============
52 * Fix encoding of non-ASCII email addresses in email headers.
54 * Fix backwards-compatibility bugs for older Python 2.x versions.
56 * Fix a backwards-compatibility bug for Git 1.7.1.
58 * Add an option commitDiffOpts to customize logs for revisions.
60 * Pass "-oi" to sendmail by default to prevent premature termination
61   on a line containing only ".".
63 * Stagger email "Date:" values in an attempt to help mail clients
64   thread the emails in the right order.
66 * If a mailing list setting is missing, just skip sending the
67   corresponding email (with a warning) instead of failing.
69 * Add a X-Git-Host header that can be used for email filtering.
71 * Allow the sender's fully-qualified domain name to be configured.
73 * Minor documentation improvements.
75 * Add this CHANGES file.
78 Release 0.9.0
79 =============
81 * Initial release.