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