Skip to content

Tags: specifydevs/go-cloud

Tags

v0.2.0

Toggle v0.2.0's commit message
v0.2.0

blob: Fixed bugs regarding Size and ModTime attributes.
blob: Added conformance test suite for Driver implementations.
runtimevar: Added conformance test suite for Driver implementations.
mysql: Enable native password authentication.
wire: Added wire.InterfaceValue, to be used instead of wire.Value for
interface values.

v0.1.1

Toggle v0.1.1's commit message
blob: document storing a ctx in blob.Writer (google#298)

* document storing a ctx in blob.Writer

* document keeping ctx open above NewWriter

v0.1.0

Toggle v0.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
blob: Implement HTTP replays for GCS (google#205)

This modifies the GCS test to use HTTP replays.

To do this, a new recorder is added, some client side validation is stripped away (not necessary as you have to hit GCS anyway to do anything useful) and a JSON parser dependency added to redact things from the saved replays. As the JSON parser redaction technique works differently (and far better) to the previous regex method, I regenerated the AWS replays as well out of an abundance of caution.

Fixes google#92