Add support for self linking and GeoRSS
[catagits/XML-Feed.git] / Changes
CommitLineData
efef7604 1# $Id$
a749d9b9 2
3Revision history for XML::Feed
4
af62770f 50.22
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)
21
af62770f 22
632e1639 230.21 2008.10.15
24 - Remove the inc directory because it's not needed anymore
25
260.20 2008.10.15
41e8c132 27 - Allow specification of the parsing format. Fixes bugs
28 http://rt.cpan.org/Public/Bug/Display.html?id=35580 and
29 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477394
1ee56ab5 30 (Gregor Herrmann and Martin F Krafft)
4e9c4625 31 - Allow pass through of initialisation options
32 http://rt.cpan.org/Public/Bug/Display.html?id=24729
33 (Christopher H. Laco CLACO)
4b70ec20 34 - Force working version XML::Atom
35 http://rt.cpan.org/Public/Bug/Display.html?id=22548
36 http://rt.cpan.org/Public/Bug/Display.html?id=19920
e8fcbc5b 37 - Allow extra Atom accessors
38 http://rt.cpan.org/Public/Bug/Display.html?id=33881
39 (Paul Mison PMISON)
566afdf5 40 - Prevent empty content
41 http://rt.cpan.org/Public/Bug/Display.html?id=29684
42 (Dave Rolsky DROLSKY)
1ee56ab5 43 - Cope with "updated" and "published" elements
44 http://rt.cpan.org/Public/Bug/Display.html?id=20763
45 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=380498
46 (Gregor Herrmann and Joey Hess)
f9e32c84 47 - Switch to Module::Build
48 http://rt.cpan.org/Public/Bug/Display.html?id=38283
49 http://rt.cpan.org/Public/Bug/Display.html?id=20575
50 http://rt.cpan.org/Public/Bug/Display.html?id=21300
4b70ec20 51
c4d4c98e 520.12 2006.08.13
53 - Generate Atom 1.0 feeds by default. Thanks to Tatsuhiko Miyagawa for
54 the patch.
55
4679cf3f 560.11 2006.08.07
57 - Fixed a bug in XML::Feed::Atom where entry->link and feed->link didn't
58 return the proper link element if the "rel" attribute wasn't defined for
59 a <link /> tag. Thanks to Tatsuhiko Miyagawa for the patch.
60
4f6ca997 610.10 2006.07.17
62 - Oops, an Atom test in 01-parse.t was previously succeeding only because
63 of a bug in XML::Atom. Now that that bug is fixed, this one is now
64 fixed, too.
65
fe3b3201 660.09 2006.07.10
67 - Fixed date format errors with XML::Feed::RSS. Thanks to Tatsuhiko
68 Miyagawa for the patch.
69 - Use add_module to properly add namespaces to the RSS document. Thanks
70 to Tatsuhiko Miyagawa for the patch.
71
ecac864a 720.08 2006.03.03
73 - $feed->author wasn't being converted properly by Feed->convert. Thanks
74 to Tatsuhiko Miyagawa for the patch.
75 - Added eval around Entry->issued calls, to properly catch invalid
76 date formats, and just return undef, rather than dying. Thanks to
77 Tatsuhiko Miyagawa for the spot.
78 - Fixed issued/modified format issue with dates in timezones other than
79 UTC. Thanks to Tatsuhiko Miyagawa for the patch.
80
23103173 810.07 2005.08.11
82 - Added XML::Feed::splice method, to make feed splicing easier.
83 - Fixed some unitialized value warnings.
84
973e1f9e 850.06 2005.08.09
86 - Added Feed->convert and Entry->convert methods to allow conversion
87 between formats.
88 - Added ability to create new Feed and Entry objects, add entries, etc.
89 - Added $PREFERRED_PARSER variable to allow usage of compatible
90 RSS parsers, like XML::RSS::LibXML. Thanks to Tatsuhiko Miyagawa
91 for the patch.
92
b3b6d2fc 930.05 2005.01.01
94 - Call URI::Fetch::URI_GONE() instead of URI::Fetch::FEED_GONE(). Thanks
95 to Richard Clamp for the patch.
96
fe71566d 970.04 2004.12.31
98 - Use "loose" parsing in DateTime::Format::Mail so that we don't die
99 on invalid RFC-822 dates.
100 - XML::Feed::Entry->link on RSS feeds will now use a <guid> element
101 if a <link> element isn't found.
102 - Switched to using URI::Fetch when fetching feeds. Since we're not
103 storing or caching feeds currently, this basically just buys us
104 GZIP support, but that's something.
fe71566d 105
62d92771 1060.03 2004.10.09
107 - Fixed bug with feed format detection: properly detect format even in
108 feeds with <!DOCTYPE> at the top. (Thanks to Alberto Quario for the
109 note.)
110 - Use Class::ErrorHandler instead of XML::Feed::ErrorHandler.
111 - Moved auto-discovery code into Feed::Find. XML::Feed->find_feeds is
112 now just a wrapper around that module.
113
1140.02 2004.07.29
a749d9b9 115 - Changed behavior of Entry->summary to prevent it from returning the
116 full contents of the entry. Now, in an RSS feed, summary only returns
117 a value if there is both a <description> element *and* one of the
118 other elements typically used for the full content.
119 - Changed content model for Entry->content and Entry->summary.
120 They now return an XML::Feed::Content object, which knows about both
121 the actual content and the MIME type of the content.
122 - Improved feed format detection by first tag in feed.
123
0d5e38d1 1240.01 2004.06.01
125 - Initial distribution.