dh-ify packaging with dh-make-perl refresh.
[libwww-opensearch-perl.git] / Changes
1 Revision history for Perl extension WWW::OpenSearch
2
3 0.17 2013-01-18
4  - Avoid hash randomization problem in test (RT #82796)
5
6 0.16 2010-05-25
7  - Fix tests for Test::More 0.95_02
8
9 0.15 2009-11-19
10  - repackaged with a new version of Module::Install
11
12 0.14 2008-04-17
13  - Handle broken LWP 5.810 in Makefile.PL
14
15 0.13 2007-12-21
16  - Fix pod coverage (Ian Beckwith)
17
18 0.12 2007-05-01
19  - switch from ||= to a "defined" idiom for some params
20  - switch to Module::Install
21
22 0.11 2007-04-17
23  - added a simple OSD parsing test
24
25 0.10_02 2007-01-23
26  - fix Request.pm to clone the extra attributes we've added (Marc Tobias)
27
28 0.10_01 2007-01-22
29  - use URI::Template for parsing OSD uri templates
30  - added opensearch-specific Request and Agent classes
31  - un-break get_best_url()
32  - you can now pass a WWW::OpenSearch::Url to WWW::OpenSearch's search()
33    method
34  - added ns() (namespace) field to Url.pm
35  - re-worked paging to use the new Request object
36
37  [THINGS THAT MAY BREAK YOUR CODE]
38  - using URI::Template means some methods are now proxied to that class
39  - removed agent argument in new() in OpenSearch.pm
40  - handling of POST requests in prepare_query() in Url.pm now  returns data
41    suitable for passing to HTTP::Request
42  - un-link Response.pm and the parent WWW::OpenSearch object -- a Response
43    is now in the context of whatever WWW::OpenSearch::Url was used
44
45 0.09 2006-12-07
46  - fix link fetching from atom feeds
47
48 0.08 2006-09-13
49  - fix optional attributes for Image
50  - added strict to Url object
51
52 0.07 2006-09-11
53  - inflate query and image fields to objects for OSD 1.1
54  - pod updates
55
56 0.06_02 2006-07-20
57  - added tests
58  - updated available description info
59  - try to handle POST urls better
60  - update XML::Atom calls to latest release API
61  - added option to override the useragent from new()
62  - fix undef warning
63  - turn utf8 flag off for queries
64
65 0.06_01 2006-05-18
66  - Complete re-write to handle OpenSearch 1.1/Atom
67  - Now uses XML::Feed to abstract RSS and Atom
68  - Improved OpenSearch Description/Url handling
69  - Encapsulate returns in a Response object
70
71 0.05 2006-01-09
72  - Added partial support of OpenSearch 1.1. There's no API change and old
73    elements just work as before, with 1.1 OpenSearch document as well. See
74    http://opensearch.a9.com/docs/upgrading10.jsp (Thanks to Masaaki Hirose)
75
76 0.04 2005-07-29
77  - Drop off XML::Simple for efficiency. LibXMLify everything. Now you need
78    XML::RSS::LibXML 
79
80 0.03 2005-07-24
81  - Hacked current_page so you can specify page number correctly (Thanks to
82    Naoya Ito)
83
84 0.02 2005-03-26
85  - Added accessors for attributes
86  - Fixed POD
87
88 0.01 2005-03-17
89  - original version