Imported Upstream version 0.17
[liburi-template-perl.git] / Changes
1 Revision history for Perl extension URI::Template
2
3 0.17 2013-03-11
4  - Special case return from empty hash and array values in query strings
5
6 0.16 2012-05-30
7  - Conform to latest spec RFC 6570 (RT 66651)
8  - Re-use test suite from official github repo
9
10 0.15 2009-01-19
11  - Promote dev release to stable
12
13 0.14_01 2008-09-09
14  - Conform to latest spec (draft 03) (Ricardo SIGNES) Due to the new spec,
15    the following are no longer applicable:
16     - deparse()
17     - all_variables()
18     - passing an arrayref to the process subs
19  - as_string() is now just template() (Ricardo SIGNES)
20  - added expansions() - returns the coderefs used to expand the template
21    (Ricardo SIGNES)
22  - add support for default values (where applicable)
23
24 0.13 2008-02-12
25  - Properly terminate deparse regex (Karen Cravens)
26
27 0.12 2008-02-10
28  - Attempt to fix deparse() when the template ends in a variable
29
30 0.11 2008-02-08
31  - require perl 5.6 minimum
32
33 0.10 2008-01-16
34  - fix test suite for JSON 2.x
35
36 0.09 2007-08-28
37  - minor doc update
38
39 0.08_02 2007-07-31
40  - switch to Module::Install
41  - extract part of the test suite into a generic json-formatted structure
42
43 0.08_01 2007-07-29
44  - handle new escaping rules from the latest spec.
45
46 0.07 2007-05-24
47  - allow the user to pass an array ref to process and process_to_string
48    which fills values by position
49  - added all_variables() which returns all arguments by position (including
50    duplicates)
51
52 0.06 2007-04-23
53  - added some caching for better deparse() performance [Paul "LeoNerd"
54    Evans]
55
56 0.05 2007-04-19
57  - fix test for variables()
58  - added a note that the results from variables() are in random order
59
60 0.04 2007-01-22
61  - fix undef values when processing
62
63 0.03 2007-01-16
64  - added a simple deparse() method
65
66 0.02 2007-01-16
67  - added process_to_string() method
68
69 0.01 2007-01-15
70  - original version