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 9a15261c00d Adding Timesfm anomaly detection colab example (#35844)
add afe94ad8c6f Add helper functions for computing and using code object
identifiers to facilitate more efficient pickling of lambdas. (#35656)
add b2a3ea41120 Fix installing certificates
add b53f31f8625 Fix Deploy-Update-Playground-environment-stg Cloud Build
trigger (#35871)
add 14bb49c50aa Bump google.golang.org/api from 0.243.0 to 0.247.0 in
/sdks (#35879)
add 7ecbb2a7037 Pin a mocking test to DirectRunner (#35883)
add d2e1129ff13 [2/3] sdks/python: enrich data with Milvus Search [Vector,
Keyword, Hybrid] (#35577)
add b60ce5be96b Add type checking to confirm that the flatten inputs are
actually pco… (#35874)
No new revisions were added by this update.
Summary of changes:
.github/trigger_files/beam_PostCommit_Python.json | 2 +-
playground/backend/containers/router/Dockerfile | 19 +-
sdks/go.mod | 10 +-
sdks/go.sum | 20 +-
.../apache_beam/internal/code_object_pickler.py | 461 +++++++++++++++++
.../internal/code_object_pickler_test.py | 574 +++++++++++++++++++++
.../internal/{metrics => test_data}/__init__.py | 4 +-
.../__init__.py => internal/test_data/module_1.py} | 12 +-
.../test_data/module_1_class_added.py} | 23 +-
.../test_data/module_1_function_added.py} | 22 +-
.../test_data/module_1_global_variable_added.py} | 15 +-
.../test_data/module_1_lambda_variable_added.py} | 14 +-
.../test_data/module_1_local_variable_added.py} | 14 +-
.../test_data/module_1_local_variable_removed.py} | 11 +-
.../test_data/module_1_nested_function_2_added.py} | 21 +-
.../test_data/module_1_nested_function_added.py} | 20 +-
.../apache_beam/internal/test_data/module_2.py | 82 +++
.../internal/test_data/module_2_modified.py | 92 ++++
.../__init__.py => internal/test_data/module_3.py} | 11 +-
.../test_data/module_3_modified.py} | 11 +-
.../test_data/module_with_default_argument.py} | 9 +-
sdks/python/apache_beam/io/gcp/bigquery_test.py | 4 +-
.../apache_beam/ml/rag/enrichment/milvus_search.py | 8 +-
.../ml/rag/enrichment/milvus_search_it_test.py | 54 +-
sdks/python/apache_beam/transforms/core.py | 9 +
.../python/apache_beam/typehints/typecheck_test.py | 9 +
.../container/py310/base_image_requirements.txt | 52 +-
.../container/py310/ml_image_requirements.txt | 62 ++-
.../container/py311/base_image_requirements.txt | 54 +-
.../container/py311/ml_image_requirements.txt | 64 ++-
.../container/py312/base_image_requirements.txt | 54 +-
.../container/py312/ml_image_requirements.txt | 64 ++-
.../container/py313/base_image_requirements.txt | 129 +++--
.../container/py39/base_image_requirements.txt | 52 +-
.../container/py39/ml_image_requirements.txt | 60 ++-
sdks/python/setup.py | 7 +-
36 files changed, 1706 insertions(+), 423 deletions(-)
create mode 100644 sdks/python/apache_beam/internal/code_object_pickler_test.py
copy sdks/python/apache_beam/internal/{metrics => test_data}/__init__.py (89%)
copy sdks/python/apache_beam/{tools/__init__.py =>
internal/test_data/module_1.py} (76%)
copy
sdks/python/apache_beam/{testing/benchmarks/cloudml/cloudml_benchmark_constants_lib.py
=> internal/test_data/module_1_class_added.py} (68%)
copy
sdks/python/apache_beam/{testing/benchmarks/cloudml/cloudml_benchmark_constants_lib.py
=> internal/test_data/module_1_function_added.py} (70%)
copy sdks/python/apache_beam/{runners/direct/__init__.py =>
internal/test_data/module_1_global_variable_added.py} (73%)
copy sdks/python/apache_beam/{runners/direct/__init__.py =>
internal/test_data/module_1_lambda_variable_added.py} (71%)
copy sdks/python/apache_beam/{runners/direct/__init__.py =>
internal/test_data/module_1_local_variable_added.py} (72%)
copy sdks/python/apache_beam/{tools/__init__.py =>
internal/test_data/module_1_local_variable_removed.py} (79%)
copy
sdks/python/apache_beam/{testing/benchmarks/cloudml/cloudml_benchmark_constants_lib.py
=> internal/test_data/module_1_nested_function_2_added.py} (70%)
copy
sdks/python/apache_beam/{testing/benchmarks/cloudml/cloudml_benchmark_constants_lib.py
=> internal/test_data/module_1_nested_function_added.py} (70%)
create mode 100644 sdks/python/apache_beam/internal/test_data/module_2.py
create mode 100644
sdks/python/apache_beam/internal/test_data/module_2_modified.py
copy sdks/python/apache_beam/{tools/__init__.py =>
internal/test_data/module_3.py} (79%)
copy sdks/python/apache_beam/{tools/__init__.py =>
internal/test_data/module_3_modified.py} (79%)
copy sdks/python/apache_beam/{tools/__init__.py =>
internal/test_data/module_with_default_argument.py} (81%)