Fix buglet to do with odd date terms
[catagits/XML-Feed.git] / Changes
CommitLineData
efef7604 1# $Id$
a749d9b9 2
3Revision history for XML::Feed
4
b1aa7a62 50.43
6 - Add optional multi enclosure support
daba7240 7 - Fix buglet with odd date terms
8 https://rt.cpan.org/Ticket/Display.html?id=46494
9 (Joey Hess)
75c12aa3 100.42
3e19dc0e 11 - Fix conversion of multi value fields
12 http://rt.cpan.org/Ticket/Display.html?id=41794
13 (Mario Domgoergen)
14
75c12aa3 15 - Fixed a bug where $e->category fails when XML::RSS::LibXML is preferred.
16 (Tatsuhiko Miyagawa)
21fe7b9f 17 - Added support for enclosures
75c12aa3 18
a0cca2a4 190.41
a759e13e 20 - Add handling for multiple categories/tags, including
21 patch from Shlomi Fish (SHLOMIF)
22 http://rt.cpan.org/Ticket/Display.html?id=41396
a0cca2a4 23 - Force v1.40 of XML::RSS to get proper multiple category support
24
f62087b4 250.40
26 - Force v1.37 of XML::RSS to get proper xml:base support
27 - Force v0.32 of XML::Atom to fix
c56795ef 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
e73bcbb3 320.3 2008-11-04
60c04bcd 33 - Allow more flexible identification of Formats
34 https://rt.cpan.org/Ticket/Display.html?id=14725
35 (Brian Cassidy BRICAS)
36
0d3e3b64 370.23 2008-10-23
33d4cb3f 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)
a0793d57 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)
33d4cb3f 48
d39809aa 490.22 2008-10-22
af62770f 50 - Correct namespace for terms in RSS
51 http://rt.cpan.org/Ticket/Display.html?id=25393
52 (Kent Cowgill KCOWGILL)
5b3d39d5 53 - Up the minimum requirement for XML::RSS to 1.31
54 http://rt.cpan.org/Ticket/Display.html?id=23588
4c072830 55 (Andreas König ANDK)
5b3d39d5 56 - Created test for
57 http://rt.cpan.org/Ticket/Display.html?id=18810
58 (Ryan Tate)
9a36f82c 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)
d39809aa 65 - Fix fetching through proxies
66 http://rt.cpan.org/Ticket/Display.html?id=36233
67 (Trevor Vallender)
af62770f 68
632e1639 690.21 2008.10.15
70 - Remove the inc directory because it's not needed anymore
71
720.20 2008.10.15
41e8c132 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
1ee56ab5 76 (Gregor Herrmann and Martin F Krafft)
4e9c4625 77 - Allow pass through of initialisation options
78 http://rt.cpan.org/Public/Bug/Display.html?id=24729
79 (Christopher H. Laco CLACO)
4b70ec20 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
e8fcbc5b 83 - Allow extra Atom accessors
84 http://rt.cpan.org/Public/Bug/Display.html?id=33881
85 (Paul Mison PMISON)
566afdf5 86 - Prevent empty content
87 http://rt.cpan.org/Public/Bug/Display.html?id=29684
88 (Dave Rolsky DROLSKY)
1ee56ab5 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)
f9e32c84 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
4b70ec20 97
c4d4c98e 980.12 2006.08.13
99 - Generate Atom 1.0 feeds by default. Thanks to Tatsuhiko Miyagawa for
100 the patch.
101
4679cf3f 1020.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
4f6ca997 1070.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
fe3b3201 1120.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
ecac864a 1180.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
23103173 1270.07 2005.08.11
128 - Added XML::Feed::splice method, to make feed splicing easier.
129 - Fixed some unitialized value warnings.
130
973e1f9e 1310.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
b3b6d2fc 1390.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
fe71566d 1430.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.
fe71566d 151
62d92771 1520.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
1600.02 2004.07.29
a749d9b9 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
0d5e38d1 1700.01 2004.06.01
171 - Initial distribution.