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