Skip to content

Commit

Permalink
updated release notes for v0.10.0 (#2728) (#2734)
Browse files Browse the repository at this point in the history
* updated release notes for v.0.10
  • Loading branch information
scotthart authored Jun 5, 2019
1 parent 07417a3 commit ec468fb
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
26 changes: 25 additions & 1 deletion google/cloud/bigtable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,31 @@ Apache 2.0; see [`LICENSE`](../../../LICENSE) for details.

## Release Notes

### v0.10.x - TBD
### v0.11.x - TBD

### v0.10.x - 2019-06

* **Breaking Changes**
* The return type for WaitForConsistencyCheck() was a `future<StatusOr<bool>>`
where most related functions return a `bigtable::Consistency` enum.
* `Table::CheckAndMutateRow` returns `StatusOr<bool>` to indicate which
branch of the predicate was taken in the atomic change. Meanwhile,
`AsyncCheckAndMutateRow()` returned a `future<StatusOr<proto-with-long-name>>`.
Changed the async and sync versions to return
`future<StatusOr<MutationBranch>>`. `MutationBranch` is an `enum` as
`StatusOr<bool>` is too eay to use incorrectly.
* Removed the `Collection` template parameter from `Table::SampleRows`.
* Fixed the last function, `WaitForConsistencyCheck`, that returned
`std::future` to return `google::cloud::future<>`. The function name
changed too, to be more consistent with similar functions.
* Remove all the "strong types" for bigtable, such as `InstanceId`,
`ClusterId`, `TableId`, etc. This changed some of the constructors for
`bigtable::Table` and several member functions in `bigtable::Table`,
`bigtable::TableAdmin`, and `bigtable::InstanceAdmin`.
* Changes:
* Implemented TableAdmin::AsyncWaitForConsistency.
* Implemented Table::AsyncReadRows.
* DeleteAppProfile defaults to `ignore_warnings=true`.

### v0.9.x - 2019-05

Expand Down
13 changes: 12 additions & 1 deletion google/cloud/storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,18 @@ Apache 2.0; see [`LICENSE`](../../../LICENSE) for details.

## Release Notes

### v1.1.x - TBD
### v1.2.x - TBD

### v1.1.x - 2019-06

* Implemented option to read an object starting from an offset.
* Automatically restart downloads on error. With this change the download is
restarted from the last received byte, and using the object generation used
in the original download as well. (#2693)
* Bugfixes:
* Service account credentials not refreshing properly. (#2691)
* Fix build for macOS+CMake. (#2698)
* WriteObject now supports empty streams. (#2714)

### v1.0.x - 2019-05

Expand Down

0 comments on commit ec468fb

Please sign in to comment.