Add support for extracting activity bits from Atom entries too.
[catagits/XML-Feed.git] / Changes
CommitLineData
efef7604 1# $Id$
a749d9b9 2
3Revision history for XML::Feed
4
a0cca2a4 50.41
a759e13e 6 - Add handling for multiple categories/tags, including
7 patch from Shlomi Fish (SHLOMIF)
8 http://rt.cpan.org/Ticket/Display.html?id=41396
a0cca2a4 9 - Force v1.40 of XML::RSS to get proper multiple category support
10
f62087b4 110.40
12 - Force v1.37 of XML::RSS to get proper xml:base support
13 - Force v0.32 of XML::Atom to fix
c56795ef 14 http://rt.cpan.org/Ticket/Display.html?id=40766
15 (Thanks to David Brownlee for the help in fixing)
16 - Add support for format() in Entry
17
e73bcbb3 180.3 2008-11-04
60c04bcd 19 - Allow more flexible identification of Formats
20 https://rt.cpan.org/Ticket/Display.html?id=14725
21 (Brian Cassidy BRICAS)
22
0d3e3b64 230.23 2008-10-23
33d4cb3f 24 - Fix mixing and matching of RSS and Atom
25 http://rt.cpan.org/Ticket/Display.html?id=21335
26 (Shlomi Fish SHLOMIF)
27 - Note that multiple categories was fixed at some point
28 http://rt.cpan.org/Ticket/Display.html?id=30234
29 (mattn)
a0793d57 30 - Work with xml:base (depending on version of XML::RSS)
31 http://rt.cpan.org/Ticket/Display.html?id=21135
32 http://bugs.debian.org/381359
33 (Gregor Herrmann and Joey Hess)
33d4cb3f 34
d39809aa 350.22 2008-10-22
af62770f 36 - Correct namespace for terms in RSS
37 http://rt.cpan.org/Ticket/Display.html?id=25393
38 (Kent Cowgill KCOWGILL)
5b3d39d5 39 - Up the minimum requirement for XML::RSS to 1.31
40 http://rt.cpan.org/Ticket/Display.html?id=23588
4c072830 41 (Andreas König ANDK)
5b3d39d5 42 - Created test for
43 http://rt.cpan.org/Ticket/Display.html?id=18810
44 (Ryan Tate)
9a36f82c 45 - Allow creation of a self link
46 http://rt.cpan.org/Ticket/Display.html?id=39924
47 (Shlomi Fish SHLOMIF)
48 - Add support for GEORSS
49 http://rt.cpan.org/Ticket/Display.html?id=39924
50 (Scott Gifford GIFF)
d39809aa 51 - Fix fetching through proxies
52 http://rt.cpan.org/Ticket/Display.html?id=36233
53 (Trevor Vallender)
af62770f 54
632e1639 550.21 2008.10.15
56 - Remove the inc directory because it's not needed anymore
57
580.20 2008.10.15
41e8c132 59 - Allow specification of the parsing format. Fixes bugs
60 http://rt.cpan.org/Public/Bug/Display.html?id=35580 and
61 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477394
1ee56ab5 62 (Gregor Herrmann and Martin F Krafft)
4e9c4625 63 - Allow pass through of initialisation options
64 http://rt.cpan.org/Public/Bug/Display.html?id=24729
65 (Christopher H. Laco CLACO)
4b70ec20 66 - Force working version XML::Atom
67 http://rt.cpan.org/Public/Bug/Display.html?id=22548
68 http://rt.cpan.org/Public/Bug/Display.html?id=19920
e8fcbc5b 69 - Allow extra Atom accessors
70 http://rt.cpan.org/Public/Bug/Display.html?id=33881
71 (Paul Mison PMISON)
566afdf5 72 - Prevent empty content
73 http://rt.cpan.org/Public/Bug/Display.html?id=29684
74 (Dave Rolsky DROLSKY)
1ee56ab5 75 - Cope with "updated" and "published" elements
76 http://rt.cpan.org/Public/Bug/Display.html?id=20763
77 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=380498
78 (Gregor Herrmann and Joey Hess)
f9e32c84 79 - Switch to Module::Build
80 http://rt.cpan.org/Public/Bug/Display.html?id=38283
81 http://rt.cpan.org/Public/Bug/Display.html?id=20575
82 http://rt.cpan.org/Public/Bug/Display.html?id=21300
4b70ec20 83
c4d4c98e 840.12 2006.08.13
85 - Generate Atom 1.0 feeds by default. Thanks to Tatsuhiko Miyagawa for
86 the patch.
87
4679cf3f 880.11 2006.08.07
89 - Fixed a bug in XML::Feed::Atom where entry->link and feed->link didn't
90 return the proper link element if the "rel" attribute wasn't defined for
91 a <link /> tag. Thanks to Tatsuhiko Miyagawa for the patch.
92
4f6ca997 930.10 2006.07.17
94 - Oops, an Atom test in 01-parse.t was previously succeeding only because
95 of a bug in XML::Atom. Now that that bug is fixed, this one is now
96 fixed, too.
97
fe3b3201 980.09 2006.07.10
99 - Fixed date format errors with XML::Feed::RSS. Thanks to Tatsuhiko
100 Miyagawa for the patch.
101 - Use add_module to properly add namespaces to the RSS document. Thanks
102 to Tatsuhiko Miyagawa for the patch.
103
ecac864a 1040.08 2006.03.03
105 - $feed->author wasn't being converted properly by Feed->convert. Thanks
106 to Tatsuhiko Miyagawa for the patch.
107 - Added eval around Entry->issued calls, to properly catch invalid
108 date formats, and just return undef, rather than dying. Thanks to
109 Tatsuhiko Miyagawa for the spot.
110 - Fixed issued/modified format issue with dates in timezones other than
111 UTC. Thanks to Tatsuhiko Miyagawa for the patch.
112
23103173 1130.07 2005.08.11
114 - Added XML::Feed::splice method, to make feed splicing easier.
115 - Fixed some unitialized value warnings.
116
973e1f9e 1170.06 2005.08.09
118 - Added Feed->convert and Entry->convert methods to allow conversion
119 between formats.
120 - Added ability to create new Feed and Entry objects, add entries, etc.
121 - Added $PREFERRED_PARSER variable to allow usage of compatible
122 RSS parsers, like XML::RSS::LibXML. Thanks to Tatsuhiko Miyagawa
123 for the patch.
124
b3b6d2fc 1250.05 2005.01.01
126 - Call URI::Fetch::URI_GONE() instead of URI::Fetch::FEED_GONE(). Thanks
127 to Richard Clamp for the patch.
128
fe71566d 1290.04 2004.12.31
130 - Use "loose" parsing in DateTime::Format::Mail so that we don't die
131 on invalid RFC-822 dates.
132 - XML::Feed::Entry->link on RSS feeds will now use a <guid> element
133 if a <link> element isn't found.
134 - Switched to using URI::Fetch when fetching feeds. Since we're not
135 storing or caching feeds currently, this basically just buys us
136 GZIP support, but that's something.
fe71566d 137
62d92771 1380.03 2004.10.09
139 - Fixed bug with feed format detection: properly detect format even in
140 feeds with <!DOCTYPE> at the top. (Thanks to Alberto Quario for the
141 note.)
142 - Use Class::ErrorHandler instead of XML::Feed::ErrorHandler.
143 - Moved auto-discovery code into Feed::Find. XML::Feed->find_feeds is
144 now just a wrapper around that module.
145
1460.02 2004.07.29
a749d9b9 147 - Changed behavior of Entry->summary to prevent it from returning the
148 full contents of the entry. Now, in an RSS feed, summary only returns
149 a value if there is both a <description> element *and* one of the
150 other elements typically used for the full content.
151 - Changed content model for Entry->content and Entry->summary.
152 They now return an XML::Feed::Content object, which knows about both
153 the actual content and the MIME type of the content.
154 - Improved feed format detection by first tag in feed.
155
0d5e38d1 1560.01 2004.06.01
157 - Initial distribution.