Skip to content

Commit f7f01fe

Browse files
authored
Update release notes [skip ci]. (#1759)
1 parent 2a3a16a commit f7f01fe

File tree

4 files changed

+43
-4
lines changed

4 files changed

+43
-4
lines changed

doc/cutting-a-release.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ git log upstream/master -- google/cloud/bigtable
2929
git log upstream/master -- google/cloud/storage
3030
```
3131

32-
Do not forget to update `google/cloud/README.md` too.
32+
Do not forget to update `google/cloud/README.md` too:
33+
34+
```bash
35+
git log upstream/master -- google/cloud ":(exclude)google/cloud/storage" ":(exclude)google/cloud/bigtable"
36+
```
3337

3438
It is not recommended that you create the release branch before this PR is
3539
ready, but in some circumstances it might be needed, for example, if a large

google/cloud/README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,14 @@ is available [online][doxygen-link].
2222

2323
## Release Notes
2424

25-
### v0.3.x - TBD
25+
### v0.3.x - 2019-01
26+
27+
* Support compiling with gcc-4.8.
28+
* Fix `GCP_LOG()` macro so it works on platforms that define a `DEBUG`
29+
pre-processor symbol.
30+
* Use different PRNG sequences for each backoff instance, previously all the
31+
clones of a backoff policy shared the same sequence.
32+
* Workaround build problems with Xcode 7.3.
2633

2734
### v0.2.x - 2018-12
2835

google/cloud/bigtable/README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,19 @@ is available [online][doxygen-link].
2121

2222
## Release Notes
2323

24-
### v0.5.x - TBD
24+
### v0.5.x - 2019-01
25+
26+
* Restore support for gcc-4.8.
27+
* @remyabel cleaned up some hard-coded zone names in the examples.
28+
* More experimental asynchronous APIs, including AsyncReadRows. Note that we
29+
expect to change all these experimental APIs as described in
30+
[#1543](https://github.com/GoogleCloudPlatform/google-cloud-cpp/issues/1543).
31+
* @remyabel contributed changes to disable the unit and integration tests. This
32+
can be useful for package maintainers.
33+
* New Bigtable filter wrapper that accepts a single column.
34+
* **Breaking Change**: remove the `as_proto_move()` memnber functions in favor
35+
of `as_proto() &&`. With the latter newer compilers will warn if the object
36+
is used after the destructive operation.
2537

2638
### v0.4.x - 2018-12
2739

google/cloud/storage/README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,23 @@ the reference guide includes a quick start guide.
2020

2121
## Release Notes
2222

23-
### v0.3.x - TBD
23+
### v0.3.x - 2019-01
24+
25+
* Try to use the exception mask in the IOStream classes
26+
(`storage::ObjectReadStream` and `storage::ObjectWriteStream`). This allows
27+
applications to check errors locally via `rdstate()`. Note that applications
28+
that disable exceptions altogether must check the `status()` member function
29+
for these IOStream classes. It is impossible to set the `rdstate()` for all
30+
failures when exceptions are disabled.
31+
* Support reading only a portion of a Blob.
32+
* Support building with gcc-4.8.
33+
* Many internal changes to better support applications that disable exceptions.
34+
A future release will include APIs that do not raise exceptions for error
35+
conditions.
36+
* @remyabel contributed changes to disable the unit and integration tests. This
37+
can be useful for package maintainers.
38+
* Implement a function to create signed URLs (`Client::CreateV2SignedUrl`).
39+
* Support resumable uploads in any upload operation.
2440

2541
### v0.2.x - 2018-12
2642

0 commit comments

Comments
 (0)