Skip to content

Commit a37d916

Browse files
author
Ace Nassri
authored
Merge branch 'main' into cloudevent-logging
2 parents 0edd775 + 1062b16 commit a37d916

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

auth/service-to-service/auth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import google.oauth2.id_token
2525

2626

27-
def make_authorized_get_request(service_url, audience):
27+
def make_authorized_get_request(endpoint, audience):
2828
"""
2929
make_authorized_get_request makes a GET request to the specified HTTP endpoint
3030
by authenticating with the ID token obtained from the google-auth client library
@@ -41,7 +41,7 @@ def make_authorized_get_request(service_url, audience):
4141
# audience = https://project-region-projectid.cloudfunctions.net/myFunction
4242
# [START cloudrun_service_to_service_auth]
4343

44-
req = urllib.request.Request(service_url)
44+
req = urllib.request.Request(endpoint)
4545

4646
auth_req = google.auth.transport.requests.Request()
4747
id_token = google.oauth2.id_token.fetch_id_token(auth_req, audience)

auth/service-to-service/auth_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def services():
4444
)
4545

4646
# Get the URL for the hello-world service
47-
service_url = subprocess.run(
47+
endpoint = subprocess.run(
4848
[
4949
"gcloud", "run", "services", "describe", f"helloworld-{suffix}",
5050
"--project", project,
@@ -66,7 +66,7 @@ def services():
6666
"--trigger-http",
6767
"--no-allow-unauthenticated",
6868
"--entry-point=get_authorized",
69-
f"--set-env-vars=URL={service_url.decode()}"
69+
f"--set-env-vars=URL={endpoint.decode()}"
7070
],
7171
check=True
7272
)

bigquery/bqml/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
google-cloud-bigquery[pandas,bqstorage]==2.33.0
2-
google-cloud-bigquery-storage==2.13.0
2+
google-cloud-bigquery-storage==2.13.1
33
pandas==1.1.5; python_version < '3.7'
44
pandas==1.3.5; python_version > '3.6'
55
pyarrow==6.0.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
grpcio==1.45.0
22
google-cloud-bigquery[pandas,pyarrow]==2.33.0
3-
google-cloud-bigquery-storage==2.13.0
3+
google-cloud-bigquery-storage==2.13.1
44
datalab==1.2.0
55
ipython==8.0.1
66
pyarrow==6.0.1

bigquery/pandas-gbq-migration/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
google-cloud-bigquery==2.33.0
2-
google-cloud-bigquery-storage==2.13.0
2+
google-cloud-bigquery-storage==2.13.1
33
pandas==1.1.5; python_version < '3.7'
44
pandas==1.3.5; python_version > '3.6'
55
pandas-gbq==0.16.0; python_version > '3.6'

composer/workflows/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
# see https://airflow.apache.org/docs/apache-airflow/stable/installation/installing-from-pypi.html#constraints-files
33
apache-airflow==2.2.3
44
apache-airflow-providers-apache-beam==3.2.0
5-
apache-airflow-providers-cncf-kubernetes==3.1.1
5+
apache-airflow-providers-cncf-kubernetes==3.1.2
66
apache-airflow-providers-google==6.5.0
77
scipy==1.8.0; python_version > '3.0'

0 commit comments

Comments
 (0)