Fix Dagger towncrier container using UTC instead of local time #167
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/dagger-towncrier-tz"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
build_changelogDagger container (python:3.12-slim) defaults to UTC, causing towncrier to stamp tomorrow's date when releases are cut in the evening PST.TZ=America/Los_Angelesin the Dagger container before running towncrier.Verified
docker run --rm python:3.12-slim→towncrier _get_date()returns2026-02-12(wrong)docker run --rm -e TZ=America/Los_Angeles python:3.12-slim→ returns2026-02-11(correct)Test plan
🤖 Generated with Claude Code