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