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