Skip to content

Commit f608de7

Browse files
committed
docs: update changelog to clarify DST behavior examples
1 parent 06afbf6 commit f608de7

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111

1212
**When DST is active** (`dst = true`):
1313

14-
- No change - same behavior as before
14+
- No change - same behavior as before:
15+
- `dst_from` shows when DST began (in the current period)
16+
- `dst_until` shows when DST will end (next)
1517

1618
#### Example
1719

@@ -25,6 +27,16 @@ Australia/Sydney on October 1, 2025 (DST not active):
2527
}
2628
```
2729

30+
Australia/Sydney on October 1, 2025 (DST active):
31+
32+
```json
33+
{
34+
"dst": true,
35+
"dst_from": "2025-10-04T16:00:00+00:00", // DST started Oct 5 at 2am local
36+
"dst_until": "2026-04-04T16:00:00+00:00" // DST ends Apr 5 at 3am local
37+
}
38+
```
39+
2840
#### Important: Times are in UTC
2941

3042
DST transition times are returned in UTC, not local time. For example:

0 commit comments

Comments
 (0)