Skip to content

Commit adfd552

Browse files
authored
docs(release): update changelog for the 2026-02 release (#15946)
1 parent 5bb66b7 commit adfd552

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 17 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.47.0 - TBD
7+
## v2.47.0 - 2026-02
88

99
### New Libraries
1010

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

18+
### [Spanner](/google/cloud/spanner/README.md)
19+
20+
- feat(spanner): define IsolationLevel enum for Spanner transactions ([#15853](https://github.com/googleapis/google-cloud-cpp/pull/15853))
21+
22+
### [Storage](/google/cloud/storage/README.md)
23+
24+
- feat(storage): take async client out of experimental ([#15573](https://github.com/googleapis/google-cloud-cpp/pull/15573))
25+
- fix(storage): add extra validation for type in object_metadata_parser ([#15864](https://github.com/googleapis/google-cloud-cpp/pull/15864))
26+
- feat(storage): Update the write handle while performing appendable object upload ([#15889](https://github.com/googleapis/google-cloud-cpp/pull/15889))
27+
- feat(storage): add flag for enable and disable multi stream feature. ([#15893](https://github.com/googleapis/google-cloud-cpp/pull/15893))
28+
- fix(storage): gRPC misuse causing crashes due to concurrent writes from Flush() and Write() ([#15802](https://github.com/googleapis/google-cloud-cpp/pull/15802))
29+
30+
### [Google APIs interface definitions](https://github.com/googleapis/googleapis)
31+
32+
- This release is based on definitions as of [2026-01-30T21:16:31-08:00](https://github.com/googleapis/googleapis/tree/c0fcb35628690e9eb15dcefae41c651c67cd050b)
33+
1834
## v2.46.0 - 2026-01
1935

2036
### [Spanner](/google/cloud/spanner/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.47.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.47.0-rc", # Updated by CMake
19+
version = "2.47.0", # Updated by CMake
2020
compatibility_level = 2, # Updated by CMake
2121
)
2222

ci/cloudbuild/dockerfiles/checkers.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ RUN pip3 install mdformat==0.7.19 \
5454
mdformat-frontmatter==2.0.8 \
5555
mdformat-footnote==0.1.1
5656

57-
RUN curl -o /usr/bin/bazelisk -sSL "https://github.com/bazelbuild/bazelisk/releases/download/v1.24.1/bazelisk-linux-${ARCH}" && \
57+
RUN curl -o /usr/bin/bazelisk -sSL "https://github.com/bazelbuild/bazelisk/releases/download/v1.28.1/bazelisk-linux-${ARCH}" && \
5858
chmod +x /usr/bin/bazelisk && \
5959
ln -s /usr/bin/bazelisk /usr/bin/bazel

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 47
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)