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/10/26 14:19:16 UTC

[beam] branch dependabot/go_modules/sdks/cloud.google.com/go/pubsub-1.26.0 updated (41f38cacdf0 -> bd082e4c575)

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

github-bot pushed a change to branch dependabot/go_modules/sdks/cloud.google.com/go/pubsub-1.26.0
in repository https://gitbox.apache.org/repos/asf/beam.git


 discard 41f38cacdf0 Bump cloud.google.com/go/pubsub from 1.25.1 to 1.26.0 in /sdks
     add 76761db371c Initial DaskRunner for Beam (#22421)
     add a5821ed8a3c [Website] update PULL_REQUEST_TEMPLATE.md (#23576)
     add 735cb7b3281 [Website] change width of the additional case studies cards (#23824)
     add 44787bcd9cd Adds a dependency to Python Multi-language library to the GCP Bom examples arche-type
     add e54653c4462 Merge pull request #23839: Adds a dependency to Python Multi-language library to the GCP Bom examples arche-type
     add ead2d2e8025 Support keyed executors in Samza Runner to process bundles for stateful ParDo (#23434)
     add 5c0ff090d62 Fixing Get Started header link (#23490)
     add 77f9a1749c1 Remove obsolete code from Spark 3 runner.
     add 6809951b377 Merge pull request #23844: Remove obsolete code from Spark 3 runner.
     add 6e395412ed4 Bump cloud.google.com/go/bigquery from 1.42.0 to 1.43.0 in /sdks (#23820)
     add bd082e4c575 Bump cloud.google.com/go/pubsub from 1.25.1 to 1.26.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   (41f38cacdf0)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/sdks/cloud.google.com/go/pubsub-1.26.0 (bd082e4c575)

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:
 CHANGES.md                                         |   2 +
 .../runners/samza/runtime/AsyncDoFnRunner.java     |  93 +++++++++--
 .../beam/runners/samza/runtime/OpAdapter.java      |   4 +-
 .../runners/samza/runtime/SamzaDoFnRunners.java    |   3 +-
 .../runners/samza/runtime/AsyncDoFnRunnerTest.java |  76 ++++++++-
 .../utils/SerializationDebugger.java               | 115 -------------
 .../structuredstreaming/utils/package-info.java    |  20 ---
 sdks/go.mod                                        |   2 +-
 sdks/go.sum                                        |   4 +-
 .../src/main/resources/archetype-resources/pom.xml |   7 +
 .../python/apache_beam/runners/dask}/__init__.py   |   0
 .../python/apache_beam/runners/dask/dask_runner.py | 182 +++++++++++++++++++++
 .../apache_beam/runners/dask/dask_runner_test.py   |  94 +++++++++++
 sdks/python/apache_beam/runners/dask/overrides.py  | 145 ++++++++++++++++
 .../runners/dask/transform_evaluator.py            | 103 ++++++++++++
 sdks/python/mypy.ini                               |   3 +
 sdks/python/setup.py                               |   6 +-
 sdks/python/test-suites/tox/common.gradle          |   3 +
 sdks/python/tox.ini                                |  13 +-
 website/ADD_CASE_STUDY.md                          |  72 ++++++++
 website/ADD_LOGO.md                                |  24 +--
 website/CASE_STUDY_TEMPLATE.md                     |  97 +++++++++++
 website/CONTRIBUTE.md                              |  30 +++-
 website/www/site/assets/scss/_case_study.scss      |   2 +-
 website/www/site/layouts/partials/header.html      |   6 +-
 25 files changed, 923 insertions(+), 183 deletions(-)
 delete mode 100644 runners/spark/3/src/test/java/org/apache/beam/runners/spark/structuredstreaming/utils/SerializationDebugger.java
 delete mode 100644 runners/spark/3/src/test/java/org/apache/beam/runners/spark/structuredstreaming/utils/package-info.java
 copy {.test-infra/jenkins/dependency_check => sdks/python/apache_beam/runners/dask}/__init__.py (100%)
 create mode 100644 sdks/python/apache_beam/runners/dask/dask_runner.py
 create mode 100644 sdks/python/apache_beam/runners/dask/dask_runner_test.py
 create mode 100644 sdks/python/apache_beam/runners/dask/overrides.py
 create mode 100644 sdks/python/apache_beam/runners/dask/transform_evaluator.py
 create mode 100644 website/ADD_CASE_STUDY.md
 create mode 100644 website/CASE_STUDY_TEMPLATE.md