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