Skip to content

Commit a64f2da

Browse files
authored
docs(release): update changelog for the 2025-09 release (#15553)
1 parent c4bcce0 commit a64f2da

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

CHANGELOG.md

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

7-
## v2.42.0 - TBD
7+
## v2.42.0 - 2025-09
88

99
### New Libraries
1010

@@ -14,6 +14,29 @@ the APIs in these libraries are stable, and are ready for production use.
1414
- [Cloud Security Compliance](/google/cloud/cloudsecuritycompliance/README.md)
1515
- [Config Delivery API](/google/cloud/configdelivery/README.md)
1616

17+
### Updated Libraries
18+
19+
- [Network Connectivity](/google/cloud/networkconnectivity/README.md) - added support for DataTransferService ([#15464](https://github.com/googleapis/google-cloud-cpp/pull/15464))
20+
21+
22+
### [Spanner](/google/cloud/spanner/README.md)
23+
24+
- perf(spanner): Use arenas to speed up queries that fetch many rows ([#15441](https://github.com/googleapis/google-cloud-cpp/pull/15441))
25+
26+
### [Storage](/google/cloud/storage/README.md)
27+
28+
- feat(storage): Remove unnecessary code which was causing race condition ([#15551](https://github.com/googleapis/google-cloud-cpp/pull/15551))
29+
- feat(storage): Update the appendable object function to store the Object metadata ([#15422](https://github.com/googleapis/google-cloud-cpp/pull/15422))
30+
- feat(storage): Add generation in append_object_spec in resume operation ([#15395](https://github.com/googleapis/google-cloud-cpp/pull/15395))
31+
32+
### [Common Libraries](/google/cloud/README.md)
33+
34+
- perf: Change StreamingReadRpc::Read interface to take ResponseType ([#15319](https://github.com/googleapis/google-cloud-cpp/pull/15319))
35+
36+
### [Google APIs interface definitions](https://github.com/googleapis/googleapis)
37+
38+
- This release is based on definitions as of [2025-09-05T15:58:06-07:00](https://github.com/googleapis/googleapis/tree/46403a9acec0719c130b33eb38b2ee62a45f9f6c)
39+
1740
## v2.41.0 - 2025-08-14
1841

1942
### [Bigtable](/google/cloud/bigtable/README.md)

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.42.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.42.0-rc", # Updated by CMake
19+
version = "2.42.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 42
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)