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 2024/02/27 15:32:16 UTC

(beam) branch dependabot/go_modules/sdks/cloud.google.com/go/pubsub-1.36.1 updated (633f32e620e -> ff1d477e19f)

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.36.1
in repository https://gitbox.apache.org/repos/asf/beam.git


    omit 633f32e620e Bump cloud.google.com/go/pubsub from 1.33.0 to 1.36.1 in /sdks
     add ffe2dba5320 Implementing lull reporting at bundle level processing (#29882)
     add 6406cfe3c9b Remove some uses of ClassLoadingStrategy.Default.INJECTION (#30367)
     add 2ae4a28e6fc Force downgrade mpmath to avoid test breakages (#30418)
     add 6c3e8ad1af1 [Dataflow Streaming] Start to refactor persistence layer to prepare for direct path (#30265)
     add 2a84a20236b [Python] Add doc comment for WriteToText.skip_if_empty (#30409)
     add b7a58bf8b2d Ensure flatten windows match (#30410)
     add 8fd24b76a19 Bump google.golang.org/grpc from 1.61.0 to 1.62.0 in /sdks (#30434)
     add ff1d477e19f Bump cloud.google.com/go/pubsub from 1.33.0 to 1.36.1 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   (633f32e620e)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/sdks/cloud.google.com/go/pubsub-1.36.1 (ff1d477e19f)

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:
 .../core/metrics/ExecutionStateTracker.java        |  25 ++
 .../dataflow/worker/DataflowExecutionContext.java  | 117 ++++++++-
 .../dataflow/worker/DataflowOperationContext.java  |  80 +-----
 .../runners/dataflow/worker/StackTraceUtil.java    |  66 +++++
 .../dataflow/worker/StreamingDataflowWorker.java   | 278 ++++++++++++---------
 .../streaming/sideinput/SideInputStateFetcher.java |  23 +-
 .../worker/windmill/state/WindmillStateReader.java |  31 +--
 .../worker/DataflowExecutionStateTrackerTest.java  | 140 ++++++++++-
 .../worker/DataflowOperationContextTest.java       |  80 +-----
 .../worker/StreamingDataflowWorkerTest.java        |   6 +-
 .../sideinput/SideInputStateFetcherTest.java       |  14 +-
 .../windmill/state/WindmillStateReaderTest.java    |   8 +-
 sdks/go.mod                                        |  22 +-
 sdks/go.sum                                        |  48 ++--
 .../beam/sdk/schemas/utils/AutoValueUtils.java     |  10 +-
 .../apache/beam/sdk/schemas/utils/POJOUtils.java   |   3 +-
 .../avro/schemas/utils/AvroByteBuddyUtils.java     |   5 +-
 .../beam/sdk/io/aws2/schemas/AwsSchemaUtils.java   |   4 +-
 sdks/python/apache_beam/io/textio.py               |   2 +
 sdks/python/apache_beam/transforms/core.py         |   8 +
 sdks/python/apache_beam/transforms/core_test.py    |  34 +++
 sdks/python/tox.ini                                |   6 +-
 22 files changed, 642 insertions(+), 368 deletions(-)
 create mode 100644 runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/StackTraceUtil.java