v3.25 release
[perl/plp/.git] / Changes
1 3.25 - April 1, 2018:
2 - Fix newer perl.vim compatibility
3 - Test::PLP class to run scripts
4   - Test plpinfo script for errors
5 - Override warn under mod_perl for vhost-specific logging
6
7 3.24 - November 20, 2013:
8 - Avoid tie replacement broken in Perl >= 5.18
9   - Test correct %post behaviour
10 - Various test fixes and improvements
11 - Document %header defaults and encoding
12 - Update META.yml to v1.4 specs
13
14 3.23 - October 21, 2009:
15 - Make tests pass on various systems
16 - Fix header output using say() on Perl >= 5.10.1
17 - EscapeHTML() for basic attribute quoting
18 - Fix vim syntax highlighting of normal Perl code
19
20 3.22 - June 2, 2008:
21 - Fix delete %header
22 - Fix breakage with old versions of Exporter
23 - Tests emulating actual PLP usage
24
25 3.21 - May 31, 2008:
26 - Fix everything() wrapper (broke pre-3.20 CGI scripts on 3.20)
27 - %header values containing newlines will be sent as multiple fields
28 - Encoding functions retain undef
29 - Add charset to Content-Type header for UTF-8 output
30 - All modules use warnings and contain a $VERSION
31 - Fix META.yml syntax
32 - Test pod coverage
33
34 3.20 - May 29, 2008:
35 - MIT license
36 - FastCGI support
37 - mod_perl2 support (but not recommended; read docs!)
38 - Lighttpd and Apache2 support (either CGI or FastCGI)
39 - Seperate modules for backend-specific code
40 - Documentation updates
41 - Fix html of default error message
42 - Example plpinfo.plp, modeled after phpinfo
43
44 3.19 - September 15, 2005:
45 - New maintainer
46 - Send headers when using C<printf> to start output
47 - Do not send headers when C<print>ing multiple empty strings
48 - EncodeURI()/DecodeURI() now accept read-only values
49 - Cleaner and slightly faster code in Entity(), DecodeURI(), and EncodeURI()
50 - Removed (undocumented) function HiddenFields
51 - Tests for a few Functions
52 - Documentation fixes and elaboration
53
54 3.18 - October 16, 2002:
55 - Fixed the class for tied headers. Content_Type is now really converted to
56   Content-Type, as explained in L<PLP::Fields>
57 - Added some bits to L<PLP::HowTo>
58 - Closing :> is now optional (which is handy for code-only PLP documents that
59   should not send additional whitespace)
60
61 3.17 - August 21, 2002:
62 - More cleanups
63 - %get is now built on script start, no longer on first access
64 - Apache->request->print is used now under mod_perl, not print (faster)
65 - Small documentation fixes
66 - Setting a header when headers are already sent now tells you where output
67   started
68 - Speeded up source()
69
70 3.16 - May 21, 2002:
71 - Cleaned up a little
72 - Changed compile-time <(...)> includes to use paths relative to the file they
73   are included by. Include() of course still uses paths relative to the current
74   working directory
75 - Added and removed Safe.pm implementation. Safe's reval() crashes Apache on
76   Linux :(
77 - Removed useless constant in void context in PLP::Functions
78 - Added some documentation
79
80 3.15 - May 21, 2002:
81 - Added caching of scripts. This means using more memory but it also means
82   executing scripts 45-65% faster! (mod_perl only)
83 - Added configurability of caching: PerlSetVar PLPcache On/Off (Default: On)
84 - Changed PLP.pm to use File::Basename and File::Spec
85 - Added recursion protection for compile-time includes (fixed max depth: 128)
86
87 3.14 - May 20, 2002:
88 - New plp.vim
89 - Small documentation change
90
91 3.13 - May 20, 2002
92 - Added documentation:
93   - PLP
94   - PLP::FAQ
95   - PLP::Fields
96   - PLP::Functions
97 - Added predeclared of hashes for use-strict-users ("our"/"use vars"
98   is no longer necessary for the PLP hashes)
99 - Added plp.vim for vim syntax highlighting to the distribution
100 - Added error reportig to Counter, ReadFile and WriteFile
101 - Changed ReadFile and WriteFile to use lexical filehandles
102 - Changed PLP::Functions to use Fcntl for improved portability
103 - Cleaned up PLP::Fields: removed the PLPdummies
104 - Fixed DELETE, EXISTS and FIRSTKEY in PLP::Tie::Delay (added PLPdummy there)
105
106 3.12 - May 18, 2002
107 - Fixed strict-violation in PLP.pm that happened only without mod_perl
108
109 3.11 - May 18, 2002
110 - Fixed all tie-stuff by reverting a change. Symbol.pm's delete_package doesn't
111   delete a package in the way I thought it did.
112
113 3.10 - May 18, 2002
114 - First standardized module distribution, to allow easy distribution via CPAN
115 - Caution: installation procedure has changed because of that!
116 - Moved all code from plp.cgi to PLP.pm, and made PLP.pm use strict (it was
117   strict compliant, but didn't actually use the pragma).
118 - Added mod_perl handler() for extremely easy installation :)
119 - Added some documentation (perldoc PLP) with installation instructions
120 - Moved a few lines from init() to start()
121 - Added comments in PLP.pm
122 - Uses Symbol.pm to delete the package (Symbol is in the Perl distr.)
123
124 3.06 - April 23, 2002
125 - Added PLP_END functionality to simulate END { ... } for mod_perl
126 - Fixed header sending in case PLP::Tie::Print->PRINT never happened
127 - Added an override for exit(), to avoid needless debugging output in mod_perl
128
129 3.05 - April 12, 2002
130 - Fixed a potential bug in PLP::source and PLP::Functions::Counter
131
132 3.04 - April 11, 2002
133 - $PLP::DEBUG works again (set to 1 for $@ output, 2 for plain text+headers,
134   3 for both)
135 - $PLP::ERROR is now a subref that can be overridden (April 12: see FAQ for
136   info)
137
138 3.03 - April 11, 2002
139 - Removed a bug that made sending alternative headers impossible. Sorry!
140 - By the way, remember that if you want to send headers, the "<:" have to be
141   the very first characters in the file, with no white space in front of it!
142
143 3.02 - April 11, 2002
144 - Efficiency improvement by caching initialisation in PLP.pm
145
146 3.01 - April 10, 2002
147 - Bugfixes: include() used strict, fixed some typos, logging
148 - Improved: error reporting
149
150 3.00 - April 9, 2002
151 - New release, a lot has been done from scratch again, this time following 
152   strict rules and mod_perl compatible. It's also a lot faster than 2.x.
153