diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-08-16 00:29:03 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-08-16 01:03:45 +0900 |
| commit | aad468e8b75ffc3e87ea6dfa22c53a8299fc08da (patch) | |
| tree | 8864fec7343dfb91c7c12e35a2989081ad197fd7 /Cargo.lock | |
| parent | 2936cb809da433a92f267f3bc232d88ed4e315ac (diff) | |
| download | php-shirabe-aad468e8b75ffc3e87ea6dfa22c53a8299fc08da.tar.gz php-shirabe-aad468e8b75ffc3e87ea6dfa22c53a8299fc08da.tar.zst php-shirabe-aad468e8b75ffc3e87ea6dfa22c53a8299fc08da.zip | |
feat(php-shim): render human-facing timestamps in the local timezone
Split date() into date_utc() and date_local(), the latter resolving the
system's local timezone through the tzfile crate ($TZ, then
/etc/localtime, falling back to UTC when neither is readable). The
timestamps Composer renders for humans -- the GitHub OAuth token note,
the GitHub API rate limit reset time, the Perforce client spec fields and
the "today" check of the show command -- now go through date_local().
PHP resolves its default timezone from the date.timezone ini setting,
which Shirabe does not read, so date_default_timezone_get/set have no
input left to model and are dropped from the shim and its callers. The
resulting difference is recorded in docs/known-incompatibilities.md.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -179,6 +179,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e" [[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] name = "bytes" version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2189,6 +2195,7 @@ dependencies = [ "tar", "tempfile", "twox-hash", + "tzfile", "zip", ] @@ -2683,6 +2690,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de" [[package]] +name = "tzfile" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f59c22c42a2537e4c7ad21a4007273bbc5bebed7f36bc93730a5780e22a4592e" +dependencies = [ + "byteorder", + "chrono", +] + +[[package]] name = "unicode-general-category" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" |
