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