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