This two lines are the test data
my $dt = DateTime->new( {
year => 2014, month => 9, day => 19,
hour => 00, minute=> 00, second=> 00});
$dt->set_time_zone(DateTime::TimeZone->new( name => 'America/Sao_Paulo' ));
Now I want to add one month with the date which fails
$dt->add ( months => 1 );
# This fails because the result date is 2014-10-19 00:00:00 and for Sao_Paulo
# the result should be a DST shifted time 2014-10-19 01:00:00
The simplest solution I have come up with is this
my $tz_backup = $dt->time_zone(); # Backup the timezone
$dt->set_time_zone('UTC'); # Moving the time to UTC to get rid of DST complexities
$dt->add ( months => 1 ); # Perform the original operation
$dt->set_time_zone($tz_backup); # Setting back the original timezone
Question is, could there by any flaw in this solution?
If this approach is really correct for all timezone and all DST scenarios, then why perl DateTime library doesnt do this itself? Answer of this question is not necessary if my solution is correct ;)
Thanks
Your solution is recommended in the documentation, so it should be OK.
Also, when I ran your original code, I got an error back: