We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Asia/Almaty timezone was changed from GMT+6 to GMT+5 on 29th February 2024. Source: https://timezonedb.com/time-zones/Asia/Almaty
Asia/Almaty
GMT+6
GMT+5
But the joda-time package still uses GMT+6.
joda-time
Currently, when I convert any date to the Asia/Almaty timezone, it gives +06:00 as the offset. Please update the offset to +05:00.
+06:00
+05:00
DateTime.now(DateTimeZone.forID('Asia/Almaty')).toString() returns the current date time with +06:00 offset. It has to be updated to +05:00.
The text was updated successfully, but these errors were encountered:
@jodastephen Can we please get this updated?
Sorry, something went wrong.
Have you tried running the latest code? The website is not updated very often, so that is not the correct way to judge what Joda-Time will do.
No branches or pull requests
Problem description
Asia/Almaty
timezone was changed fromGMT+6
toGMT+5
on 29th February 2024.Source: https://timezonedb.com/time-zones/Asia/Almaty
But the
joda-time
package still usesGMT+6
.Currently, when I convert any date to the Asia/Almaty timezone, it gives
+06:00
as the offset.Please update the offset to
+05:00
.Test case
DateTime.now(DateTimeZone.forID('Asia/Almaty')).toString() returns the current date time with
+06:00
offset.It has to be updated to
+05:00
.The text was updated successfully, but these errors were encountered: