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