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