Allow passing through of initialisation options.
[catagits/XML-Feed.git] / Changes
CommitLineData
c4d4c98e 1# $Id: Changes 1958 2006-08-14 05:31:27Z btrott $
a749d9b9 2
3Revision history for XML::Feed
4
41e8c132 50.20
6 - Allow specification of the parsing format. Fixes bugs
7 http://rt.cpan.org/Public/Bug/Display.html?id=35580 and
8 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477394
4e9c4625 9 - Allow pass through of initialisation options
10 http://rt.cpan.org/Public/Bug/Display.html?id=24729
11 (Christopher H. Laco CLACO)
41e8c132 12
c4d4c98e 130.12 2006.08.13
14 - Generate Atom 1.0 feeds by default. Thanks to Tatsuhiko Miyagawa for
15 the patch.
16
4679cf3f 170.11 2006.08.07
18 - Fixed a bug in XML::Feed::Atom where entry->link and feed->link didn't
19 return the proper link element if the "rel" attribute wasn't defined for
20 a <link /> tag. Thanks to Tatsuhiko Miyagawa for the patch.
21
4f6ca997 220.10 2006.07.17
23 - Oops, an Atom test in 01-parse.t was previously succeeding only because
24 of a bug in XML::Atom. Now that that bug is fixed, this one is now
25 fixed, too.
26
fe3b3201 270.09 2006.07.10
28 - Fixed date format errors with XML::Feed::RSS. Thanks to Tatsuhiko
29 Miyagawa for the patch.
30 - Use add_module to properly add namespaces to the RSS document. Thanks
31 to Tatsuhiko Miyagawa for the patch.
32
ecac864a 330.08 2006.03.03
34 - $feed->author wasn't being converted properly by Feed->convert. Thanks
35 to Tatsuhiko Miyagawa for the patch.
36 - Added eval around Entry->issued calls, to properly catch invalid
37 date formats, and just return undef, rather than dying. Thanks to
38 Tatsuhiko Miyagawa for the spot.
39 - Fixed issued/modified format issue with dates in timezones other than
40 UTC. Thanks to Tatsuhiko Miyagawa for the patch.
41
23103173 420.07 2005.08.11
43 - Added XML::Feed::splice method, to make feed splicing easier.
44 - Fixed some unitialized value warnings.
45
973e1f9e 460.06 2005.08.09
47 - Added Feed->convert and Entry->convert methods to allow conversion
48 between formats.
49 - Added ability to create new Feed and Entry objects, add entries, etc.
50 - Added $PREFERRED_PARSER variable to allow usage of compatible
51 RSS parsers, like XML::RSS::LibXML. Thanks to Tatsuhiko Miyagawa
52 for the patch.
53
b3b6d2fc 540.05 2005.01.01
55 - Call URI::Fetch::URI_GONE() instead of URI::Fetch::FEED_GONE(). Thanks
56 to Richard Clamp for the patch.
57
fe71566d 580.04 2004.12.31
59 - Use "loose" parsing in DateTime::Format::Mail so that we don't die
60 on invalid RFC-822 dates.
61 - XML::Feed::Entry->link on RSS feeds will now use a <guid> element
62 if a <link> element isn't found.
63 - Switched to using URI::Fetch when fetching feeds. Since we're not
64 storing or caching feeds currently, this basically just buys us
65 GZIP support, but that's something.
fe71566d 66
62d92771 670.03 2004.10.09
68 - Fixed bug with feed format detection: properly detect format even in
69 feeds with <!DOCTYPE> at the top. (Thanks to Alberto Quario for the
70 note.)
71 - Use Class::ErrorHandler instead of XML::Feed::ErrorHandler.
72 - Moved auto-discovery code into Feed::Find. XML::Feed->find_feeds is
73 now just a wrapper around that module.
74
750.02 2004.07.29
a749d9b9 76 - Changed behavior of Entry->summary to prevent it from returning the
77 full contents of the entry. Now, in an RSS feed, summary only returns
78 a value if there is both a <description> element *and* one of the
79 other elements typically used for the full content.
80 - Changed content model for Entry->content and Entry->summary.
81 They now return an XML::Feed::Content object, which knows about both
82 the actual content and the MIME type of the content.
83 - Improved feed format detection by first tag in feed.
84
0d5e38d1 850.01 2004.06.01
86 - Initial distribution.