Conversation
michalsn
approved these changes
Sep 19, 2026
paulbalandan
left a comment
Member
There was a problem hiding this comment.
Please add a changelog entry.
gr8man
force-pushed
the
fix/debug-timer-zero-time
branch
from
September 19, 2026 19:53
b18f1ba to
9ace171
Compare
gr8man
force-pushed
the
fix/debug-timer-zero-time
branch
from
September 19, 2026 19:54
9ace171 to
dbbdba8
Compare
datamweb
approved these changes
Sep 19, 2026
| - **I18n:** Fixed a bug where ``Time::today()``, ``Time::yesterday()``, and ``Time::tomorrow()`` ignored the specified ``$timezone`` and ``setTestNow()`` when calculating the day. | ||
| - **Logger:** Fixed a bug where interpolating a log message with array or non-stringable context values could raise PHP warnings or errors. | ||
| - **Cache:** Fixed ``MemcachedHandler::decrement()`` initializing a non-existent counter to the positive offset. Missing counters are now initialized to ``0``, reflecting Memcached's unsigned, saturating counter semantics. | ||
| - **Debug:** Fixed a bug where ``Timer::start()`` treated ``0.0`` as an empty value and substituted the current time. |
Member
There was a problem hiding this comment.
pls put this alphabetically aligned to the top
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Timer::start()treated0.0as "no value" and silently replaced it withmicrotime(true). Changed to null coalescing (??) so onlynullfalls back, preserving0.0as a valid timer start time.Checklist: