Scott Parkerson

Results 5 issues of Scott Parkerson

**Describe the bug** Parsing an ISO8601 timestamp yields a timestamp that is off by 3600 seconds. **To Reproduce** ``` echo 1665511200 | jq todate | jq fromdate 1665514800 ``` **Expected...

bug
datetime

Datastore namespaces may be sensitive, and it's best not to emit them. Provide a `datastore.Key.StringWithNamespace()` as an alternative, and use this version internally, which preserves the fix from https://github.com/googleapis/google-cloud-go/issues/7829.

api: datastore

**Client** Datastore >= v1.14.0 **Environment** Any **Go Environment** Any (but tested on `go version go1.21.11 darwin/arm64`) **Code** ```go package main import ( "cloud.google.com/go/datastore" "fmt" ) func main() { k :=...

api: datastore
triage me

## Client Cloud Datastore ## Environment All Environments ## Code and Dependencies ```go package main import ( "context" "log" "sync" "time" "cloud.google.com/go/datastore" ) var k = datastore.IDKey("TestFoo", 1, nil) func...

api: datastore
triage me

For those of us unlucky be stuck with a codebase hat uses the aging [gocheck](https://pkg.go.dev/gopkg.in/check.v1), but would like to be able to get the benefit of using gotestsum to report...