Skip to content

Commit 0866286

Browse files
authored
docs(release): update changelog for the 2024-10 release (#14764)
1 parent 5acae1d commit 0866286

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

CHANGELOG.md

+30-2
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.30.0 - TBD
7+
## v2.30.0 - 2024-10
88

99
### Updated Libraries
1010

@@ -13,18 +13,46 @@ breaking changes in the upcoming 3.x release. This release is scheduled for
1313
- [Dialogflow ES API](/google/cloud/dialogflow_es/README.md) - new
1414
`EncryptionSpecServiceClient` and `GeneratorsClient`
1515

16+
### [AI Platform API](/google/cloud/aiplatform/README.md)
17+
18+
- doc(aiplatform): add Vertex AI samples ([#14703](https://github.com/googleapis/google-cloud-cpp/pull/14703))
19+
1620
### [KMS](/google/cloud/kms/README.md)
1721

1822
- `AutokeyClient::ListKeyHandles(...)` signature has changed to return an
1923
iterable type. Our telemetry indicates that there are no C++ applications
2024
using this API, and therefore we do not consider this a breaking change.
2125
([#14726](https://github.com/googleapis/google-cloud-cpp/pull/14726))
2226

23-
### [Google Cloud Storage](/google/cloud/storage/README.md)
27+
### [OpenTelemetry](/google/cloud/opentelemetry/README.md)
28+
29+
- feat(otel): release GCM exporter ([#14693](https://github.com/googleapis/google-cloud-cpp/pull/14693))
30+
31+
### [Pub/Sub](/google/cloud/pubsub/README.md)
32+
33+
- feat(mixin): add manual changes for pubsub and generate mixin code ([#14756](https://github.com/googleapis/google-cloud-cpp/pull/14756))
34+
- docs(pubsub): Add ingestion from GCS topic creation sample ([#14749](https://github.com/googleapis/google-cloud-cpp/pull/14749))
35+
36+
### [Spanner](/google/cloud/spanner/README.md)
37+
38+
- docs(spanner): Add samples for backup schedule feature APIs ([#14720](https://github.com/googleapis/google-cloud-cpp/pull/14720))
39+
- docs(spanner): create a few code snippets as examples for using Spanner Graph using cpp ([#14660](https://github.com/googleapis/google-cloud-cpp/pull/14660))
40+
41+
### [Storage](/google/cloud/storage/README.md)
2442

2543
- The gRPC plugin is now GA. The [Using the gRPC plugin][storage-grpc]
2644
guide describes this feature in more detail. When using GCS from Google
2745
Compute Engine (GCE) this plugin can enable higher total throughput.
46+
- feat(storage): Add ability to restore soft deleted objects ([#14710](https://github.com/googleapis/google-cloud-cpp/pull/14710))
47+
48+
### [Common Libraries](/google/cloud/README.md)
49+
50+
- fix(rest): promote buffer curl reads from to member variable ([#14732](https://github.com/googleapis/google-cloud-cpp/pull/14732))
51+
- fix: respect `GOOGLE_CLOUD_QUOTA_PROJECT` ([#14684](https://github.com/googleapis/google-cloud-cpp/pull/14684))
52+
53+
### [Google APIs interface definitions](https://github.com/googleapis/googleapis)
54+
55+
- This release is based on definitions as of [2024-09-24T10:34:24-07:00](https://github.com/googleapis/googleapis/tree/69e9dff10df4fa1e338712d38dc26b46791a6e94)
2856

2957
## v2.29.0 - 2024-09
3058

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project(
2323
google-cloud-cpp
2424
VERSION 2.30.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module(
1818
name = "google_cloud_cpp",
19-
version = "2.30.0-rc", # Updated by CMake
19+
version = "2.30.0", # Updated by CMake
2020
compatibility_level = 2, # Updated by CMake
2121
)
2222

google/cloud/internal/version_info.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
#define GOOGLE_CLOUD_CPP_VERSION_MINOR 30
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)