You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by gi...@apache.org on 2022/09/16 13:02:29 UTC

[beam] branch dependabot/go_modules/sdks/google.golang.org/api-0.96.0 updated (5044838e44e -> 9e4e5574ebc)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/go_modules/sdks/google.golang.org/api-0.96.0
in repository https://gitbox.apache.org/repos/asf/beam.git


 discard 5044838e44e Bump google.golang.org/api from 0.95.0 to 0.96.0 in /sdks
     add f7b31ebb033 Pass namespace through RunInference transform (#23182)
     add 283f3b170be [GitHub Actions] - INFRA scripts to implement GCP Self-hosted runners (Ubuntu&Windows) (#23158)
     add 5e7a03dc7fd GA migration - Base actions to use for precommit and postcommit workflows (#23109)
     add 232fa8220e6 [Website] update site navigation  #22902
     add 24a918240f8 Merge pull request #22968: [Website] update site navigation #22902
     add 6911520a516 Test fix Kafka Performance test batch (#23191)
     add c871d154bdf Revert "Exclude protobuf 3.20.2" (#23237)
     add 065f3c3ed86 Fix outdated code in python sdk install (#23231)
     add 94405e6c491 Bump up dataflow python container version to beam-master-20220914 (#23238)
     add 30a48f05cf2 Improve the performance of TextSource by reducing how many byte[]s are copied (fixes #23193) (#23196)
     add b03dd608765 Issue#21430 Avoid pruning DataframeTransforms (#23069)
     add f95ce831336 Bump cloud.google.com/go/bigquery from 1.40.0 to 1.41.0 in /sdks (#23247)
     add 9e4e5574ebc Bump google.golang.org/api from 0.95.0 to 0.96.0 in /sdks

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5044838e44e)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/sdks/google.golang.org/api-0.96.0 (9e4e5574ebc)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../gradle-command-self-hosted-action/action.yml   |  45 +++
 .../setup-default-test-properties/action.yml       |  31 ++
 .../test-properties.json                           |  23 ++
 .../actions/setup-self-hosted-action/action.yml    |  77 +++++
 .github/gh-actions-self-hosted-runners/README.md   | 121 +++++++
 .../diagrams/gh-actions-k8s-runners-pod.png        | Bin 0 -> 72689 bytes
 .../diagrams/self-hosted-runners-architecture.png  | Bin 0 -> 201523 bytes
 .../self-hosted-runners-delete-function.png        | Bin 0 -> 77310 bytes
 .../helper-functions/README.md                     |  39 +++
 .../helper-functions/cloud-functions/example.env   |   8 +
 .../cloud-functions/generateToken/index.js         |  76 +++++
 .../cloud-functions/generateToken/package.json     |  14 +
 .../cloud-functions/monitorRunnersStatus/index.js  |  88 +++++
 .../monitorRunnersStatus/package.json              |  14 +
 .../cloud-functions/removeOfflineRunners/index.js  |  81 +++++
 .../removeOfflineRunners/package.json              |  14 +
 .../cloud-functions/shared/constants.js            |  19 ++
 .../self-hosted-linux/README.md                    | 100 ++++++
 .../self-hosted-linux/docker/Dockerfile            |  59 ++++
 .../self-hosted-linux/docker/docker-compose.yml    |  30 ++
 .../self-hosted-linux/docker/entrypoint.sh         |  58 ++++
 .../self-hosted-linux/docker/example.var.env       |   7 +
 .../kubernetes/delete-k8s-deployment.sh            |  20 ++
 .../kubernetes/github-actions-deployment.yml       |  76 +++++
 .../kubernetes/github-actions-hpa.yml              |  29 ++
 .../kubernetes/github-actions-secrets.yml          |  30 ++
 .../kubernetes/github-actions-vpa.yml              |  28 ++
 .../kubernetes/run-k8s-deployment.sh               |  22 ++
 .../self-hosted-windows/README.md                  |  43 +++
 .../self-hosted-windows/shutdownScript.ps1         |  23 ++
 .../self-hosted-windows/startupScript.ps1          |  49 +++
 .../jenkins/job_PerformanceTests_KafkaIO_IT.groovy |   5 +-
 .../kafka-cluster/05-kafka/configmap-config.yaml   |   4 +-
 CHANGES.md                                         |   1 +
 sdks/go.mod                                        |   6 +-
 sdks/go.sum                                        |  11 +-
 sdks/java/core/jmh/build.gradle                    |   2 +
 .../beam/sdk/jmh/io/TextSourceBenchmark.java       | 117 +++++++
 .../org/apache/beam/sdk/jmh/io/package-info.java   |  20 ++
 .../java/org/apache/beam/sdk/io/TextSource.java    | 359 ++++++++++++++-------
 .../org/apache/beam/sdk/io/TextIOReadTest.java     |  69 ++--
 .../org/apache/beam/sdk/io/kafka/KafkaIOIT.java    |   6 +-
 sdks/python/apache_beam/dataframe/frames_test.py   |  36 +++
 sdks/python/apache_beam/ml/inference/base.py       |  23 +-
 sdks/python/apache_beam/ml/inference/base_test.py  |  19 ++
 .../apache_beam/ml/inference/pytorch_inference.py  |   4 +-
 .../ml/inference/pytorch_inference_test.py         |   3 +-
 .../apache_beam/ml/inference/sklearn_inference.py  |  14 +
 .../apache_beam/runners/dataflow/internal/names.py |   4 +-
 .../runners/interactive/pipeline_fragment.py       |   9 +-
 .../runners/interactive/testing/mock_env.py        |   3 +-
 .../pytorch_image_classification_benchmarks.py     |   2 +-
 .../pytorch_language_modeling_benchmarks.py        |   2 +-
 sdks/python/build-requirements.txt                 |   1 -
 sdks/python/findSupportedPython.groovy             |  80 -----
 sdks/python/gen_protos.py                          |   4 +-
 sdks/python/setup.py                               |   2 +-
 .../resources/learning-resources.md                |   3 +
 .../resources/videos-and-podcasts.md               |   2 +-
 .../partials/section-menu/en/get-started.html      |  21 +-
 60 files changed, 1797 insertions(+), 259 deletions(-)
 create mode 100644 .github/actions/gradle-command-self-hosted-action/action.yml
 create mode 100644 .github/actions/setup-default-test-properties/action.yml
 create mode 100644 .github/actions/setup-default-test-properties/test-properties.json
 create mode 100644 .github/actions/setup-self-hosted-action/action.yml
 create mode 100644 .github/gh-actions-self-hosted-runners/README.md
 create mode 100644 .github/gh-actions-self-hosted-runners/diagrams/gh-actions-k8s-runners-pod.png
 create mode 100644 .github/gh-actions-self-hosted-runners/diagrams/self-hosted-runners-architecture.png
 create mode 100644 .github/gh-actions-self-hosted-runners/diagrams/self-hosted-runners-delete-function.png
 create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/README.md
 create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/example.env
 create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/generateToken/index.js
 create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/generateToken/package.json
 create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/monitorRunnersStatus/index.js
 create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/monitorRunnersStatus/package.json
 create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/removeOfflineRunners/index.js
 create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/removeOfflineRunners/package.json
 create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/shared/constants.js
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/README.md
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/docker/Dockerfile
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/docker/docker-compose.yml
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/docker/entrypoint.sh
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/docker/example.var.env
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/delete-k8s-deployment.sh
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/github-actions-deployment.yml
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/github-actions-hpa.yml
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/github-actions-secrets.yml
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/github-actions-vpa.yml
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/run-k8s-deployment.sh
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-windows/README.md
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-windows/shutdownScript.ps1
 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-windows/startupScript.ps1
 create mode 100644 sdks/java/core/jmh/src/main/java/org/apache/beam/sdk/jmh/io/TextSourceBenchmark.java
 create mode 100644 sdks/java/core/jmh/src/main/java/org/apache/beam/sdk/jmh/io/package-info.java
 delete mode 100644 sdks/python/findSupportedPython.groovy
 rename website/www/site/content/en/{documentation => get-started}/resources/learning-resources.md (99%)
 rename website/www/site/content/en/{documentation => get-started}/resources/videos-and-podcasts.md (99%)