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