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

github-bot pushed a change to branch 
dependabot/go_modules/learning/tour-of-beam/backend/google.golang.org/grpc-1.53.0
in repository https://gitbox.apache.org/repos/asf/beam.git


    omit 2ed53264e05 Bump google.golang.org/grpc in 
/learning/tour-of-beam/backend
     add 5bc80aa2e6d Inherit Generic for TimestampedValue (#26290)
     add c28fa0639c2 Update 2.50 release notes to include new Kafka 
topicPattern feature (#27367)
     add a6760153543 Bump golang.org/x/oauth2 from 0.9.0 to 0.10.0 in /sdks 
(#27376)
     add cafb3da0523 Bump @grpc/grpc-js from 1.6.7 to 1.8.8 in /sdks/typescript 
(#27372)
     add 556d93365a1 Update dataflow container versions (#27381)
     add 44f165fedf6 Update python options in runners/spark.md. (#27334)
     add a5873792a36 Fix mismatched section title in Release Guide (#27383)
     add b529efecc9d MLTransform (#26795)
     add 9e6420d9f90 Arc additional pools (#27369)
     add 7eaef18bcbf Address failing BT read tests in #27319 (#27322)
     add ccf6544a636 Automatically use Docker Compose based transform service 
for PythonExternalTransform when needed.
     add 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)
     new a3debd25081 Bump google.golang.org/grpc in 
/learning/tour-of-beam/backend

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   (2ed53264e05)
            \
             N -- N -- N   
refs/heads/dependabot/go_modules/learning/tour-of-beam/backend/google.golang.org/grpc-1.53.0
 (a3debd25081)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../gh-actions-self-hosted-runners/arc/README.md   |  44 ++-
 .../arc/config/arc_autoscaler.tpl                  |   4 +-
 .../arc/config/arc_deployment.tpl                  |  35 +-
 .../arc/environments/beam.env                      |  42 +-
 .github/gh-actions-self-hosted-runners/arc/gke.tf  |  53 ++-
 .github/gh-actions-self-hosted-runners/arc/helm.tf |   2 +-
 .../arc/kubernetes.tf                              |  30 +-
 .../arc/variables.tf                               |  87 ++--
 .github/workflows/README.md                        |  28 ++
 .github/workflows/job_PreCommit_Python.yml         |  88 +++++
 .../job_PreCommit_PythonAutoformatter.yml          |  78 ++++
 .../workflows/job_PreCommit_Python_Dataframes.yml  |  87 ++++
 .../workflows/job_PreCommit_Python_Examples.yml    |  88 +++++
 .github/workflows/job_PreCommit_Python_Runners.yml |  90 +++++
 .../workflows/job_PreCommit_Python_Transforms.yml  |  90 +++++
 .github/workflows/job_Precommit_PythonLint.yml     |  81 ++++
 .../workflows/job_Precommit_Python_Coverage.yml    |  84 ++++
 .../workflows/job_Precommit_Python_DockerBuild.yml |  89 +++++
 CHANGES.md                                         |   1 +
 sdks/go.mod                                        |  16 +-
 sdks/go.sum                                        |  32 +-
 .../extensions/python/PythonExternalTransform.java |  58 ++-
 .../BigtableReadSchemaTransformProviderIT.java     |  42 +-
 .../launcher/TransformServiceLauncher.java         |   8 +-
 .../examples/ml_transform/ml_transform_basic.py    | 118 ++++++
 .../python/apache_beam/ml/transforms}/__init__.py  |   0
 sdks/python/apache_beam/ml/transforms/base.py      | 165 ++++++++
 sdks/python/apache_beam/ml/transforms/base_test.py | 246 ++++++++++++
 sdks/python/apache_beam/ml/transforms/handlers.py  | 410 +++++++++++++++++++
 .../apache_beam/ml/transforms/handlers_test.py     | 355 +++++++++++++++++
 sdks/python/apache_beam/ml/transforms/tft.py       | 440 +++++++++++++++++++++
 sdks/python/apache_beam/ml/transforms/tft_test.py  | 395 ++++++++++++++++++
 sdks/python/apache_beam/ml/transforms/utils.py     |  56 +++
 .../apache_beam/runners/dataflow/internal/names.py |   4 +-
 sdks/python/apache_beam/transforms/core.py         |   3 +-
 .../transforms/timestamped_value_type_test.py      | 139 +++++++
 sdks/python/apache_beam/transforms/window.py       |   9 +-
 sdks/python/apache_beam/typehints/typecheck.py     |  18 +-
 sdks/python/scripts/generate_pydoc.sh              |   2 +-
 sdks/python/test-suites/tox/py38/build.gradle      |   4 +
 sdks/python/tox.ini                                |   6 +
 sdks/typescript/package-lock.json                  | 349 +++++++++++++++-
 sdks/typescript/package.json                       |   2 +-
 .../site/content/en/contribute/release-guide.md    |   2 +-
 .../site/content/en/documentation/runners/spark.md |   2 +-
 45 files changed, 3844 insertions(+), 138 deletions(-)
 create mode 100644 .github/workflows/README.md
 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_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 .github/workflows/job_Precommit_Python_DockerBuild.yml
 create mode 100644 
sdks/python/apache_beam/examples/ml_transform/ml_transform_basic.py
 copy {examples/notebooks/notebook_test_scripts => 
sdks/python/apache_beam/ml/transforms}/__init__.py (100%)
 create mode 100644 sdks/python/apache_beam/ml/transforms/base.py
 create mode 100644 sdks/python/apache_beam/ml/transforms/base_test.py
 create mode 100644 sdks/python/apache_beam/ml/transforms/handlers.py
 create mode 100644 sdks/python/apache_beam/ml/transforms/handlers_test.py
 create mode 100644 sdks/python/apache_beam/ml/transforms/tft.py
 create mode 100644 sdks/python/apache_beam/ml/transforms/tft_test.py
 create mode 100644 sdks/python/apache_beam/ml/transforms/utils.py
 create mode 100644 
sdks/python/apache_beam/transforms/timestamped_value_type_test.py

Reply via email to