Skip to content

Commit 53521db

Browse files
authored
Merge branch 'main' into fix/spanner-interval-test
2 parents ff9d390 + d0dc97e commit 53521db

File tree

240 files changed

+80
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

240 files changed

+80
-9
lines changed

CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,39 @@
44
breaking changes in the upcoming 3.x release. This release is scheduled for
55
2024-12 or 2025-01.
66

7-
## v2.44.0 - TBD
7+
## v2.45.0 - TBD
8+
9+
## v2.44.0 - 2025-12
810

911
### [BigQueryControl](google/cloud/bigquerycontrol/README.md)
1012
- !fix(bigquerycontrol): PatchRoutine RPC has been removed.
1113

14+
### [Bigtable](/google/cloud/bigtable/README.md)
15+
16+
- Support for ([GoogleSQL](https://docs.cloud.google.com/bigtable/docs/googlesql-overview)) has been added to the Bigtable library. Please see the new ([bigtable::Client](https://docs.cloud.google.com/cpp/docs/reference/bigtable/latest/classgoogle_1_1cloud_1_1bigtable_1_1Client)) class for more details.
17+
18+
### [Spanner](/google/cloud/spanner/README.md)
19+
20+
- fix(spanner): Do not compare iterators from different containers ([#15665](https://github.com/googleapis/google-cloud-cpp/pull/15665))
21+
22+
### [Storage](/google/cloud/storage/README.md)
23+
24+
- fix(storage): always use latest write handle for fast resume in gRPC BidiWriteObject ([#15795](https://github.com/googleapis/google-cloud-cpp/pull/15795))
25+
- feat(storage): add support for partial list bucket ([#15763](https://github.com/googleapis/google-cloud-cpp/pull/15763))
26+
- fix(storage): Add start appendable condition for bypassing full object checksum ([#15786](https://github.com/googleapis/google-cloud-cpp/pull/15786))
27+
- feat(storage): add GrpcMetricsExcludedLabelsOption for gRPC metrics label filtering ([#15735](https://github.com/googleapis/google-cloud-cpp/pull/15735))
28+
- fix(storage): enable fast resume for rapid object write streams by including write handle ([#15762](https://github.com/googleapis/google-cloud-cpp/pull/15762))
29+
- feat(storage): add configurable metrics export timeout for GCS gRPC Client ([#15629](https://github.com/googleapis/google-cloud-cpp/pull/15629))
30+
31+
### [Common Libraries](/google/cloud/README.md)
32+
33+
- feat(credentials): add support for creating ComputeEngine credentials explicitly ([#15789](https://github.com/googleapis/google-cloud-cpp/pull/15789))
34+
- feat: Support scopes field in impersonated json ([#15675](https://github.com/googleapis/google-cloud-cpp/pull/15675))
35+
36+
### [Google APIs interface definitions](https://github.com/googleapis/googleapis)
37+
38+
- This release is based on definitions as of [2025-11-27T07:02:42Z](https://github.com/googleapis/googleapis/tree/8cd3749f4b98f2eeeef511c16431979aeb3a6502)
39+
1240
## v2.43.0 - 2025-10
1341

1442
### [Storage](/google/cloud/storage/README.md)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ set(PACKAGE_BUGREPORT "https://github.com/googleapis/google-cloud-cpp/issues")
2121

2222
project(
2323
google-cloud-cpp
24-
VERSION 2.44.0
24+
VERSION 2.45.0
2525
LANGUAGES CXX)
2626
set(PROJECT_VERSION_PRE_RELEASE "rc")
2727

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module(
1818
name = "google_cloud_cpp",
19-
version = "2.44.0-rc", # Updated by CMake
19+
version = "2.45.0-rc", # Updated by CMake
2020
compatibility_level = 2, # Updated by CMake
2121
)
2222

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ of what it's like to use one of these C++ libraries.
2828

2929
```cc
3030
#include "google/cloud/storage/client.h"
31+
#include "google/cloud/common_options.h"
32+
#include <cstdlib>
3133
#include <iostream>
3234
#include <string>
3335

@@ -41,7 +43,17 @@ int main(int argc, char* argv[]) {
4143

4244
// Create a client to communicate with Google Cloud Storage. This client
4345
// uses the default configuration for authentication and project id.
44-
auto client = google::cloud::storage::Client();
46+
auto options = google::cloud::Options{};
47+
48+
// If the CURL_CA_BUNDLE environment variable is set, configure the client
49+
// to use it. This is required for the Windows CI environment where standard
50+
// system roots may not be sufficient or accessible by the hermetic build.
51+
auto const* ca_bundle = std::getenv("CURL_CA_BUNDLE");
52+
if (ca_bundle != nullptr) {
53+
options.set<google::cloud::CARootsFilePathOption>(ca_bundle);
54+
}
55+
56+
auto client = google::cloud::storage::Client(options);
4557

4658
auto writer = client.WriteObject(bucket_name, "quickstart.txt");
4759
writer << "Hello World!";

0 commit comments

Comments
 (0)