Lines Matching +full:broken +full:- +full:turn +full:- +full:around

3 1.56  2019-07-09
4 - Fix typos in Changes
6 1.55 2019-02-25
7 - Improve AppVeyor tests for older Perls (Thanks Roy Ivy)
8 - Check for Test::More 0.94 and skip tests if not installed where
10 - Improve workaround for broken Win32 File::Temp taint failure (Thanks Roy Ivy).
11 - Skip/todo tests which fail under Devel::Cover (Thanks Roy Ivy)
12 - Add checks and skip_all checks for non-core test modules (Thanks Roy Ivy)
14 1.54 2019-01-13
15 - Fix tempfile creation during tests on Win32
17 1.53 2018-05-02
18 - Add support for decoding template files via ENCODING constructor arg
20 - Docs cleanup: replace indirect-object style examples and use class method
22 - Docs cleanup: remove hard tabs from POD, replace dated, unfair synopsis
25 1.52 2018-03-19
26 - Fix possible 'Subroutine ... redefined' warning (Github #10)
28 1.51 2018-03-04
29 - Add test for nested tags breakage that happened in v1.46
30 - Turn off strict+warnings in sections where template code is eval'ed
33 1.50 2018-02-10
36 https://github.com/mschout/perl-text-template/issues/8). Will revisit
39 1.49 2018-02-07
40 - Fix failing tests in v1.48 under perl < 5.8.9
42 1.48 2018-02-07
43 - remove COPYING and Artistic files from the dist. These are replaced by
45 - use strict/warnings (thanks Mohammad S Anwar)
46 - remove $VERSION checks from tests. This makes it easier to run the test
49 - Allow precompiled templates to work with preprocessing [#29928] (Thanks
51 - Add "strict" option to fill_in(). This adds "use strict" and "use vars
55 - Fix templates with inline comments without newline after comment for perl
57 - Don't use bareword file handles
58 - use three arg form of open()
59 - Fix BROKEN behaviour so that it returns the text accumulated so far on
61 - Source code cleanups
62 - Minimum perl version is now 5.8.0
63 - Allow start/end delimiters to be identical (e.g.: @@foo@@, XXfooXX)
65 - Fix + document the FILENAME parameter to fill_in() (Thanks VDB) [106093]
66 - Test suite cleanups:
67 + turn on strict/warnings for all tests
71 + use three-arg form of open()
76 1.47 2017-02-27
77 - Fix longstanding memory leak in _scrubpkg() [#22031]
78 - Fix various spelling errors [#86872]
82 1.46 2013-02-11
83 - Thanks to Rik Signes, there is a new
84 Text::Template->append_text_to_output method, which Text::Template always
87 - A spurious warning is no longer emitted when the TYPE parameter to ->new
90 1.45 2008-04-16
92 1.44 2003-04-29
93 - This is a maintenance release. There are no feature changes.
94 - _scrubpkg, which was responsible for eptying out temporary packages after
96 memory leaks in long-running applications. This should be fixed now, and
98 - Minor changes to the test suite to prevent spurious errors.
99 - Minor documentation changes.
101 1.43 2002-03-25
102 - The ->new method now fails immediately and sets $Text::Template::ERROR if
105 and the ->fill_in call would fail.
107 1.42 2001-11-05
108 - This is a maintenance release. There are no feature changes.
109 - Fixed a bug relating to use of UNTAINT under perl 5.005_03 and possibly
111 - Taint-related tests are now more comprehensive.
113 1.41 2001-09-04
114 - This is a maintenance release. There are no feature changes.
115 - Tests now work correctly on Windows systems and possibly on other
116 non-unix systems.
118 1.40 2001-08-30
120 - The format of the default error message has changed. It used to look
134 - The format of the default error message has changed. It used to look like:
142 - Note that the default message used to report the line number at which the
145 - New UNTAINT option tells the module that it is safe to 'eval' code even
147 - Code added to prevent memory leaks when filling many templates. Thanks
149 - Bug fix: $OUT was not correctly initialized when used in conjunction
151 - You may now use a glob ref when passing a filehandle to the ->new
153 - New subclass: Text::Template::Preprocess. Just like Text::Template, but
158 - Error messages passed to BROKEN subroutines will now report the correct
163 - If the template comes from a file, the filename will be reported as well:
167 - New UNTAINT option tells the module that it is safe to eval template code
170 - Code added to prevent memory leaks when filling many templates. Thanks to
172 - Bug fix: $OUT was not always correctly initialized when used in
174 - You may now use a glob ref when passing a filehandle to the new function.
176 - Error messages passed to BROKEN subroutines will now report the correct
185 - New subclass: Text::Template::Preprocess. Just like Text::Template, but
191 1.31 2001-02-05
192 - Maintenance and bug fix release
193 - fill_in_string was failing. Thanks to Donald L. Greer Jr. for the test case.
195 1.23 1999-12-21
196 - Small bug fix: DELIMITER and other arguments were being ignored in calls
201 - You can now specify that certain Perl statements be prepended to the
208 1.20 1999-03-08
209 - You can now specify that the program fragment delimiters are strings
214 introduced by the elimination of \ processing, template parsing is 20-25%
216 - Fixed bug having to do with undefined values in HASH options. In
220 1.12 1999-02-28
221 - I forgot to say that Text::Template ISA Exporter, so the exported
223 - Template TYPEs are now case-insensitive. The `new' method now diagnoses
225 - More tests for these things.
227 1.11 1999-02-25
228 - Fixed a bug in the way backslashes were processed. The 1.10 behavior was
234 - Documentation for the new behavior, and tests for the bug.
236 1.10 1999-02-13
237 - New OUTPUT option delivers template results directly to a filehandle
239 - PACKAGE and HASH now work intelligently with SAFE.
240 - Fragments may now output data directly to the template, rather than
259 - Fixed some small bugs. Worked around a bug in Perl that does the wrong
261 - More documentation. Errors fixed.
262 - Lots more tests.
264 1.03 1999-02-06
265 - Code added to support HASH option to fill_in. (Incl. `_gensym'
267 - Documentation for HASH.
268 - New test file for HASH.
269 - Note about failure of lexical variables to propagate into templates. Why
271 - Bug fix: program fragments are evaluated in an environment with `no
276 - Fixed the test program.
277 - Various minor documentation fixes.
279 1.00 1999-02-05
282 100% backward-compatible with the previous versions. With one cosmetic
286 - At least twice as fast
287 - Better support for filling out the same template more than once
288 - Now supports evaluation of program fragments in Safe compartments.
290 - Better argument syntax
291 - More convenience functions
292 - The parser is much better and simpler
293 - Once a template is parsed, the parsed version is stored so that
295 - BROKEN function behavior is rationalized. You can now pass an
296 arbitrary argument to your BROKEN function, or return a value
298 - Documentation overhauled.
301 - Maintained by Mark Jason Dominus (MJD)