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