This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly-refs/heads/master
in repository https://gitbox.apache.org/repos/asf/beam.git
from 604e335a4d7 Merge pull request #34491: Adds instructions regarding
building the Go SDK harness container for Dataflow
add db1f0eea92b [Dataflow] Remove unused PhysicalElementCount Counter
(#34461)
add f636caa7065 Support Time Partitioned Test Tables in
BigqueryResourceManager (#34471)
add 192c90354f8 Update reviewers to more accurately match current state of
repo (#34493)
add 468f5cf1323 Add vendored cloudpickle (#34424)
add 511abd28f55 Updated the discussion doc up to Beam 2.64.0 (#34496)
add af43a3b8b1a minor doc updates (#34494)
add e0b60951edf Updated the republished workflow to 2.64.0 (#34499)
add a477b770381 [Go] Fix reshuffle implementation to use the global window
for gbk output. (#34462)
add ad7729e0504 Bump golang.org/x/net from 0.37.0 to 0.38.0 in /sdks
(#34482)
add 984e875171c Skip TestOomParDo for Dataflow (#34502)
add 9b6a11624ce Update the python deps (#34501)
No new revisions were added by this update.
Summary of changes:
.github/REVIEWERS.yml | 24 +-
.github/autolabeler.yml | 2 +-
.../republish_released_docker_containers.yml | 2 +-
CHANGES.md | 2 +-
LICENCE.cloudpickle | 29 +
build.gradle.kts | 4 +
contributor-docs/discussion-docs/2025.md | 6 +-
.../it/gcp/bigquery/BigQueryResourceManager.java | 97 ++
.../gcp/bigquery/BigQueryResourceManagerTest.java | 79 +
.../dataflow/worker/DataflowOutputCounter.java | 11 +-
.../IntrinsicMapTaskExecutorFactoryTest.java | 3 -
sdks/go.mod | 4 +-
sdks/go.sum | 4 +-
sdks/go/pkg/beam/core/runtime/graphx/translate.go | 2 +
sdks/go/test/integration/integration.go | 4 +
.../apache_beam/internal/cloudpickle/__init__.py | 18 +
.../internal/cloudpickle/cloudpickle.py | 1537 ++++++++++++++++++++
.../internal/cloudpickle/cloudpickle_fast.py | 14 +
.../apache_beam/internal/cloudpickle_pickler.py | 2 +-
.../apache_beam/ml/anomaly/specifiable_test.py | 2 +-
sdks/python/apache_beam/typehints/schemas_test.py | 2 +-
.../container/base_image_requirements_manual.txt | 3 +-
.../container/py310/base_image_requirements.txt | 100 +-
.../container/py311/base_image_requirements.txt | 100 +-
.../container/py312/base_image_requirements.txt | 102 +-
.../container/py39/base_image_requirements.txt | 96 +-
sdks/python/scripts/run_pylint.sh | 15 +-
sdks/python/setup.py | 5 -
website/www/site/content/en/blog/beam-2.64.0.md | 53 +-
29 files changed, 2068 insertions(+), 254 deletions(-)
create mode 100644 LICENCE.cloudpickle
create mode 100644 sdks/python/apache_beam/internal/cloudpickle/__init__.py
create mode 100644 sdks/python/apache_beam/internal/cloudpickle/cloudpickle.py
create mode 100644
sdks/python/apache_beam/internal/cloudpickle/cloudpickle_fast.py