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