Skip to content

Commit ec468fb

Browse files
authored
updated release notes for v0.10.0 (#2728) (#2734)
* updated release notes for v.0.10
1 parent 07417a3 commit ec468fb

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

google/cloud/bigtable/README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,31 @@ Apache 2.0; see [`LICENSE`](../../../LICENSE) for details.
4242

4343
## Release Notes
4444

45-
### v0.10.x - TBD
45+
### v0.11.x - TBD
46+
47+
### v0.10.x - 2019-06
48+
49+
* **Breaking Changes**
50+
* The return type for WaitForConsistencyCheck() was a `future<StatusOr<bool>>`
51+
where most related functions return a `bigtable::Consistency` enum.
52+
* `Table::CheckAndMutateRow` returns `StatusOr<bool>` to indicate which
53+
branch of the predicate was taken in the atomic change. Meanwhile,
54+
`AsyncCheckAndMutateRow()` returned a `future<StatusOr<proto-with-long-name>>`.
55+
Changed the async and sync versions to return
56+
`future<StatusOr<MutationBranch>>`. `MutationBranch` is an `enum` as
57+
`StatusOr<bool>` is too eay to use incorrectly.
58+
* Removed the `Collection` template parameter from `Table::SampleRows`.
59+
* Fixed the last function, `WaitForConsistencyCheck`, that returned
60+
`std::future` to return `google::cloud::future<>`. The function name
61+
changed too, to be more consistent with similar functions.
62+
* Remove all the "strong types" for bigtable, such as `InstanceId`,
63+
`ClusterId`, `TableId`, etc. This changed some of the constructors for
64+
`bigtable::Table` and several member functions in `bigtable::Table`,
65+
`bigtable::TableAdmin`, and `bigtable::InstanceAdmin`.
66+
* Changes:
67+
* Implemented TableAdmin::AsyncWaitForConsistency.
68+
* Implemented Table::AsyncReadRows.
69+
* DeleteAppProfile defaults to `ignore_warnings=true`.
4670

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

google/cloud/storage/README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,18 @@ Apache 2.0; see [`LICENSE`](../../../LICENSE) for details.
4444

4545
## Release Notes
4646

47-
### v1.1.x - TBD
47+
### v1.2.x - TBD
48+
49+
### v1.1.x - 2019-06
50+
51+
* Implemented option to read an object starting from an offset.
52+
* Automatically restart downloads on error. With this change the download is
53+
restarted from the last received byte, and using the object generation used
54+
in the original download as well. (#2693)
55+
* Bugfixes:
56+
* Service account credentials not refreshing properly. (#2691)
57+
* Fix build for macOS+CMake. (#2698)
58+
* WriteObject now supports empty streams. (#2714)
4859

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

0 commit comments

Comments
 (0)