Get rid of the inc directory
[catagits/XML-Feed.git] / Changes
1 # $Id$
2
3 Revision history for XML::Feed
4
5 0.21 2008.10.15
6     - Remove the inc directory because it's not needed anymore
7
8 0.20 2008.10.15 
9     - Allow specification of the parsing format. Fixes bugs
10       http://rt.cpan.org/Public/Bug/Display.html?id=35580 and
11       http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477394
12       (Gregor Herrmann and Martin F Krafft)
13     - Allow pass through of initialisation options
14       http://rt.cpan.org/Public/Bug/Display.html?id=24729
15       (Christopher H. Laco CLACO)
16     - Force working version XML::Atom 
17       http://rt.cpan.org/Public/Bug/Display.html?id=22548
18       http://rt.cpan.org/Public/Bug/Display.html?id=19920
19     - Allow extra Atom accessors
20       http://rt.cpan.org/Public/Bug/Display.html?id=33881
21       (Paul Mison PMISON)
22     - Prevent empty content
23       http://rt.cpan.org/Public/Bug/Display.html?id=29684
24       (Dave Rolsky DROLSKY)
25     - Cope with "updated" and "published" elements
26       http://rt.cpan.org/Public/Bug/Display.html?id=20763
27       http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=380498
28       (Gregor Herrmann and Joey Hess)
29     - Switch to Module::Build
30       http://rt.cpan.org/Public/Bug/Display.html?id=38283
31       http://rt.cpan.org/Public/Bug/Display.html?id=20575
32       http://rt.cpan.org/Public/Bug/Display.html?id=21300
33   
34 0.12  2006.08.13
35     - Generate Atom 1.0 feeds by default. Thanks to Tatsuhiko Miyagawa for
36       the patch.
37
38 0.11  2006.08.07
39     - Fixed a bug in XML::Feed::Atom where entry->link and feed->link didn't
40       return the proper link element if the "rel" attribute wasn't defined for
41       a <link /> tag. Thanks to Tatsuhiko Miyagawa for the patch.
42
43 0.10  2006.07.17
44     - Oops, an Atom test in 01-parse.t was previously succeeding only because
45       of a bug in XML::Atom. Now that that bug is fixed, this one is now
46       fixed, too.
47
48 0.09  2006.07.10
49     - Fixed date format errors with XML::Feed::RSS. Thanks to Tatsuhiko
50       Miyagawa for the patch.
51     - Use add_module to properly add namespaces to the RSS document. Thanks
52       to Tatsuhiko Miyagawa for the patch.
53
54 0.08  2006.03.03
55     - $feed->author wasn't being converted properly by Feed->convert. Thanks
56       to Tatsuhiko Miyagawa for the patch.
57     - Added eval around Entry->issued calls, to properly catch invalid
58       date formats, and just return undef, rather than dying. Thanks to
59       Tatsuhiko Miyagawa for the spot.
60     - Fixed issued/modified format issue with dates in timezones other than
61       UTC. Thanks to Tatsuhiko Miyagawa for the patch.
62
63 0.07  2005.08.11
64     - Added XML::Feed::splice method, to make feed splicing easier.
65     - Fixed some unitialized value warnings.
66
67 0.06  2005.08.09
68     - Added Feed->convert and Entry->convert methods to allow conversion
69       between formats.
70     - Added ability to create new Feed and Entry objects, add entries, etc.
71     - Added $PREFERRED_PARSER variable to allow usage of compatible
72       RSS parsers, like XML::RSS::LibXML. Thanks to Tatsuhiko Miyagawa
73       for the patch.
74
75 0.05  2005.01.01
76     - Call URI::Fetch::URI_GONE() instead of URI::Fetch::FEED_GONE(). Thanks
77       to Richard Clamp for the patch.
78
79 0.04  2004.12.31
80     - Use "loose" parsing in DateTime::Format::Mail so that we don't die
81       on invalid RFC-822 dates.
82     - XML::Feed::Entry->link on RSS feeds will now use a <guid> element
83       if a <link> element isn't found.
84     - Switched to using URI::Fetch when fetching feeds. Since we're not
85       storing or caching feeds currently, this basically just buys us
86       GZIP support, but that's something.
87
88 0.03  2004.10.09
89     - Fixed bug with feed format detection: properly detect format even in
90       feeds with <!DOCTYPE> at the top. (Thanks to Alberto Quario for the
91       note.)
92     - Use Class::ErrorHandler instead of XML::Feed::ErrorHandler.
93     - Moved auto-discovery code into Feed::Find. XML::Feed->find_feeds is
94       now just a wrapper around that module.
95
96 0.02  2004.07.29
97     - Changed behavior of Entry->summary to prevent it from returning the
98       full contents of the entry. Now, in an RSS feed, summary only returns
99       a value if there is both a <description> element *and* one of the
100       other elements typically used for the full content.
101     - Changed content model for Entry->content and Entry->summary.
102       They now return an XML::Feed::Content object, which knows about both
103       the actual content and the MIME type of the content.
104     - Improved feed format detection by first tag in feed.
105
106 0.01  2004.06.01
107     - Initial distribution.