Load XML-Feed-0.07 into trunk.
[catagits/XML-Feed.git] / Changes
CommitLineData
23103173 1# $Id: Changes 1872 2005-08-12 04:28:42Z btrott $
a749d9b9 2
3Revision history for XML::Feed
4
23103173 50.07 2005.08.11
6 - Added XML::Feed::splice method, to make feed splicing easier.
7 - Fixed some unitialized value warnings.
8
973e1f9e 90.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
b3b6d2fc 170.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
fe71566d 210.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.
fe71566d 29
62d92771 300.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
380.02 2004.07.29
a749d9b9 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
0d5e38d1 480.01 2004.06.01
49 - Initial distribution.