Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
breaking changes in the upcoming 3.x release. This release is scheduled for
2024-12 or 2025-01.

## v2.47.0 - TBD
## v2.47.0 - 2026-02

### New Libraries

Expand All @@ -15,6 +15,22 @@ the APIs in these libraries are stable, and are ready for production use.
- [Audit Manager](/google/cloud/auditmanager/README.md)
- [GKE Recommender](/google/cloud/gkerecommender/README.md)

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

- feat(spanner): define IsolationLevel enum for Spanner transactions ([#15853](https://github.com/googleapis/google-cloud-cpp/pull/15853))

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

- feat(storage): take async client out of experimental ([#15573](https://github.com/googleapis/google-cloud-cpp/pull/15573))
- fix(storage): add extra validation for type in object_metadata_parser ([#15864](https://github.com/googleapis/google-cloud-cpp/pull/15864))
- feat(storage): Update the write handle while performing appendable object upload ([#15889](https://github.com/googleapis/google-cloud-cpp/pull/15889))
- feat(storage): add flag for enable and disable multi stream feature. ([#15893](https://github.com/googleapis/google-cloud-cpp/pull/15893))
- fix(storage): gRPC misuse causing crashes due to concurrent writes from Flush() and Write() ([#15802](https://github.com/googleapis/google-cloud-cpp/pull/15802))

### [Google APIs interface definitions](https://github.com/googleapis/googleapis)

- This release is based on definitions as of [2026-01-30T21:16:31-08:00](https://github.com/googleapis/googleapis/tree/c0fcb35628690e9eb15dcefae41c651c67cd050b)

## v2.46.0 - 2026-01

### [Spanner](/google/cloud/spanner/README.md)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ project(
google-cloud-cpp
VERSION 2.47.0
LANGUAGES CXX)
set(PROJECT_VERSION_PRE_RELEASE "rc")
set(PROJECT_VERSION_PRE_RELEASE "")

if (NOT "${PROJECT_VERSION_PRE_RELEASE}" STREQUAL "")
set(PROJECT_VERSION "${PROJECT_VERSION}-${PROJECT_VERSION_PRE_RELEASE}")
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module(
name = "google_cloud_cpp",
version = "2.47.0-rc", # Updated by CMake
version = "2.47.0", # Updated by CMake
compatibility_level = 2, # Updated by CMake
)

Expand Down
2 changes: 1 addition & 1 deletion google/cloud/internal/version_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
#define GOOGLE_CLOUD_CPP_VERSION_MINOR 47
// NOLINTNEXTLINE(modernize-macro-to-enum)
#define GOOGLE_CLOUD_CPP_VERSION_PATCH 0
#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE "rc"
#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE ""

#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_INTERNAL_VERSION_INFO_H