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