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 f19c384af1f Merge pull request #27365: Automatically use Docker 
Compose based transform service for PythonExternalTransform when needed.
     add a12577ae68a python precommit jobs and readme (#27379)
     add a0c9aa2e4f7 Bump google.golang.org/grpc from 1.56.1 to 1.56.2 in /sdks 
(#27387)
     add 71cb3ca2403 Bump google.golang.org/api from 0.129.0 to 0.130.0 in 
/sdks (#27377)
     add 7ce2d00464f Revert "Replace StorageV1 client with GCS client (#25965)" 
(#27388)
     add 4ba5e43a789 Fix CombineGlobally with GlobalWindows (#26922)
     add f643872f0b7 Restore trailing slash accidentally removed in 
https://github.com/apache/beam/pull/25665
     add dbf9ecce8f5 Merge pull request #27386 from Restore trailing slash in 
Dockerfile.
     add cbfeb2e5ec7 fixes rerun call in matrix jobs (#27392)
     add 79d210c7f01 added beam_PreCommit_Java_Examples_Dataflow job (#27233)
     add 4026d9e3482 Migrate "beam_PreCommit_Typescript" Jenkins job to Github 
Actions (#27141)
     add c06247bf79e Fix staged RC source name in GA (#27394)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/README.md                        |   30 +
 .../beam_PreCommit_Java_Examples_Dataflow.yml      |  109 +
 .github/workflows/beam_PreCommit_Typescript.yml    |   81 +
 .github/workflows/build_release_candidate.yml      |    2 +-
 .github/workflows/job_PreCommit_Python.yml         |   94 +
 .../job_PreCommit_PythonAutoformatter.yml          |   78 +
 .../workflows/job_PreCommit_Python_Dataframes.yml  |   92 +
 .../workflows/job_PreCommit_Python_DockerBuild.yml |   94 +
 .../workflows/job_PreCommit_Python_Examples.yml    |   94 +
 .github/workflows/job_PreCommit_Python_Runners.yml |   95 +
 .../workflows/job_PreCommit_Python_Transforms.yml  |   95 +
 .github/workflows/job_Precommit_PythonLint.yml     |   81 +
 .../workflows/job_Precommit_Python_Coverage.yml    |   84 +
 .../assets/symbols/python.g.yaml                   |    8 +
 sdks/go.mod                                        |    6 +-
 sdks/go.sum                                        |   12 +-
 .../examples/complete/game/user_score.py           |    1 -
 sdks/python/apache_beam/internal/gcp/auth.py       |    7 +-
 sdks/python/apache_beam/io/gcp/bigquery_test.py    |    4 +-
 sdks/python/apache_beam/io/gcp/gcsfilesystem.py    |   33 +-
 .../apache_beam/io/gcp/gcsfilesystem_test.py       |   17 +-
 sdks/python/apache_beam/io/gcp/gcsio.py            |  625 +++--
 .../apache_beam/io/gcp/gcsio_integration_test.py   |  149 +-
 sdks/python/apache_beam/io/gcp/gcsio_overrides.py  |   55 +
 sdks/python/apache_beam/io/gcp/gcsio_test.py       |  886 +++++--
 .../io/gcp/internal/clients/storage/__init__.py    |   33 +
 .../internal/clients/storage/storage_v1_client.py  | 1517 +++++++++++
 .../clients/storage/storage_v1_messages.py         | 2714 ++++++++++++++++++++
 .../options/pipeline_options_validator_test.py     |    1 -
 .../runners/dataflow/internal/apiclient.py         |   52 +-
 .../apache_beam/runners/interactive/utils.py       |   26 +-
 .../apache_beam/runners/interactive/utils_test.py  |   41 +-
 .../runners/portability/sdk_container_builder.py   |   41 +-
 .../apache_beam/transforms/combiners_test.py       |   44 +
 sdks/python/apache_beam/transforms/core.py         |   14 +
 sdks/python/mypy.ini                               |    3 +
 sdks/python/setup.py                               |    1 -
 sdks/typescript/container/Dockerfile               |    2 +-
 38 files changed, 6833 insertions(+), 488 deletions(-)
 create mode 100644 .github/workflows/README.md
 create mode 100644 .github/workflows/beam_PreCommit_Java_Examples_Dataflow.yml
 create mode 100644 .github/workflows/beam_PreCommit_Typescript.yml
 create mode 100644 .github/workflows/job_PreCommit_Python.yml
 create mode 100644 .github/workflows/job_PreCommit_PythonAutoformatter.yml
 create mode 100644 .github/workflows/job_PreCommit_Python_Dataframes.yml
 create mode 100644 .github/workflows/job_PreCommit_Python_DockerBuild.yml
 create mode 100644 .github/workflows/job_PreCommit_Python_Examples.yml
 create mode 100644 .github/workflows/job_PreCommit_Python_Runners.yml
 create mode 100644 .github/workflows/job_PreCommit_Python_Transforms.yml
 create mode 100644 .github/workflows/job_Precommit_PythonLint.yml
 create mode 100644 .github/workflows/job_Precommit_Python_Coverage.yml
 create mode 100644 sdks/python/apache_beam/io/gcp/gcsio_overrides.py
 create mode 100644 
sdks/python/apache_beam/io/gcp/internal/clients/storage/__init__.py
 create mode 100644 
sdks/python/apache_beam/io/gcp/internal/clients/storage/storage_v1_client.py
 create mode 100644 
sdks/python/apache_beam/io/gcp/internal/clients/storage/storage_v1_messages.py

Reply via email to