forked from houseabsolute/DateTime-TimeZone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
1977 lines (1109 loc) · 55.1 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{{$NEXT}}
2.44 2020-11-06
- The DateTime::TimeZone->offset_as_string now accepts an optional separator
string.
2.43 2020-10-21
- This release is based on version 2020d of the Olson database. This release
includes contemporary changes for Palestine.
2.42 2020-10-16
- This release is based on version 2020c of the Olson database. This release
includes contemporary changes for Fiji.
2.41 2020-10-07
- The last release was missing all the generated data files. Oops! Reported by
Paul Howarth. GH #43.
- Added a custom dzil plugin to make sure that the release has all of the
generated data files.
2.40 2020-10-07
- This release is based on version 2020b of the Olson database. This release
includes contemporary changes for Morocco, Casey Station, and the
Yukon. This release also removes the very long-deprecated "US/Pacific-New"
zone name.
2.39 2020-04-24
- This release is based on version 2020a of the Olson database. This release
includes contemporary changes for Morocco and the Yukon.
2.38 2019-11-15
- Added support for Etc/GMT and Etc/UTC style zones like "Etc/GMT-2" or
"Etc/UTC+12". Implemented by kclaggett. GH #38.
2.37 2019-09-11
- This release is based on version 2019c of the Olson database. This release
includes contemporary changes for Fiji and Norfolk Island.
2.36 2019-07-01
- This release is based on version 2019b of the Olson database. This release
includes contemporary changes for Brazil and Palestine.
2.35 2019-04-21
- Handle "infinity" as a representation of infinite values in serialized
objects. On Solaris we end up with "infinity" and "-infinity" as opposed to
just "inf" and "-inf". Fixed by Andrew Paprocki. GH #36.
2.34 2019-03-26
- This release is based on version 2019a of the Olson database. This release
includes contemporary changes for Palestine and Metlakatla, Alaska.
2.23 2018-12-30
- This release is based on version 2018i of the Olson database. This release
includes contemporary changes for São Tomé and Príncipe.
2.22 2018-12-29
- This release is based on version 2018h of the Olson database. This release
includes contemporary changes for Morocco, Kazakhstan, and Iran.
2.21 2018-10-27
- This release is based on version 2018g of the Olson database. This release
includes contemporary changes for Morocco.
2.20 2018-10-18
- Added more documentation on how local time zones work, and a warning to set
$ENV{TZ} if you're writing tests for code that tries to use the local time
zone.
- This release is based on version 2018f of the Olson database. This release
includes contemporary changes for Russia (Volograd), Fiji, and Chile.
2.19 2018-05-13
- This release is based on version 2018e of the Olson database. This release
includes contemporary changes for North Korea.
2.18 2018-03-23
- This release is based on version 2018d of the Olson database. This release
includes contemporary changes for Palestine and Casey Station.
2.17 2018-01-23
- This release is based on version 2018b of the Olson database. This release
reverts the changes for Ireland in the previous versions as these caused
breakages in some systems that consumed the IANA time zone data.
2.16 2018-01-19
- This release is based on version 2018b of the Olson database. This release
includes contemporary changes for São Tomé and Príncipe, Brazil, and
Ireland. The 2018a was skipped because it was missing a file, but there are
no data changes from 2018a to 2018b.
2.15 2017-11-04
- Make the local zone lookup code handle the case where /usr/share/zoneinfo is
a symlink, as it apparently is on recent versions of macOS (10.13). Fixed by
Tom Wyant. GH #22 and #23.
2.14 2017-10-28
- This release is based on version 2017c of the Olson database. This release
includes contemporary changes for Fiji, Namibia, Northern Cyprus, Sudan,
Tonga, and Turks & Caicos.
2.13 2017-06-01
- Really fix the indexing issue. For reals this time. I'm totally not
kidding. Thanks to Grinnz on #metacpan for giving me the solution.
2.12 2017-06-01
- Attempting to fix indexing of DateTime::TimeZone::Catalog on metacpan
again. No real code or zone changes. Reported by Greg Oscwhald. GH #19.
2.11 2017-03-22
- This release is based on version 2017b of the Olson database. This release
includes contemporary changes for Haiti.
2.10 2017-03-01
- This release is based on version 2017a of the Olson database. This release
includes contemporary changes for Mongolia and Chile.
2.09 2016-11-24
- This release is based on version 2016j of the Olson database. This release
includes contemporary changes for Russia (Europe/Saratov).
2.08 2016-11-12
- Switched from RT to the GitHub issue tracker.
2.07 2016-11-02
- This release is based on version 2016i of the Olson database. This release
includes contemporary changes for Tonga and Antarctica/Casey. There is also
a new zone for Northern Cyprus, Asia/Famagusta, which differs from other
parts of Cyprus.
2.06 2016-10-20
- This release is based on version 2016h of the Olson database. This release
includes contemporary changes for Palestine.
2.05 2016-09-28
- This release is based on version 2016g of the Olson database. This release
includes contemporary changes for Turkey.
2.04 2016-09-26
- Automatically add the latest version of DateTime::Time::Local::Win32 as a
prereqs on Windows system automatically when building the release.
2.03 2016-09-17
- Bump minimum required Perl to 5.8.4 from 5.8.1. This matches DateTime.pm
itself.
2.02 2016-09-16
- Replaced Params::Validate with Params::ValidationCompiler.
2.01 2016-07-17
- This release is based on version 2016f of the Olson database. This release
includes contemporary changes for Egypt and Russia. The changes for Egypt
supersede the ones in 2016e.
2.00 2016-06-07
- The fix in 1.99 broke the parsing of the etcetera zones, which are specified
as 1 or 2 digit offsets in hours, unlike all other zones which are written
as "1:00" or "-2:00".
1.99 2016-06-07
- When parsing the POSIX zones in the etcetera file, don't special case the
ETC[+-]NN zones. These are weirdly named, as ETC+8 is 8 hours _behind_ UTC,
and -6 is 6 hours _ahead_. Previously, we were swapping these so the name
matched the sane usage, but this is confusing for anyone who is explicitly
trying to use the POSIX names, expecting the bizarre (but POSIXly correct)
interpretation. Patch by Bron Gondwana. GitHub PR #7.
1.98 2016-04-18
- This release is based on version 2016d of the Olson database. This release
includes contemporary changes for Russia and Venezuela.
1.97 2016-03-23
- This release is based on version 2016c of the Olson database. This release
includes contemporary changes for Azerbaijan and Chile.
1.96 2016-03-15
- This release is based on version 2016b of the Olson database. This release
includes contemporary changes for Russia, Haiti, and Palestine.
1.95 2016-01-27
- This release is based on version 2016a of the Olson database. This release
includes contemporary changes for the Cayman Islands, Iran, and Chita,
Russia.
1.94 2015-10-21
- This release is based on version 2015g of the Olson database. This release
includes contemporary changes for Turkey, Norfolk, Fiji, and Fort Nelson.
1.93 2015-08-11
- This release is based on version 2015f of the Olson database. This release
includes contemporary changes for Moldova, North Korea, and Uruguay.
1.92 2015-06-22
- This distro now depends on DateTime::TimeZone::Local::Win32 when it is being
installed on a Windows OS. This should lead to a better experience for
Windows users. Requested by Matthew Horsfall and Karen Etheridge. RT
#103275.
1.91 2015-06-13
- This release is based on version 2015e of the Olson database. This release
includes contemporary changes for Morocco and Cayman Islands.
1.90 2015-05-14
- Made the compilation test shipped in the last release an author-only test,
as many of the modules in this distribution try to load DateTime, but
DateTime depends on this distribution. This caused attempts to install
DateTime on a fresh perl install to fail. Reported by Noel Maddy. RT
#104448.
1.89 2015-05-14
- Fix a syntax error in the Android local time zone module. Reported by Gregor
Hermann. RT #104105.
1.88 2015-04-24
- This release is based on version 2015d of the Olson database. This release
includes contemporary changes for Egypt.
1.87 2015-04-20
- This release is based on version 2015c of the Olson database. This release
includes contemporary changes for Egypt, though it looks like those will
change again soon.
1.86 2015-03-21
- This release is based on version 2015b of the Olson database. This release
includes contemporary changes for Mongolia and Palestine.
1.85 2015-01-30
- This release is based on version 2015a of the Olson database. This release
includes contemporary changes for Quintana Roo and Chile.
1.84 2015-01-17
- Removed the per-OS prereqs on DateTime::TimeZone::HPUX and
DateTime::TimeZone::Local::Win32. This gets rid of circular dependencies
between those distros and this one. RT #101588, 101589 and 68231.
1.83 2014-12-24
- The last release did not include any of the generated zone files. Oops.
- Attempting to fix indexing of DateTime::TimeZone::Catalog on metacpan. No
real code or zone changes.
1.82 2014-12-24
- Various changes to get tests passing and tools code working with blead. This
includes fixing some "Redundant argument in sprintf" warnings that could
occur in the DateTime test suite. Reported by Slaven Rezic. RT #10116.
1.81 2014-11-21
- Removed tests for Win32 code.
1.80 2014-11-16
- This distro no longer ships the DateTime::TimeZone::Local::Win32
module. Instead, it depends on that module when you install
DateTime::TimeZone on a Windows system machine.
- Tweaked the warning when loading a zone class from disk that was generated
using a different Olson version than the current DateTime::TimeZone
module. Previously, it said the loaded version was older, but all we know is
that it's different. Reported by Karen Etheridge. RT #66097.
1.79 2014-11-11
- This release is based on version 2014j of the Olson database. This release
only contemporary changes for Turks & Caicos.
1.78 2014-11-05
- Fix warnings from Perl 5.8.8 and before. Apparently it doesn't like when
$SIG{__DIE__} is set to undef. Patch by Peter Rabbitson. GitHub PR #88.
1.77 2014-11-04
- Updated the mapping of Windows -> IANA time zones. Patch by David
Pinkowitz. RT #10025.
- Replaced Class::Load with Module::Runtime, and replaced eval with Try::Tiny.
1.76 2014-10-26
- When searching for the local timezone we now look at /etc/timezone before
/etc/localtime. The former is a much quicker check if it exists. Patch by
Karen Etheridge. PR #3.
- The tools/parse_olson script now supports parsing the etcetera and systemv
files. This is *not* enabled by default as it would generate zones that
conflict with existing links for Etc/UTC and others. Patch by Alfie John. PR
#1.
1.75 2014-09-30
- This release is based on version 2014h of the Olson database. This release
only includes historical changes.
1.74 2014-08-30
- This release is based on version 2014g of the Olson database. This release
includes contemporary changes for Turks & Caicos.
- Fixed a bug when trying to get the local timezone by looking at
/etc/sysconfig/clock. Patch by Alexey Molchanov. GitHub PR #2.
1.73 2014-08-06
- This release is based on version 2014f of the Olson database. This release
includes contemporary changes for Russia and Australia.
1.72 2014-08-03
- Added support for getting the local time zone on Android. Patch from Brian
Fraser. RT #97711.
- The primary repo for this distro is now on GitHub.
1.71 2014-06-21
- This release is based on version 2014e of the Olson database. This release
includes contemporary changes for Egypt and Morocco.
1.70 2014-06-01
- Unset $ENV{TZ} in the t/04local.t test to avoid interference from
the system. Reported by Mark Gardner. RT #96083.
- This release is based on version 2014d of the IANA database, but there are
no data changes from 2014c.
1.69 2014-05-13
- Don't run tests for Unix on non-Unix boxes.
1.68 2014-05-13
- The last release was missing some test changes I made on another
machine. Doh.
1.67 2014-05-13
- I accidentally skipped 1.66, don't read anything into the 0.02 version bump
here.
- This release is based on version 2014c of the IANA database (I skipped 2014b
for lack of debugging time). This release includes contemporary changes for
Crimea and Troll Station, Antarctica from 2014b and contemporary changes for
Egypt from 2014c.
1.65 2014-03-09
- This release is based on version 2014a of the Olson database. This release
includes contemporary changes for Turkey.
1.64 2014-02-07
- Under taint mode, DateTime::TimeZone->new( name => 'local' ) could die
depending on the method used to find the local time zone name. The resulting
variable would often be tainted. We now untaint all names before attempting
to load them. Reported by Stevie-O. RT #92631.
1.63 2013-10-28
- This release is based on version 2013h of the Olson database. This release
includes contemporary changes for Morocco, Librya, and Western Sahara (El
Aaiun).
1.62 2013-09-25
- This release is based on version 2013f of the Olson database. This release
includes contemporary changes for Tocantins, Jordan, and Palestine.
1.61 2013-09-20
- This release is based on version 2013e of the Olson database. This release
includes contemporary changes for Fiji, Indonesia and San Luis,
Argentina. It also includes a number of historical changes. See
http://mm.icann.org/pipermail/tz-announce/2013-September/000013.html for
more details.
1.60 2013-07-07
- This release is based on version 2013d of the Olson database. This release
includes contemporary changes for Morocco and Israel. It also includes
historical changes for Jerusalem.
1.59 2013-04-20
- This release is based on version 2013c of the Olson database. This release
includes contemporary changes for Palestine and Paraguay. It also includes a
number of historical changes.
1.58 2013-03-11
- This release is based on version 2013b of the Olson database. This release
includes contemporary changes for Haiti, Paraguay, and Morocca. See
http://mm.icann.org/pipermail/tz-announce/2013-March/000010.html for more
details.
1.57 2013-03-02
- This release is based on version 2013a of the Olson database. This release
includes contemporary changes for Chile as well as several new zones -
Asia/Khandyga, Asia/Ust-Nera, and Europe/Busingen. It also includes a number
of historical changes.
1.56 2012-11-30
- The previous release was missing some files. That's what I get for running
"git clean -dxf". Reported by Andreas Koenig. RT #81593.
1.55 2012-11-30
- Updated mapping from Win32 to Olson time zone names. Patch by Andrey
Makhnutin. RT #81456.
1.54 2012-11-13
- This release is based on version 2012j of the Olson database. This release
includes contemporary changes for Libya.
1.53 2012-11-03
- This release is based on version 2012i of the Olson database. This release
includes contemporary changes for Cuba.
1.52 2012-10-31
- This release is based on version 2012h of the Olson database. This release
includes contemporary changes for Brazil, Israel, and Jordan.
1.51 2012-10-18
- This release is based on version 2012g of the Olson database. This release
includes contemporary changes for Palestine and Samoa.
1.50 2012-09-16
- In scalar context, DateTime::TimeZone->names_in_category returned an
arrayref containing an arrayref (rather than _just_ an arrayref). Reported
by Ed Shrock. RT #76791.
- The DateTime::TimeZone->names_in_category claimed that it returned names
based on the population of the zone. I don't think this was ever true, but
this data is definitely not part of the current Olson database. Reported by
Ed Shrock. RT #76792.
However, the DateTime::TimeZone->names_in_country method does preserve the
order specified in the Olson database, which is sort of based on population
and geography. This method is probably the best choice for presenting a list
of names to end user.
1.49 2012-09-13
- This release is based on version 2012f of the Olson database. This release
includes contemporary changes for Fiji.
1.48 2012-08-03
- This release is based on version 2012e of the Olson database. This release
includes contemporary changes for Fakaofo.
1.47 2012-07-19
- This release is based on version 2012d of the Olson database. This release
includes contemporary changes for Morocco.
1.46 2012-04-02
- This release is based on version 2012c of the Olson database. This release
includes contemporary changes for Morocco, Palestine, Syria, and Haiti.
1.45 2012-03-03
- Remove the dependency on DateTime and DateTime::Duration which was
accidentally added in 1.43. Reported by Slaven Rezic. RT #75508.
1.44 2012-03-02
- This release is based on version 2012b of the Olson database. This release
includes contemporary changes for Cuba.
1.43 2012-03-01
- This release is based on version 2012a of the Olson database. This release
includes contemporary changes for Armenia, Chile, the Falkland Islands, and
Tokelau.
1.42 2011-11-07
- This release is based on version 2011n of the Olson database. This release
includes contemporary changes for Fiji, Moldova (reversing the 2011m
changes), and Cuba. The Moldova change removes the Europe/Tiraspol zone
added in the previous release.
1.41 2011-10-24
- This release is based on version 2011m of the Olson database. This release
includes contemporary changes for Brazil, Moldova, and Ukraine.
1.40 2011-10-10
- This release is based on version 2011l of the Olson database. This release
includes contemporary changes for Palestine, Fiji, Russia, Belarus, Ukraine,
and several other post-Soviet states.
1.39 2011-09-26
- This release is based on version 2011k of the Olson database. This release
includes contemporary changes for Palestine, Belarus, and Ukraine.
1.38 2011-09-19
- Removed code matching /^package/ in tools/parse_olson. This was confusing
the metacpan indexer.
1.37 2011-09-12
- This release is based on version 2011j of the Olson database. This release
includes contemporary changes for Samoa and historical changes for Kenya,
Uganda, and Tanzania.
1.36 2011-08-29
- This release is based on version 2011i of the Olson database. This release
includes a new zone for South Sudan (Africa/Juba) and changes for Samoa,
Kaliningrad (Russia), Alaska, Hawaii, Newfoundland/Labrador (Canada), and
Resolute Bay.
- Require ExtUtils::MakeMaker 6.58+. This fixes an installation problem on
Windows.
1.35 2011-07-03
- This release is based on version 2011h of the Olson database. This release
includes changes for Russia.
- Include UTC in the list of all time zone names. RT #67070.
1.34 2011-04-25
- This release is based on version 2011g of the Olson database. This release
includes changes for Egypt.
- DateTime::TimeZone::Floating and DateTime::TimeZone::UTC are now singletons,
since their internal state never changes.
1.33 2011-04-11
- This release is based on version 2011f of the Olson database. This release
includes changes for the Falkland Islands.
1.32 2011-04-01
- This release is based on version 2011e of the Olson database. This release
includes changes for Morocco and Chile.
1.31 2011-03-18
- Updates for Win32 time zones. Patch by David Pinkowitz.
1.30 2011-03-14
- This release is based on version 2011d of the Olson database. This release
includes changes for Samoa, Turkey, and Cuba.
1.29 2011-03-07
- This release is based on version 2011c of the Olson database. This release
includes new zones, America/Sitka and America/Metlakatla, as well as changes
for Alaska and Chile.
1.28 2011-02-07
- This release is based on version 2011b of the Olson database. This release
includes a new zone, America/North_Dakota/Beulah.
1.27 2011-01-19
- This release is based on version 2011a of the Olson database. This release
includes historical updates for Australia and Hawaii.
1.26 2010-11-20
- Fix release engineering bugs. The last release had both a Build.PL and
Makefile.PL, but the former did not list all the prereqs. Also, dynamic
prereqs for Win32 and HPUX were not being added properly.
1.25 2010-11-20
- Attempting to determine the local time zone while inside a sort subroutine
could cause an error "Can't return outside a subroutine". This was caused by
stack corruption that happens when an eval "use $module" fails. Reported by
Andy Jones. RT #63106.
1.24 2010-10-25
- This release is based on version 2010n of the Olson database. This release
includes updates for Fiji.
- All modules in the distro now have the same $VERSION.
1.23 2010-10-25
- This release is based on version 2010n of the Olson database. This release
includes updates for Fiji.
1.22 2010-09-27
- This release is based on version 2010m of the Olson database. This release
includes historical updates for Hong Kong.
1.21 2010-08-20
- This release is based on version 2010l of the Olson database. This release
includes updates for Egypt and Palestine.
1.20 2010-07-26
- This release is based on version 2010k of the Olson database. This release
includes updates for Egypt, Finland (historical only), and Mexico. It also
renames Pacific/Truk to Pacific/Chuuk and Pacific/Ponape to Pacific/Pohnpei.
1.19 2010-05-10
- This release is based on version 2010j of the Olson database. This release
creates a new zone for Mexico (America/Bahia_Banderas).
- Dateline time zone on Win32 now always maps to a fixed -12:00 zone. Patch by
David Pinkowitz.
1.18 2010-04-19
- This release is based on version 2010i of the Olson database. This release
includes changes for Morocco, Taiwan (historical only), and Argentina.
1.17 2010-04-10
- Updated Win32 to Olson name translation mapping. Patch by David
Pinkowitz. RT #56445.
1.16 2010-04-05
- This release is based on version 2010h of the Olson database. This release
includes changes for Tunisia and Pakistan.
1.15 2010-03-29
- This release is based on version 2010g of the Olson database. This release
includes changes for Bangladesh, Palestine, and Russia.
1.14 2010-03-22
- This release is based on version 2010f of the Olson database. This release
includes changes for Antartica, Syria, and Samoa.
- Moved code to my hg repo at http://hg.urth.org/hg/DateTime-TimeZone.
1.13 2010-03-08
- This release is based on version 2010e of the Olson database. This release
fixes a bug in the Bangladesh zone introduced in 2010d.
1.12 2010-03-08
- This release is based on version 2010d of the Olson database. This release
has changes for Bangladesh, Fiji, Samoa, and Chile.
1.11 2010-03-01
- This release is based on version 2010c of the Olson database. This release
has changes for Paraguay.
- Added a list of zones by country, and a list of zone links (aliases) to the
docs for DateTime::TimeZone::Catalog.
1.10 2010-01-25
- This release is based on version 2010b of the Olson database. This release
has changes for Mexico.
1.09 2010-01-18
- This release is based on version 2010a of the Olson database. This release
has changes for Bangladesh.
1.08 2009-12-28
- This release is based on version 2009u of the Olson database. This release
has changes for Bangladesh.
1.07 2009-12-24
- Fixed for local time zone determination on Win32. Our tests broke after the
December 2009 Cumulative Time Zone Update from Microsoft. Patch by David
Pinkowitz. RT #52978.
1.06 2009-12-21
- This release is based on version 2009t of the Olson database. This release
has no user-visible changes, but I like to follow along anyway.
1.05 2009-11-16
- This release is based on version 2009s of the Olson database. It includes
changes for Antarctica and Fiji.
1.04 2009-11-09
- This release is based on version 2009r of the Olson database. It includes
changes for Antarctica.
1.03 2009-11-02
- This release is based on version 2009q of the Olson database. It includes
historical changes for Hong Kong, updates for Syria, and a new zone,
Asia/Novokuznetsk.
1.02 Not Released (Oops)
- This release is based on version 2009p of the Olson database. The only
changes in this release are for Argentina. This release should produce the
same results as 1.01, but I did a new release just to keep up to date with
the Olson versions.
1.01 2009-10-19
- This release is based on version 2009o of the Olson database. This release
has changes for Pakistan and Bangladesh. In addition, I have also applied
the Argentina patch again, as this has not been incorporated into the
official Olson data yet.
- The t/04local.t test file will be skipped on HPUX, which is a very weird
system. Suggested by Olivier Mengué. Fixes RT #50640.
- When installing this module on HPUX, it now adds DateTime::TimeZone::HPUX to
its prereqs so you can determine the local time zone. Suggested by Olivier
Mengué.
1.00 2009-10-17
- This release adds a patch from Debian (http://bugs.debian.org/551195) for
Argentina. Argentina's idiotic government decided to change their DST rules
with two days notice. Pointer to patch from Gregor Herrman. Fixes RT #50590.
0.99 2009-09-28
- This release is based on version 2009n of the Olson database. This
release has changes for Pakistan.
0.98 2009-09-11
- Fixes for Win32 time zones. Added handling for new Windows time zones,
thanks to Jim Brunette. This should fix test failures on some Win32 systems.
0.97 2009-09-08
- This release is based on version 2009m of the Olson database. This
release has changes for Samoa and Palestine.
0.96 2009-08-18
- A $SIG{__DIE__} related test in 04local.t behaved differently on different
platforms. The test has been narrowed so that it should work the same on all
platforms. Reported by Jens Rehsack.
0.95 2009-08-18
- Attempting to load an invalid Olson-style name like "Bad/Name" did throw an
error since 0.92. Reported by Florian Ragwitz.
- Localized $SIG{__DIE__} for every eval.
0.94 2009-08-17
- This release is based on version 2009l of the Olson database. This
release has changes for Egypt.
- Localize $SIG{__DIE__} in DateTime::TimeZone::Local, so errors in evals done
by that module are not seen by existing __DIE__ handlers. Based on a patch
from Jim. RT #48567.
0.93 2009-07-20
- This release is based on version 2009k of the Olson database. This
release has changes for Bangladesh and Mauritius.
0.92 2009-06-17
- This release is based on version 2009j of the Olson database. This
release has changes for Bangladesh.
I skipped the 2009i release because I was confused about how to handle the
weird rules for Bangladesh (which has a change _to_ DST without any future
change _from_ DST, but that's governments for you).
- Made sure to local-ize $@ before any eval, to prevent errors
accidentally propagating out to your code.
0.91 2009-05-26
- This release is based on version 2009h of the Olson database. This
release has no user-visible changes, but I like to follow along
anyway.
0.90 2009-04-27