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