1Release 1.1.0 2============= 3 4* When a single commit is pushed, omit the reference changed email. 5 Set multimailhook.combineWhenSingleCommit to false to disable this 6 new feature. 7 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). 11 12* Support for SMTP authentication and SSL/TLS encryption was added, 13 see smtpUser, smtpPass, smtpEncryption in README. 14 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. 18 19* If $USER is not set, use the variable $USERNAME. This is needed on 20 Windows platform to recognize the pusher. 21 22* The emailPrefix variable can now be set to an empty string to remove 23 the prefix. 24 25* A short tutorial was added in doc/gitolite.rst to set up 26 git-multimail with gitolite. 27 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. 31 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. 36 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). 41 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). 45 46This version has been tested with Python 2.4 to 2.7, and Git 1.7.1 to 472.4. 48 49Release 1.0.0 50============= 51 52* Fix encoding of non-ASCII email addresses in email headers. 53 54* Fix backwards-compatibility bugs for older Python 2.x versions. 55 56* Fix a backwards-compatibility bug for Git 1.7.1. 57 58* Add an option commitDiffOpts to customize logs for revisions. 59 60* Pass "-oi" to sendmail by default to prevent premature termination 61 on a line containing only ".". 62 63* Stagger email "Date:" values in an attempt to help mail clients 64 thread the emails in the right order. 65 66* If a mailing list setting is missing, just skip sending the 67 corresponding email (with a warning) instead of failing. 68 69* Add a X-Git-Host header that can be used for email filtering. 70 71* Allow the sender's fully-qualified domain name to be configured. 72 73* Minor documentation improvements. 74 75* Add this CHANGES file. 76 77 78Release 0.9.0 79============= 80 81* Initial release.