This repository was archived by the owner on Dec 8, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## v0.18.x - TBD
3+ ## v0.19.x - TBD
4+
5+ ## v0.18.x - 2020-02
6+
7+ ** BREAKING CHANGES:**
8+ * feat!: change the result type for timers to StatusOr (#134 )
9+ ` CompletionQueue::MakeRelativeTimer ` and ` CompletionQueue::MakeDeadlineTimer() `
10+ now return a ` future<StatusOr<std::chrono::system_clock::time_point>> ` .
11+ This change is needed because now these operations may fail if the completion
12+ queue is shutdown before the timer is set.
13+ * chore: remove ` CompletionQueue ` parameter to ` AsyncGrpcOperation::Notify ` (#136 )
14+
15+ ** Other Changes:**
16+ * fix: google/cloud/grpc_utils/examples does not exist (#149 )
17+ * feat: gracefully fail adding to the ` CompletionQueue ` after ` Shutdown ` (#138 )
18+ * fix: remove the redundant conditions in the ` Run() ` loop (#131 )
19+ * fix: crashes with non-empty CompletionQueue shutdown (#127 )
20+ * chore: move release notes to CHANGELOG.md (#128 )
421
522## v0.17.x - 2019-12
623
Original file line number Diff line number Diff line change @@ -112,9 +112,9 @@ _EOF_
112112
113113read_into_variable INSTALL_GOOGLE_CLOUD_CPP_COMMON_FROM_SOURCE << '_EOF_ '
114114WORKDIR /var/tmp/build
115- RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.16 .0.tar.gz && \
116- tar -xf v0.16 .0.tar.gz && \
117- cd google-cloud-cpp-common-0.16 .0 && \
115+ RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.18 .0.tar.gz && \
116+ tar -xf v0.18 .0.tar.gz && \
117+ cd google-cloud-cpp-common-0.18 .0 && \
118118 cmake -H. -Bcmake-out \
119119 -DBUILD_TESTING=OFF \
120120 -DGOOGLE_CLOUD_CPP_TESTING_UTIL_ENABLE_INSTALL=ON && \
You can’t perform that action at this time.
0 commit comments