-
-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible Daylight Saving Time issue #290
Comments
The reason for the difference is that the default timezone of |
Thanks for the reply. There still seems to be something wrong in my logic... I have removed the dependency on time and I am just using carbon... Taken this code example,
The code gets the default carbon time in UTC, then converts it to EST, I would have expected carbon to have converted the EST time with the fact that Daylight Savings Time is currently happening.
However, the actual date/time is 2025-03-27 07:44:13.19295, this is 1 hours off because we are now in Daylight Savings Time. With version 2.6.0 of carbon, how to I handle Daylight Savings Time? Thanks, |
Try using |
Thanks, I will give that a try. |
I rebuilt the sample program using v2.6.1; however, that did not seem to change anything.
Carbon is telling me it is 08:23.32 while the actual time is 09:23.32... |
Which city are you in? |
East Coast of USA. We are Eastern time; however, we are now in Daylight Savings Time. |
I know where the problem is. You first set the global timezone carbon.SetTimezone(carbon.Local)
or
carbon.Now().SetTimezone(carbon.NewYork)
or
carbon.Now(carbon.NewYork) |
Hello,
Take this situation. I have an ISO8601 formatted date/time and I want to convert that to EST. In this situation, I get this:
Again, the EST time is 1 hour off because of Daylight Savings Time. I store the date/time in UTC in a database and then convert it to the local timezone the application is running. In this case, it is EST. Any idea on how I can get the correct conversion? Thanks, |
fmt.Println(carbon.Parse("2025-03-28T12:03:25+00:00").SetTimezone(carbon.EST).ToString(carbon.NewYork))
or
fmt.Println(carbon.Parse("2025-03-28T12:03:25+00:00", carbon.EST).ToString(carbon.NewYork))
// 2025-03-28 08:03:25 -0400 EDT |
Many thanks and much appreciated. |
|
I tried that version. Still seeing the same outcome. Maybe I am doing it wrong. Here is a simplified test..
With the output of...
I would have expected the EST date/time to be...
|
use log.Printf("EST[%s]\n", carbon.Parse("2025-03-28T12:03:25+00:00").SetTimezone(carbon.EST).ToIso8601String(carbon.Local)) |
Okay, that worked. Many thanks. Doing this, also works...
|
Yes, in |
Hello,
Thanks for a great library, it is very helpful. I am looking to upgrade from v2.5.4 to v2.6.0; however, I ran into an issue with Daylight Savings Time and wanted to ask about what is going on...
To prove out the issue, I wrote a simple program that just uses the current time and prints it out in various formats.
Version 2.5.4
Version 2.6.0
The output for each program is as follows...
Version 2.5.4
Vs
Version 2.6.0
As you might have notices, the EST times are off by 1 hour between the two versions. Version 2.5.4 says
-0400 EST
, while version 2.6.0 says-0500 EST
. Is there something I am not doing correctly, or is this an issue in the library? Again, thanks for the library, I greatly appreciate it.The text was updated successfully, but these errors were encountered: