Skip to content

Commit 3732590

Browse files
ddelgrosso1renovate-botscotthartcuiy0006
committed
chore: merge from public circa 2025-02-27 (#104)
* chore(deps): update googletest to v1.16.0 (#14983) * chore(deps): update dependency build_bazel_rules_apple to v3.18.0 (#14982) * chore(compute): update discovery doc circa 20250126 (#14984) * chore(bigquerycontrol): upgrade bigquerycontrol from transitive to GA (#14985) * chore: update googleapis SHA circa 2025-02-11 (#14987) * chore: update googleapis SHA circa 2025-02-11 PiperOrigin-RevId: 725444773 * doc: fix typo in doc link (#14990) * docs(storage): remove grpc docs from in-depth topics (#14989) * chore(deps): update dependency build_bazel_rules_apple to v3.19.0 (#14991) * refactor(generator): prepare for upcoming string_view return type change (#14997) * chore(deps): update dependency protoc-gen-validate to v1.2.1 (#14994) * chore(deps): update dependency mozilla/sccache to v0.10.0 (#14998) * chore(deps): update dependency curl to v8.8.0.bcr.3 (#14995) * chore(deps): update dependency c-ares to v1.19.1.bcr.1 (#14996) --------- Co-authored-by: Mend Renovate <[email protected]> Co-authored-by: Scott Hart <[email protected]> Co-authored-by: Yao Cui <[email protected]>
1 parent 3a1927d commit 3732590

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cmake/GoogleCloudCppFeatures.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ set(GOOGLE_CLOUD_CPP_EXPERIMENTAL_LIBRARIES
3737
)
3838

3939
set(GOOGLE_CLOUD_CPP_TRANSITION_LIBRARIES # cmake-format: sort
40-
"bigquerycontrol" "storage_grpc")
40+
"storage_grpc")
4141

4242
set(GOOGLE_CLOUD_CPP_GA_LIBRARIES
4343
# cmake-format: sort

generator/internal/pagination.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,8 @@ google::cloud::optional<PaginationInfo> DetermineBigQueryPagination(
228228
FieldDescriptor const* items =
229229
response_message->FindFieldByName(field_name);
230230
if (!items->is_repeated()) return {};
231-
return PaginationInfo{items->name(), items->message_type(), {}};
231+
return PaginationInfo{
232+
std::string{items->name()}, items->message_type(), {}};
232233
}
233234
}
234235

libraries.bzl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ GOOGLE_CLOUD_CPP_EXPERIMENTAL_LIBRARIES = [
2121
]
2222

2323
GOOGLE_CLOUD_CPP_TRANSITION_LIBRARIES = [
24-
"bigquerycontrol",
2524
"storage_grpc",
2625
]
2726

protos/google/cloud/compute/v1/internal/common_145.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Generated by the C++ microgenerator.
1616
// If you make any local changes, they will be lost.
1717
// file:///workspace/generator/discovery/compute_public_google_rest_v1.json
18-
// revision: 20241231
18+
// revision: 20250126
1919

2020
syntax = "proto3";
2121

protos/google/cloud/compute/v1/internal/common_146.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Generated by the C++ microgenerator.
1616
// If you make any local changes, they will be lost.
1717
// file:///workspace/generator/discovery/compute_public_google_rest_v1.json
18-
// revision: 20241231
18+
// revision: 20250126
1919

2020
syntax = "proto3";
2121

0 commit comments

Comments
 (0)