From 3bdb0969c31202f07a30cccfde7a10b377a17e51 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 26 Jan 2021 17:06:32 +0100 Subject: [PATCH 1/9] chore(deps): update dependency bleach to v3.2.3 (#5289) --- run/markdown-preview/renderer/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run/markdown-preview/renderer/requirements.txt b/run/markdown-preview/renderer/requirements.txt index 25b74c975447..2c9c73dad2ee 100644 --- a/run/markdown-preview/renderer/requirements.txt +++ b/run/markdown-preview/renderer/requirements.txt @@ -1,4 +1,4 @@ Flask==1.1.2 gunicorn==20.0.4 Markdown==3.3.3 -bleach==3.2.2 \ No newline at end of file +bleach==3.2.3 \ No newline at end of file From 9b8bd78f7edbe447f5220261b8453d6812fe2ec0 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 26 Jan 2021 18:56:37 +0100 Subject: [PATCH 2/9] chore(deps): update dependency google-cloud-vision to v2.1.0 (#5290) --- codelabs/flex_and_vision/requirements.txt | 2 +- functions/imagemagick/requirements.txt | 2 +- functions/ocr/app/requirements.txt | 2 +- run/image-processing/requirements.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/codelabs/flex_and_vision/requirements.txt b/codelabs/flex_and_vision/requirements.txt index f2f83a060cf5..66d79915c29a 100644 --- a/codelabs/flex_and_vision/requirements.txt +++ b/codelabs/flex_and_vision/requirements.txt @@ -1,6 +1,6 @@ Flask==1.1.2 gunicorn==20.0.4; python_version > '3.0' gunicorn==19.10.0; python_version < '3.0' -google-cloud-vision==2.0.0 +google-cloud-vision==2.1.0 google-cloud-storage==1.35.0 google-cloud-datastore==2.1.0 diff --git a/functions/imagemagick/requirements.txt b/functions/imagemagick/requirements.txt index 7fa4b2ed9c42..8b4f8581a20b 100644 --- a/functions/imagemagick/requirements.txt +++ b/functions/imagemagick/requirements.txt @@ -1,3 +1,3 @@ -google-cloud-vision==2.0.0 +google-cloud-vision==2.1.0 google-cloud-storage==1.35.0 Wand==0.6.5 diff --git a/functions/ocr/app/requirements.txt b/functions/ocr/app/requirements.txt index 9f863c863616..8c8e60055292 100644 --- a/functions/ocr/app/requirements.txt +++ b/functions/ocr/app/requirements.txt @@ -1,4 +1,4 @@ google-cloud-pubsub==2.2.0 google-cloud-storage==1.35.0 google-cloud-translate==3.0.2 -google-cloud-vision==2.0.0 +google-cloud-vision==2.1.0 diff --git a/run/image-processing/requirements.txt b/run/image-processing/requirements.txt index 99c81896c7ce..fa846da35758 100644 --- a/run/image-processing/requirements.txt +++ b/run/image-processing/requirements.txt @@ -2,6 +2,6 @@ Flask==1.1.2 pytest==5.3.0; python_version > "3.0" pytest==4.6.6; python_version < "3.0" gunicorn==20.0.4 -google-cloud-vision==2.0.0 +google-cloud-vision==2.1.0 google-cloud-storage==1.35.0 Wand==0.6.5 From 7fd1fd55b622aa4079f143293a24e0daf387dcf7 Mon Sep 17 00:00:00 2001 From: Takashi Matsuo Date: Tue, 26 Jan 2021 14:01:41 -0800 Subject: [PATCH 3/9] fix(healthcare): retry flaky test (#5285) fixes #5251 --- healthcare/api-client/v1/dicom/dicom_stores_test.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/healthcare/api-client/v1/dicom/dicom_stores_test.py b/healthcare/api-client/v1/dicom/dicom_stores_test.py index 85e308bd5d2d..c21caf5cf785 100644 --- a/healthcare/api-client/v1/dicom/dicom_stores_test.py +++ b/healthcare/api-client/v1/dicom/dicom_stores_test.py @@ -166,9 +166,12 @@ def test_pubsub_topic(): def test_CRUD_dicom_store(test_dataset, crud_dicom_store_id, capsys): - dicom_stores.create_dicom_store( - project_id, cloud_region, dataset_id, crud_dicom_store_id - ) + @backoff.on_exception(backoff.expo, HttpError, max_time=60) + def create(): + dicom_stores.create_dicom_store( + project_id, cloud_region, dataset_id, crud_dicom_store_id + ) + create() dicom_stores.get_dicom_store( project_id, cloud_region, dataset_id, crud_dicom_store_id From 92117f8f2ebcb7d7c7a557be049bbbeac298ef9f Mon Sep 17 00:00:00 2001 From: Tianzi Cai Date: Tue, 26 Jan 2021 14:02:44 -0800 Subject: [PATCH 4/9] fix: update index.html (#5286) --- .../standard_python3/pubsub/templates/index.html | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/appengine/standard_python3/pubsub/templates/index.html b/appengine/standard_python3/pubsub/templates/index.html index 9323b6b2f426..a8805cad7d6d 100644 --- a/appengine/standard_python3/pubsub/templates/index.html +++ b/appengine/standard_python3/pubsub/templates/index.html @@ -21,14 +21,18 @@

Print BEARER TOKENS: - {% for token in tokens: %} -

  • {{token}}
  • - {% endfor %} +
      + {% for token in tokens: %} +
    • {{token}}
    • + {% endfor %} +

    Print CLAIMS: - {% for claim in claims: %} -

  • {{claim}}
  • - {% endfor %} +
      + {% for claim in claims: %} +
    • {{claim}}
    • + {% endfor %} +

    Messages received by this instance:

      From 3b36c33079791b953cdc1cc59140a0bacbc14602 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Wed, 27 Jan 2021 04:49:10 +0100 Subject: [PATCH 5/9] chore(deps): update dependency boto3 to v1.16.60 (#5291) --- storage/s3-sdk/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/s3-sdk/requirements.txt b/storage/s3-sdk/requirements.txt index bc70da6fbef6..32ad4869e439 100644 --- a/storage/s3-sdk/requirements.txt +++ b/storage/s3-sdk/requirements.txt @@ -1 +1 @@ -boto3==1.16.59 +boto3==1.16.60 From ec634332fdf28ab036bca89b9ce5c9132963263b Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 28 Jan 2021 00:12:10 +0100 Subject: [PATCH 6/9] chore(deps): update dependency boto3 to v1.16.61 (#5293) --- storage/s3-sdk/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/s3-sdk/requirements.txt b/storage/s3-sdk/requirements.txt index 32ad4869e439..4fdca078e8da 100644 --- a/storage/s3-sdk/requirements.txt +++ b/storage/s3-sdk/requirements.txt @@ -1 +1 @@ -boto3==1.16.60 +boto3==1.16.61 From c61b52d862c5c9bc2207966d921733e40a55d03b Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 28 Jan 2021 00:21:27 +0100 Subject: [PATCH 7/9] chore(deps): update dependency google-cloud-profiler to v2.0.5 (#5294) --- profiler/appengine/flexible/requirements.txt | 2 +- profiler/appengine/standard_python37/requirements.txt | 2 +- profiler/quickstart/requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/profiler/appengine/flexible/requirements.txt b/profiler/appengine/flexible/requirements.txt index 87779f3d9905..fef46fbb43fe 100644 --- a/profiler/appengine/flexible/requirements.txt +++ b/profiler/appengine/flexible/requirements.txt @@ -1,3 +1,3 @@ Flask==1.1.2 gunicorn==20.0.4 -google-cloud-profiler==2.0.4 +google-cloud-profiler==2.0.5 diff --git a/profiler/appengine/standard_python37/requirements.txt b/profiler/appengine/standard_python37/requirements.txt index 38cd52b18cc2..1367dee52438 100644 --- a/profiler/appengine/standard_python37/requirements.txt +++ b/profiler/appengine/standard_python37/requirements.txt @@ -1,2 +1,2 @@ Flask==1.1.2 -google-cloud-profiler==2.0.4 +google-cloud-profiler==2.0.5 diff --git a/profiler/quickstart/requirements.txt b/profiler/quickstart/requirements.txt index de539c2b6413..911b33dc0ed4 100644 --- a/profiler/quickstart/requirements.txt +++ b/profiler/quickstart/requirements.txt @@ -1 +1 @@ -google-cloud-profiler==2.0.4 +google-cloud-profiler==2.0.5 From 5457540e4290a2ba7d4289a7883f171f9f4b6337 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 28 Jan 2021 00:28:48 +0100 Subject: [PATCH 8/9] chore(deps): update dependency twilio to v6.51.1 (#5295) --- appengine/flexible/twilio/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appengine/flexible/twilio/requirements.txt b/appengine/flexible/twilio/requirements.txt index 2cbc78b1d6fc..c8d320c4d094 100644 --- a/appengine/flexible/twilio/requirements.txt +++ b/appengine/flexible/twilio/requirements.txt @@ -1,3 +1,3 @@ Flask==1.1.2 gunicorn==20.0.4 -twilio==6.51.0 +twilio==6.51.1 From f0890ac8766c217609ac8a34fee22fdab4bdf718 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 28 Jan 2021 01:14:59 +0100 Subject: [PATCH 9/9] chore(deps): update dependency google-cloud-bigquery to v2.7.0 (#5296) --- appengine/standard_python3/bigquery/requirements.txt | 2 +- bigquery/bqml/requirements.txt | 2 +- bigquery/datalab-migration/requirements.txt | 2 +- bigquery/pandas-gbq-migration/requirements.txt | 2 +- data-science-onramp/data-cleaning/requirements-test.txt | 2 +- data-science-onramp/data-ingestion/requirements.txt | 2 +- notebooks/requirements.txt | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/appengine/standard_python3/bigquery/requirements.txt b/appengine/standard_python3/bigquery/requirements.txt index a01a7920c8a7..7dc0268bf4c8 100644 --- a/appengine/standard_python3/bigquery/requirements.txt +++ b/appengine/standard_python3/bigquery/requirements.txt @@ -1,2 +1,2 @@ -google-cloud-bigquery==2.6.2 +google-cloud-bigquery==2.7.0 Flask==1.1.2 diff --git a/bigquery/bqml/requirements.txt b/bigquery/bqml/requirements.txt index 2dfa2ceb2660..e87fac5383e0 100644 --- a/bigquery/bqml/requirements.txt +++ b/bigquery/bqml/requirements.txt @@ -1,4 +1,4 @@ -google-cloud-bigquery[pandas,bqstorage]==2.6.2 +google-cloud-bigquery[pandas,bqstorage]==2.7.0 google-cloud-bigquery-storage==2.2.1 pandas==1.1.5; python_version < '3.7' pandas==1.2.0; python_version > '3.6' diff --git a/bigquery/datalab-migration/requirements.txt b/bigquery/datalab-migration/requirements.txt index 47611a9dc859..2b8eb2e32723 100644 --- a/bigquery/datalab-migration/requirements.txt +++ b/bigquery/datalab-migration/requirements.txt @@ -1,5 +1,5 @@ grpcio==1.35.0 -google-cloud-bigquery[pandas,pyarrow]==2.6.2 +google-cloud-bigquery[pandas,pyarrow]==2.7.0 google-cloud-bigquery-storage==2.2.1 datalab==1.2.0 ipython==7.18.1; python_version > '3.6' diff --git a/bigquery/pandas-gbq-migration/requirements.txt b/bigquery/pandas-gbq-migration/requirements.txt index 0e669ce37818..5c409c24a58c 100644 --- a/bigquery/pandas-gbq-migration/requirements.txt +++ b/bigquery/pandas-gbq-migration/requirements.txt @@ -1,4 +1,4 @@ -google-cloud-bigquery==2.6.2 +google-cloud-bigquery==2.7.0 google-cloud-bigquery-storage==2.2.1 pandas==1.1.5; python_version < '3.7' pandas==1.2.0; python_version > '3.6' diff --git a/data-science-onramp/data-cleaning/requirements-test.txt b/data-science-onramp/data-cleaning/requirements-test.txt index ba8348966575..fcbdcf3ca185 100644 --- a/data-science-onramp/data-cleaning/requirements-test.txt +++ b/data-science-onramp/data-cleaning/requirements-test.txt @@ -1,5 +1,5 @@ pytest==6.2.1 pandas==1.1.5; python_version < '3.7' pandas==1.2.0; python_version > '3.6' -google-cloud-bigquery==2.6.2 +google-cloud-bigquery==2.7.0 pyarrow==2.0.0 diff --git a/data-science-onramp/data-ingestion/requirements.txt b/data-science-onramp/data-ingestion/requirements.txt index 185b193bff63..88be8a118788 100644 --- a/data-science-onramp/data-ingestion/requirements.txt +++ b/data-science-onramp/data-ingestion/requirements.txt @@ -3,4 +3,4 @@ #google-auth-httplib2==0.0.3 google-cloud-storage==1.35.0 google-cloud-dataproc==2.2.0 -google-cloud-bigquery==2.6.2 +google-cloud-bigquery==2.7.0 diff --git a/notebooks/requirements.txt b/notebooks/requirements.txt index a21c80ba93c2..43ba46eb4926 100644 --- a/notebooks/requirements.txt +++ b/notebooks/requirements.txt @@ -1,4 +1,4 @@ google-cloud-storage==1.35.0 -google-cloud-bigquery[pandas,pyarrow]==2.6.2 +google-cloud-bigquery[pandas,pyarrow]==2.7.0 matplotlib==3.1.2; python_version > '3.0' matplotlib==2.2.5; python_version < '3.0' \ No newline at end of file