Skip to content
This repository was archived by the owner on Dec 8, 2021. It is now read-only.

Commit e481273

Browse files
authored
chore: update g-c-cpp-common to v0.25.0 (#1458)
1 parent 62bb823 commit e481273

16 files changed

+70
-71
lines changed

bazel/google_cloud_cpp_spanner_deps.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ def google_cloud_cpp_spanner_deps():
4242
if "com_github_googleapis_google_cloud_cpp_common" not in native.existing_rules():
4343
http_archive(
4444
name = "com_github_googleapis_google_cloud_cpp_common",
45-
strip_prefix = "google-cloud-cpp-common-0.24.0",
45+
strip_prefix = "google-cloud-cpp-common-0.25.0",
4646
urls = [
47-
"https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz",
47+
"https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz",
4848
],
49-
sha256 = "d5e9075dd052e4ffdeba987d9e0c5b5583312e1213d79b913f811d4d2e78caee",
49+
sha256 = "9ef2bb9b731cade7eb1be7e45323becb78cecda7e39b0a4050d7b787425d5efb",
5050
)
5151

5252
# Load a version of googletest that we know works.

ci/etc/kokoro/install/version-config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
readonly GOOGLE_CLOUD_CPP_COMMON_VERSION=0.24.0
16+
readonly GOOGLE_CLOUD_CPP_COMMON_VERSION=0.25.0

ci/kokoro/Dockerfile.fedora-install

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,13 @@ RUN cmake --build cmake-out --target install
7777

7878
# Download and compile google-cloud-cpp from source too:
7979
WORKDIR /var/tmp/build
80-
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz
81-
RUN tar -xf v0.24.0.tar.gz
82-
WORKDIR /var/tmp/build/google-cloud-cpp-common-0.24.0
83-
# Compile without the tests because we are testing spanner, not the base
84-
# libraries
85-
RUN cmake -H. -Bcmake-out \
86-
-DBUILD_SHARED_LIBS=yes \
87-
-DBUILD_TESTING=OFF \
88-
-DGOOGLE_CLOUD_CPP_TESTING_UTIL_ENABLE_INSTALL=ON
89-
RUN cmake --build cmake-out -- -j $(nproc)
90-
RUN cmake --build cmake-out --target install
80+
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
81+
tar -xf v0.25.0.tar.gz && \
82+
cd /var/tmp/build/google-cloud-cpp-common-0.25.0 && \
83+
cmake -H. -Bcmake-out \
84+
-DBUILD_SHARED_LIBS=YES \
85+
-DBUILD_TESTING=OFF \
86+
-DGOOGLE_CLOUD_CPP_TESTING_UTIL_ENABLE_INSTALL=ON && \
87+
cmake --build cmake-out --target install -- -j ${NCPU} && \
88+
ldconfig && \
89+
cd /var/tmp && rm -fr build

ci/kokoro/install/Dockerfile.centos-7

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ RUN wget -q https://github.com/googleapis/cpp-cmakefiles/archive/v0.6.0.tar.gz &
123123

124124
# ```bash
125125
WORKDIR /var/tmp/build
126-
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
127-
tar -xf v0.24.0.tar.gz && \
128-
cd google-cloud-cpp-common-0.24.0 && \
126+
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
127+
tar -xf v0.25.0.tar.gz && \
128+
cd google-cloud-cpp-common-0.25.0 && \
129129
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
130130
cmake --build cmake-out -- -j ${NCPU:-4} && \
131131
cmake --build cmake-out --target install -- -j ${NCPU:-4} && \

ci/kokoro/install/Dockerfile.centos-8

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ RUN wget -q https://github.com/googleapis/cpp-cmakefiles/archive/v0.6.0.tar.gz &
102102

103103
# ```bash
104104
WORKDIR /var/tmp/build
105-
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
106-
tar -xf v0.24.0.tar.gz && \
107-
cd google-cloud-cpp-common-0.24.0 && \
105+
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
106+
tar -xf v0.25.0.tar.gz && \
107+
cd google-cloud-cpp-common-0.25.0 && \
108108
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
109109
cmake --build cmake-out -- -j ${NCPU:-4} && \
110110
cmake --build cmake-out --target install -- -j ${NCPU:-4} && \

ci/kokoro/install/Dockerfile.debian-buster

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ RUN wget -q https://github.com/googleapis/cpp-cmakefiles/archive/v0.6.0.tar.gz &
6565

6666
# ```bash
6767
WORKDIR /var/tmp/build
68-
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
69-
tar -xf v0.24.0.tar.gz && \
70-
cd google-cloud-cpp-common-0.24.0 && \
68+
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
69+
tar -xf v0.25.0.tar.gz && \
70+
cd google-cloud-cpp-common-0.25.0 && \
7171
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
7272
cmake --build cmake-out -- -j ${NCPU:-4} && \
7373
cmake --build cmake-out --target install -- -j ${NCPU:-4} && \

ci/kokoro/install/Dockerfile.debian-stretch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ RUN wget -q https://github.com/googleapis/cpp-cmakefiles/archive/v0.6.0.tar.gz &
9898

9999
# ```bash
100100
WORKDIR /var/tmp/build
101-
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
102-
tar -xf v0.24.0.tar.gz && \
103-
cd google-cloud-cpp-common-0.24.0 && \
101+
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
102+
tar -xf v0.25.0.tar.gz && \
103+
cd google-cloud-cpp-common-0.25.0 && \
104104
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
105105
cmake --build cmake-out -- -j ${NCPU:-4} && \
106106
cmake --build cmake-out --target install -- -j ${NCPU:-4} && \

ci/kokoro/install/Dockerfile.fedora

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ RUN wget -q https://github.com/googleapis/cpp-cmakefiles/archive/v0.6.0.tar.gz &
7171

7272
# ```bash
7373
WORKDIR /var/tmp/build
74-
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
75-
tar -xf v0.24.0.tar.gz && \
76-
cd google-cloud-cpp-common-0.24.0 && \
74+
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
75+
tar -xf v0.25.0.tar.gz && \
76+
cd google-cloud-cpp-common-0.25.0 && \
7777
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
7878
cmake --build cmake-out -- -j ${NCPU:-4} && \
7979
cmake --build cmake-out --target install -- -j ${NCPU:-4} && \

ci/kokoro/install/Dockerfile.opensuse-leap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ RUN wget -q https://github.com/googleapis/cpp-cmakefiles/archive/v0.6.0.tar.gz &
118118

119119
# ```bash
120120
WORKDIR /var/tmp/build
121-
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
122-
tar -xf v0.24.0.tar.gz && \
123-
cd google-cloud-cpp-common-0.24.0 && \
121+
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
122+
tar -xf v0.25.0.tar.gz && \
123+
cd google-cloud-cpp-common-0.25.0 && \
124124
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
125125
cmake --build cmake-out -- -j ${NCPU:-4} && \
126126
cmake --build cmake-out --target install -- -j ${NCPU:-4} && \

ci/kokoro/install/Dockerfile.opensuse-tumbleweed

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ RUN wget -q https://github.com/googleapis/cpp-cmakefiles/archive/v0.6.0.tar.gz &
6969

7070
# ```bash
7171
WORKDIR /var/tmp/build
72-
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
73-
tar -xf v0.24.0.tar.gz && \
74-
cd google-cloud-cpp-common-0.24.0 && \
72+
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
73+
tar -xf v0.25.0.tar.gz && \
74+
cd google-cloud-cpp-common-0.25.0 && \
7575
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
7676
cmake --build cmake-out -- -j ${NCPU:-4} && \
7777
cmake --build cmake-out --target install -- -j ${NCPU:-4} && \

ci/kokoro/install/Dockerfile.ubuntu-bionic

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ RUN wget -q https://github.com/googleapis/cpp-cmakefiles/archive/v0.6.0.tar.gz &
9191

9292
# ```bash
9393
WORKDIR /var/tmp/build
94-
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
95-
tar -xf v0.24.0.tar.gz && \
96-
cd google-cloud-cpp-common-0.24.0 && \
94+
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
95+
tar -xf v0.25.0.tar.gz && \
96+
cd google-cloud-cpp-common-0.25.0 && \
9797
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
9898
cmake --build cmake-out -- -j ${NCPU:-4} && \
9999
cmake --build cmake-out --target install -- -j ${NCPU:-4} && \

ci/kokoro/install/Dockerfile.ubuntu-xenial

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ RUN wget -q https://github.com/googleapis/cpp-cmakefiles/archive/v0.6.0.tar.gz &
106106

107107
# ```bash
108108
WORKDIR /var/tmp/build
109-
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
110-
tar -xf v0.24.0.tar.gz && \
111-
cd google-cloud-cpp-common-0.24.0 && \
109+
RUN wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
110+
tar -xf v0.25.0.tar.gz && \
111+
cd google-cloud-cpp-common-0.25.0 && \
112112
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
113113
cmake --build cmake-out -- -j ${NCPU:-4} && \
114114
cmake --build cmake-out --target install -- -j ${NCPU:-4} && \

ci/kokoro/windows/vcpkg-ports/google-cloud-cpp-common/CONTROL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Source: google-cloud-cpp-common
2-
Version: 0.24.0
2+
Version: 0.25.0
33
Build-Depends: grpc, googleapis
44
Description: Base C++ Libraries for Google Cloud Platform APIs
55
Homepage: https://github.com/googleapis/google-cloud-cpp-common

ci/kokoro/windows/vcpkg-ports/google-cloud-cpp-common/portfile.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ vcpkg_from_github(
88
REPO
99
googleapis/google-cloud-cpp-common
1010
REF
11-
v0.24.0
11+
v0.25.0
1212
SHA512
13-
f75b8b11cad5428696c95bd1ea4cc3cb05d3e8655626ff9929ac92b4d0f23d9ad42c45b58d3641fb4077279b59fc2da7b1c5f63f7d40d8098a32209b22394fd2
13+
074294e8b824d7f2b9d6d4051f4fbb28ca83166aad98ff000348abb238488b1c957726d901dae041bf50aa23ab368da5cf1d23ad42454f9ad07153976c0a29fe
1414
HEAD_REF
1515
master)
1616

doc/packaging.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ all the Google Cloud C++ client libraries:
127127

128128
```bash
129129
cd $HOME/Downloads
130-
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
131-
tar -xf v0.24.0.tar.gz && \
132-
cd google-cloud-cpp-common-0.24.0 && \
130+
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
131+
tar -xf v0.25.0.tar.gz && \
132+
cd google-cloud-cpp-common-0.25.0 && \
133133
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
134134
cmake --build cmake-out -- -j ${NCPU:-4} && \
135135
sudo cmake --build cmake-out --target install -- -j ${NCPU:-4} && \
@@ -244,9 +244,9 @@ all the Google Cloud C++ client libraries:
244244

245245
```bash
246246
cd $HOME/Downloads
247-
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
248-
tar -xf v0.24.0.tar.gz && \
249-
cd google-cloud-cpp-common-0.24.0 && \
247+
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
248+
tar -xf v0.25.0.tar.gz && \
249+
cd google-cloud-cpp-common-0.25.0 && \
250250
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
251251
cmake --build cmake-out -- -j ${NCPU:-4} && \
252252
sudo cmake --build cmake-out --target install -- -j ${NCPU:-4} && \
@@ -334,9 +334,9 @@ all the Google Cloud C++ client libraries:
334334

335335
```bash
336336
cd $HOME/Downloads
337-
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
338-
tar -xf v0.24.0.tar.gz && \
339-
cd google-cloud-cpp-common-0.24.0 && \
337+
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
338+
tar -xf v0.25.0.tar.gz && \
339+
cd google-cloud-cpp-common-0.25.0 && \
340340
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
341341
cmake --build cmake-out -- -j ${NCPU:-4} && \
342342
sudo cmake --build cmake-out --target install -- -j ${NCPU:-4} && \
@@ -439,9 +439,9 @@ all the Google Cloud C++ client libraries:
439439

440440
```bash
441441
cd $HOME/Downloads
442-
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
443-
tar -xf v0.24.0.tar.gz && \
444-
cd google-cloud-cpp-common-0.24.0 && \
442+
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
443+
tar -xf v0.25.0.tar.gz && \
444+
cd google-cloud-cpp-common-0.25.0 && \
445445
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
446446
cmake --build cmake-out -- -j ${NCPU:-4} && \
447447
sudo cmake --build cmake-out --target install -- -j ${NCPU:-4} && \
@@ -503,9 +503,9 @@ all the Google Cloud C++ client libraries:
503503

504504
```bash
505505
cd $HOME/Downloads
506-
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
507-
tar -xf v0.24.0.tar.gz && \
508-
cd google-cloud-cpp-common-0.24.0 && \
506+
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
507+
tar -xf v0.25.0.tar.gz && \
508+
cd google-cloud-cpp-common-0.25.0 && \
509509
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
510510
cmake --build cmake-out -- -j ${NCPU:-4} && \
511511
sudo cmake --build cmake-out --target install -- -j ${NCPU:-4} && \
@@ -600,9 +600,9 @@ all the Google Cloud C++ client libraries:
600600

601601
```bash
602602
cd $HOME/Downloads
603-
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
604-
tar -xf v0.24.0.tar.gz && \
605-
cd google-cloud-cpp-common-0.24.0 && \
603+
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
604+
tar -xf v0.25.0.tar.gz && \
605+
cd google-cloud-cpp-common-0.25.0 && \
606606
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
607607
cmake --build cmake-out -- -j ${NCPU:-4} && \
608608
sudo cmake --build cmake-out --target install -- -j ${NCPU:-4} && \
@@ -701,9 +701,9 @@ all the Google Cloud C++ client libraries:
701701

702702
```bash
703703
cd $HOME/Downloads
704-
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
705-
tar -xf v0.24.0.tar.gz && \
706-
cd google-cloud-cpp-common-0.24.0 && \
704+
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
705+
tar -xf v0.25.0.tar.gz && \
706+
cd google-cloud-cpp-common-0.25.0 && \
707707
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
708708
cmake --build cmake-out -- -j ${NCPU:-4} && \
709709
sudo cmake --build cmake-out --target install -- -j ${NCPU:-4} && \
@@ -823,9 +823,9 @@ all the Google Cloud C++ client libraries:
823823

824824
```bash
825825
cd $HOME/Downloads
826-
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz && \
827-
tar -xf v0.24.0.tar.gz && \
828-
cd google-cloud-cpp-common-0.24.0 && \
826+
wget -q https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz && \
827+
tar -xf v0.25.0.tar.gz && \
828+
cd google-cloud-cpp-common-0.25.0 && \
829829
cmake -H. -Bcmake-out -DBUILD_TESTING=OFF && \
830830
cmake --build cmake-out -- -j ${NCPU:-4} && \
831831
sudo cmake --build cmake-out --target install -- -j ${NCPU:-4} && \

super/external/google-cloud-cpp-common.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ if (NOT TARGET google-cloud-cpp-common-project)
2323
# Give application developers a hook to configure the version and hash
2424
# downloaded from GitHub.
2525
set(GOOGLE_CLOUD_CPP_URL
26-
"https://github.com/googleapis/google-cloud-cpp-common/archive/v0.24.0.tar.gz"
26+
"https://github.com/googleapis/google-cloud-cpp-common/archive/v0.25.0.tar.gz"
2727
)
2828
set(GOOGLE_CLOUD_CPP_SHA256
29-
"d5e9075dd052e4ffdeba987d9e0c5b5583312e1213d79b913f811d4d2e78caee")
29+
"9ef2bb9b731cade7eb1be7e45323becb78cecda7e39b0a4050d7b787425d5efb")
3030

3131
set_external_project_build_parallel_level(PARALLEL)
3232
set_external_project_vars()

0 commit comments

Comments
 (0)