Skip to content

Commit 42be9a8

Browse files
authored
docs(release): update changelog for the 2025-08 release (#15387)
1 parent 9304a3e commit 42be9a8

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

CHANGELOG.md

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

7-
## v2.41.0 - TBD
7+
## v2.41.0 - 2025-08-14
8+
9+
### [Bigtable](/google/cloud/bigtable/README.md)
10+
11+
- The `Bigtable::DataConnection` class has been instrumented to collect [Client Side Metrics](https://cloud.google.com/bigtable/docs/client-side-metrics),
12+
free of charge. These metrics will be collected by
13+
default if both the [OpenTelemetry](https://github.com/open-telemetry/opentelemetry-cpp)
14+
and [Google Cloud Monitoring](google/cloud/monitoring/README.md) dependencies are
15+
available. Users can opt-out by setting the `bigtable::EnableMetricsOption` to `false`.
16+
17+
- The following metrics are available in Bigtable:
18+
- AttemptLatency
19+
- OperationLatency
20+
- RetryCount
21+
- FirstResponseLatency
22+
- ServerLatency
23+
- ApplicationBlockingLatency
24+
- ConnectivityErrorCount
825

926
### [Spanner](/google/cloud/spanner/README.md)
1027

@@ -14,6 +31,10 @@ support is now available. To enable Multiplexed sessions, add the
1431
`spanner::MakeConnection`. This enables Multiplexed sessions on all operations
1532
read-only, read-write, and partitioned.
1633

34+
### [Google APIs interface definitions](https://github.com/googleapis/googleapis)
35+
36+
- This release is based on definitions as of [2025-07-30T06:44:36-07:00](https://github.com/googleapis/googleapis/tree/f6801ce4e1df0541abb8d1e996cb36363c41fb8d)
37+
1738
## v2.40.0 - 2025-08
1839

1940
### New Libraries

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project(
2323
google-cloud-cpp
2424
VERSION 2.41.0
2525
LANGUAGES CXX)
26-
set(PROJECT_VERSION_PRE_RELEASE "rc")
26+
set(PROJECT_VERSION_PRE_RELEASE "")
2727

2828
if (NOT "${PROJECT_VERSION_PRE_RELEASE}" STREQUAL "")
2929
set(PROJECT_VERSION "${PROJECT_VERSION}-${PROJECT_VERSION_PRE_RELEASE}")

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.41.0-rc", # Updated by CMake
19+
version = "2.41.0", # Updated by CMake
2020
compatibility_level = 2, # Updated by CMake
2121
)
2222

google/cloud/internal/version_info.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
#define GOOGLE_CLOUD_CPP_VERSION_MINOR 41
2222
// NOLINTNEXTLINE(modernize-macro-to-enum)
2323
#define GOOGLE_CLOUD_CPP_VERSION_PATCH 0
24-
#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE "rc"
24+
#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE ""
2525

2626
#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_INTERNAL_VERSION_INFO_H

0 commit comments

Comments
 (0)