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