appengine
appengine copied to clipboard
Go App Engine packages
Hi, I'm sending 2 files to my local GAE blobstore from an iPhone app. The files are uploaded and visible in the Blobstore Viewer, but a `mime: invalid media parameter`...
``` package foo import ( "testing" "google.golang.org/appengine" "google.golang.org/appengine/aetest" ) func TestModule(t *testing.T) { ctx, cancel, err := aetest.NewContext() if err != nil { t.Fatal(err) } defer cancel() t.Log(appengine.ModuleName(ctx)) } ```...
See #235 for rationale. This change slipped through the cracks because it was added to v1 after v2 was forked, but before v2 was landed.
See #232 for rationale. This change slipped through the cracks because it was added to v1 after v2 was forked, but before v2 was landed.
This makes the test more hermetic by avoiding the need to set env vars, and it also avoids some unecessary duplication of test helper logic by leveraging some of aetest's...
Go 1.17 added support for milliseconds and microseconds, using them can make the code more concise and readable
migrated everything from proto2 to proto3 all tests pass when run locally breaking changes: 1) protobuf default removed 2) all protobuf v2 group element replaced with submessages 3) protobuf v2...
Bumps the github-actions group in /v2 with 4 updates: [github.com/golang/protobuf](https://github.com/golang/protobuf), [golang.org/x/net](https://github.com/golang/net), [golang.org/x/text](https://github.com/golang/text) and google.golang.org/protobuf. Updates `github.com/golang/protobuf` from 1.5.0 to 1.5.4 Release notes Sourced from github.com/golang/protobuf's releases. v1.5.4 Notable changes update...
Bumps the github-actions group with 3 updates: [github.com/golang/protobuf](https://github.com/golang/protobuf), [golang.org/x/text](https://github.com/golang/text) and google.golang.org/protobuf. Updates `github.com/golang/protobuf` from 1.5.2 to 1.5.4 Release notes Sourced from github.com/golang/protobuf's releases. v1.5.4 Notable changes update descriptor.proto to latest...