Load XML-Feed-0.09 into trunk.
[catagits/XML-Feed.git] / Changes
1 # $Id: Changes 1945 2006-07-11 03:31:58Z btrott $
2
3 Revision history for XML::Feed
4
5 0.09  2006.07.10
6     - Fixed date format errors with XML::Feed::RSS. Thanks to Tatsuhiko
7       Miyagawa for the patch.
8     - Use add_module to properly add namespaces to the RSS document. Thanks
9       to Tatsuhiko Miyagawa for the patch.
10
11 0.08  2006.03.03
12     - $feed->author wasn't being converted properly by Feed->convert. Thanks
13       to Tatsuhiko Miyagawa for the patch.
14     - Added eval around Entry->issued calls, to properly catch invalid
15       date formats, and just return undef, rather than dying. Thanks to
16       Tatsuhiko Miyagawa for the spot.
17     - Fixed issued/modified format issue with dates in timezones other than
18       UTC. Thanks to Tatsuhiko Miyagawa for the patch.
19
20 0.07  2005.08.11
21     - Added XML::Feed::splice method, to make feed splicing easier.
22     - Fixed some unitialized value warnings.
23
24 0.06  2005.08.09
25     - Added Feed->convert and Entry->convert methods to allow conversion
26       between formats.
27     - Added ability to create new Feed and Entry objects, add entries, etc.
28     - Added $PREFERRED_PARSER variable to allow usage of compatible
29       RSS parsers, like XML::RSS::LibXML. Thanks to Tatsuhiko Miyagawa
30       for the patch.
31
32 0.05  2005.01.01
33     - Call URI::Fetch::URI_GONE() instead of URI::Fetch::FEED_GONE(). Thanks
34       to Richard Clamp for the patch.
35
36 0.04  2004.12.31
37     - Use "loose" parsing in DateTime::Format::Mail so that we don't die
38       on invalid RFC-822 dates.
39     - XML::Feed::Entry->link on RSS feeds will now use a <guid> element
40       if a <link> element isn't found.
41     - Switched to using URI::Fetch when fetching feeds. Since we're not
42       storing or caching feeds currently, this basically just buys us
43       GZIP support, but that's something.
44
45 0.03  2004.10.09
46     - Fixed bug with feed format detection: properly detect format even in
47       feeds with <!DOCTYPE> at the top. (Thanks to Alberto Quario for the
48       note.)
49     - Use Class::ErrorHandler instead of XML::Feed::ErrorHandler.
50     - Moved auto-discovery code into Feed::Find. XML::Feed->find_feeds is
51       now just a wrapper around that module.
52
53 0.02  2004.07.29
54     - Changed behavior of Entry->summary to prevent it from returning the
55       full contents of the entry. Now, in an RSS feed, summary only returns
56       a value if there is both a <description> element *and* one of the
57       other elements typically used for the full content.
58     - Changed content model for Entry->content and Entry->summary.
59       They now return an XML::Feed::Content object, which knows about both
60       the actual content and the MIME type of the content.
61     - Improved feed format detection by first tag in feed.
62
63 0.01  2004.06.01
64     - Initial distribution.