ChangeLog revision 1.2
1Revision history for Perl suite Locale::Maketext
2
32014-06-17
4    * Correct two subtle typos in Locale::Maketext POD.
5
6
72013-04-13
8    * No changes. Switch to version 1.25 for release to CPAN.
9
102013-04-13
11    * Update to 1.25_01 from upstream blead for release testing
12
132013-11-08
14    * Fix for case when lexicon translations contain substitionand literals with eval-non-safe characters.
15	RT #120457
16
172013-08-21
18    * Swap out base for parent (bowtie) For: RT #119403
19
202013-05-21
21    * typo fixes for Locale::Maketext
22
232013-01-04
24    * POD fixes uncovered by the new Pod::Checker, not yet in core.
25
262012-12-04
27    * Fix misparsing of maketext strings.
28
292012-11-22
30    * Fix hash order dependency bug in tests
31
322012-01-14
33    * Minor POD documentation update to sync with upstream blead.
34
352011-12-23
36    * No changes. Production release after CPAN testers cleared.
37
382011-12-14
39    * Update to 1.19_01 from upstream blead for release testing
40
41    Fix broken URLs in dist/Locale-Maketext/lib/Locale/Maketext/TPJ13.pod for RFCs
42
43    Keep verbatim pod in various dist/* pods within 79 cols
44
452011-05-25
46    * Update to 1.19 from upstream blead
47
48    [perl #89896] Locale::Maketext test failure
49    when environment has variable containing unbalanced brackets
50
51    Suppress "Name used only once" warnings.
52
53    [perl #81888] Fix typos (spelling errors) in dist/*
54
552010-10-20
56    * Release 1.17
57
58    Test release of 1.16_01, versioning even deprecated Guts modules.
59    This prevents CPAN upgrade circular heck. Thanks BinGOs
60
61    Tested version fix for CPAN by BinGOs. Bump to stable version and release to public
62
632010-10-07
64    * Release 1.16
65
66    Blead commit bac7bf8 - Copy @_ to @_ to de-alias passed variables
67    to assure that the aliases cannot be altered during maketext calls.
68
69    Fix for CPAN RT #40727: infinite loop in
70    Locale::Maketext::Guts::_compile() when working with tainted values
71
72    Fix for CPAN RT #34182: Don't localize $@.
73    ->maketext calls will now backup and restore $@ so that die messages are not suppressed.
74
75    Fix for CPAN RT #55461
76    %hash deprecated messages cleaned up with perl 5.12
77
78    Fix for CPAN RT #48118. Perl 76674
79    Speed and efficiency tweaks in _compile calls when string has no ~][ in it.
80
81    Fix for CPAN RT #48808. Perl 76668
82    I18N::LangTags use() fixups.
83
842010-06-22
85    * Release 1.15 (included in perl 5.13.3; not released separately)
86
87    Locale::Maketext guts have been merged back into the main module
88
89    Fix for CPAN RT #46738. Perl 76354
90    Support for RO Lexicon hashes (External cache support)
91
922009-11-20
93    * Release 1.14 (included in perl 5.11.2; not released separately)
94
95    In Locale::Maketext, avoid using defined @array and defined %hash.
96
97    Convert the odd Locale::Maketext test out from Test to Test::More.
98
992009-06-23  Adriano Ferreira
100    * Development release 1.13_82
101
102    One more recipe: on [numf,...] with decimal precision
103
1042009-06-23  Adriano Ferreira
105    * Development release 1.13_81
106
107    Change a few straggling 'DEBUG and print' to 'DEBUG and warn' (thanks Dan Muey)
108
109    A start of a cookbook.
110
1112009-06-23  Adriano Ferreira
112    * Development release 1.13_80
113
114    Fixes CPAN RT #25877 (thanks imacat)
115
116    Add a test for failure_handler_auto()
117
1182008-05-28  Adriano Ferreira
119    * Release 1.13
120
121    New maintainer. No noteworthy changes.
122
123    When debugging is turned on, "DEBUG and warn" is now
124    used instead of "DEBUG and print". It makes web applications
125    happier. CPAN RT #36238
126
1272007-11-17
128    * Release 1.12
129
130    Many doc changes from RT.
131
132    Silenced some "used only once" warnings under Perl 5.10.
133
134    $@ is now localized in case it gets interpolated.  This was added
135    a while ago, but now there's a test for it, too.
136
137    Added warnings and strict to tests.
138
139    Cleaning up some Perl::Critic gripes.
140
1412007-05-07  Andy Lester
142    * Release 1.11_01
143
144    Fixed perlbug #33938
145    http://rt.perl.org/rt3//Public/Bug/Display.html?id=3393
146
147    Started cleaning up source per Perl::Critic.
148
149
1502005-11-10  Andy Lester
151    * Release 1.10:
152
153    New maintainer.  No changes at all.  Bumped up the version number
154    and released it so that I can get the RT queue and any future mail.
155
156
1572004-03-30  Sean M. Burke  sburke@cpan.org
158    * Release 1.09:
159
160    * Moved the language-preference-detecting code into new module
161    I18N::LangTags::Detect.
162
163    Thanks to Autrijus Tang for catching some errors in the dist!
164
165
1662004-01-19  Sean M. Burke  sburke@cpan.org
167
168    * Release 1.08:
169
170    * Corrected a one-line code bug in v1.07 that accidentally demoted
171    all en-* tags in cases of lexicon-groups that had an en.pm but no
172    en_*.pm.  Thanks to Robert Spier for spotting this.  Test added.
173    So don't use v1.07!
174
175    * Autrijus found some typos in the TPJ article.  Fixed.
176
1772004-01-11  Sean M. Burke  sburke@cpan.org
178
179    * Release 1.07:  Now uses a new and different rule for implicating
180    superordinate language tags in accept-language lists.  Previously,
181    superordinates were just tacked onto the, so "en-US, ja", turned
182    into "en-US, ja, en".  However, this turned out to be suboptimal
183    for many users of RT, a popular system using Maketext.  The new
184    rule is that a tag implicates superordinate forms right after it,
185    unless those tags are explicitly stated elsewhere in the
186    accept-languages list.  So "en-US ja" becomes "en-US en ja".  If
187    you want "en" to be really lower, you have to actually state it
188    there: "en-US ja en" is left as-is.
189
190    The 04super.t and 05super.t tests in t/ have many many examples of
191    this, including some strange corner cases.
192
193    (In implementing this change, I also refactored some code in
194    Maketext.pm, for hopefully improved readability.  However,
195    the above is the only actual change in behavior.)
196
1972003-06-21  Sean M. Burke  sburke@cpan.org
198    * Release 1.06:  Now has "use utf8" to make the things work
199    happily.  Some fancy footwork is required to make this work under
200    pre-utf8 perl versions.
201
2022003-04-18  Sean M. Burke  sburke@cpan.org
203    * Release 1.05:  Different Makefile.PL, same .pm code.
204
205    Jesse Vincent, Hugo van der Sanden, and Jarkko Hietaniemi
206    encourage me to add this to the makefile:
207     ($] < 5.008) ? () : ( INSTALLDIRS => 'perl'),
208    so that when you install this on a recent version of perl (5.8 or
209    later), the installation will overwrite the Maketext.pm in your
210    core library directory.  Email me if this produces trouble for any
211    of you folks out there, okay?
212
2132003-04-02  Sean M. Burke  sburke@cpan.org
214    * Release 1.04: Implementing proper HTTP "tag;q=rank" parsing for
215    get_handle.  This should make all the difference for users/victims
216    of the current version of Safari, which uses that syntax as well
217    as inserts random languages with low q numbers.
218    Thanks to Jesse Vincent and the whole RT junta for finding this.
219
220    * Added more tests, now in t/
221
222    * Lots of typo fixes to Maketext.pm.  Thanks to Evan A. Zacks for
223    patient help in finding them all.
224
2252001-06-21  Sean M. Burke  sburke@cpan.org
226    * Release 1.03: basically cosmetic tweaks to the docs and the
227    test.pl.
228
2292001-06-20  Sean M. Burke  sburke@cpan.org
230    * Release 1.02:  EBCDIC-compatibility changes courtesy of Peter
231    Prymmer.  Added [*,...] as alias for [quant,...] and [#,...] as an
232    alias for [numf,...].  Added some more things to test.pl
233
2342001-05-25  Sean M. Burke  sburke@cpan.org
235    * Release 1.01:  total rewrite.  Docs are massive now.
236    Including TPJ13 article now.
237
2382000-05-14  Sean M. Burke  sburke@cpan.org
239
240    * Release 0.18:  only change, regrettably, is a better makefile,
241    and it my email address has changed.
242
2431999-03-15  Sean M. Burke  sburke@netadventure.net
244
245    * Release 0.17:  Public alpha release
246    Underdocumented.
247