Up version
[catagits/XML-Feed.git] / Changes
CommitLineData
efef7604 1# $Id$
a749d9b9 2
3Revision history for XML::Feed
4
d39809aa 50.22 2008-10-22
af62770f 6 - Correct namespace for terms in RSS
7 http://rt.cpan.org/Ticket/Display.html?id=25393
8 (Kent Cowgill KCOWGILL)
5b3d39d5 9 - Up the minimum requirement for XML::RSS to 1.31
10 http://rt.cpan.org/Ticket/Display.html?id=23588
11 (Andreas König ANDK)
12 - Created test for
13 http://rt.cpan.org/Ticket/Display.html?id=18810
14 (Ryan Tate)
9a36f82c 15 - Allow creation of a self link
16 http://rt.cpan.org/Ticket/Display.html?id=39924
17 (Shlomi Fish SHLOMIF)
18 - Add support for GEORSS
19 http://rt.cpan.org/Ticket/Display.html?id=39924
20 (Scott Gifford GIFF)
d39809aa 21 - Fix fetching through proxies
22 http://rt.cpan.org/Ticket/Display.html?id=36233
23 (Trevor Vallender)
af62770f 24
632e1639 250.21 2008.10.15
26 - Remove the inc directory because it's not needed anymore
27
280.20 2008.10.15
41e8c132 29 - Allow specification of the parsing format. Fixes bugs
30 http://rt.cpan.org/Public/Bug/Display.html?id=35580 and
31 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477394
1ee56ab5 32 (Gregor Herrmann and Martin F Krafft)
4e9c4625 33 - Allow pass through of initialisation options
34 http://rt.cpan.org/Public/Bug/Display.html?id=24729
35 (Christopher H. Laco CLACO)
4b70ec20 36 - Force working version XML::Atom
37 http://rt.cpan.org/Public/Bug/Display.html?id=22548
38 http://rt.cpan.org/Public/Bug/Display.html?id=19920
e8fcbc5b 39 - Allow extra Atom accessors
40 http://rt.cpan.org/Public/Bug/Display.html?id=33881
41 (Paul Mison PMISON)
566afdf5 42 - Prevent empty content
43 http://rt.cpan.org/Public/Bug/Display.html?id=29684
44 (Dave Rolsky DROLSKY)
1ee56ab5 45 - Cope with "updated" and "published" elements
46 http://rt.cpan.org/Public/Bug/Display.html?id=20763
47 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=380498
48 (Gregor Herrmann and Joey Hess)
f9e32c84 49 - Switch to Module::Build
50 http://rt.cpan.org/Public/Bug/Display.html?id=38283
51 http://rt.cpan.org/Public/Bug/Display.html?id=20575
52 http://rt.cpan.org/Public/Bug/Display.html?id=21300
4b70ec20 53
c4d4c98e 540.12 2006.08.13
55 - Generate Atom 1.0 feeds by default. Thanks to Tatsuhiko Miyagawa for
56 the patch.
57
4679cf3f 580.11 2006.08.07
59 - Fixed a bug in XML::Feed::Atom where entry->link and feed->link didn't
60 return the proper link element if the "rel" attribute wasn't defined for
61 a <link /> tag. Thanks to Tatsuhiko Miyagawa for the patch.
62
4f6ca997 630.10 2006.07.17
64 - Oops, an Atom test in 01-parse.t was previously succeeding only because
65 of a bug in XML::Atom. Now that that bug is fixed, this one is now
66 fixed, too.
67
fe3b3201 680.09 2006.07.10
69 - Fixed date format errors with XML::Feed::RSS. Thanks to Tatsuhiko
70 Miyagawa for the patch.
71 - Use add_module to properly add namespaces to the RSS document. Thanks
72 to Tatsuhiko Miyagawa for the patch.
73
ecac864a 740.08 2006.03.03
75 - $feed->author wasn't being converted properly by Feed->convert. Thanks
76 to Tatsuhiko Miyagawa for the patch.
77 - Added eval around Entry->issued calls, to properly catch invalid
78 date formats, and just return undef, rather than dying. Thanks to
79 Tatsuhiko Miyagawa for the spot.
80 - Fixed issued/modified format issue with dates in timezones other than
81 UTC. Thanks to Tatsuhiko Miyagawa for the patch.
82
23103173 830.07 2005.08.11
84 - Added XML::Feed::splice method, to make feed splicing easier.
85 - Fixed some unitialized value warnings.
86
973e1f9e 870.06 2005.08.09
88 - Added Feed->convert and Entry->convert methods to allow conversion
89 between formats.
90 - Added ability to create new Feed and Entry objects, add entries, etc.
91 - Added $PREFERRED_PARSER variable to allow usage of compatible
92 RSS parsers, like XML::RSS::LibXML. Thanks to Tatsuhiko Miyagawa
93 for the patch.
94
b3b6d2fc 950.05 2005.01.01
96 - Call URI::Fetch::URI_GONE() instead of URI::Fetch::FEED_GONE(). Thanks
97 to Richard Clamp for the patch.
98
fe71566d 990.04 2004.12.31
100 - Use "loose" parsing in DateTime::Format::Mail so that we don't die
101 on invalid RFC-822 dates.
102 - XML::Feed::Entry->link on RSS feeds will now use a <guid> element
103 if a <link> element isn't found.
104 - Switched to using URI::Fetch when fetching feeds. Since we're not
105 storing or caching feeds currently, this basically just buys us
106 GZIP support, but that's something.
fe71566d 107
62d92771 1080.03 2004.10.09
109 - Fixed bug with feed format detection: properly detect format even in
110 feeds with <!DOCTYPE> at the top. (Thanks to Alberto Quario for the
111 note.)
112 - Use Class::ErrorHandler instead of XML::Feed::ErrorHandler.
113 - Moved auto-discovery code into Feed::Find. XML::Feed->find_feeds is
114 now just a wrapper around that module.
115
1160.02 2004.07.29
a749d9b9 117 - Changed behavior of Entry->summary to prevent it from returning the
118 full contents of the entry. Now, in an RSS feed, summary only returns
119 a value if there is both a <description> element *and* one of the
120 other elements typically used for the full content.
121 - Changed content model for Entry->content and Entry->summary.
122 They now return an XML::Feed::Content object, which knows about both
123 the actual content and the MIME type of the content.
124 - Improved feed format detection by first tag in feed.
125
0d5e38d1 1260.01 2004.06.01
127 - Initial distribution.