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