Skip to content

Commit 095952a

Browse files
committed
Merge remote-tracking branch 'googleapis/main' into spanner-read-lock-mode
2 parents 258c0dc + e612dba commit 095952a

File tree

1,509 files changed

+24290
-1016
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,509 files changed

+24290
-1016
lines changed

.gemini/styleguide.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
This repository mostly follows the Google C++ style guide found at
2+
https://google.github.io/styleguide/cppguide.html.
3+
4+
Notably, this repository only allows language features and libraries found in
5+
C++14.

.github/workflows/test-runner.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,8 @@ jobs:
7777
# the additional jobs inherit any secrets needed to use the remote caches and
7878
# receive what version to checkout as an input.
7979
macos-bazel:
80-
# Build the full matrix only on push events to the default branch, or
81-
# when PR gets the has a `gha:full-build` label, or when it had the
82-
# label already and it gets a new commit.
83-
if: |-
84-
${{
85-
github.event_name == 'schedule' ||
86-
github.event_name == 'push' ||
87-
contains(github.event.pull_request.labels.*.name, 'gha:full-build')
88-
}}
80+
# Disabled
81+
if: false
8982
name: macOS-Bazel
9083
needs: [pre-flight]
9184
uses: ./.github/workflows/macos-bazel.yml
@@ -156,7 +149,7 @@ jobs:
156149
name: Notify-Google-Chat
157150
# Wait until all the other jobs have completed.
158151
needs:
159-
- macos-bazel
152+
# macos-bazel is disabled
160153
# macos-cmake is disabled
161154
- windows-bazel
162155
- windows-cmake

.github/workflows/windows-cmake.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ jobs:
8585
shell: bash
8686
run: |
8787
echo "vcpkg-version=$(cat ci/etc/vcpkg-version.txt)" >> "${GITHUB_OUTPUT}"
88-
core1_features=(bigtable)
89-
core2_features=(spanner)
90-
core3_features=(storage)
91-
core4_features=(storage_grpc)
92-
core5_features=(pubsub pubsublite)
88+
core1_features=(bigtable universe_domain)
89+
core2_features=(spanner universe_domain)
90+
core3_features=(storage universe_domain)
91+
core4_features=(storage_grpc universe_domain)
92+
core5_features=(pubsub pubsublite universe_domain)
9393
# These are the libraries with the most "clients". To build the list
9494
# run something like this and create shards:
9595
#
@@ -107,6 +107,7 @@ jobs:
107107
sql
108108
dialogflow_cx
109109
dialogflow_es
110+
universe_domain
110111
)
111112
shard2_features=(
112113
beyondcorp
@@ -119,6 +120,7 @@ jobs:
119120
servicecontrol
120121
speech
121122
support
123+
universe_domain
122124
)
123125
shard3_features=(
124126
securesourcemanager
@@ -164,6 +166,7 @@ jobs:
164166
trace
165167
vision
166168
workflows
169+
universe_domain
167170
)
168171
shard4_features=(
169172
accessapproval
@@ -203,6 +206,7 @@ jobs:
203206
gkebackup
204207
gkeconnect
205208
gkehub
209+
universe_domain
206210
)
207211
shard5_features=(
208212
video
@@ -216,6 +220,7 @@ jobs:
216220
bigquery
217221
bigquerycontrol
218222
resourcemanager
223+
universe_domain
219224
)
220225
if [[ "${{ matrix.shard }}" == "Core1" ]]; then
221226
features="$(printf ",%s" "${core1_features[@]}")"

BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ cc_library(
249249
)
250250

251251
cc_library(
252-
name = "experimental-universe_domain",
252+
name = "universe_domain",
253253
deps = [
254254
"//google/cloud:google_cloud_cpp_universe_domain",
255255
],

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
breaking changes in the upcoming 3.x release. This release is scheduled for
55
2024-12 or 2025-01.
66

7+
## v2.44.0 - TBD
8+
79
## v2.43.0 - 2025-10
810

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

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ set(PACKAGE_BUGREPORT "https://github.com/googleapis/google-cloud-cpp/issues")
2121

2222
project(
2323
google-cloud-cpp
24-
VERSION 2.43.0
24+
VERSION 2.44.0
2525
LANGUAGES CXX)
26-
set(PROJECT_VERSION_PRE_RELEASE "")
26+
set(PROJECT_VERSION_PRE_RELEASE "rc")
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.43.0", # Updated by CMake
19+
version = "2.44.0-rc", # Updated by CMake
2020
compatibility_level = 2, # Updated by CMake
2121
)
2222

bazel/gapic.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def cc_gapic_library(name, service_dirs = [], googleapis_deps = [], additional_d
8282
tags = ["integration-test"],
8383
deps = [
8484
"//:" + name,
85+
"//:universe_domain",
8586
"//google/cloud/testing_util:google_cloud_cpp_testing_private",
8687
],
8788
) for sample in native.glob([d + "samples/*_samples.cc" for d in service_dirs])]

0 commit comments

Comments
 (0)