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