Skip to content

Commit 45376ec

Browse files
authored
chore: update CHANGELOG for 202212 release (#10344)
1 parent a5ad82f commit 45376ec

File tree

3 files changed

+58
-3
lines changed

3 files changed

+58
-3
lines changed

CHANGELOG.md

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,19 @@ may elicit a deprecation warning. See [#9086] for more details.
116116

117117
</details>
118118

119-
## v2.5.0 - TBD
119+
## v2.5.0 - 2022-12
120+
121+
**NOTE**
122+
123+
- feat!: We have dropped the experimental marker from bidirectional streaming APIs ([#10340](https://github.com/googleapis/google-cloud-cpp/pull/10340)). The APIs in question are:
124+
- `bigquery::BigQueryWriteClient::AsyncAppendRows()`
125+
- `dialogflow_cx::SessionsClient::AsyncStreamingDetectIntent()`
126+
- `dialogflow_es::ParticipantsClient::AsyncStreamingAnalyzeContent()`
127+
- `dialogflow_es::SessionsClient::AsyncStreamingDetectIntent()`
128+
- `logging::LoggingServiceV2Client::AsyncTailLogEntries()`
129+
- `speech::SpeechClient::AsyncStreamingRecognize()`
130+
131+
If you use any of these APIs, you must drop the `ExperimentalTag` in your code, accordingly.
120132

121133
### New Libraries
122134

@@ -126,6 +138,49 @@ the APIs in these libraries are stable, and are ready for production use.
126138
- [Connectors API](/google/cloud/connectors/README.md)
127139
- [VMware Engine API](/google/cloud/vmwareengine/README.md)
128140

141+
### [Bigtable](/google/cloud/bigtable/README.md)
142+
143+
- samples(bigtable): build admin samples with cmake ([#10246](https://github.com/googleapis/google-cloud-cpp/pull/10246))
144+
- doc(bigtable): create page for configuration options ([#10197](https://github.com/googleapis/google-cloud-cpp/pull/10197))
145+
146+
### [Logging](/google/cloud/logging/README.md)
147+
148+
- feat(logging): generate `AsyncWriteLogEntries()` ([#10194](https://github.com/googleapis/google-cloud-cpp/pull/10194))
149+
150+
### [Pub/Sub](/google/cloud/pubsub/README.md)
151+
152+
- feat(pubsub): add option to override subscription ([#10327](https://github.com/googleapis/google-cloud-cpp/pull/10327))
153+
- feat(pubsub): blocking pulls ([#10317](https://github.com/googleapis/google-cloud-cpp/pull/10317))
154+
- doc(pubsub): create page for configuration options ([#10198](https://github.com/googleapis/google-cloud-cpp/pull/10198))
155+
156+
### [Spanner](/google/cloud/spanner/README.md)
157+
158+
- doc(spanner): deprecate old MakeConnection() overloads ([#10284](https://github.com/googleapis/google-cloud-cpp/pull/10284))
159+
- fix(spanner): tweak the tag name of a FGAC sample ([#10266](https://github.com/googleapis/google-cloud-cpp/pull/10266))
160+
- samples(spanner): build admin samples with cmake ([#10247](https://github.com/googleapis/google-cloud-cpp/pull/10247))
161+
- feat(spanner): tests and samples for DML RETURNING ([#10233](https://github.com/googleapis/google-cloud-cpp/pull/10233))
162+
- doc(spanner): create page for configuration options ([#10199](https://github.com/googleapis/google-cloud-cpp/pull/10199))
163+
164+
### [Speech](/google/cloud/speech/README.md)
165+
166+
- feat(speech): generate speech v2 ([#10228](https://github.com/googleapis/google-cloud-cpp/pull/10228))
167+
168+
### [Storage](/google/cloud/storage/README.md)
169+
170+
- doc(storage): create page for configuration options ([#10200](https://github.com/googleapis/google-cloud-cpp/pull/10200))
171+
172+
### [Common Libraries](/google/cloud/README.md)
173+
174+
- doc: another pass on authentication components ([#10300](https://github.com/googleapis/google-cloud-cpp/pull/10300))
175+
- fix(common): create default gRPC credentials only if needed ([#10280](https://github.com/googleapis/google-cloud-cpp/pull/10280))
176+
- doc: group client functions ([#10268](https://github.com/googleapis/google-cloud-cpp/pull/10268))
177+
- doc: use qualified client name in samples ([#10241](https://github.com/googleapis/google-cloud-cpp/pull/10241))
178+
- fix(common): avoid globals for easier DLLs ([#10212](https://github.com/googleapis/google-cloud-cpp/pull/10212))
179+
- feat: support a pre-release component of the version string ([#10181](https://github.com/googleapis/google-cloud-cpp/pull/10181))
180+
- doc(common): add Doxygen group for common options ([#10192](https://github.com/googleapis/google-cloud-cpp/pull/10192))
181+
- doc(common): add overview section ([#10193](https://github.com/googleapis/google-cloud-cpp/pull/10193))
182+
- doc: better guidance for authentication samples ([#10184](https://github.com/googleapis/google-cloud-cpp/pull/10184))
183+
129184
## v2.4.0 - 2022-11
130185

131186
### New Libraries

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.5.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}")

google/cloud/internal/version_info.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
#define GOOGLE_CLOUD_CPP_VERSION_MAJOR 2
1919
#define GOOGLE_CLOUD_CPP_VERSION_MINOR 5
2020
#define GOOGLE_CLOUD_CPP_VERSION_PATCH 0
21-
#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE "rc"
21+
#define GOOGLE_CLOUD_CPP_VERSION_PRE_RELEASE ""
2222

2323
#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_INTERNAL_VERSION_INFO_H

0 commit comments

Comments
 (0)