You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed a bug where some Int*Value types used larger underlying primiti…
…ve types.
* Int8Value and Int16Value were incorrectly using int32 under the hood. This has
been fixed.
* UInt8Value was incorrectly using uint16 under the hood. Also fixed.
Fixed the TimeValue LessThan() test so it's now deterministic.
* Previously we were relying on two calls to time.Now() to return different times. This
failed in github's action test infra. Maybe they're mocking time.Now() or we just happen
to run that fast? Who cares. It's fixed.