Changes since last packaged version (2.57):
2.64 2006-09-28T18:39:47
- Added notes about Net::SMPT and Net::SMTP_auth to the README file.
Reported by Nacho Barrientos Arias.
- The regular expresson for RT ticket numbers now also case-insnsitively
matches "RT" in addtion to "Ticket". Suggested by Ask Bjørn Hansen.
- Now skipping all tests in 't/alt.t' if HTML::Entities is not
installed. Reported by Marshall Roch.
- Added a new option, '--ticket-map', to map regular expressions
that match ticket references to the URLs to create links for those
references. This allows users to specify any number of ticketing
systems for which to scan for references in the log message.
- Deprecated '--ticket-regex' and '--ticket-url' in favor of the new
'--ticket-map' option.
- Converted the support for explicit ticketing systems (RT, JIRA,
GnatsWeb, and Bugzilla) to internally use the 'ticket_map' attribute.
This change eliminates quite a bit of redundant code. Based on a patch
from Martijn van Beers (Ticket # 21633).
- Unified the internal ticket system regular expressions so that
SVN::Notify::HTML can reference and use exactly the same regexen that
SVN::Notify uses. Inspired by a patch from Martijn van Beers.
2.63 2006-08-02T18:11:36
- The tests in t/options.t no longer fail when HTML::Entities is not
installed. Thanks to Ricardo Signes for the spot! Ticket #20267.
- The email subject is now encoded in the MIME-Q encoding, in compliance
with RFC 2047. Patch from Éric Cholet.
- Now properly setting the binmode on file handles in Win32 when
running under Perl 5.8.
- Added the --add-header option to add headers to the outgoing email.
Useful for things like auto-approval for MLMs. Patch (with tests!)
from Ricardo Signes.
- Documented the --language option in the svnnotify script.
- Before executing 'sendmail', SVN::Notify now sets the $LANG
environment variable with the contents of the language and charset
options if language is set. Ticket #16050.
2.62 2006-06-30T18:03:21
- Changed to() accessor to return the first value in the array in scalar
context, and all of the items as a list in list context. This makes
its behavior more consistent with versions of SVN::Notify priort to
2.61.
- Added strip_cx_regex() accessor. It also returns the first value in
scalar context, and the full list in list context, for consistency
with to().
2.61 2006-06-28T23:07:40
- Removed unused patch file from the distribution. It was temporary, and
never supposed to be there, anyway.
- Added an "Errors-To" header to the outgoing email, using the same
email address as is used for the "From" header.
- Added the --set-sender option to specify the envelope sender to the
same value as is used for the From: header when sending via sendmail.
- The --to option may now be specified multiple times (or passed as an
array reference to the constructor) to specify multiple recipients.
This change allows multiple recipients to be used when sending
notifications via SMTP. Ticket # 20121. Reported by John Colton.
2.60 2006-06-16T22:42:48
- HTML output now creates a link from a directory name to its place in
the diff if the type of diff for the directory is a property change.
Patch from Lamar Goddard.
- Added --author-url option. Based on a patch from Lamar Goddard.
- Deprecated --svnweb-url and --viewcvs-url in favor of the new, more
general --revision-url. Inspired by a patch from Lamar Goddard.
- Added --diff-switches option. This can be used to specify switches to
pass through to 'svnlook diff'. Inspired by a patch from Lamar
Goddard.
2.59 2006-05-11T17:23:12
- Fixed a few typos, with thanks to Marshall "Eagle Eyes" Roch.
- Now throw an exception if 'sendmail' is not specified or cannot be
found and 'smtp' is not specified. Reported by Eric Lemes.
- Fixed processing of commad-line arguments under Windows. Reported by
Eric Lemes. This means that SVN::Notify has now been confirmed to
actually *work* on Windows.
- An exception will now be thrown if a Net::SMTP object cannot be
created. Reported by Eric Lemes.
- Added note for Windows users about setting environment variables
required by SVN::Notify. Thanks to Eric Lemes <ericlemes@gmail.com>
for figuring these things out!
- Added link to Eric Lemes's tutorial for installing Apache, Subversion,
and SVN::Notify on Windows.
2.58 2006-05-05T20:44:05
- Improved documentation of '--ticket-regex', since it seemed to confuse
people using it with SVN::Notify::HTML. Thanks to Dominic Giampaolo
for the push.
- SVN::Notify::HTML now allows '--ticket-regex' to capture only one
string, in which case it will be used both for the link text and for
the ticket number passed to the '--ticket-url' format string.
- Added support for SMTP authentication using Net::SMTP_auth. Use the
'--smtp-user', '--smtp-pass', and '--smtp-authtype' options to take
advantage of this feature. Patch from Eric Lemes.
- Specifying '--verbose' two or more times now turns on SMTP debugging.
NetBSD Packages Collection.
The Perl5 module SVN::Notify provide a class that may be used for
sending email messages for Subversion repository activity. There
are a number of different modes supported, and SVN::Notify is fully
subclassable, to easily add new functionality. By default, A list
of all the files affected by the commit will be assembled and listed
in a single message. An additional option allows diffs to be
calculated for the changes and either appended to the message or
added as an attachment. The included subclass, SVN::Notify::HTML,
allows the messages to be sent in HTML format. A svnnotify script
is also provided.