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