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