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