Skip to content

Tags: googleapis/storage-testbench

Tags

v0.63.0

Toggle v0.63.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: handle negative offset cases (#804)

v0.62.0

Toggle v0.62.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add force_direct_connectivity behavior (#770)

* feat: add force_direct_connectivity behavior

* chore: add tests, readme and fix formatting

* style: fix formatting with black and isort

v0.61.0

Toggle v0.61.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(storage): Simulate object custom contexts (#764)

b/457332685

This simulates the Json and gRPC responses for object contexts with 
the following operations:

1. Insert or Complete Update
    - Input: {contexts: {custom: {key: value}}}
    - Update_mask: contexts
    - Simulation: Add new entries to the object.contexts and furnish with create_time and update_time

2. Patch (Update an existing key)
    - Input: {contexts: {custom: {key: new-value}}}
    - Update_mask: contexts.custom.key
    - Simulation: Update the value of the key to "new-value" and furnish with update_time

3. Patch (Delete an existing key)
    - Input: {contexts: {custom: {key: null}}}
    - Update_mask: contexts.custom.key
    - Simulation: Delete that entry with that key from object.contexts

4. Patch (Delete all the contexts)
    - Input: {contexts: {custom: null}}
    - Update_mask: contexts:custom
    - Simulation: Delete the contexts field from object, making that object looks like its default

v0.60.0

Toggle v0.60.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: Add implementation of full object checksum at finalization (#752)

* feat: Add implementation of full object checksum at finalization

* add unit test for the change

* fix the format

* fix the format

* fix the format

* fix the format

v0.59.0

Toggle v0.59.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add logic for naming convention for partial list buckets in gRPC (

#749)

* feat: add logic for naming convention for partial list buckets in gRPC

* minor change

* minor change

v0.58.0

Toggle v0.58.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add support for partial list bucket for gRPC (#745)

* fix lint

* fix lint

* feat: Add support for partial list bucket for gRPC

* fix formatiing

* resolve comments

v0.57.0

Toggle v0.57.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add support for partial list bucket for JSON (#744)

* feat: add support for partial list bucket for JSON

* fix lint

* fix lint

* fix unit tests

* minor fix

* add more unit tests

* add support for integration tests for sdk

* add more unit tests

* resolving comments

v0.56.0

Toggle v0.56.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: Content-Length measures the response body, not the object being …

…read (#742)

v0.55.0

Toggle v0.55.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add support for bucket ip filter (#731)

* feat: add support for bucket ip filter

* lint

v0.54.0

Toggle v0.54.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: Get a message before redirecting. (#725)

* fix: Get a message before redirecting.

The server generally won't know if a redirect is required until it sees
the first message. Since this is the common case, do that in tests with
redirect instructions.

* fix lint

* fix lint again

* attempt to kick off lint again