Skip to content

Commit d4d1e72

Browse files
authored
docs(release): update changelog for the 2026-06 release (#16184)
1 parent 3612064 commit d4d1e72

4 files changed

Lines changed: 28 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ breaking changes in the upcoming 4.x release. This release is scheduled for
77
**NOTE**: Please refer to the [V3 Migration Guide](/doc/v3-migration-guide.md)
88
for details on updating existing applications using v1.x.y or v2.x.y.
99

10-
## v3.6.0 - TBD
10+
## v3.6.0 - 2026-06
1111

1212
### New Libraries
1313

@@ -26,6 +26,30 @@ the APIs in these libraries are stable, and are ready for production use.
2626
are now supported for REST endpoints. Support for gRPC endpoints will be
2727
available in a future release.
2828

29+
### [Storage](/google/cloud/storage/README.md)
30+
31+
- fix(storage): avoid premature flush completion and concurrent writes in AsyncWriterConnectionBuffered ([#16169](https://github.com/googleapis/google-cloud-cpp/pull/16169))
32+
- feat(storage): implement GCS overrun logging and resume prevention ([#16150](https://github.com/googleapis/google-cloud-cpp/pull/16150))
33+
- fix(storage): add Close() support to AsyncWriterConnectionBuffered ([#16145](https://github.com/googleapis/google-cloud-cpp/pull/16145))
34+
- fix(storage): Set the idempotency token for async rewrites ([#16114](https://github.com/googleapis/google-cloud-cpp/pull/16114))
35+
- fix(storage): Add telemetry tracing support for async stream Close() ([#16118](https://github.com/googleapis/google-cloud-cpp/pull/16118))
36+
- feat(storage): Add full object read checksum validation for Open ([#16120](https://github.com/googleapis/google-cloud-cpp/pull/16120))
37+
- fix(storage): use server-reported size and crc on stream reconnect to avoid duplicate writes ([#16115](https://github.com/googleapis/google-cloud-cpp/pull/16115))
38+
- fix(storage): Implement clean half-close stream teardown for appendable uploads ([#16112](https://github.com/googleapis/google-cloud-cpp/pull/16112))
39+
- feat(storage): Add full object checksum validation for appendable uploads ([#16110](https://github.com/googleapis/google-cloud-cpp/pull/16110))
40+
- feat(storage): Add read chunkwise checksum validation for sync grpc read ([#16107](https://github.com/googleapis/google-cloud-cpp/pull/16107))
41+
- fix(storage): Resolve potential race condition in AsyncWriterConnectionImpl ([#16099](https://github.com/googleapis/google-cloud-cpp/pull/16099))
42+
- feat(storage): Add delete object source field in ComposeObject API ([#16094](https://github.com/googleapis/google-cloud-cpp/pull/16094))
43+
- feat(storage): Extend idempotency token use to all async mutation operations ([#16100](https://github.com/googleapis/google-cloud-cpp/pull/16100))
44+
45+
### [Common Libraries](/google/cloud/README.md)
46+
47+
- fix: remove deprecated ATOMIC_VAR_INIT usage ([#16127](https://github.com/googleapis/google-cloud-cpp/pull/16127))
48+
- fix(testing_util): link opentelemetry-cpp SDK as PUBLIC ([#16101](https://github.com/googleapis/google-cloud-cpp/pull/16101))
49+
50+
### [Google APIs interface definitions](https://github.com/googleapis/googleapis)
51+
52+
- This release is based on definitions as of [2026-05-25T07:03:03-07:00](https://github.com/googleapis/googleapis/tree/ef19b7b7a73f19f33ab86c5b3603e9590025acd7)
2953

3054
## v3.5.0 - 2026-05
3155

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 3.6.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 = "3.6.0-rc", # Updated by CMake
19+
version = "3.6.0", # Updated by CMake
2020
compatibility_level = 3, # 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 6
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)