Skip to content

Commit fa65322

Browse files
Merge branch 'main' into dlp_deidentify_reidentify_table_fpe
2 parents 174acde + 4687063 commit fa65322

Some content is hidden

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

43 files changed

+2563
-56
lines changed

.github/header-checker-lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ allowedLicenses:
99

1010
ignoreFiles:
1111
- "**/requirements.txt"
12-
- "**/requirements-test.txt"
1312
- "**/requirements-composer.txt"
13+
- "**/requirements-dev.txt"
14+
- "**/requirements-test.txt"
1415
- "**/__init__.py"
1516
- "**/constraints.txt"
1617
- "**/constraints-test.txt"

.github/sync-repo-settings.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ branchProtectionRules:
3939
# Defaults to `false`
4040
requiresCodeOwnerReviews: true
4141
# Require up to date branches
42-
requiresStrictStatusChecks: true
42+
requiresStrictStatusChecks: false
4343
# List of required status check contexts that must pass for commits to be accepted to matching branches.
4444
requiredStatusCheckContexts:
4545
- "Kokoro CI - Lint"

bigquery/bqml/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ google-cloud-bigquery[pandas,bqstorage]==3.11.0
22
google-cloud-bigquery-storage==2.19.1
33
pandas==1.3.5; python_version == '3.7'
44
pandas==2.0.1; python_version > '3.7'
5-
pyarrow==12.0.0
5+
pyarrow==12.0.1
66
flaky==3.7.0
77
mock==5.0.2

bigquery/datalab-migration/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ google-cloud-bigquery-storage==2.19.1
66
datalab==1.2.1
77
ipython==8.12.1; python_version < '3.9'
88
ipython==8.14.0; python_version > '3.8'
9-
pyarrow==7.0.0
9+
pyarrow==12.0.1

bigquery/pandas-gbq-migration/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ pandas-gbq==0.19.2; python_version > '3.6'
77
# pandas-gbq==0.14.1 is the latest compatible version for Python 3.6
88
pandas-gbq==0.14.1; python_version < '3.7'
99
grpcio==1.54.2
10-
pyarrow==12.0.0; python_version > '3.6'
10+
pyarrow==12.0.1; python_version > '3.6'
1111
# pyarrow==6.0.1 is the latest compatible version for pandas-gbq 0.14.1
1212
pyarrow==6.0.1; python_version < '3.7'

cloud-sql/postgres/pgvector/data/retail_toy_dataset.csv

Lines changed: 851 additions & 0 deletions
Large diffs are not rendered by default.

cloud-sql/postgres/pgvector/notebooks/pgvector_gen_ai_demo.ipynb

Lines changed: 1218 additions & 0 deletions
Large diffs are not rendered by default.

compute/client_library/ingredients/instances/create_instance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def create_instance(
8888

8989
# Use the network interface provided in the network_link argument.
9090
network_interface = compute_v1.NetworkInterface()
91-
network_interface.name = network_link
91+
network_interface.network = network_link
9292
if subnetwork_link:
9393
network_interface.subnetwork = subnetwork_link
9494

compute/client_library/snippets/instances/create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def create_instance(
196196

197197
# Use the network interface provided in the network_link argument.
198198
network_interface = compute_v1.NetworkInterface()
199-
network_interface.name = network_link
199+
network_interface.network = network_link
200200
if subnetwork_link:
201201
network_interface.subnetwork = subnetwork_link
202202

compute/client_library/snippets/instances/create_start_instance/create_from_custom_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def create_instance(
196196

197197
# Use the network interface provided in the network_link argument.
198198
network_interface = compute_v1.NetworkInterface()
199-
network_interface.name = network_link
199+
network_interface.network = network_link
200200
if subnetwork_link:
201201
network_interface.subnetwork = subnetwork_link
202202

0 commit comments

Comments
 (0)